nrkno / terraform-provider-lastpass

Terraform Lastpass provider
Apache License 2.0
61 stars 7 forks source link

build(deps): bump github.com/hashicorp/terraform from 0.12.13 to 0.12.16 #10

Closed dependabot-preview[bot] closed 4 years ago

dependabot-preview[bot] commented 4 years ago

Bumps github.com/hashicorp/terraform from 0.12.13 to 0.12.16.

Release notes *Sourced from [github.com/hashicorp/terraform's releases](https://github.com/hashicorp/terraform/releases).* > ## v0.12.16 > ## 0.12.16 (November 18, 2019) > > NEW FEATURES: > > * lang/funcs: Add `trim*` functions > > BUG FIXES: > > * command/0.12upgrade: fix panic when int value is out of range ([#23394](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23394)) > * core: fix cycle between dependencies with create_before_destroy ([#23399](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23399)) > * backend/remote: default .terraformignore paths will now work on Windows ([#23311](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23311)) > > ## v0.12.15 > BUG FIXES: > > * various commands: Fixed errant error "Initialization required. Please see the error message above." ([#23383](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23383)) > > The error was produced on some of Terraform's subcommands (in particular `terraform show` and `terraform output`, but possibly others) if a warning was emitted during configuration loading and if a `backend` block was present. This issue has been present since v0.12.0 for any configuration that produces configuration-related deprecation warnings, but it became more visible in v0.12.14 due to the addition of several more situations that could produce warnings. > > ## v0.12.14 > UPGRADE NOTES: > > * Terraform v0.12.0 included several changes to the Terraform language involving making expressions, type constraints, keywords, and references first-class in the language syntax, removing the need for placing thee items either in quoted strings or in interpolation syntax. Terraform v0.11 required these items to be quoted because the underlying language could not represent them any other way, while Terraform v0.12 expects them to be unquoted in order to improve readability. > > We have been accepting both forms for backward-compatibility with existing configurations and examples since the inititial v0.12.0 release. Having maintained compatibility for both forms for several versions we are now beginning the deprecation cycle for the old usage by having Terraform emit deprecation warnings. > > Terraform will still accept the older forms in spite of these warnings, so no immediate action is required. If your modules are targeting Terraform v0.12.0 and later exclusively, you can silence the warnings by removing the quotes, as directed in the warning message. In a future major version of Terraform, some of these warnings will be elevated to be errors. > > The summary of the warning for these situations will be one of the following: > > * **Interpolation-only expressions are deprecated:** an expression like `"${foo}"` should be rewritten as just `foo`. > * **Quoted type constraints are deprecated:** In a `variable` block, a type constraint `"map"` should be written as `map(string)`, `"list"` as `list(string)`, and `"string"` as just `string`. > * **Quoted keywords are deprecated:** In certain contexts that expect special keywords, such as `when` in `provisioner` blocks, the keyword should be unquoted. > * **Quoted references are deprecated:** In the `depends_on` and `ignore_changes` meta-arguments, quoted references like `"aws_instance.foo"` should be rewritten without the quotes, e.g. as `aws_instance.foo`. > > The above changes are made automatically by the upgrade tool for users who are [upgrading from Terraform 0.11](https://www.terraform.io/upgrade-guides/index.html). These warnings are intended to help those who are using Terraform for the first time at Terraform 0.12 but who may have found examples online that are written for older versions of Terraform, in order to guide towards the modern Terraform style. > > * The `terraform output` command would formerly treat no outputs at all as an error, exiting with a non-zero status. Since it's expected for some root modules to have no outputs, the command now returns with success status zero in this situation, but still returns the error on stderr as a compromise to provide an explanation for why nothing is being shown. > > ENHANCEMENTS: > > * config: Redundant interpolation syntax for attribute values and legacy (0.11-style) variable type constrants will now emit deprecation warnings. ([#23348](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23348)) > * config: Keywords and references in `depends_on`, `ignore_changes`, and in provisioner `when` and `on_failure` will now emit deprecation warnings. ([#23329](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23329)) > * command/output: Now treats no defined outputs as a success case rather than an error case, returning exit status zero instead of non-zero. ([#23008](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23008)] [[#21136](https://github-redirect.dependabot.com/hashicorp/terraform/issues/21136)) > * backend/artifactory: Will now honor the `HTTP_PROXY` and `HTTPS_PROXY` environment variables when appropriate, to allow sending requests to the Artifactory endpoints via a proxy. ([#18629](https://github-redirect.dependabot.com/hashicorp/terraform/issues/18629)) > > BUG FIXES: > > * backend/remote: Filter environment variables when loading context for remote backend ([#23283](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23283)) > ... (truncated)
Changelog *Sourced from [github.com/hashicorp/terraform's changelog](https://github.com/hashicorp/terraform/blob/master/CHANGELOG.md).* > ## 0.12.16 (November 18, 2019) > > NEW FEATURES: > > * lang/funcs: Add `trim*` functions > > BUG FIXES: > > * command/0.12upgrade: fix panic when int value is out of range ([#23394](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23394)) > * core: fix cycle between dependencies with create_before_destroy ([#23399](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23399)) > * backend/remote: default .terraformignore paths will now work on Windows ([#23311](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23311)) > > ## 0.12.15 (November 14, 2019) > > BUG FIXES: > > * various commands: Fixed errant error "Initialization required. Please see the error message above." ([#23383](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23383)) > > The error was produced on some of Terraform's subcommands (in particular `terraform show` and `terraform output`, but possibly others) if a warning was emitted during configuration loading and if a `backend` block was present. This issue has been present since v0.12.0 for any configuration that produces configuration-related deprecation warnings, but it became more visible in v0.12.14 due to the addition of several more situations that could produce warnings. > > ## 0.12.14 (November 13, 2019) > > UPGRADE NOTES: > > * Terraform v0.12.0 included several changes to the Terraform language involving making expressions, type constraints, keywords, and references first-class in the language syntax, removing the need for placing thee items either in quoted strings or in interpolation syntax. Terraform v0.11 required these items to be quoted because the underlying language could not represent them any other way, while Terraform v0.12 expects them to be unquoted in order to improve readability. > > We have been accepting both forms for backward-compatibility with existing configurations and examples since the inititial v0.12.0 release. Having maintained compatibility for both forms for several versions we are now beginning the deprecation cycle for the old usage by having Terraform emit deprecation warnings. > > Terraform will still accept the older forms in spite of these warnings, so no immediate action is required. If your modules are targeting Terraform v0.12.0 and later exclusively, you can silence the warnings by removing the quotes, as directed in the warning message. In a future major version of Terraform, some of these warnings will be elevated to be errors. > > The summary of the warning for these situations will be one of the following: > > * **Interpolation-only expressions are deprecated:** an expression like `"${foo}"` should be rewritten as just `foo`. > * **Quoted type constraints are deprecated:** In a `variable` block, a type constraint `"map"` should be written as `map(string)`, `"list"` as `list(string)`, and `"string"` as just `string`. > * **Quoted keywords are deprecated:** In certain contexts that expect special keywords, such as `when` in `provisioner` blocks, the keyword should be unquoted. > * **Quoted references are deprecated:** In the `depends_on` and `ignore_changes` meta-arguments, quoted references like `"aws_instance.foo"` should be rewritten without the quotes, e.g. as `aws_instance.foo`. > > The above changes are made automatically by the upgrade tool for users who are [upgrading from Terraform 0.11](https://www.terraform.io/upgrade-guides/index.html). These warnings are intended to help those who are using Terraform for the first time at Terraform 0.12 but who may have found examples online that are written for older versions of Terraform, in order to guide towards the modern Terraform style. > > * The `terraform output` command would formerly treat no outputs at all as an error, exiting with a non-zero status. Since it's expected for some root modules to have no outputs, the command now returns with success status zero in this situation, but still returns the error on stderr as a compromise to provide an explanation for why nothing is being shown. > > ENHANCEMENTS: > > * config: Redundant interpolation syntax for attribute values and legacy (0.11-style) variable type constrants will now emit deprecation warnings. ([#23348](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23348)) > * config: Keywords and references in `depends_on`, `ignore_changes`, and in provisioner `when` and `on_failure` will now emit deprecation warnings. ([#23329](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23329)) > * command/output: Now treats no defined outputs as a success case rather than an error case, returning exit status zero instead of non-zero. ([#23008](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23008)] [[#21136](https://github-redirect.dependabot.com/hashicorp/terraform/issues/21136)) > * backend/artifactory: Will now honor the `HTTP_PROXY` and `HTTPS_PROXY` environment variables when appropriate, to allow sending requests to the Artifactory endpoints via a proxy. ([#18629](https://github-redirect.dependabot.com/hashicorp/terraform/issues/18629)) > > BUG FIXES: > > ... (truncated)
Commits - [`d54ddd5`](https://github.com/hashicorp/terraform/commit/d54ddd5dc930cb3c926c37a1f4f5fb6eaae9b7bb) v0.12.16 - [`c8857bf`](https://github.com/hashicorp/terraform/commit/c8857bf54ea68635382240c79d32f122b7def0c9) update CHANGELOG.md - [`5a113db`](https://github.com/hashicorp/terraform/commit/5a113db84c176be7c19c7659a186e8d51220d25e) Merge pull request [#23399](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23399) from hashicorp/jbardin/cbd-cycle - [`6af552b`](https://github.com/hashicorp/terraform/commit/6af552bea65fd6a2ae709477ba0670bec3b7faa0) website: interpolation: clean up more placeholder formatting - [`fa22084`](https://github.com/hashicorp/terraform/commit/fa22084e3a8e28fad470290bee7f4d0d2e93de63) website: interpolation.html.md: "module" is literal - [`33bef7c`](https://github.com/hashicorp/terraform/commit/33bef7c42e1931bdfa579ba54bd24b9fd3b17346) don't append refreshed state dependencies - [`9ddc9c7`](https://github.com/hashicorp/terraform/commit/9ddc9c79a442092be97a4b8be09c66b7d6d262e5) Update CHANGELOG.md - [`91100c0`](https://github.com/hashicorp/terraform/commit/91100c003c3207bba68fb9724addf698947f9a32) lang/funcs: Add more `trim*` functions ([#23016](https://github-redirect.dependabot.com/hashicorp/terraform/issues/23016)) - [`682083c`](https://github.com/hashicorp/terraform/commit/682083cdd185abdd7efb72c3d018ef59b570eff4) Creators cannot depend directly on CBD dest nodes - [`71f4526`](https://github.com/hashicorp/terraform/commit/71f4526ae5c0bc6d0813491f703d72c17443ea2a) failing test for cbd cycle - Additional commits viewable in [compare view](https://github.com/hashicorp/terraform/compare/v0.12.13...v0.12.16)


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)