Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency tflint to v0.53.0 #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 26, 2023

This PR contains the following updates:

Package Update Change
tflint minor 0.33.0 -> 0.53.0

Release Notes

terraform-linters/tflint (tflint)

v0.53.0

Compare Source

What's Changed

Enhancements
Bug Fixes
Chores

Full Changelog: terraform-linters/tflint@v0.52.0...v0.53.0

v0.52.0

Compare Source

What's Changed

Enhancements
Bug Fixes
Chores

Full Changelog: terraform-linters/tflint@v0.51.2...v0.52.0

v0.51.2

Compare Source

What's Changed

Full Changelog: terraform-linters/tflint@v0.51.1...v0.51.2

v0.51.1

Compare Source

What's Changed

Bug Fixes
Chores

Full Changelog: terraform-linters/tflint@v0.51.0...v0.51.1

v0.51.0

Compare Source

What's Changed

This release includes many new features including parallelization of recursion inspection and support for Terraform v1.8.

Also, please be aware that there are important changes regarding licensing. TFLint has updated the embedded Terraform package to the latest version for Terraform v1.6+ support. As a result, we will be affected by Terraform's license change to BUSL announced by Hashicorp in August 2023.

Most of the code in TFLint is still licensed under MPL 2.0, but some files under the Terraform package are now licensed under BUSL 1.1. This means that release binaries are bound by both licenses and may be subject to Hashicorp's BUSL restrictions. If you have concerns about this change, we recommend reviewing the licensing implications before updating. Please note that we cannot provide legal advice.

Please refer to the discussion in https://github.com/terraform-linters/tflint/discussions/1826 and https://github.com/terraform-linters/tflint/issues/1878 for details.

Enhancements
Changes
  • Add warnings to --module/--no-module and module attribute by @​wata727 in https://github.com/terraform-linters/tflint/pull/1951
    • If you see a warning, use --call-module-type instead. The --module is equivalent to --call-module-type=all and the --no-module is equivalent to --call-module-type=none. This also applies to .tflint.hcl.
Chores

New Contributors

Full Changelog: terraform-linters/tflint@v0.50.3...v0.51.0

v0.50.3

Compare Source

What's Changed

Full Changelog: terraform-linters/tflint@v0.50.2...v0.50.3

v0.50.2

Compare Source

What's Changed

Bug Fixes
Chores

Full Changelog: terraform-linters/tflint@v0.50.1...v0.50.2

v0.50.1

Compare Source

What's Changed

BugFixes

Full Changelog: terraform-linters/tflint@v0.50.0...v0.50.1

v0.50.0

Compare Source

What's Changed

Breaking Changes
  • Call local modules by default by @​wata727 in https://github.com/terraform-linters/tflint/pull/1918
    • Module inspection is now enabled by default for modules whose source is a relative path. Note that "module inspection" will be called "calling modules" after this change. See also https://github.com/terraform-linters/tflint/issues/1066
    • CLI flag --module has been changed to --call-module-type. For backward compatibility, --module will continue to work, but it will be removed in a future version, so we recommend migrating early. The same applies to the module attribute of the configuration file.
      • --module flag is replaced by --call-module-type=all and --no-module (previous default) is replaced by --call-module-type=none
    • For modules with many local module calls, this change may result in performance degradation. If this is not acceptable, you can keep the previous default by specifying --call-module-type=none.
  • Make assignments to undeclared variables an error by @​wata727 in https://github.com/terraform-linters/tflint/pull/1941
    • In line with Terraform behavior, assignments using the --var flag etc. to undeclared variables now result in an error. To avoid this, remove unnecessary variable assignments.
Enhancements
BugFixes
Chores

Full Changelog: terraform-linters/tflint@v0.49.0...v0.50.0

v0.49.0

Compare Source

What's Changed

Enhancements
Chores

New Contributors

Full Changelog: terraform-linters/tflint@v0.48.0...v0.49.0

v0.48.0

Compare Source

What's Changed

Breaking Changes
BugFixes
Chores

Full Changelog: terraform-linters/tflint@v0.47.0...v0.48.0

