terraform-provider-commercetools
terraform-provider-commercetools copied to clipboard
chore(deps): bump the go group with 8 updates
Bumps the go group with 8 updates:
Package | From | To |
---|---|---|
github.com/hashicorp/terraform-plugin-docs | 0.16.0 |
0.19.2 |
github.com/hashicorp/terraform-plugin-framework | 1.4.2 |
1.8.0 |
github.com/hashicorp/terraform-plugin-go | 0.19.0 |
0.22.2 |
github.com/hashicorp/terraform-plugin-mux | 0.12.0 |
0.15.0 |
github.com/hashicorp/terraform-plugin-sdk/v2 | 2.30.0 |
2.33.0 |
github.com/labd/commercetools-go-sdk | 1.4.0 |
1.5.1 |
github.com/stretchr/testify | 1.8.4 |
1.9.0 |
golang.org/x/oauth2 | 0.14.0 |
0.17.0 |
Updates github.com/hashicorp/terraform-plugin-docs
from 0.16.0 to 0.19.2
Release notes
Sourced from github.com/hashicorp/terraform-plugin-docs's releases.
v0.19.2
BUG FIXES:
- migrate: Ensured idempotency of template files when command is ran multiple times (#364)
- generate: Prevented automatic
id
attribute behaviors under blocks (#365)v0.19.1
BUG FIXES:
- generate: fixed a bug where attribute titles were not being generated for nested object attributes (#357)
- generate: fixed a bug where the
plainmarkdown
function did not output plain URLs (#361)v0.19.0
BREAKING CHANGES:
- generate: the
plainmarkdown
function now removes all markdown elements/formatting to render the output as plain text (#332)- schemamd: The
schemamd
package has moved tointernal/schemamd
and can no longer be imported (#354)- functionmd: The
functionmd
package has moved tointernal/functionmd
and can no longer be imported (#354)FEATURES:
- validate: Added support for Provider-defined Function documentation to all checks (#341)
- validate: Added
InvalidDirectoriesCheck
which checks for valid provider documentation folder structure (#341)- validate: Added
MixedDirectoriesCheck
which throws an error if both legacy documentation and registry documentation are found (#341)- validate: Added
NumberOfFilesCheck
which checks the number of provider documentation files against the registry limit (#341)- validate: Added
FileSizeCheck
which checks the provider documentation file size against the registry limit (#341)- validate: Added
FileExtensionCheck
which checks for valid provider documentation file extensions (#341)- validate: Added
FrontMatterCheck
which checks the YAML frontmatter of provider documentation for missing required fields or invalid fields (#341)- validate: Added
FileMismatchCheck
which checks the names/number of provider documentation files against the provider schema (#341)ENHANCEMENTS:
- migrate: Added
--provider-name
flag to override the default provider name when any file names that contain provider name prefixes are removed during migration (#349)BUG FIXES:
- migrate: use relative paths (from provider directory) instead of absolute paths for migrated code templates (#330)
- migrate: fixed a bug where documentation files with provider name prefixes were migrated to templates directory as-is, causing
generate
to create duplicate templates (#349)- generate: fixed a bug where incorrect attribute titles were being generated for certain nested schemas (#350)
v0.18.0
FEATURES:
- generate: Add support for Provider-defined Function documentation (#328)
- migrate: Add support for Provider-defined Function documentation (#328)
ENHANCEMENTS:
... (truncated)
Changelog
Sourced from github.com/hashicorp/terraform-plugin-docs's changelog.
0.19.2 (April 29, 2024)
BUG FIXES:
- migrate: Ensured idempotency of template files when command is ran multiple times (#364)
- generate: Prevented automatic
id
attribute behaviors under blocks (#365)0.19.1 (April 22, 2024)
BUG FIXES:
- generate: fixed a bug where attribute titles were not being generated for nested object attributes (#357)
- generate: fixed a bug where the
plainmarkdown
function did not output plain URLs (#361)0.19.0 (April 15, 2024)
BREAKING CHANGES:
- generate: the
plainmarkdown
function now removes all markdown elements/formatting to render the output as plain text (#332)- schemamd: The
schemamd
package has moved tointernal/schemamd
and can no longer be imported (#354)- functionmd: The
functionmd
package has moved tointernal/functionmd
and can no longer be imported (#354)FEATURES:
- validate: Added support for Provider-defined Function documentation to all checks (#341)
- validate: Added
InvalidDirectoriesCheck
which checks for valid provider documentation folder structure (#341)- validate: Added
MixedDirectoriesCheck
which throws an error if both legacy documentation and registry documentation are found (#341)- validate: Added
NumberOfFilesCheck
which checks the number of provider documentation files against the registry limit (#341)- validate: Added
FileSizeCheck
which checks the provider documentation file size against the registry limit (#341)- validate: Added
FileExtensionCheck
which checks for valid provider documentation file extensions (#341)- validate: Added
FrontMatterCheck
which checks the YAML frontmatter of provider documentation for missing required fields or invalid fields (#341)- validate: Added
FileMismatchCheck
which checks the names/number of provider documentation files against the provider schema (#341)ENHANCEMENTS:
- migrate: Added
--provider-name
flag to override the default provider name when any file names that contain provider name prefixes are removed during migration (#349)BUG FIXES:
- migrate: use relative paths (from provider directory) instead of absolute paths for migrated code templates (#330)
- migrate: fixed a bug where documentation files with provider name prefixes were migrated to templates directory as-is, causing
generate
to create duplicate templates (#349)- generate: fixed a bug where incorrect attribute titles were being generated for certain nested schemas (#350)
0.18.0 (January 24, 2024)
FEATURES:
... (truncated)
Commits
fc2fdc0
Update changelog308f0fc
Bump github.com/yuin/goldmark from 1.7.0 to 1.7.1 (#353)14eebdd
generate: Prevent automatic id attribute behaviors under blocks (#365)8a55c41
migrate: Ensure idempotency when ran multiple times (#364)0d49b43
Update changelogeb49c34
Bump golang.org/x/net from 0.17.0 to 0.23.0 in /tools (#359)e059d5e
Correctly handle*ast.AutoLink
nodes in theplainmarkdown
function (#361)c8e5e1f
Render attribute names for nested objected attributes correctly (#357)e6e13a7
Addplainmarkdown
breaking change entry tov0.19.0
changelog (#358)45dd248
Update changelog- Additional commits viewable in compare view
Updates github.com/hashicorp/terraform-plugin-framework
from 1.4.2 to 1.8.0
Release notes
Sourced from github.com/hashicorp/terraform-plugin-framework's releases.
v1.8.0
BREAKING CHANGES:
- function: Removed
Definition
typeParameter()
method (#968)NOTES:
- function: Provider-defined function features are now considered generally available and protected by compatibility promises (#966)
- attr/xattr: The
TypeWithValidate
interface has been deprecated in preference of theValidateableAttribute
interface. AValidatableParameter
interface has also been added to thefunction
package (#968)FEATURES:
- attr/xattr: Added
ValidateableAttribute
interface for custom value type implementations (#968)- function: Added
ValidateableParameter
interface for custom value type implementations (#968)function
: AddBoolParameterValidator
,DynamicParameterValidator
,Float64ParameterValidator
,Int64ParameterValidator
,ListParameterValidator
,MapParameterValidator
,NumberParameterValidator
,ObjectParameterValidator
,SetParameterValidator
, andStringParameterValidator
interfaces for custom function parameter validation implementations. (#971)function
: AddParameterWithBoolValidators
,ParameterWithInt64Validators
,ParameterWithFloat64Validators
,ParameterWithDynamicValidators
,ParameterWithListValidators
,ParameterWithMapValidators
,ParameterWithNumberValidators
,ParameterWithObjectValidators
,ParameterWithSetValidators
, andParameterWithStringValidators
interfaces to enable parameter-based validation support (#971)BUG FIXES:
- types/basetypes: Prevented panic in the
MapValue
typesEqual
method when the receiver has a nilelementType
(#961)- types/basetypes: Prevented panic in the
ListValue
typesEqual
method when the receiver has a nilelementType
(#961)- types/basetypes: Prevented panic in the
SetValue
typesEqual
method when the receiver has a nilelementType
(#961)- resource: Ensured computed-only dynamic attributes will not cause
wrong final value type
errors during planning (#969)v1.7.0
BREAKING CHANGES:
- function: All parameters must be explicitly named via the
Name
field (#964)- function:
DefaultParameterNamePrefix
andDefaultVariadicParameterName
constants have been removed (#964)FEATURES:
- types/basetypes: Added
DynamicType
andDynamicValue
implementations for dynamic value handling (#147)- types/basetypes: Added interfaces
basetypes.DynamicTypable
,basetypes.DynamicValuable
, andbasetypes.DynamicValuableWithSemanticEquals
for dynamic custom type and value implementations (#147)- resource/schema: Added
DynamicAttribute
implementation for dynamic value handling (#147)- datasource/schema: Added
DynamicAttribute
implementation for dynamic value handling (#147)- provider/schema: Added
DynamicAttribute
implementation for dynamic value handling (#147)- function: Added
DynamicParameter
andDynamicReturn
for dynamic value handling` (#147)- resource/schema/dynamicdefault: New package with
StaticValue
implementation 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
Dynamic
interface for dynamic schema-based default implementations (#147)- resource/schema/planmodifier: New
Dynamic
interface for dynamic value plan modification implementations (#147)- schema/validator: New
Dynamic
interface for dynamic value schema validation (#147)v1.6.1
NOTES:
- all: The
v1.6.0
release 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:
... (truncated)
Changelog
Sourced from github.com/hashicorp/terraform-plugin-framework's changelog.
1.8.0 (April 18, 2024)
BREAKING CHANGES:
- function: Removed
Definition
typeParameter()
method (#968)NOTES:
- function: Provider-defined function features are now considered generally available and protected by compatibility promises (#966)
- attr/xattr: The
TypeWithValidate
interface has been deprecated in preference of theValidateableAttribute
interface. AValidatableParameter
interface has also been added to thefunction
package (#968)FEATURES:
- attr/xattr: Added
ValidateableAttribute
interface for custom value type implementations (#968)- function: Added
ValidateableParameter
interface for custom value type implementations (#968)function
: AddBoolParameterValidator
,DynamicParameterValidator
,Float64ParameterValidator
,Int64ParameterValidator
,ListParameterValidator
,MapParameterValidator
,NumberParameterValidator
,ObjectParameterValidator
,SetParameterValidator
, andStringParameterValidator
interfaces for custom function parameter validation implementations. (#971)function
: AddParameterWithBoolValidators
,ParameterWithInt64Validators
,ParameterWithFloat64Validators
,ParameterWithDynamicValidators
,ParameterWithListValidators
,ParameterWithMapValidators
,ParameterWithNumberValidators
,ParameterWithObjectValidators
,ParameterWithSetValidators
, andParameterWithStringValidators
interfaces to enable parameter-based validation support (#971)BUG FIXES:
- types/basetypes: Prevented panic in the
MapValue
typesEqual
method when the receiver has a nilelementType
(#961)- types/basetypes: Prevented panic in the
ListValue
typesEqual
method when the receiver has a nilelementType
(#961)- types/basetypes: Prevented panic in the
SetValue
typesEqual
method when the receiver has a nilelementType
(#961)- resource: Ensured computed-only dynamic attributes will not cause
wrong final value type
errors during planning (#969)1.7.0 (March 21, 2024)
BREAKING CHANGES:
- function: All parameters must be explicitly named via the
Name
field (#964)- function:
DefaultParameterNamePrefix
andDefaultVariadicParameterName
constants have been removed (#964)FEATURES:
- types/basetypes: Added
DynamicType
andDynamicValue
implementations for dynamic value handling (#147)- types/basetypes: Added interfaces
basetypes.DynamicTypable
,basetypes.DynamicValuable
, andbasetypes.DynamicValuableWithSemanticEquals
for dynamic custom type and value implementations (#147)- resource/schema: Added
DynamicAttribute
implementation for dynamic value handling (#147)- datasource/schema: Added
DynamicAttribute
implementation for dynamic value handling (#147)- provider/schema: Added
DynamicAttribute
implementation for dynamic value handling (#147)- function: Added
DynamicParameter
andDynamicReturn
for dynamic value handling` (#147)- resource/schema/dynamicdefault: New package with
StaticValue
implementation 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
Dynamic
interface for dynamic schema-based default implementations (#147)- resource/schema/planmodifier: New
Dynamic
interface for dynamic value plan modification implementations (#147)- schema/validator: New
Dynamic
interface for dynamic value schema validation (#147)1.6.1 (March 05, 2024)
NOTES:
... (truncated)
Commits
711b0a5
Update changelog9d9533c
build(deps): Bump github.com/hashicorp/terraform-plugin-go (#984)23c2403
Remove wildcard suffix fromsetup_terraform
workflow call (#981)392ed7c
website: Update testing documentation to utilize newstatecheck
and `knownv...de32b2c
basetypes: fix equality for values with nil elementType (#961)d36ac87
Add parameter-based provider-defined function validation (#971)f6057df
docs: Remove technical preview verbiage from provider-defined functions (#972)4a9b6a3
Add type-based provider-defined function parameter validation (#968)541a7cb
Small edit for style on a code comment (#975)484f311
internal/fwserver: Ensure computed dynamic values are marked as dynamic type ...- Additional commits viewable in compare view
Updates github.com/hashicorp/terraform-plugin-go
from 0.19.0 to 0.22.2
Release notes
Sourced from github.com/hashicorp/terraform-plugin-go's releases.
v0.22.2
BUG FIXES:
- tftypes: Large integers are always encoded as msgpack integers rather than float values to ensure the decoded value will not be rounded to 52-bit precision (#396)
v0.22.1
NOTES:
- all: Upgraded google.golang.org/protobuf dependency, which includes a fix for CVE-2024-24786. While the fixed feature is not used in this Go module, this upgrade may silence security vulnerability scanner reports that are based purely on dependency versions. (#385)
BUG FIXES:
- tftypes: Fixed an edge-case where
(Value).Equal
would panic when comparing two values with underlyingDynamicPseudoType
types and different concrete values. (#383)v0.22.0
BREAKING CHANGES:
- tfprotov5+tfprotov6: Modified the response returned from the CallFunction RPC, replacing diagnostics with function error (#380)
NOTES:
- 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. (#381)
- all: If using terraform-plugin-framework, terraform-plugin-mux, or terraform-plugin-sdk, only upgrade this Go module when upgrading those Go modules to [email protected], [email protected], and terraform-plugin-sdk/[email protected], or greater, respectively (#380)
v0.21.0
NOTES:
- tfprotov5+tfprotov6: An upcoming release will require the MoveResourceState implementation as part of ResourceServer (#364)
FEATURES:
- tfprotov5+tfprotov6: Upgraded protocols and added types to support the
MoveResourceState
RPC (#364)v0.20.0
NOTES:
- tfprotov5+tfprotov6: An upcoming release will require the FunctionServer implementation as part of ProviderServer. (#351)
- Provider-defined function support is in technical preview and offered without compatibility promises until Terraform 1.8 is generally available. (#351)
FEATURES:
- tfprotov5+tfprotov6: Upgraded protocols and added types to support provider-defined functions (#351)
v0.19.1
NOTES:
- This release introduces no functional changes. It does however include dependency updates, such as
google.golang.org/grpc
, which address upstream CVEs. (#324)
Changelog
Sourced from github.com/hashicorp/terraform-plugin-go's changelog.
0.22.2 (April 18, 2024)
BUG FIXES:
- tftypes: Large integers are always encoded as msgpack integers rather than float values to ensure the decoded value will not be rounded to 52-bit precision (#396)
0.22.1 (March 11, 2024)
NOTES:
- all: Upgraded google.golang.org/protobuf dependency, which includes a fix for CVE-2024-24786. While the fixed feature is not used in this Go module, this upgrade may silence security vulnerability scanner reports that are based purely on dependency versions. (#385)
BUG FIXES:
- tftypes: Fixed an edge-case where
(Value).Equal
would panic when comparing two values with underlyingDynamicPseudoType
types and different concrete values. (#383)0.22.0 (February 22, 2024)
BREAKING CHANGES:
- tfprotov5+tfprotov6: Modified the response returned from the CallFunction RPC, replacing diagnostics with function error (#380)
NOTES:
- 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. (#381)
- all: If using terraform-plugin-framework, terraform-plugin-mux, or terraform-plugin-sdk, only upgrade this Go module when upgrading those Go modules to [email protected], [email protected], and terraform-plugin-sdk/[email protected], or greater, respectively (#380)
0.21.0 (January 26, 2024)
NOTES:
- tfprotov5+tfprotov6: An upcoming release will require the MoveResourceState implementation as part of ResourceServer (#364)
FEATURES:
- tfprotov5+tfprotov6: Upgraded protocols and added types to support the
MoveResourceState
RPC (#364)0.20.0 (December 14, 2023)
NOTES:
- tfprotov5+tfprotov6: An upcoming release will require the FunctionServer implementation as part of ProviderServer. (#351)
- Provider-defined function support is in technical preview and offered without compatibility promises until Terraform 1.8 is generally available. (#351)
FEATURES:
- tfprotov5+tfprotov6: Upgraded protocols and added types to support provider-defined functions (#351)
0.19.1 (November 15, 2023)
... (truncated)
Commits
8e2a4b5
Update changelog865883d
don't marshal integer values as msgpack floats (#396)6d19ca6
workflows: Remove wildcard suffix from Terraform workflow call (#395)b2e7097
build(deps): Bump google.golang.org/grpc from 1.63.0 to 1.63.2 (#394)06b2d94
build(deps): Bump google.golang.org/grpc from 1.62.1 to 1.63.0 (#393)1d146a8
build(deps): Bump google.golang.org/protobuf in /tools (#390)a99dc45
Update changelog0d7e0a1
Update CHANGELOG for #385 (#387)d47f32b
build(deps): Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 (#385)dea0021
build(deps): Bump google.golang.org/grpc from 1.62.0 to 1.62.1 (#386)- Additional commits viewable in compare view
Updates github.com/hashicorp/terraform-plugin-mux
from 0.12.0 to 0.15.0
Release notes
Sourced from github.com/hashicorp/terraform-plugin-mux's releases.
v0.15.0
ENHANCEMENTS:
- all: Upgrade protocol versions to support modified
CallFunction
RPC which returns a FunctionError rather than Diagnostics (#226)v0.14.0
FEATURES:
- all: Upgrade protocol versions to support the
MoveResourceState
RPC (#220)v0.13.0
NOTES:
- all: Update
google.golang.org/grpc
dependency to address CVE-2023-44487 (#203)FEATURES:
- all: Upgrade protocol versions to support provider-defined functions (#209)
Changelog
Sourced from github.com/hashicorp/terraform-plugin-mux's changelog.
0.15.0 (February 23, 2024)
ENHANCEMENTS:
- all: Upgrade protocol versions to support modified
CallFunction
RPC which returns a FunctionError rather than Diagnostics (#226)0.14.0 (January 29, 2024)
FEATURES:
- all: Upgrade protocol versions to support the
MoveResourceState
RPC (#220)0.13.0 (December 14, 2023)
NOTES:
- all: Update
google.golang.org/grpc
dependency to address CVE-2023-44487 (#203)FEATURES:
- all: Upgrade protocol versions to support provider-defined functions (#209)
Commits
17f3671
Update changelog3557b60
all: Modify CallFunction implementations (#226) (#226)963d34b
Result of tsccr-helper -log-level=info gha update -latest . (#224)0127cd6
Result of tsccr-helper -log-level=info gha update -latest . (#223)ed533d4
Added GHA dependabot config for managing hashicorp actions (#222)31e83a1
Update changelogfb3849a
all: Initial MoveResourceState implementations (#220)4e0b2f9
Result of tsccr-helper -log-level=info gha update -latest . (#221)a3c2628
build(deps): bump github.com/hashicorp/terraform-plugin-go (#218)bcb3b35
Result of tsccr-helper -log-level=info gha update -latest . (#217)- Additional commits viewable in compare view
Updates github.com/hashicorp/terraform-plugin-sdk/v2
from 2.30.0 to 2.33.0
Release notes
Sourced from github.com/hashicorp/terraform-plugin-sdk/v2's releases.
v2.33.0
NOTES:
- helper/schema: While this Go module will not receive support for provider defined functions, the provider server is updated to handle the new operation, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future (#1316)
v2.32.0
NOTES:
- helper/schema: While this Go module will not receive support for moving resource state across resource types, the provider server is updated to handle the new operation, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future. (#1307)
v2.31.0
NOTES:
- helper/schema: While this Go module will not receive support for provider-defined functions, the provider server is updated to handle the new operations, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future. (#1288)
Changelog
Sourced from github.com/hashicorp/terraform-plugin-sdk/v2's changelog.
2.33.0 (February 23, 2024)
NOTES:
- helper/schema: While this Go module will not receive support for provider defined functions, the provider server is updated to handle the new operation, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future (#1316)
2.32.0 (January 29, 2024)
NOTES:
- helper/schema: While this Go module will not receive support for moving resource state across resource types, the provider server is updated to handle the new operation, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future. (#1307)
2.31.0 (December 14, 2023)
NOTES:
- helper/schema: While this Go module will not receive support for provider-defined functions, the provider server is updated to handle the new operations, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future. (#1288)
Commits
71cadbe
Update changelogb3a5571
Update meta package SDKVersion70fb6b9
all: Modify CallFunction implementations (#1316) (#1316)34d8a9e
Result of tsccr-helper -log-level=info gha update -latest . (#1313)43cfd32
build(deps): Bump github.com/hashicorp/hc-install from 0.6.2 to 0.6.3 (#1312)fee8c9c
build(deps): Bump golang.org/x/crypto from 0.18.0 to 0.19.0 (#1310)19a0da0
Result of tsccr-helper -log-level=info gha update -latest . (#1309)3e7e2e0
Added GHA dependabot config for managing hashicorp actions (#1308)b7c8ee7
Update changelog060ea7a
Update meta package SDKVersion- Additional commits viewable in compare view
Updates github.com/labd/commercetools-go-sdk
from 1.4.0 to 1.5.1
Release notes
Sourced from github.com/labd/commercetools-go-sdk's releases.
v1.5.1
Fixed
- Regenerated sdk with 404 response codes
v1.5.0
Added
- Updated api specs
v1.4.1
Fixed
- Reran generator to add default roundtrippers
Changelog
Sourced from github.com/labd/commercetools-go-sdk's changelog.
v1.5.1 - 2024-03-21
Fixed
- Regenerated sdk with 404 response codes
v1.5.0 - 2024-02-23
Added
- Updated api specs
v1.4.1 - 2023-12-15
Fixed
- Reran generator to add default roundtrippers
Commits
2e0ee33
Merge pull request #100 from labd/release/v1.5.11fdecde
Release v1.5.10428fb8
Merge pull request #99 from labd/fix/404-responses2b11e6e
fix: fixed 404 response codes not being returned1caec9b
Merge pull request #97 from labd/release/v1.5.0fb57406
Release v1.5.05bcec13
Merge pull request #96 from labd/feat/update-sdk9858ec6
feat: manually removed redirectcc17f1b
feat: updated sdk6167676
Merge pull request #93 from labd/release/v1.4.1- Additional commits viewable in compare view
Updates github.com/stretchr/testify
from 1.8.4 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
@SuperQ
in stretchr/testify#1394- Document that require is not safe to call in created goroutines by
@programmer04
in stretchr/testify#1392- Remove myself from MAINTAINERS.md by
@mvdkleijn
in stretchr/testify#1367- Correct spelling/grammar by
@echarrod
in stretchr/testify#1389- docs: Update URLs in README by
@davidjb
in stretchr/testify#1349- Update mockery link to Github Pages in README by
@LandonTClipp
in stretchr/testify#1346- docs: Fix typos in tests and comments by
@alexandear
in stretchr/testify#1410- CI: tests from go1.17 by
@SuperQ
in stretchr/testify#1409- Fix adding ? when no values passed by
@lesichkovm
in stretchr/testify#1320- codegen: use standard header for generated files by
@dolmen
in stretchr/testify#1406- mock: AssertExpectations log reason only on failure by
@hikyaru-suzuki
in stretchr/testify#1360- assert: fix flaky TestNeverTrue by
@dolmen
in stretchr/testify#1417- README: fix typos "set up" vs "setup" by
@ossan-dev
in stretchr/testify#1428- mock: move regexp compilation outside of
Called
by@aud10slave
in stretchr/testify#631- assert: refactor internal func getLen() by
@dolmen
in stretchr/testify#1445- mock: deprecate type AnythingOfTypeArgument (#1434) by
@dolmen
in stretchr/testify#1441- Remove no longer needed assert.canConvert by
@alexandear
in stretchr/testify#1470- assert: ObjectsAreEqual: use time.Equal for time.Time types by
@tscales
in stretchr/testify#1464- Bump actions/checkout from 3 to 4 by
@dependabot
in stretchr/testify#1466- Bump actions/setup-go from 3.2.0 to 4.1.0 by
@dependabot
in stretchr/testify#1451- fix: make EventuallyWithT concurrency safe by
@czeslavo
in stretchr/testify#1395- assert: fix httpCode and HTTPBody occur panic when http.Handler read Body by
@hidu
in stretchr/testify#1484- assert.EqualExportedValues: fix handling of arrays by
@zrbecker
in stretchr/testify#1473- .github: use latest Go versions by
@kevinburkesegment
in stretchr/testify#1489- assert: Deprecate EqualExportedValues by
@HaraldNordgren
in stretchr/testify#1488- suite: refactor test assertions by
@alexandear
in stretchr/testify#1474- suite: fix SetupSubTest and TearDownSubTest execution order by
@linusbarth
in stretchr/testify#1471- docs: Fix deprecation comments for http package by
@alexandear
in stretchr/testify#1335- Add map support doc comments to Subset and NotSubset by
@jedevc
in stretchr/testify#1306- TestErrorIs/TestNotErrorIs: check error message contents by
@craig65535
in stretchr/testify#1435- suite: fix subtest names (fix #1501) by
@dolmen
in stretchr/testify#1504- assert: improve unsafe.Pointer tests by
@dolmen
in stretchr/testify#1505- assert: simplify isNil implementation by
@dolmen
in stretchr/testify#1506- assert.InEpsilonSlice: fix expected/actual order and other improvements by
@dolmen
in stretchr/testify#1483- Fix dependency cycle with objx #1292 by
@dolmen
in stretchr/testify#1453- mock: refactor TestIsArgsEqual by
@dolmen
in stretchr/testify#1444- mock: optimize argument matching checks by
@dolmen
in stretchr/testify#1416- assert: fix TestEventuallyTimeout by
@dolmen
in stretchr/testify#1412- CI: add go 1.21 in GitHub Actions by
@dolmen
in s...Description has been truncated
⚠️ No Changeset found
Latest commit: 88c664abe75bde38045432b81d7c050bcd6733a4
Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.
Click here to learn what changesets are, and how to add one.
Click here if you're a maintainer who wants to add a changeset to this PR
@dependabot recreate
Looks like these dependencies are updatable in another way, so this is no longer needed.