Skip to content

Releases: mineiros-io/terraform-github-organization

v0.9.0

13 Nov 12:00
43e3e61
Compare
Choose a tag to compare

Changelog

BREAKING CHANGES

  • Drop support for Terraform GitHub Provider 4.x
  • Require Terraform GitHub Provider version 5.3 and above to support github_organization_settings resource

Added

  • Add support for organization settings by implementing the github_organization_settings resource

v0.8.0

20 Oct 13:58
c09723f
Compare
Choose a tag to compare

Added

  • Add support for Terraform GitHub Provider version 5.x

v0.7.0

23 Nov 20:59
b3405b2
Compare
Choose a tag to compare

Changelog

BREAKING CHANGES

We dropped support for Terraform pre 1.0 and GitHub Terraform Provider pre 4.0.
In addition we changed to the integrations/github official GitHub Terraform Provider.
This needs migration actions if you already used this module with the hashicorp/github provider and want to upgrade.

Migration from previous versions

To migrate from a previous version, please ensure that you are using the
integrations/github official GitHub Terraform Provider.

terraform {
  required_version = "~> 1.0"

  required_providers {
    github = {
      source  = "integrations/github"
      version = "~> 4.0"
    }
  }
}

Once you've updated the provider, a manual state migration is required to
migrate existing resources to the new provider.
The following command will replace the provider in the state.

terraform state replace-provider registry.terraform.io/hashicorp/github registry.terraform.io/integrations/github

After you've migrated the state, please run
terrafrm init to apply the changes to the resources.

Added

  • Add support for Official GitHub Terraform Provider integrations/github

Removed

  • Removed support for Terraform < 1.0
  • Removed support for GitHub Provider < 4.0
  • Removed compatibility to Hashicorp GitHub Terraform Provider hashicorp/github

v0.6.0

29 Jun 21:16
f655128
Compare
Choose a tag to compare

Changelog

Added

  • Add support for Terraform v1

v0.5.0

23 May 08:21
aa53cd2
Compare
Choose a tag to compare

Added

  • Add support for Terraform v0.15

v0.4.1

07 May 16:36
0441868
Compare
Choose a tag to compare

Added

  • Add optional safeguard to validate if a GitHub user exists before trying to add it to the organization

v0.4.0

28 Apr 22:12
612b28e
Compare
Choose a tag to compare

Added

  • Add support for Github Provider v4.x

v0.3.0

26 Dec 18:59
4f280b3
Compare
Choose a tag to compare

Added

  • Add support for Terraform v0.14.x

v0.2.0

20 Sep 13:50
9589318
Compare
Choose a tag to compare

Added

  • Add support for Terraform v0.13.x
  • Add support for Terraform Github Provider v3.x
  • Prepare support for Terraform v0.14.x (needs terraform v0.12.20 or above)

v0.1.4

23 Jul 21:04
5bb46f5
Compare
Choose a tag to compare

Changelog

Added

  • Add CHANGELOG.md.

Changed

  • Switch CI from SemaphoreCI to GitHub Actions.