v0.47.0

Compare Source

This release introduces autofix feature. Running tflint --fix will automatically fix issues as possible. Note that not all rules support autofix. In order to support autofix, plugins must be built with SDK v0.17+ and implement autofix.

The bundled Terraform ruleset has been updated to v0.4.0 with autofix support. In other words, for Terraform rules, you can use autofix as it is. See the tflint-ruleset-terraform v0.4.0 changelog for details.

Breaking Changes
  • #​1749: plugin: Drop support for plugin SDK v0.12/v0.13 (@​wata727)
    • Plugins built using SDKs v0.12/v0.13 are no longer supported. If you get "SDK version is incompatible" error, you need to update the plugin to use SDK v0.14+.
  • #​1750 #​1781: Bump tflint-plugin-sdk and bundled terraform plugin
    • The SDK has been updated to v0.17.0 and the bundled Terraform plugin to v0.4.0. Terraform ruleset v0.3.0 contains breaking changes. Check the changelog for details.
  • #​1779: cmd: Drop support for CLI arguments (@​wata727)
Enhancements
  • #​1751: plugin: support GitHub Enterprise Server as plugin source (@​bendrucker)
  • #​1755: Introduce autofix (@​wata727)
  • #​1773: build(deps): Bump github.com/hashicorp/hcl/v2 from 2.16.2 to 2.17.0
    • TFLint v0.47 host server return cty.Value now supports refinemnet. This is a change that only affects plugin developers. See HCL v2.17.0 changelog for details.
  • #​1780: terraform: Add support for Terraform v1.5 (@​wata727)
    • Added support for the planttimestamp and strcontains functions.
Chores
  • #​1754 #​1766: build(deps): Bump sigstore/cosign-installer from 3.0.2 to 3.0.5
  • #​1759: build(deps): Bump google.golang.org/grpc from 1.54.0 to 1.55.0
  • #​1762: build(deps): Bump alpine from 3.17.3 to 3.18.0
  • #​1763: build(deps): Bump golang.org/x/oauth2 from 0.7.0 to 0.8.0
  • #​1764: build(deps): Bump golang.org/x/crypto from 0.8.0 to 0.9.0
  • #​1767: build(deps): Bump github.com/zclconf/go-cty from 1.13.1 to 1.13.2
  • #​1771: fix(install_linux): Update unzip arguments (@​alexjurkiewicz)
  • #​1772 #​1775: build(deps): Bump golangci/golangci-lint-action from 3.4.0 to 3.6.0
  • #​1774: build(deps): Bump github.com/hashicorp/go-plugin from 1.4.9 to 1.4.10
  • #​1776: build(deps): Bump golang.org/x/text from 0.9.0 to 0.10.0

v0.46.1

Compare Source

BugFixes
Chores
  • #​1738: build(deps): Bump sigstore/cosign-installer from 3.0.1 to 3.0.2
  • #​1739: build(deps): Bump golang.org/x/crypto from 0.7.0 to 0.8.0
  • #​1741: build(deps): Bump golang.org/x/oauth2 from 0.6.0 to 0.7.0
  • #​1743: build(deps): Bump github.com/terraform-linters/tflint-plugin-sdk from 0.16.0 to 0.16.1

v0.46.0

Compare Source

This release adds deprecation warnings for future breaking changes. Warn when using command line arguments like tflint dir and tflint main.tf. The former can be replaced with tflint --chdir=dir and the latter with tflint --filter=main.tf. See https://github.com/terraform-linters/tflint/pull/1687 for details.

The GPG key signed signature attached to TFLint releases has been deprecated. This signature will not be added to releases after May 1, 2023. Please migrate to verification with Cosign.

