Releases: cloudposse/terraform-provider-context
v0.5.0
Use atmos instead of makefile @goruha (#47)
## what * Use atmos instead of makefilewhy
- build-harness deprecated. Use atmos instead
Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 @[dependabot[bot]](https://github.com/apps/dependabot) (#37)
Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.9.0 to 1.10.0.Release notes
Sourced from github.com/stretchr/testify's releases.
v1.10.0
What's Changed
Functional Changes
- Add PanicAssertionFunc by
@fahimbagarin stretchr/testify#1337- assert: deprecate CompareType by
@dolmenin stretchr/testify#1566- assert: make YAML dependency pluggable via build tags by
@dolmenin stretchr/testify#1579- assert: new assertion NotElementsMatch by
@hendrywirantoin stretchr/testify#1600- mock: in order mock calls by
@ReyOrtizin stretchr/testify#1637- Add assertion for NotErrorAs by
@palsivertsenin stretchr/testify#1129- Record Return Arguments of a Call by
@jayd3ein stretchr/testify#1636- assert.EqualExportedValues: accepts everything by
@redachlin stretchr/testify#1586Fixes
- assert: make tHelper a type alias by
@dolmenin stretchr/testify#1562- Do not get argument again unnecessarily in Arguments.Error() by
@TomWrightin stretchr/testify#820- Fix time.Time compare by
@myxoin stretchr/testify#1582- assert.Regexp: handle []byte array properly by
@kevinburkesegmentin stretchr/testify#1587- assert: collect.FailNow() should not panic by
@marshall-leein stretchr/testify#1481- mock: simplify implementation of FunctionalOptions by
@dolmenin stretchr/testify#1571- mock: caller information for unexpected method call by
@spirinin stretchr/testify#1644- suite: fix test failures by
@stevenhin stretchr/testify#1421- Fix issue #1662 (comparing infs should fail) by
@ybrustinin stretchr/testify#1663- NotSame should fail if args are not pointers #1661 by
@sikehishin stretchr/testify#1664- Increase timeouts in Test_Mock_Called_blocks to reduce flakiness in CI by
@sikehishin stretchr/testify#1667- fix: compare functional option names for indirect calls by
@arjun-1in stretchr/testify#1626Documantation, Build & CI
- .gitignore: ignore "go test -c" binaries by
@dolmenin stretchr/testify#1565- mock: improve doc by
@dolmenin stretchr/testify#1570- mock: fix FunctionalOptions docs by
@sniryein stretchr/testify#1433- README: link out to the excellent testifylint by
@brackendawsonin stretchr/testify#1568- assert: fix typo in comment by
@JohnEndsonin stretchr/testify#1580- Correct the EventuallyWithT and EventuallyWithTf example by
@JonCrowtherin stretchr/testify#1588- CI: bump softprops/action-gh-release from 1 to 2 by
@dependabotin stretchr/testify#1575- mock: document more alternatives to deprecated AnythingOfTypeArgument by
@dolmenin stretchr/testify#1569- assert: Correctly document EqualValues behavior by
@brackendawsonin stretchr/testify#1593- fix: grammar in godoc by
@miparnisariin stretchr/testify#1607- .github/workflows: Run tests for Go 1.22 by
@HaraldNordgrenin stretchr/testify#1629- Document suite's lack of support for t.Parallel by
@brackendawsonin stretchr/testify#1645- assert: fix typos in comments by
@alexandearin stretchr/testify#1650- mock: fix doc comment for NotBefore by
@alexandearin stretchr/testify#1651- Generate better comments for require package by
@Neokilin stretchr/testify#1610- README: replace Testify V2 notice with
@dolmen's V2 manifesto by@hendrywirantoin stretchr/testify#1518New Contributors
@fahimbagarmade their first contribution in stretchr/testify#1337@TomWrightmade their first contribution in stretchr/testify#820@sniryemade their first contribution in stretchr/testify#1433@myxomade their first contribution in stretchr/testify#1582@JohnEndsonmade their first contribution in stretchr/testify#1580
... (truncated)
Commits
v0.4.1
add the ability to configure casing on a per-tag basis @mcalhoun (#31)
## whatAdd the ability to configure the casing of tag name and tag value on a per-tag basis
why
To allow tags to be configurable so that, for example, a property can be named lob yet its name in tags can be LOB without all tags from the context needing to be upper-cased.
v0.4.0
Go auto release workflows @goruha (#17)
# What * Use go auto-release workflow `cloudposse/.github/.github/workflows/shared-go-auto-release.yml@main` * Remove `.goreleaser.yml`. Now will use https://github.com/cloudposse/.github/blob/main/.github/goreleaser.yml * Drop `auto-release.yaml`. Now will use https://github.com/cloudposse/.github/blob/main/.github/auto-release.yml and https://github.com/cloudposse/.github/blob/main/.github/auto-release-hotfix.ymlWhy
- Consolidate go releases workflows pattern
0.3.0
0.2.1
0.2.0
Bump github.com/hashicorp/terraform-plugin-docs from 0.16.0 to 0.18.0 @dependabot (#6)
Bumps github.com/hashicorp/terraform-plugin-docs from 0.16.0 to 0.18.0.
Release notes
Sourced from github.com/hashicorp/terraform-plugin-docs's releases.
v0.18.0
FEATURES:
- generate: Add support for Provider-defined Function documentation (#328)
- migrate: Add support for Provider-defined Function documentation (#328)
ENHANCEMENTS:
- validate: Add
functionsto list of allowed template and rendered website subdirectories (#328)v0.17.0
BREAKING CHANGES:
- generate: templates using
printfwith eithercodefileortffileto render code examples in markdown will need to switch to using those functions directly. For example, switch the following template code:{{printf "{{codefile \"shell\" %q}}" .ImportFile}}to{{codefile "shell" .ImportFile}}(#300)FEATURES:
- migrate: Added new
migratesubcommand that migrates existing provider docs using the rendered website source directories (website/docs/or/docs/) to aterraform-plugin-docs-supported templates directory. (#314)ENHANCEMENTS:
- generate: Add
provider-schemaflag to pass in a file path to a provider schema JSON file, allowing the command to skip building the provider and calling Terraform CLI (#299)BUG FIXES:
Changelog
Sourced from github.com/hashicorp/terraform-plugin-docs's changelog.
0.18.0 (January 24, 2024)
FEATURES:
- generate: Add support for Provider-defined Function documentation (#328)
- migrate: Add support for Provider-defined Function documentation (#328)
ENHANCEMENTS:
- validate: Add
functionsto list of allowed template and rendered website subdirectories (#328)0.17.0 (January 17, 2024)
BREAKING CHANGES:
- generate: templates using
printfwith eithercodefileortffileto render code examples in markdown will need to switch to using those functions directly. For example, switch the following template code:{{printf "{{codefile \"shell\" %q}}" .ImportFile}}to{{codefile "shell" .ImportFile}}(#300)FEATURES:
- migrate: Added new
migratesubcommand that migrates existing provider docs using the rendered website source directories (website/docs/or/docs/) to aterraform-plugin-docs-supported templates directory. (#314)ENHANCEMENTS:
- generate: Add
provider-schemaflag to pass in a file path to a provider schema JSON file, allowing the command to skip building the provider and calling Terraform CLI (#299)BUG FIXES:
Commits
4c08c0eUpdate changelog69163cdAdd Support for Provider-defined Function Documentation (#328)56c7faeBump github.com/hashicorp/terraform-json from 0.20.0 to 0.21.0 (#325)1856bdaUpdate changelog6dec712Bump github.com/rogpeppe/go-internal from 1.11.0 to 1.12.0 (#306)042eb55Document the default behavior of--tf-versionand usage of Terraform binary...2e13971deps: Migrate to github.com/hashicorp/cli (#322)eff4087Update README.md - addtools.goquick example (#289)068a226Implementmigratesub-command (#314)8456c0cBump github.com/hashicorp/terraform-json from 0.18.0 to 0.20.0 (#315)- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or ...
0.1.0
- Initial Release