Skip to content

chore(deps): update dependency terraform-docs to v0.20.0#39

Open
renovate[bot] wants to merge 2 commits into
mainfrom
renovate/terraform-docs-0.x
Open

chore(deps): update dependency terraform-docs to v0.20.0#39
renovate[bot] wants to merge 2 commits into
mainfrom
renovate/terraform-docs-0.x

Conversation

@renovate

@renovate renovate Bot commented Jun 9, 2024

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Update Change
terraform-docs minor 0.17.0 -> 0.20.0

Release Notes

terraform-docs/terraform-docs (terraform-docs)

v0.20.0

Compare Source

Notable Updates

Changelog

Dependency updates
  • 006ff31 chore(deps): bump golang.org/x/crypto from 0.27.0 to 0.31.0
  • e470746 chore(deps): bump golang.org/x/net from 0.29.0 to 0.33.0
  • adb8099 chore(deps): bump golang.org/x/net from 0.33.0 to 0.36.0
  • 73ee296 chore(deps): bump library/alpine from 3.20.3 to 3.21.3
  • 06ca95c chore(deps): bump library/alpine in /scripts/release
  • 616bff0 chore(deps): bump library/golang from 1.23.1-alpine to 1.23.4-alpine
Chores
  • a22bdbe Fix typo in insert-output-to-file.md
  • cf462c5 Release version v0.20.0
  • 8c170f2 Update typo in pre-commit-hooks.md
  • bb09818 add support for .tofu files
  • 983e98a chore: bump golang to 1.24.2
  • 55d8916 chore: bump version to v0.20.0-alpha
  • 93c1839 chore: update staticcheck to 2025.1.1

Docker images

  • docker pull quay.io/terraform-docs/terraform-docs:latest
  • docker pull quay.io/terraform-docs/terraform-docs:0.20.0

Contributors

Very special thanks to the contributors.

v0.19.0

Compare Source

Notable Updates

Changelog

Features
  • 5a2f6ff add docker multiarch build
Bug Fixes
  • 78e94da fix: Replace <br> with <br /> for markdown syntax
  • af31cc6 fix: release scripts
  • 3c44c58 Fix: Let Docker image be built correctly for non-amd64 platforms
Dependency updates
  • 7da557a chore(deps): bump docker/build-push-action from 5 to 6
  • c825b41 chore(deps): bump library/alpine from 3.20.0 to 3.20.2
  • 5441df2 chore(deps): bump library/alpine from 3.20.2 to 3.20.3
  • a639fbd chore(deps): bump library/alpine in /scripts/release
  • a2f4573 chore(deps): bump library/golang from 1.23.0-alpine to 1.23.1-alpine
Chores
  • 045e5e6 Bump google.golang.org/grpc from 1.64.0 to 1.64.1
  • db5e64c Bump goreleaser/goreleaser-action from 5 to 6
  • 0562dbd Bump library/alpine from 3.20.0 to 3.20.2 in /scripts/release
  • 7de82c8 Bump library/golang from 1.22.3-alpine to 1.23.0-alpine
  • d64cd3b Release version v0.19.0
  • 8ae3344 chore: bump version to v0.19.0-alpha
  • c2e8d0a chore: fix linter issues
  • 3355644 chore: update go dependencies
  • 0db6eef chore: update go to 1.23.1
  • 11270e3 chore: update staticcheck to 2024.1.1
  • 186bd7e chore: update teaser image
  • 4c94478 ci: Use correct env var for repo owner
  • 62756ca ci: Use correct var for repo owner (second try)
  • 1919452 ci: enhance release workflows
  • 49fde02 ci: fix release scripts
  • a97e171 ci: kickoff actions run

Docker images

  • docker pull quay.io/terraform-docs/terraform-docs:latest
  • docker pull quay.io/terraform-docs/terraform-docs:0.19.0

Contributors

Very special thanks to the contributors.

v0.18.0

Compare Source

Notable Updates

The most notable changes in this release are:

  • Resources can get ignored using terraform-docs-ignore comment:

    All types of resources can be ignored from the generated output by prepending them
    with a comment terraform-docs-ignore.

    ##################################################################

All of the following will be ignored from the generated output

##################################################################

terraform-docs-ignore

resource "foo_resource" "foo" {}

This resource is going to get ignored from generated

output by using the following known comment.

terraform-docs-ignore

The ignore keyword also doesn't have to be the first,

