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 upgrade to it yourself)@dependabot ignore this minor versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Bump github.com/hashicorp/terraform-plugin-testing from 1.6.0 to 1.7.0 @dependabot (#7)
Bumps github.com/hashicorp/terraform-plugin-testing from 1.6.0 to 1.7.0.
Release notes
Sourced from github.com/hashicorp/terraform-plugin-testing's releases.
v1.7.0
NOTES:
- helper/resource: Error messages generated by the testing logic, which were updated for clarity in this release, are not protected by compatibility promises. While testing logic errors are usable in certain scenarios with
ErrorCheckandExpectErrorfunctionality, error messaging checks should be based on provider-controlled messaging or when appropriate to use other testing features such asExpectNonEmptyPlaninstead. (#238)- Numerical values in the plan are now represented as json.Number, not float64. Custom plan checks relying upon float64 representation may need altering (#248)
- plancheck: Deprecated
ExpectNullOutputValueandExpectNullOutputValueAtPath. UseExpectKnownOutputValueandExpectKnownOutputValueAtPathwithknownvalue.Nullinstead (#275)- plancheck:
ExpectKnownValue,ExpectKnownOutputValueandExpectKnownOutputValueAtPathplan checks are considered experimental and may be altered or removed in a subsequent release (#276)- statecheck:
ExpectKnownValue,ExpectKnownOutputValueandExpectKnownOutputValueAtPathstate checks are considered experimental and may be altered or removed in a subsequent release (#276)- knownvalue: The
knownvaluepackage is considered experimental and may be altered or removed in a subsequent release (#276)- all: This Go module has been updated to Go 1.21 per the Go support policy. It is recommended to review the Go 1.21 release notes before upgrading. Any consumers building on earlier Go versions may experience errors (#300)
FEATURES:
- plancheck: Added
ExpectKnownValueplan check, which asserts that a given resource attribute has a defined type, and value (#248)- plancheck: Added
ExpectKnownOutputValueplan check, which asserts that a given output value has a defined type, and value (#248)- plancheck: Added
ExpectKnownOutputValueAtPathplan check, which asserts that a given output value at a specified path has a defined type, and value (#248)- knownvalue: Introduced new
knownvaluepackage which contains types for working with plan checks and state checks (#248)- statecheck: Introduced new
statecheckpackage with interface and built-in state check functionality (#275)- statecheck: Added
ExpectKnownValuestate check, which asserts that a given resource attribute has a defined type, and value (#275)- statecheck: Added
ExpectKnownOutputValuestate check, which asserts that a given output value has a defined type, and value (#275)- statecheck: Added
ExpectKnownOutputValueAtPathplan check, which asserts that a given output value at a specified path has a defined type, and value (#275)- statecheck: Added
ExpectSensitiveValuebuilt-in state check, which asserts that a given attribute has a sensitive value (#275)BUG FIXES:
- helper/resource: Clarified error messaging from testing failures, especially when using
TestStep.PlanOnly: true(#238)- helper/resource: Fix detection of provider block declaration in
Config,ConfigDirectory, andConfigFile(#265)- helper/resource: Fix detection of terraform block declaration in
Config,ConfigDirectory, andConfigFile(#265)- helper/resource: Fixed internal deferred test helpers to properly report file and line information in test failures. (#292)
Changelog
Sourced from github.com/hashicorp/terraform-plugin-testing's changelog.
1.7.0 (March 05, 2024)
NOTES:
- helper/resource: Error messages generated by the testing logic, which were updated for clarity in this release, are not protected by compatibility promises. While testing logic errors are usable in certain scenarios with
ErrorCheckandExpectErrorfunctionality, error messaging checks should be based on provider-controlled messaging or when appropriate to use other testing features such asExpectNonEmptyPlaninstead. (#238)- Numerical values in the plan are now represented as json.Number, not float64. Custom plan checks relying upon float64 representation may need altering (#248)
- plancheck: Deprecated
ExpectNullOutputValueandExpectNullOutputValueAtPath. UseExpectKnownOutputValueandExpectKnownOutputValueAtPathwithknownvalue.Nullinstead (#275)- plancheck:
ExpectKnownValue,ExpectKnownOutputValueandExpectKnownOutputValueAtPathplan checks are considered experimental and may be altered or removed in a subsequent release (#276)- statecheck:
ExpectKnownValue,ExpectKnownOutputValueandExpectKnownOutputValueAtPathstate checks are considered experimental and may be altered or removed in a subsequent release (#276)- knownvalue: The
knownvaluepackage is considered experimental and may be altered or removed in a subsequent release (#276)- all: This Go module has been updated to Go 1.21 per the Go support policy. It is recommended to review the Go 1.21 release notes before upgrading. Any consumers building on earlier Go versions may experience errors (#300)
FEATURES:
- plancheck: Added
ExpectKnownValueplan check, which asserts that a given resource attribute has a defined type, and value (#248)- plancheck: Added
ExpectKnownOutputValueplan check, which asserts that a given output value has a defined type, and value (#248)- plancheck: Added
ExpectKnownOutputValueAtPathplan check, which asserts that a given output value at a specified path has a defined type, and value (#248)- knownvalue: Introduced new
knownvaluepackage which contains types for working with plan checks and state checks (#248)- statecheck: Introduced new
statecheckpackage with interface and built-in state check functionality (#275)- statecheck: Added
ExpectKnownValuestate check, which asserts that a given resource attribute has a defined type, and value (#275)- statecheck: Added
ExpectKnownOutputValuestate check, which asserts that a given output value has a defined type, and value (#275)- statecheck: Added
ExpectKnownOutputValueAtPathplan check, which asserts that a given output value at a specified path has a defined type, and value (#275)- statecheck: Added
ExpectSensitiveValuebuilt-in state check, which asserts that a given attribute has a sensitive value (#275)BUG FIXES:
- helper/resource: Clarified error messaging from testing failures, especially when using
TestStep.PlanOnly: true(#238)- helper/resource: Fix detection of provider block declaration in
Config,ConfigDirectory, andConfigFile(#265)- helper/resource: Fix detection of terraform block declaration in
Config,ConfigDirectory, andConfigFile(#265)- helper/resource: Fixed internal deferred test helpers to properly report file and line information in test failures. (#292)
Commits
beb5594Update changelog77f39ffbuild(deps): Bump golang.org/x/crypto from 0.20.0 to 0.21.0 (#301)246ec98Bump Go version to 1.21 (#300)8d96004Adding experimental status and example usage forExpectKnownValue, `ExpectK...cfd6640build(deps): Bump github.com/hashicorp/hcl/v2 from 2.19.1 to 2.20.0 (#298)d9286dbbuild(deps): Bump github.com/zclconf/go-cty from 1.14.2 to 1.14.3 (#299)e3316c0build(deps): Bump github.com/hashicorp/terraform-plugin-sdk/v2 (#296)ff585cfAdd calls tot.Helper()indefered functions (#293)a8803edbuild(deps): Bump golang.org/x/crypto from 0.19.0 to 0.20.0 (#297)058bbd4Result of tsccr-helper -log-level=info gha update -latest . (#291)- 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 upgrade to it yourself)@dependabot ignore this minor versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Bump github.com/hashicorp/terraform-plugin-framework from 1.5.0 to 1.7.0 @dependabot (#11)
Bumps github.com/hashicorp/terraform-plugin-framework from 1.5.0 to 1.7.0.
Release notes
Sourced from github.com/hashicorp/terraform-plugin-framework's releases.
v1.7.0
BREAKING CHANGES:
- function: All parameters must be explicitly named via the
Namefield (#964)- function:
DefaultParameterNamePrefixandDefaultVariadicParameterNameconstants have been removed (#964)FEATURES:
- types/basetypes: Added
DynamicTypeandDynamicValueimplementations for dynamic value handling (#147)- types/basetypes: Added interfaces
basetypes.DynamicTypable,basetypes.DynamicValuable, andbasetypes.DynamicValuableWithSemanticEqualsfor dynamic custom type and value implementations (#147)- resource/schema: Added
DynamicAttributeimplementation for dynamic value handling (#147)- datasource/schema: Added
DynamicAttributeimplementation for dynamic value handling (#147)- provider/schema: Added
DynamicAttributeimplementation for dynamic value handling (#147)- function: Added
DynamicParameterandDynamicReturnfor dynamic value handling` (#147)- resource/schema/dynamicdefault: New package with
StaticValueimplementation for dynamic schema-based default values (#147)- resource/schema/dynamicplanmodifier: New package with built-in implementations for dynamic value plan modification. (#147)
- resource/schema/defaults: New
Dynamicinterface for dynamic schema-based default implementations (#147)- resource/schema/planmodifier: New
Dynamicinterface for dynamic value plan modification implementations (#147)- schema/validator: New
Dynamicinterface for dynamic value schema validation (#147)v1.6.1
NOTES:
- all: The
v1.6.0release updated this Go module to Go 1.21 per the Go support policy. It is recommended to review the Go 1.21 release notes before upgrading. Any consumers building on earlier Go versions may experience errors (#937)BUG FIXES:
- resource/schema: Ensured invalid attribute default value errors are raised (#930)
- function: Added implementation validation to
function.Definitionto ensure all parameter names (including the variadic parameter) are unique. (#926)- function: Updated the default parameter name to include the position of the parameter (i.e.
param1,param2, etc.). Variadic parameters will default tovarparam. (#926)v1.6.0
BREAKING CHANGES:
- function: Changed the framework type for variadic parameters to
types.TupleType, where each element is the same element type. Provider-defined functions using atypes.Listfor retrieving variadic argument data will need to update their code to usetypes.Tuple. (#923)- function: Altered the
RunResponsetype, replacingDiagnosticswithFuncError(#925)- diag: Removed
DiagnosticWithFunctionArgumentinterface. RemovedNewArgumentErrorDiagnostic(),NewArgumentWarningDiagnostic()andWithFunctionArgument()functions. RemovedAddArgumentError()andAddArgumentWarning()methods fromDiagnostics. (#925)FEATURES:
- resource: Added the
ResourceWithMoveStateinterface, which enables state moves across resource types with Terraform 1.8 and later (#917)ENHANCEMENTS:
- privatestate: Added support for
SetKey()method to fully remove key withnilor zero-length value (#910)- function: Added
FuncErrortype, required forRunResponse(#925)- function: Added
NewFuncError()andNewArgumentFuncError()functions, which create aFuncError(#925)- function: Added
ConcatFuncErrors()andFuncErrorFromDiags()helper functions for use when working withFuncError(#925)
Changelog
Sourced from github.com/hashicorp/terraform-plugin-framework's changelog.
1.7.0 (March 21, 2024)
BREAKING CHANGES:
- function: All parameters must be explicitly named via the
Namefield (#964)- function:
DefaultParameterNamePrefixandDefaultVariadicParameterNameconstants have been removed (#964)FEATURES:
- types/basetypes: Added
DynamicTypeandDynamicValueimplementations for dynamic value handling (#147)- types/basetypes: Added interfaces
basetypes.DynamicTypable,basetypes.DynamicValuable, andbasetypes.DynamicValuableWithSemanticEqualsfor dynamic custom type and value implementations (#147)- resource/schema: Added
DynamicAttributeimplementation for dynamic value handling (#147)- datasource/schema: Added
DynamicAttributeimplementation for dynamic value handling (#147)- provider/schema: Added
DynamicAttributeimplementation for dynamic value handling (#147)- function: Added
DynamicParameterandDynamicReturnfor dynamic value handling` (#147)- resource/schema/dynamicdefault: New package with
StaticValueimplementation for dynamic schema-based default values (#147)- resource/schema/dynamicplanmodifier: New package with built-in implementations for dynamic value plan modification. (#147)
- resource/schema/defaults: New
Dynamicinterface for dynamic schema-based default implementations (#147)- resource/schema/planmodifier: New
Dynamicinterface for dynamic value plan modification implementations (#147)- schema/validator: New
Dynamicinterface for dynamic value schema validation (#147)1.6.1 (March 05, 2024)
NOTES:
- all: The
v1.6.0release updated this Go module to Go 1.21 per the Go support policy. It is recommended to review the Go 1.21 release notes before upgrading. Any consumers building on earlier Go versions may experience errors (#937)BUG FIXES:
- resource/schema: Ensured invalid attribute default value errors are raised (#930)
- function: Added implementation validation to
function.Definitionto ensure all parameter names (including the variadic parameter) are unique. (#926)- function: Updated the default parameter name to include the position of the parameter (i.e.
param1,param2, etc.). Variadic parameters will default tovarparam. (#926)1.6.0 (February 28, 2024)
BREAKING CHANGES:
- function: Changed the framework type for variadic parameters to
types.TupleType, where each element is the same element type. Provider-defined functions using atypes.Listfor retrieving variadic argument data will need to update their code to usetypes.Tuple. (#923)- function: Altered the
RunResponsetype, replacingDiagnosticswithFuncError(#925)- diag: Removed
DiagnosticWithFunctionArgumentinterface. RemovedNewArgumentErrorDiagnostic(),NewArgumentWarningDiagnostic()andWithFunctionArgument()functions. RemovedAddArgumentError()andAddArgumentWarning()methods fromDiagnostics. (#925)FEATURES:
- resource: Added the
ResourceWithMoveStateinterface, which enables state moves across resource types with Terraform 1.8 and later (#917)ENHANCEMENTS:
... (truncated)
Commits
332d5d1Update changeloga7607bbRequire provider-defined function parameter naming (#964)84f656eall: Add dynamic type, attribute, and function support (#931)f86c88cwebsite/docs: Link fix on int64 type page (#960)05f0d88all: Miscellaneous doc fixes (#958)37dabc8docs: Explicitly call out object parameter attributes are required (#956)09b53c3Correct resource State Move documentation (#957)6f28badbuild(deps): Bump google.golang.org/protobuf in /tools (#953)91d777bdocs: Fix note tag with link (#952)d88ef0eAdd clarification for nil check of ProviderData in data source and resource C...- 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 upgrade to it yourself)@dependabot ignore this minor versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Bump github.com/stretchr/testify from 1.7.2 to 1.9.0 @dependabot (#5)
Bumps github.com/stretchr/testify from 1.7.2 to 1.9.0.
Release notes
Sourced from github.com/stretchr/testify's releases.
v1.9.0
What's Changed
- Fix Go modules version by
@SuperQin stretchr/testify#1394- Document that require is not safe to call in created goroutines by
@programmer04in stretchr/testify#1392- Remove myself from MAINTAINERS.md by
@mvdkleijnin stretchr/testify#1367- Correct spelling/grammar by
@echarrodin stretchr/testify#1389- docs: Update URLs in README by
@davidjbin stretchr/testify#1349- Update mockery link to Github Pages in README by
@LandonTClippin stretchr/testify#1346- docs: Fix typos in tests and comments by
@alexandearin stretchr/testify#1410- CI: tests from go1.17 by
@SuperQin stretchr/testify#1409- Fix adding ? when no values passed by
@lesichkovmin stretchr/testify#1320- codegen: use standard header for generated files by
@dolmenin stretchr/testify#1406- mock: AssertExpectations log reason only on failure by
@hikyaru-suzukiin stretchr/testify#1360- assert: fix flaky TestNeverTrue by
@dolmenin stretchr/testify#1417- README: fix typos "set up" vs "setup" by
@ossan-devin stretchr/testify#1428- mock: move regexp compilation outside of
Calledby@aud10slavein stretchr/testify#631- assert: refactor internal func getLen() by
@dolmenin stretchr/testify#1445- mock: deprecate type AnythingOfTypeArgument (#1434) by
@dolmenin stretchr/testify#1441- Remove no longer needed assert.canConvert by
@alexandearin stretchr/testify#1470- assert: ObjectsAreEqual: use time.Equal for time.Time types by
@tscalesin stretchr/testify#1464- Bump actions/checkout from 3 to 4 by
@dependabotin stretchr/testify#1466- Bump actions/setup-go from 3.2.0 to 4.1.0 by
@dependabotin stretchr/testify#1451- fix: make EventuallyWithT concurrency safe by
@czeslavoin stretchr/testify#1395- assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by
@hiduin stretchr/testify#1484- assert.EqualExportedValues: fix handling of arrays by
@zrbeckerin stretchr/testify#1473- .github: use latest Go versions by
@kevinburkesegmentin stretchr/testify#1489- assert: Deprecate EqualExportedValues by
@HaraldNordgrenin stretchr/testify#1488- suite: refactor test assertions by
@alexandearin stretchr/testify#1474- suite: fix SetupSubTest and TearDownSubTest execution order by
@linusbarthin stretchr/testify#1471- docs: Fix deprecation comments for http package by
@alexandearin stretchr/testify#1335- Add map support doc comments to Subset and NotSubset by
@jedevcin stretchr/testify#1306- TestErrorIs/TestNotErrorIs: check error message contents by
@craig65535in stretchr/testify#1435- suite: fix subtest names (fix #1501) by
@dolmenin stretchr/testify#1504- assert: improve unsafe.Pointer tests by
@dolmenin stretchr/testify#1505- assert: simplify isNil implementation by
@dolmenin stretchr/testify#1506- assert.InEpsilonSlice: fix expected/actual order and other improvements by
@dolmenin stretchr/testify#1483- Fix dependency cycle with objx #1292 by
@dolmenin stretchr/testify#1453- mock: refactor TestIsArgsEqual by
@dolmenin stretchr/testify#1444- mock: optimize argument matching checks by
@dolmenin stretchr/testify#1416- assert: fix TestEventuallyTimeout by
@dolmenin stretchr/testify#1412- CI: add go 1.21 in GitHub Actions by
@dolmenin stretchr/testify#1450- suite: fix recoverAndFailOnPanic to report test failure at the right location by
@dolmenin stretchr/testify#1502- Update maintainers by
@brackendawsonin stretchr/testify#1533- assert: Fix EqualValues to handle overflow/underflow by
@arjunmahishiin stretchr/testify#1531- assert: better formatting for Len() error by
@kevinburkesegmentin stretchr/testify#1485- Ensure AssertExpectations does not fail in skipped tests by
@ianrose14in stretchr/testify#1331- suite: fix deadlock in suite.Require()/Assert() by
@arjunmahishiin stretchr/testify#1535- Revert "assert: ObjectsAreEqual: use time.Equal for time.Time type" by
@brackendawsonin stretchr/testify#1537- [chore] Add issue templates by
@arjunmahishiin stretchr/testify#1538- Update the build status badge by
@brackendawsonin stretchr/testify#1540
... (truncated)
Commits
bb548d0Merge pull request #1552 from stretchr/dependabot/go_modules/github.com/stret...814075fbuild(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2e045612Merge pull request #1339 from bogdandrutu/uintptr5b6926dMerge pull request #1385 from hslatman/not-implements9f97d67Merge pull request #1550 from stretchr/release-notesbcb0d3fInclude the auto-release notes in releasesfb770f8Merge pull request #1247 from ccoVeille/typos85d8bb6fix typos in comments, tests and github templatese2741faMerge pull request #1548 from arjunmahishi/msgAndArgs6e59f20http_assertions: assert that the msgAndArgs actually works in tests- 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 upgrade to it yourself)@dependabot ignore this minor versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 @dependabot (#3)
Bumps google.golang.org/protobuf from 1.32.0 to 1.33.0.
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 upgrade to it yourself)@dependabot ignore this minor versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the Security Alerts page.
fix ids @mcalhoun (#2)
what
- Update the ID for data sources
- Output all context values in config datasource
why
- To provide a deterministic, more meaningful ID in state for each label or tags
- So all context variables can be output