-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into service-account-description
- Loading branch information
Showing
179 changed files
with
5,924 additions
and
1,415 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{{- $notes := newStringList -}} | ||
{{- $unknown := newStringList -}} | ||
{{- $breaking := newStringList -}} | ||
{{- $deprecations := newStringList -}} | ||
{{- $features := newStringList -}} | ||
{{- $improvements := newStringList -}} | ||
{{- $bugs := newStringList -}} | ||
{{- range . -}} | ||
{{if eq "note" .Type -}} | ||
{{$notes = append $notes (renderReleaseNote .) -}} | ||
{{else if eq "breaking-change" .Type -}} | ||
{{$breaking = append $breaking (renderReleaseNote .) -}} | ||
{{else if eq "deprecation" .Type -}} | ||
{{$deprecations = append $deprecations (renderReleaseNote .) -}} | ||
{{else if or (eq "new-resource" .Type) (eq "new-datasource" .Type) (eq "feature" .Type) -}} | ||
{{$features = append $features (renderReleaseNote .) -}} | ||
{{else if or (eq "improvement" .Type) (eq "enhancement" .Type) -}} | ||
{{$improvements = append $improvements (renderReleaseNote .) -}} | ||
{{ else if eq "bug" .Type -}} | ||
{{$bugs = append $bugs (renderReleaseNote .) -}} | ||
{{ else -}} | ||
{{$unknown = append $unknown (renderReleaseNote .) -}} | ||
{{end -}} | ||
{{- end -}} | ||
{{- if gt (len $unknown) 0 -}} | ||
UNKNOWN CHANGELOG TYPE: | ||
{{range $unknown | sortAlpha -}} | ||
* {{. }} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- if gt (len $notes) 0 -}} | ||
NOTES: | ||
{{range $notes | sortAlpha -}} | ||
* {{. }} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- if gt (len $deprecations) 0 -}} | ||
DEPRECATIONS: | ||
{{range $deprecations | sortAlpha -}} | ||
* {{. }} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- if gt (len $breaking) 0 -}} | ||
BREAKING CHANGES: | ||
{{range $breaking | sortAlpha -}} | ||
* {{. }} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- if gt (len $features) 0}} | ||
FEATURES: | ||
{{range $features | sortAlpha -}} | ||
* {{. }} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- if gt (len $improvements) 0}} | ||
IMPROVEMENTS: | ||
{{range $improvements | sortAlpha -}} | ||
* {{. }} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- if gt (len $bugs) 0}} | ||
BUG FIXES: | ||
{{range $bugs | sortAlpha -}} | ||
* {{. }} | ||
{{- end -}} | ||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
resource_compute_instance.go | ||
resource_container_cluster.go | ||
resource_container_node_pool.go | ||
resource_google_project.go | ||
resource_sql_database_instance.go.erb | ||
resource_storage_bucket.go | ||
iam_folder.go | ||
iam_organization.go | ||
iam_project.go | ||
iam_project.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{{if eq "new-resource" .Type}}**New Resource:** {{else if eq "new-data-source" .Type}}**New Data Source:** {{ end }}{{.Text }} ([#{{- .PRNumber -}}]({{- .PRURL -}})) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ run: | |
params: | ||
PROVIDER_NAME: "" | ||
TEST_DIR: "" | ||
SUBDIR: "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ansible
updated
from e5ab36 to 424109
Submodule terraform
updated
from dbce9a to a0fb67
Submodule terraform-beta
updated
from 637b8c to 855308
Submodule terraform-mapper
updated
21 files
+98 −0 | google/appengine_application_url_dispatch_rules.go | |
+10 −0 | google/appengine_standard_app_version.go | |
+10 −0 | google/cloudbuild_trigger.go | |
+7 −1 | google/compute_autoscaler.go | |
+9 −0 | google/compute_backend_service.go | |
+12 −4 | google/compute_forwarding_rule.go | |
+10 −5 | google/compute_health_check.go | |
+3 −0 | google/compute_image.go | |
+3 −0 | google/compute_region_disk.go | |
+1 −1 | google/compute_router.go | |
+3 −0 | google/compute_target_https_proxy.go | |
+6 −2 | google/compute_target_instance.go | |
+3 −0 | google/compute_target_ssl_proxy.go | |
+7 −1 | google/compute_vpn_tunnel.go | |
+7 −7 | google/config.go | |
+1,609 −0 | google/container.go | |
+15 −13 | google/image.go | |
+41 −0 | google/pubsub_subscription.go | |
+11 −9 | google/storage_bucket.go | |
+52 −0 | google/storage_bucket_iam.go | |
+33 −0 | google/utils.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.