last, or the only thing in a leading comment

resource "bar_resource" "bar" {}

terraform-docs-ignore

data "foo_data_resource" "foo" {}

terraform-docs-ignore

data "bar_data_resource" "bar" {}

// terraform-docs-ignore
module "foo" {
source = "foo"
version = "x.x.x"
}

terraform-docs-ignore

variable "foo" {
default = "foo"
}

// terraform-docs-ignore
output "foo" {
value = "foo"
}


- Skip root module documentation while executing recursively:

The main module document is generated by default, but should the main module document be
excluded from document generation, `--recursive-include-main=false` can be used or alternatively
in the `.terraform-docs.yml`:

```yml
recursive:
  enabled: true
  path: modules
  include-main: false

Changelog

Features
  • 943489c Ignore inputs with terraform-docs-ignore comment
  • 8f74fd4 feat: ignore outputs, providers, resources with comments
  • d0862bd Update Dockerfile FROM command to use non-ambiguous container sources
  • 59eb90f Make main module doc optional when in recursive generation
Bug Fixes
  • 656f6a6 Fix output values with null
  • d5a55ae more fixes of binary name with missing s
  • 1b2dbab more fixes of binary name with missing s
  • 29e186a Fixed binary name in description output
Chores
  • 5e77bcc Bump actions/checkout from 3 to 4
  • 21313cf Bump actions/setup-go from 3 to 5
  • 89b52d5 Bump alpine from 3.18.5 to 3.19.0
  • 01435d7 Bump alpine from 3.19.0 to 3.19.1
  • b87d0e0 Bump alpine from 3.19.1 to 3.20.0 in /scripts/release
  • 50a8858 Bump codecov/codecov-action from 1 to 3
  • e729518 Bump codecov/codecov-action from 3 to 4
  • 70ed14e Bump dawidd6/action-homebrew-bump-formula from 3.10.1 to 3.11.0
  • 73ae81c Bump dawidd6/action-homebrew-bump-formula from 3.8.0 to 3.10.1
  • 127dba6 Bump docker/login-action from 1 to 3
  • 4dc7807 Bump github/codeql-action from 1 to 3
  • 7a00604 Bump golang from 1.21.5-alpine to 1.22.1-alpine
  • a321c28 Bump golang to 1.22.1
  • d6331c1 Bump golang.org/x/net from 0.19.0 to 0.23.0
  • 5a70c7a Bump google.golang.org/protobuf from 1.31.0 to 1.33.0
  • ff0ce44 Bump google.golang.org/protobuf from 1.31.0 to 1.33.0
  • ca3eea1 Bump goreleaser/goreleaser-action from 2 to 5
  • 38fc0e6 Bump softprops/action-gh-release from 1 to 2
  • f92cf6f Bump version to v0.18.0-alpha
  • 6041ae9 Change dependabot cadence to daily
  • 159bc83 Create dependabot file
  • e5a9ee0 --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ...
  • 75e05c0 --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch ...
  • 228c7a7 Release version v0.18.0
  • 656aa7c Update go crypto lib to v0.17.0
  • 2b71b4d chore: add release-cut workflow
  • d5e48a5 chore: add scripts/release/ folder to dependabot
  • fde40b1 chore: bump alpine to 3.20.0
  • b79a7c4 chore: bump golang to 1.22.3
  • 288faea chore: update dependencies
  • 740e0a8 go get -u github.com/hashicorp/hcl/v2, update to v0.20.1 to support provider functions

Docker images

  • docker pull quay.io/terraform-docs/terraform-docs:latest
  • docker pull quay.io/terraform-docs/terraform-docs:0.18.0

Contributors

Very special thanks to the contributors.


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 changed the title chore(deps): update dependency terraform-docs to v0.18.0 chore(deps): update dependency terraform-docs to v0.19.0 Sep 18, 2024
@renovate renovate Bot force-pushed the renovate/terraform-docs-0.x branch from f5be9f2 to caf30f3 Compare September 18, 2024 22:39
@renovate renovate Bot force-pushed the renovate/terraform-docs-0.x branch from caf30f3 to 77ccac6 Compare April 4, 2025 22:31
@renovate renovate Bot changed the title chore(deps): update dependency terraform-docs to v0.19.0 chore(deps): update dependency terraform-docs to v0.20.0 Apr 4, 2025
@renovate

renovate Bot commented Apr 5, 2025

Copy link
Copy Markdown
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

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