Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package terraform-provider-template for openSUSE:Factory checked in at 2021-03-30 20:53:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/terraform-provider-template (Old) and /work/SRC/openSUSE:Factory/.terraform-provider-template.new.2401 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "terraform-provider-template" Tue Mar 30 20:53:04 2021 rev:4 rq:864248 version:2.2.0 Changes: -------- --- /work/SRC/openSUSE:Factory/terraform-provider-template/terraform-provider-template.changes 2020-11-26 23:16:22.437083271 +0100 +++ /work/SRC/openSUSE:Factory/.terraform-provider-template.new.2401/terraform-provider-template.changes 2021-03-30 20:53:32.136259950 +0200 @@ -1,0 +2,12 @@ +Mon Jan 18 15:35:00 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaub...@suse.com> + +- Update to version 2.2.0: + * Update CHANGELOG.md + * link to archive issue + * archive provider + * restore hashibot behaviors after org transfer + * enable go modules and vendoring in travis + * website: update syntax as "vars" is not a block + * Cleanup after v2.1.2 release + +------------------------------------------------------------------- Old: ---- terraform-provider-template-2.1.2.tar.gz New: ---- _service _servicedata terraform-provider-template-2.2.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ terraform-provider-template.spec ++++++ --- /var/tmp/diff_new_pack.4Ve8V8/_old 2021-03-30 20:53:32.768260659 +0200 +++ /var/tmp/diff_new_pack.4Ve8V8/_new 2021-03-30 20:53:32.772260663 +0200 @@ -1,7 +1,7 @@ # # spec file for package terraform-provider-template # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -50,7 +50,7 @@ %endif Name: terraform-provider-template -Version: 2.1.2 +Version: 2.2.0 Release: 0 Summary: Terraform template-provider License: MPL-2.0 ++++++ _service ++++++ <services> <service name="tar_scm" mode="disabled"> <param name="url">https://github.com/terraform-providers/terraform-provider-template</param> <param name="scm">git</param> <param name="filename">terraform-provider-template</param> <param name="versionformat">@PARENT_TAG@</param> <param name="versionrewrite-pattern">v(.*)</param> <param name="revision">v2.2.0</param> <param name="exclude">.git</param> <param name="changesgenerate">enable</param> <param name="changesauthor">adrian.glaub...@suse.com</param> </service> <service name="recompress" mode="disabled"> <param name="file">*.tar</param> <param name="compression">gz</param> </service> <service name="set_version" mode="disabled"> <param name="basename">terraform-provider-template</param> </service> </services> ++++++ _servicedata ++++++ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/terraform-providers/terraform-provider-template</param> <param name="changesrevision">920304d302170b4163ffedd858845cfec6cef667</param></service></servicedata>++++++ terraform-provider-template-2.1.2.tar.gz -> terraform-provider-template-2.2.0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/.gitignore new/terraform-provider-template-2.2.0/.gitignore --- old/terraform-provider-template-2.1.2/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,31 +0,0 @@ -*.dll -*.exe -.DS_Store -example.tf -terraform.tfplan -terraform.tfstate -bin/ -modules-dev/ -/pkg/ -website/.vagrant -website/.bundle -website/build -website/node_modules -.vagrant/ -*.backup -./*.tfstate -.terraform/ -*.log -*.bak -*~ -.*.swp -.idea -*.iml -*.test -*.iml - -website/vendor - -# Test exclusions -!command/test-fixtures/**/*.tfstate -!command/test-fixtures/**/.terraform/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/.hashibot.hcl new/terraform-provider-template-2.2.0/.hashibot.hcl --- old/terraform-provider-template-2.1.2/.hashibot.hcl 1970-01-01 01:00:00.000000000 +0100 +++ new/terraform-provider-template-2.2.0/.hashibot.hcl 2020-10-08 18:14:35.000000000 +0200 @@ -0,0 +1,53 @@ +behavior "regexp_issue_labeler" "panic_label" { + regexp = "panic:" + labels = ["crash", "bug"] +} + +behavior "regexp_issue_notifier" "panic_notify" { + regexp = "panic:" + slack_channel = env.COMMITTERS_SLACK_CHANNEL + message = "Panic report! https://github.com/${var.repository}/issues/${var.issue_number} has a panic in it." +} + +behavior "remove_labels_on_reply" "remove_stale" { + labels = ["waiting-response", "stale"] + only_non_maintainers = true +} + +behavior "pull_request_size_labeler" "size" { + label_prefix = "size/" + label_map = { + "size/XS" = { + from = 0 + to = 30 + } + "size/S" = { + from = 31 + to = 60 + } + "size/M" = { + from = 61 + to = 150 + } + "size/L" = { + from = 151 + to = 300 + } + "size/XL" = { + from = 301 + to = 1000 + } + "size/XXL" = { + from = 1001 + to = 0 + } + } +} + +behavior "pull_request_path_labeler" "cross_provider_labels" { + label_map = { + "documentation" = ["website/**/*"] + "dependencies" = ["vendor/**/*"] + } +} + diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/.travis.yml new/terraform-provider-template-2.2.0/.travis.yml --- old/terraform-provider-template-2.1.2/.travis.yml 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/.travis.yml 2020-10-08 18:14:35.000000000 +0200 @@ -6,7 +6,7 @@ go: - 1.11.x env: - GOFLAGS=-mod=vendor + - GO111MODULE=on GOFLAGS=-mod=vendor install: # This script is used by the Travis build to install a cookie for diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/CHANGELOG.md new/terraform-provider-template-2.2.0/CHANGELOG.md --- old/terraform-provider-template-2.1.2/CHANGELOG.md 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/CHANGELOG.md 2020-10-08 18:14:35.000000000 +0200 @@ -1,3 +1,7 @@ +## 2.2.0 (October 08, 2020) + +* Ship arm64 binary + ## 2.1.2 (May 01, 2019) * This release includes another upgrade of the Terraform SDK, primarily for the purposes of aligning versions with other providers prior to the v0.12.0 release. The changes in the SDK should not affect the behavior of this particular provider. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/README.md new/terraform-provider-template-2.2.0/README.md --- old/terraform-provider-template-2.1.2/README.md 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/README.md 2020-10-08 18:14:35.000000000 +0200 @@ -1,3 +1,19 @@ +<!-- archived-provider --> +This Terraform provider is archived, per our [provider archiving process](https://terraform.io/docs/internals/archiving.html). What does this mean? + +1. The code repository and all commit history will still be available. +1. Existing released binaries will remain available on the releases site. +1. Documentation will remain on the Terraform website. +1. Issues and pull requests are not being monitored. +1. New releases will not be published. + + +Please see https://github.com/hashicorp/terraform-provider-template/issues/85 and the documentation for recommended replacements. + +--- + +<!-- /archived-provider --> + Terraform Provider ================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/vendor/github.com/agext/levenshtein/.gitignore new/terraform-provider-template-2.2.0/vendor/github.com/agext/levenshtein/.gitignore --- old/terraform-provider-template-2.1.2/vendor/github.com/agext/levenshtein/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/vendor/github.com/agext/levenshtein/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,53 +0,0 @@ -# Ignore docs files -_gh_pages -_site - -# Ignore temporary files -README.html -coverage.out -.tmp - -# Numerous always-ignore extensions -*.diff -*.err -*.log -*.orig -*.rej -*.swo -*.swp -*.vi -*.zip -*~ - -# OS or Editor folders -._* -.cache -.DS_Store -.idea -.project -.settings -.tmproj -*.esproj -*.sublime-project -*.sublime-workspace -nbproject -Thumbs.db - -# Komodo -.komodotools -*.komodoproject - -# SCSS-Lint -scss-lint-report.xml - -# grunt-contrib-sass cache -.sass-cache - -# Jekyll metadata -docs/.jekyll-metadata - -# Folders to ignore -.build -.test -bower_components -node_modules diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/vendor/github.com/armon/go-radix/.gitignore new/terraform-provider-template-2.2.0/vendor/github.com/armon/go-radix/.gitignore --- old/terraform-provider-template-2.1.2/vendor/github.com/armon/go-radix/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/vendor/github.com/armon/go-radix/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,22 +0,0 @@ -# Compiled Object files, Static and Dynamic libs (Shared Objects) -*.o -*.a -*.so - -# Folders -_obj -_test - -# Architecture specific extensions/prefixes -*.[568vq] -[568vq].out - -*.cgo1.go -*.cgo2.c -_cgo_defun.c -_cgo_gotypes.go -_cgo_export.* - -_testmain.go - -*.exe diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/vendor/github.com/bgentry/speakeasy/.gitignore new/terraform-provider-template-2.2.0/vendor/github.com/bgentry/speakeasy/.gitignore --- old/terraform-provider-template-2.1.2/vendor/github.com/bgentry/speakeasy/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/vendor/github.com/bgentry/speakeasy/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,2 +0,0 @@ -example/example -example/example.exe diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/vendor/github.com/hashicorp/go-hclog/.gitignore new/terraform-provider-template-2.2.0/vendor/github.com/hashicorp/go-hclog/.gitignore --- old/terraform-provider-template-2.1.2/vendor/github.com/hashicorp/go-hclog/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/vendor/github.com/hashicorp/go-hclog/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1 +0,0 @@ -.idea* \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/vendor/github.com/hashicorp/go-plugin/.gitignore new/terraform-provider-template-2.2.0/vendor/github.com/hashicorp/go-plugin/.gitignore --- old/terraform-provider-template-2.1.2/vendor/github.com/hashicorp/go-plugin/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/vendor/github.com/hashicorp/go-plugin/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1 +0,0 @@ -.DS_Store diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/vendor/github.com/hashicorp/hcl/.gitignore new/terraform-provider-template-2.2.0/vendor/github.com/hashicorp/hcl/.gitignore --- old/terraform-provider-template-2.1.2/vendor/github.com/hashicorp/hcl/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/vendor/github.com/hashicorp/hcl/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,9 +0,0 @@ -y.output - -# ignore intellij files -.idea -*.iml -*.ipr -*.iws - -*.test diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/vendor/github.com/hashicorp/hil/.gitignore new/terraform-provider-template-2.2.0/vendor/github.com/hashicorp/hil/.gitignore --- old/terraform-provider-template-2.1.2/vendor/github.com/hashicorp/hil/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/vendor/github.com/hashicorp/hil/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,3 +0,0 @@ -.DS_Store -.idea -*.iml diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/vendor/github.com/hashicorp/logutils/.gitignore new/terraform-provider-template-2.2.0/vendor/github.com/hashicorp/logutils/.gitignore --- old/terraform-provider-template-2.1.2/vendor/github.com/hashicorp/logutils/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/vendor/github.com/hashicorp/logutils/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,22 +0,0 @@ -# Compiled Object files, Static and Dynamic libs (Shared Objects) -*.o -*.a -*.so - -# Folders -_obj -_test - -# Architecture specific extensions/prefixes -*.[568vq] -[568vq].out - -*.cgo1.go -*.cgo2.c -_cgo_defun.c -_cgo_gotypes.go -_cgo_export.* - -_testmain.go - -*.exe diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/vendor/github.com/hashicorp/yamux/.gitignore new/terraform-provider-template-2.2.0/vendor/github.com/hashicorp/yamux/.gitignore --- old/terraform-provider-template-2.1.2/vendor/github.com/hashicorp/yamux/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/vendor/github.com/hashicorp/yamux/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,23 +0,0 @@ -# Compiled Object files, Static and Dynamic libs (Shared Objects) -*.o -*.a -*.so - -# Folders -_obj -_test - -# Architecture specific extensions/prefixes -*.[568vq] -[568vq].out - -*.cgo1.go -*.cgo2.c -_cgo_defun.c -_cgo_gotypes.go -_cgo_export.* - -_testmain.go - -*.exe -*.test diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/vendor/github.com/jmespath/go-jmespath/.gitignore new/terraform-provider-template-2.2.0/vendor/github.com/jmespath/go-jmespath/.gitignore --- old/terraform-provider-template-2.1.2/vendor/github.com/jmespath/go-jmespath/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/vendor/github.com/jmespath/go-jmespath/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,4 +0,0 @@ -/jpgo -jmespath-fuzz.zip -cpu.out -go-jmespath.test diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/vendor/github.com/oklog/run/.gitignore new/terraform-provider-template-2.2.0/vendor/github.com/oklog/run/.gitignore --- old/terraform-provider-template-2.1.2/vendor/github.com/oklog/run/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/vendor/github.com/oklog/run/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,14 +0,0 @@ -# Binaries for programs and plugins -*.exe -*.dll -*.so -*.dylib - -# Test binary, build with `go test -c` -*.test - -# Output of the go coverage tool, specifically when used with LiteIDE -*.out - -# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736 -.glide/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/vendor/github.com/posener/complete/.gitignore new/terraform-provider-template-2.2.0/vendor/github.com/posener/complete/.gitignore --- old/terraform-provider-template-2.1.2/vendor/github.com/posener/complete/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/vendor/github.com/posener/complete/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,4 +0,0 @@ -.idea -coverage.txt -gocomplete/gocomplete -example/self/self diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/vendor/github.com/ulikunitz/xz/.gitignore new/terraform-provider-template-2.2.0/vendor/github.com/ulikunitz/xz/.gitignore --- old/terraform-provider-template-2.1.2/vendor/github.com/ulikunitz/xz/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/vendor/github.com/ulikunitz/xz/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,25 +0,0 @@ -# .gitignore - -TODO.html -README.html - -lzma/writer.txt -lzma/reader.txt - -cmd/gxz/gxz -cmd/xb/xb - -# test executables -*.test - -# profile files -*.out - -# vim swap file -.*.swp - -# executables on windows -*.exe - -# default compression test file -enwik8* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/vendor/golang.org/x/net/http2/.gitignore new/terraform-provider-template-2.2.0/vendor/golang.org/x/net/http2/.gitignore --- old/terraform-provider-template-2.1.2/vendor/golang.org/x/net/http2/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/vendor/golang.org/x/net/http2/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,2 +0,0 @@ -*~ -h2i/h2i diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/vendor/golang.org/x/sys/unix/.gitignore new/terraform-provider-template-2.2.0/vendor/golang.org/x/sys/unix/.gitignore --- old/terraform-provider-template-2.1.2/vendor/golang.org/x/sys/unix/.gitignore 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/vendor/golang.org/x/sys/unix/.gitignore 1970-01-01 01:00:00.000000000 +0100 @@ -1,2 +0,0 @@ -_obj/ -unix.test diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/website/docs/d/cloudinit_config.html.markdown new/terraform-provider-template-2.2.0/website/docs/d/cloudinit_config.html.markdown --- old/terraform-provider-template-2.1.2/website/docs/d/cloudinit_config.html.markdown 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/website/docs/d/cloudinit_config.html.markdown 2020-10-08 18:14:35.000000000 +0200 @@ -28,7 +28,7 @@ data "template_file" "script" { template = "${file("${path.module}/init.tpl")}" - vars { + vars = { consul_address = "${aws_instance.consul.private_ip}" } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/terraform-provider-template-2.1.2/website/docs/index.html.markdown new/terraform-provider-template-2.2.0/website/docs/index.html.markdown --- old/terraform-provider-template-2.1.2/website/docs/index.html.markdown 2019-05-01 19:50:38.000000000 +0200 +++ new/terraform-provider-template-2.2.0/website/docs/index.html.markdown 2020-10-08 18:14:35.000000000 +0200 @@ -8,6 +8,8 @@ # Template Provider +~> **This provider is deprecated.** We now recommend that you use one of the approaches in the Deprecation section below. + The template provider exposes data sources to use templates to generate strings for other Terraform resources or outputs. @@ -32,7 +34,18 @@ } ``` -For Terraform 0.12 and later, the `template_file` data source has been -superseded by [the `templatefile` function](/docs/configuration/functions/templatefile.html), -which can be used directly in expressions without creating a separate data -resource. +## Deprecation + +The template provider is deprecated and the provider has been archived in accordance with HashiCorp's [provider archiving process](https://terraform.io/docs/internals/archiving.html). While released versions of the provider will remain available, we recommend that you replace usages of this provider as follows. + +### `template_file` + +For Terraform 0.12 and later, the `template_file` data source has been superseded by [the `templatefile` function](/docs/configuration/functions/templatefile.html), which can be used directly in expressions without creating a separate data resource. + +### `template_dir` + +The [`hashicorp/dir/template`](https://registry.terraform.io/modules/hashicorp/dir/template) module offers an improved version of the functionality available in `template_dir`. + +### `template_cloudinit_config` + +This resource has been moved to a new provider, [`terraform-provider-cloudinit`](https://github.com/hashicorp/terraform-provider-cloudinit) as `cloudinit_config`, with no change in functionality.