Enhancements
Changes
BugFixes
Chores
  • #​1587: Deprecate GPG key signed signature (@​wata727)
  • #​1662: deps: bump to go1.20 (@​chenrui333 @​bendrucker)
  • #​1681: docs: Update usage output (@​wata727)
  • #​1682 #​1733: build(deps): Bump alpine from 3.17.1 to 3.17.3
  • #​1683: build(deps): Bump golang.org/x/text from 0.6.0 to 0.7.0
  • #​1684: build(deps): Bump github.com/hashicorp/hcl/v2 from 2.16.0 to 2.16.1
  • #​1685 #​1729: build(deps): Bump google.golang.org/grpc from 1.52.3 to 1.54.0
  • #​1691: build(deps): Bump github.com/hashicorp/go-getter from 1.6.2 to 1.7.0
  • #​1692: build(deps): Bump golang.org/x/net from 0.5.0 to 0.7.0
  • #​1695 #​1714: build(deps): Bump golang.org/x/oauth2 from 0.4.0 to 0.6.0
  • #​1701: build(deps): Bump github.com/sourcegraph/jsonrpc2 from 0.1.0 to 0.2.0
  • #​1702 #​1712: build(deps): Bump github.com/spf13/afero from 1.9.3 to 1.9.5
  • #​1704 #​1711: build(deps): Bump golang.org/x/crypto from 0.0.0-20220517005047-85d78b3ac167 to 0.7.0
  • #​1708: docs: revise plugin rate limiting guide (@​bendrucker)
  • #​1710: build(deps): Bump sigstore/cosign-installer from 2.8.1 to 3.0.1
  • #​1715: build(deps): Bump github.com/hashicorp/go-plugin from 1.4.8 to 1.4.9
  • #​1717: build(deps): Bump github.com/fatih/color from 1.14.1 to 1.15.0
  • #​1723: build(deps): Bump actions/setup-go from 3 to 4
  • #​1724: build(deps): Bump github.com/zclconf/go-cty from 1.12.1 to 1.13.1
  • #​1736: Fix GoReleaser config for Cosign v2 (@​wata727)

v0.45.0

Compare Source

This release adds support for some CLI flags. File arguments (e.g. tflint main.tf) have been deprecated by the new --filter flag. It works in v0.45 but will be removed in a future version. We recommend migrating to tflint --filter=main.tf.

All arguments are deprecated from this release. If you're using arguments, you'll need to migrate to the --chdir or --filter flags.

This release updates the expiration date of the built-in GPG public key. Existing keys will expire on 2023-05-01, so you are encouraged to update by then.

Enhancements

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/tflint-0.x branch 2 times, most recently from 418df09 to 2549cf9 Compare June 27, 2023 14:19
@renovate renovate bot changed the title Update dependency tflint to v0.47.0 Update dependency tflint to v0.48.0 Sep 3, 2023
@renovate renovate bot force-pushed the renovate/tflint-0.x branch 2 times, most recently from 0c9a019 to 5b4c95b Compare November 12, 2023 16:56
@renovate renovate bot changed the title Update dependency tflint to v0.48.0 Update dependency tflint to v0.49.0 Nov 12, 2023
@renovate renovate bot changed the title Update dependency tflint to v0.49.0 Update dependency tflint to v0.50.0 Dec 23, 2023
@renovate renovate bot changed the title Update dependency tflint to v0.50.0 Update dependency tflint to v0.50.1 Jan 8, 2024
@renovate renovate bot changed the title Update dependency tflint to v0.50.1 Update dependency tflint to v0.50.2 Jan 21, 2024
@renovate renovate bot changed the title Update dependency tflint to v0.50.2 Update dependency tflint to v0.50.3 Feb 5, 2024
@renovate renovate bot changed the title Update dependency tflint to v0.50.3 Update dependency tflint to v0.51.0 May 2, 2024
@renovate renovate bot changed the title Update dependency tflint to v0.51.0 Update dependency tflint to v0.51.1 May 11, 2024
@renovate renovate bot changed the title Update dependency tflint to v0.51.1 Update dependency tflint to v0.51.2 Jun 29, 2024
@renovate renovate bot changed the title Update dependency tflint to v0.51.2 Update dependency tflint to v0.52.0 Jul 6, 2024
@renovate renovate bot changed the title Update dependency tflint to v0.52.0 Update dependency tflint to v0.53.0 Aug 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants