Skip to content

Commit ffeee30

Browse files
committed
Remove support for broken terraform github provider
1 parent 8d1db69 commit ffeee30

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.5.1]
10+
11+
### Fixed
12+
13+
- Remove support for Terraform Github Provider v3.1.0 as this version introduced undocumneted breaking changes. See https://github.com/terraform-providers/terraform-provider-github/issues/566 for details.
14+
815
### Changed
16+
917
- Adjust default branch in code to github new default branch naming
1018

1119
## [0.5.0]
@@ -119,9 +127,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
119127
creating and managing GitHub Repositories for Organizations.
120128

121129
<!-- markdown-link-check-disable -->
122-
[Unreleased]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.5.0...HEAD
123-
[0.5.0]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.4.2...v0.5.0
130+
131+
[unreleased]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.5.1...HEAD
132+
[0.5.1]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.5.0...v0.5.1
133+
124134
<!-- markdown-link-check-enable -->
135+
136+
[0.5.0]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.4.2...v0.5.0
125137
[0.4.2]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.4.1...v0.4.2
126138
[0.4.1]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.4.0...v0.4.1
127139
[0.4.0]: https://github.com/mineiros-io/terraform-github-repository/compare/v0.3.1...v0.4.0

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ terraform {
66
required_version = ">= 0.12.20, < 0.14"
77

88
required_providers {
9-
github = ">= 2.6, < 4.0"
9+
github = ">= 2.6, < 4.0, != 3.1.0"
1010
}
1111
}

0 commit comments

Comments
 (0)