File tree Expand file tree Collapse file tree 3 files changed +14
-29
lines changed Expand file tree Collapse file tree 3 files changed +14
-29
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 0.18.0]
11
+
12
+ ### Added
13
+
14
+ - Add support for v4 branch protections.
15
+
16
+ ### Removed
17
+
18
+ - BREAKING CHANGE: Remove deprectated variable ` branch_protections ` please use ` branch_protections_v3 ` instead.
19
+
10
20
## [ 0.17.0]
11
21
12
22
### Added
@@ -385,7 +395,8 @@ Please review plans and report regressions and issues asap so we can improve doc
385
395
- This is the initial release of our GitHub Repository module with support for
386
396
creating and managing GitHub Repositories for Organizations.
387
397
388
- [ unreleased ] : https://github.com/mineiros-io/terraform-github-repository/compare/v0.17.0...HEAD
398
+ [ unreleased ] : https://github.com/mineiros-io/terraform-github-repository/compare/v0.18.0...HEAD
399
+ [ 0.18.0 ] : https://github.com/mineiros-io/terraform-github-repository/compare/v0.17.0...v0.18.0
389
400
[ 0.17.0 ] : https://github.com/mineiros-io/terraform-github-repository/compare/v0.16.2...v0.17.0
390
401
[ 0.16.2 ] : https://github.com/mineiros-io/terraform-github-repository/compare/v0.16.1...v0.16.2
391
402
[ 0.16.1 ] : https://github.com/mineiros-io/terraform-github-repository/compare/v0.16.0...v0.16.1
Original file line number Diff line number Diff line change @@ -104,25 +104,12 @@ Most basic usage creating a new private github repository.
104
104
``` hcl
105
105
module "repository" {
106
106
source = "mineiros-io/repository/github"
107
- version = "~> 0.16 .0"
107
+ version = "~> 0.18 .0"
108
108
109
109
name = "terraform-github-repository"
110
110
license_template = "apache-2.0"
111
111
gitignore_template = "Terraform"
112
112
}
113
-
114
- provider "github" {}
115
-
116
- terraform {
117
- required_version = "~> 1.0"
118
-
119
- required_providers {
120
- github = {
121
- source = "integrations/github"
122
- version = "~> 4.0"
123
- }
124
- }
125
- }
126
113
```
127
114
128
115
## Module Argument Reference
Original file line number Diff line number Diff line change @@ -109,25 +109,12 @@ section {
109
109
```hcl
110
110
module "repository" {
111
111
source = "mineiros-io/repository/github"
112
- version = "~> 0.16 .0"
112
+ version = "~> 0.18 .0"
113
113
114
114
name = "terraform-github-repository"
115
115
license_template = "apache-2.0"
116
116
gitignore_template = "Terraform"
117
117
}
118
-
119
- provider "github" {}
120
-
121
- terraform {
122
- required_version = "~> 1.0"
123
-
124
- required_providers {
125
- github = {
126
- source = "integrations/github"
127
- version = "~> 4.0"
128
- }
129
- }
130
- }
131
118
```
132
119
END
133
120
}
You can’t perform that action at this time.
0 commit comments