Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package terraform for openSUSE:Factory 
checked in at 2021-12-27 16:07:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/terraform (Old)
 and      /work/SRC/openSUSE:Factory/.terraform.new.2520 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "terraform"

Mon Dec 27 16:07:21 2021 rev:27 rq:942719 version:1.1.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/terraform/terraform.changes      2021-10-21 
23:56:06.652043528 +0200
+++ /work/SRC/openSUSE:Factory/.terraform.new.2520/terraform.changes    
2021-12-27 16:07:29.957704804 +0100
@@ -1,0 +2,67 @@
+Thu Dec  9 11:54:23 UTC 2021 - Marcus Hann <mar...@hhra.uk>
+
+- Update to 1.1.0
+  Terraform v1.1.0 is a new minor release, containing some new features and 
some bug fixes whose scope was too large for inclusion in a patch release.
+
+  NEW FEATURES:
+  * `moved` blocks for refactoring within modules: Module authors can now 
record in module source code whenever they've changed the address of a resource 
or resource instance, and then during planning Terraform will automatically 
migrate existing objects in the state to new addresses.
+
+      This therefore avoids the need for users of a shared module to manually 
run `terraform state mv` after upgrading to a version of the module, as long as 
the change is expressible as static configuration. However, `terraform state 
mv` will remain available for use in more complex migration situations that are 
not well-suited to declarative configuration.
+* A new `cloud` block in the `terraform` settings block introduces a native 
Terraform Cloud integration for the [CLI-driven run 
workflow](https://www.terraform.io/docs/cloud/run/cli.html).
+
+    The Cloud integration includes several enhancements, including per-run 
variable support using the `-var` flag, the ability to map Terraform Cloud 
workspaces to the current configuration via [Workspace 
Tags](https://www.terraform.io/docs/cloud/api/workspaces.html#get-tags), and an 
improved user experience for Terraform Cloud and Enterprise users with 
actionable error messages and prompts.
+  * `terraform plan` and `terraform apply` both now include additional 
annotations for resource instances planned for deletion to explain why 
Terraform has proposed that action.
+
+      For example, if you change the `count` argument for a resource to a 
lower number then Terraform will now mention that as part of proposing to 
destroy any existing objects that exceed the new count.
+
+  UPGRADE NOTES:
+  This release is covered by the [Terraform v1.0 Compatibility 
Promises](https://www.terraform.io/docs/language/v1-compatibility-promises.html),
 but does include some changes permitted within those promises as described 
below.
+
+  * Terraform on macOS now requires macOS 10.13 High Sierra or later; Older 
macOS versions are no longer supported.
+  * The `terraform graph` command no longer supports `-type=validate` and 
`-type=eval` options. The validate graph is always the same as the plan graph 
anyway, and the "eval" graph was just an implementation detail of the 
`terraform console` command. The default behavior of creating a plan graph 
should be a reasonable replacement for both of the removed graph modes. (Please 
note that `terraform graph` is not covered by the Terraform v1.0 compatibility 
promises, because its behavior inherently exposes Terraform Core implementation 
details, so we recommend it only for interactive debugging tasks and not for 
use in automation.)
+  * `terraform apply` with a previously-saved plan file will now verify that 
the provider plugin packages used to create the plan fully match the ones used 
during apply, using the same checksum scheme that Terraform normally uses for 
the dependency lock file. Previously Terraform was checking consistency of 
plugins from a plan file using a legacy mechanism which covered only the main 
plugin executable, not any other files that might be distributed alongside in 
the plugin package.
+
+      This additional check should not affect typical plugins that conform to 
the expectation that a plugin package's contents are immutable once released, 
but may affect a hypothetical in-house plugin that intentionally modifies extra 
files in its package directory somehow between plan and apply. If you have such 
a plugin, you'll need to change its approach to store those files in some other 
location separate from the package directory. This is a minor compatibility 
break motivated by increasing the assurance that plugins have not been 
inadvertently or maliciously modified between plan and apply.
+  * `terraform state mv` will now error when legacy `-backup` or `-backup-out` 
options are used without the `-state` option on non-local backends. These 
options operate on a local state file only. Previously, these options were 
accepted but ignored silently when used with non-local backends. 
+  * In the AzureRM backend, the new opt-in option `use_microsoft_graph` 
switches to using MSAL authentication tokens and Microsoft Graph rather than 
using ADAL tokens and Azure Active Directory Graph, which is now [deprecated by 
Microsoft](https://docs.microsoft.com/en-us/graph/migrate-azure-ad-graph-faq). 
The new mode will become the default in Terraform v1.2, so please plan to 
migrate to using this setting and test with your own Azure AD tenant prior to 
the Terraform v1.2 release.
+
+  ENHANCEMENTS:
+  * config: Terraform now checks the syntax of and normalizes module source 
addresses (the `source` argument in `module` blocks) during configuration 
decoding rather than only at module installation time. This is largely just an 
internal refactoring, but a visible benefit of this change is that the 
`terraform init` messages about module downloading will now show the canonical 
module package address Terraform is downloading from, after interpreting the 
special shorthands for common cases like GitHub URLs. 
([#28854](https://github.com/hashicorp/terraform/issues/28854))
+  * config: Variables can now be declared as "nullable", which defines whether 
a variable can be null within a module. Setting `nullable = false` ensures that 
a variable value will never be `null`, and may instead take on the variable's 
default value if the caller sets it explicitly to `null`. 
([#29832](https://github.com/hashicorp/terraform/issues/29832))
+  * `terraform plan` and `terraform apply`: When Terraform plans to destroy a 
resource instance due to it no longer being declared in the configuration, the 
proposed plan output will now include a note hinting at what situation prompted 
that proposal, so you can more easily see what configuration change might avoid 
the object being destroyed. 
([#29637](https://github.com/hashicorp/terraform/pull/29637))
+  * `terraform plan` and `terraform apply`: Terraform will now report 
explicitly in the UI if it automatically moves a resource instance to a new 
address as a result of adding or removing the `count` argument from an existing 
resource. For example, if you previously had `resource "aws_subnet" "example"` 
_without_ `count`, you might have `aws_subnet.example` already bound to a 
remote object in your state. If you add `count = 1` to that resource then 
Terraform would previously silently rebind the object to 
`aws_subnet.example[0]` as part of planning, whereas now Terraform will mention 
that it did so explicitly in the plan description. 
([#29605](https://github.com/hashicorp/terraform/issues/29605))
+  * `terraform workspace delete`: will now allow deleting a workspace whose 
state contains only data resource instances and output values, without running 
`terraform destroy` first. Previously the presence of data resources would 
require using `-force` to override the safety check guarding against 
accidentally forgetting about remote objects, but a data resource is not 
responsible for the management of its associated remote object(s) and so 
there's no reason to require explicit deletion. 
([#29754](https://github.com/hashicorp/terraform/issues/29754))
+  * `terraform validate`: Terraform now uses precise type information for 
resources during config validation, allowing more problems to be caught that 
that step rather than only during the planning step. 
([#29862](https://github.com/hashicorp/terraform/issues/29862))
+  * provisioner/remote-exec and provisioner/file: When using SSH agent 
authentication mode on Windows, Terraform can now detect and use [the Windows 
10 built-in OpenSSH 
Client](https://devblogs.microsoft.com/powershell/using-the-openssh-beta-in-windows-10-fall-creators-update-and-windows-server-1709/)'s
 SSH Agent, when available, in addition to the existing support for the 
third-party solution [Pageant](https://documentation.help/PuTTY/pageant.html) 
that was already supported. 
([#29747](https://github.com/hashicorp/terraform/issues/29747))
+  * cli: `terraform state mv` will now return an error for `-backup` or 
`-backup-out` options used without the `-state` option, unless the working 
directory is initialized to use the local backend. Previously Terraform would 
silently ignore those options, since they are applicable only to the local 
backend. ([#27908](https://github.com/hashicorp/terraform/issues/27908))
+  * `terraform console`: now has a new `type()` function, available only in 
the interactive console, for inspecting the exact type of a particular value as 
an aid to debugging. 
([#28501](https://github.com/hashicorp/terraform/issues/28501))
+
+  BUG FIXES:
+  * config: `ignore_changes = all` now works in override files. 
([#29849](https://github.com/hashicorp/terraform/issues/29849))
+  * config: Upgrading an unknown single value to a list using a splat 
expression now correctly returns an unknown value and type. Previously it would 
sometimes "overpromise" a particular return type, leading to an inconsistency 
error during the apply step. 
([#30062](https://github.com/hashicorp/terraform/issues/30062))
+  * config: Terraform is now more precise in its detection of data resources 
that must be deferred to the apply step due to their `depends_on` arguments 
referring to not-yet-converged managed resources. 
([#29682](https://github.com/hashicorp/terraform/issues/29682))
+  * config: `ignore_changes` can no longer cause a null map to be converted to 
an empty map, which would otherwise potentially cause surprising side-effects 
in provider logic. 
([#29928](https://github.com/hashicorp/terraform/issues/29928))
+  * core: Provider configuration obtained from interactive prompts will now be 
merged properly with settings given in the configuration. Previously this 
merging was incorrect in some cases. 
([#29000](https://github.com/hashicorp/terraform/issues/29000))
+  * `terraform plan`: Improved rendering of changes inside attributes that 
accept lists, sets, or maps of nested object types. 
([#29827](https://github.com/hashicorp/terraform/issues/29827), 
[#29983](https://github.com/hashicorp/terraform/issues/29983), 
[#29986](https://github.com/terraform/issues/29986))
+  * `terraform apply`: Will no longer try to apply a stale plan that was 
generated against an originally-empty state. Previously this was an unintended 
exception to the rule that a plan can only be applied to the state snapshot it 
was generated against. 
([#29755](https://github.com/hashicorp/terraform/issues/29755))
+  * `terraform show -json`: Attributes that are declared as using the legacy 
[Attributes as 
Blocks](https://www.terraform.io/docs/language/attr-as-blocks.html) behavior 
are now represented more faithfully in the JSON plan output. 
([#29522](https://github.com/hashicorp/terraform/issues/29522))
+  * `terraform init`: Will now update the backend configuration hash value at 
a more approprimate time, to ensure properly restarting a backend migration 
process that failed on the first attempt. 
([#29860](https://github.com/hashicorp/terraform/issues/29860))
+  * backend/oss: Flatten `assume_role` block arguments, so that they are more 
compatible with the `terraform_remote_state` data source. 
([#29307](https://github.com/hashicorp/terraform/issues/29307))
+
+-------------------------------------------------------------------
+Wed Dec  8 11:56:23 UTC 2021 - Marcus Hann <mar...@hhra.uk>
+
+- Update to 1.0.11
+  ENHANCEMENTS:
+  * backend/oss: Added support for sts_endpoint (#29841)
+  BUG FIXES:
+  * config: Fixed a bug in which ignore_changes = all would not work in 
override files (#29849) 
+  * config: Numbers are now compared for equality based on their protocol 
representation, eliminating unexpected changes due to small precision errors 
(#29864)
+- from version 1.0.10
+  BUG FIXES:
+  * backend/oss: Fix panic when there's an error looking up OSS endpoints 
(#29784)
+  * backend/remote: Fix version check when migrating state (#29793)
+  * cli: Restore -lock and -lock-timeout flags for the init command, which 
were removed in 0.15.0 (#29773)
+  * cli: Fix bug where terraform init -input=false would hang waiting for user 
input to choose a workspace (#29805)
+
+-------------------------------------------------------------------

Old:
----
  terraform-1.0.9.obscpio
  terraform-1.0.9.tar.gz

New:
----
  terraform-1.1.0.obscpio
  terraform-1.1.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ terraform.spec ++++++
--- /var/tmp/diff_new_pack.gYTPAP/_old  2021-12-27 16:07:31.981706240 +0100
+++ /var/tmp/diff_new_pack.gYTPAP/_new  2021-12-27 16:07:31.985706243 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           terraform
-Version:        1.0.9
+Version:        1.1.0
 Release:        0
 Summary:        Tool for building infrastructure safely and efficiently
 License:        MPL-2.0

++++++ _service ++++++
--- /var/tmp/diff_new_pack.gYTPAP/_old  2021-12-27 16:07:32.029706275 +0100
+++ /var/tmp/diff_new_pack.gYTPAP/_new  2021-12-27 16:07:32.033706278 +0100
@@ -3,8 +3,8 @@
     <param name="url">https://github.com/hashicorp/terraform</param>
     <param name="scm">git</param>
     <param name="filename">terraform</param>
-    <param name="versionformat">1.0.9</param>
-    <param name="revision">v1.0.9</param>
+    <param name="versionformat">1.1.0</param>
+    <param name="revision">v1.1.0</param>
     <param name="exclude">.git</param>
   </service>
   <service name="tar" mode="disabled"/>
@@ -16,7 +16,7 @@
     <param name="basename">terraform</param>
   </service>
   <service name="go_modules" mode="disabled">
-    <param name="archive">terraform-1.0.9.tar.gz</param>
+    <param name="archive">terraform-1.1.0.tar.gz</param>
   </service>
 </services>
 

++++++ terraform-1.0.9.obscpio -> terraform-1.1.0.obscpio ++++++
/work/SRC/openSUSE:Factory/terraform/terraform-1.0.9.obscpio 
/work/SRC/openSUSE:Factory/.terraform.new.2520/terraform-1.1.0.obscpio differ: 
char 28, line 1

++++++ terraform-1.0.9.tar.gz -> terraform-1.1.0.tar.gz ++++++
++++ 81950 lines of diff (skipped)

++++++ terraform.obsinfo ++++++
--- /var/tmp/diff_new_pack.gYTPAP/_old  2021-12-27 16:07:32.977706948 +0100
+++ /var/tmp/diff_new_pack.gYTPAP/_new  2021-12-27 16:07:32.977706948 +0100
@@ -1,6 +1,6 @@
 name: terraform
-version: 1.0.9
-mtime: 1634146029
-commit: cdf8299ce27e1bfa7782d8ea7d7334c38fae9315
+version: 1.1.0
+mtime: 1638997663
+commit: 213488637fdb75828e4b5729bab95c489241a9aa
 
 

++++++ vendor.tar.gz ++++++
/work/SRC/openSUSE:Factory/terraform/vendor.tar.gz 
/work/SRC/openSUSE:Factory/.terraform.new.2520/vendor.tar.gz differ: char 5, 
line 1

Reply via email to