Skip to content

Releases: mineiros-io/terraform-github-team

v0.9.0

20 Oct 13:59
31dcbc7
Compare
Choose a tag to compare

Added

  • Add support for Terraform GitHub Provider version 5.x

v0.8.0

12 Jan 02:01
5f605ed
Compare
Choose a tag to compare

Changelog

Added

  • Automatically remove maintainers from members to resolve conflicts on the fly
  • BREAKING CHANGE: Add support for module_enabled
  • BREAKING CHANGE: Drop support for broken terraform 1.1.0 and 1.1.1 which might corrupt terraform state.
  • BREAKING CHANGE: Drop inputs from outputs
  • Add support for default maintainer

v0.7.0

23 Nov 21:01
b31dec0
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

07 Jul 09:09
3a79f15
Compare
Choose a tag to compare

Changelog

Added

  • Added support for Terraform v1

v0.5.2

07 Jun 10:58
56045b1
Compare
Choose a tag to compare

Changelog

Fixed

  • Fix the bug where repo_maintain uses repo_admin to set maintain
    permissions and repo_triage uses repo_push to set triage permissions (thanks to @PavelSusloparov for providing this fix)

v0.5.1

04 Jun 06:46
66cbbae
Compare
Choose a tag to compare

Changelog

Added

  • Add support for admin, maintain and triage repositories permissions (thanks to @PavelSusloparov )

v0.5.0

22 May 04:26
0e285c4
Compare
Choose a tag to compare

Added

  • Add support for Terraform v0.15

Fixed

  • Preserve case of user names added to teams in plan output

v0.4.0

02 May 21:32
95fd7fd
Compare
Choose a tag to compare

Added

  • Add support for Github Provider v4

v0.3.1

28 Apr 21:43
46baf02
Compare
Choose a tag to compare

Changed

  • Tests now check for idem-potency after applying

Fixed

  • Fixed non-idem-potent applies when referencing repositories with uppercase letters in names (#31)

v0.3.0

26 Dec 19:01
c72708b
Compare
Choose a tag to compare

Added

  • Add support for Terraform v0.14.x