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 Mend: high confidence minor and patch dependency updates #2

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

Conversation

mend-for-garden.eu.org[bot]
Copy link

@mend-for-garden.eu.org mend-for-garden.eu.org bot commented Jul 18, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/hashicorp/terraform-plugin-sdk/v2 v2.13.0 -> v2.36.1 age adoption passing confidence
github.com/stretchr/testify v1.7.0 -> v1.10.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

hashicorp/terraform-plugin-sdk (github.com/hashicorp/terraform-plugin-sdk/v2)

v2.36.1

Compare Source

NOTES:

  • Write-only attribute support is in technical preview and offered without compatibility promises until Terraform 1.11 is generally available. (#​1375)

BUG FIXES:

  • helper/schema: Fixed bug that allowed write-only attributes within set nested blocks. Any attribute within a set nested block with WriteOnly set to true will now trigger an error message. (#​1427)

v2.36.0

Compare Source

NOTES:

  • Write-only attribute support is in technical preview and offered without compatibility promises until Terraform 1.11 is generally available. (#​1375)

FEATURES:

  • helper/schema: Added WriteOnly schema behavior for managed resource schemas to indicate a write-only attribute. Write-only attribute values are not saved to the Terraform plan or state artifacts. (#​1375)
  • helper/validation: Added PreferWriteOnlyAttribute() validator that warns practitioners when a write-only version of a configured attribute is available. (#​1375)
  • schema/resource: Added ValidateRawResourceConfigFuncs field which allows resources to define validation logic during the ValidateResourceTypeConfig RPC. (#​1375)

v2.35.0

Compare Source

NOTES:

  • all: This Go module has been updated to Go 1.22 per the Go support policy. It is recommended to review the Go 1.22 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#​1373)
  • helper/schema: While this Go module will not receive support for ephemeral resource types, 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. (#​1390)

v2.34.0

Compare Source

NOTES:

  • all: The v2.33.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 (#​1318)
  • This release contains support for deferred actions, which is an experimental feature only available in prerelease builds of Terraform 1.9 and later. This functionality is subject to change and is not protected by version compatibility guarantees. (#​1335)

FEATURES:

  • helper/schema: Added (Provider).ConfigureProvider function for configuring providers that support additional features, such as deferred actions. (#​1335)
  • helper/schema: Added (Resource).ResourceBehavior to allow additional control over deferred action behavior during plan modification. (#​1335)

v2.33.0

Compare Source

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

Compare Source

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

Compare Source

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)

v2.30.0

Compare Source

NOTES:

  • meta: The SDKVersion variable, SDKPrerelease variable, and SDKVersionString() function have been deprecated. Use the Go standard library runtime/debug package build information instead. (#​1257)

BUG FIXES:

  • meta: Fixed version in SDKVersion variable and SDKVersionString() function (#​1257)
  • helper/schema: Ensured (ResourceData).GetRawConfig() data is populated for Provider.ConfigureFunc and Provider.ConfigureContextFunc (#​1270)
  • helper/schema: Ensured (ResourceData).GetOkExists() second result is true when configuration contains zero-value data in Provider.ConfigureFunc and Provider.ConfigureContextFunc (#​1270)

v2.29.0

Compare Source

NOTES:

FEATURES:

  • helper/schema: Upgrade to protocol version 5.4, which can significantly reduce memory usage with Terraform 1.6 and later when a configuration includes multiple instances of the same provider (#​1234)

ENHANCEMENTS:

  • helper/validation: Added AllDiag and AnyDiag, which are SchemaValidateDiagFunc variants of All and Any (#​1155)
  • helper/validation: Added quoting in StringInSlice error diagnostic output to prevent confusion with values that contain spaces (#​464)

v2.28.0

Compare Source

NOTES:

  • helper/schema: The Resource type EnableApplyLegacyTypeSystemErrors and EnablePlanLegacyTypeSystemErrors fields can be enabled to more easily discover resource data consistency errors which Terraform would normally demote to warning logs. Before enabling the flag in a production release for a resource, the resource should be exhaustively acceptance tested as there may be unrecoverable error situations for practitioners. It is recommended to first enable and test in environments where it is easy to clean up resources, potentially outside of Terraform. (#​1227)

ENHANCEMENTS:

  • helper/schema: Added Resource type EnableLegacyTypeSystemApplyErrors field, which will prevent Terraform from demoting data consistency errors to warning logs during ApplyResourceChange (Create, Update, and Delete) operations with the resource (#​1227)
  • helper/schema: Added Resource type EnableLegacyTypeSystemPlanErrors field, which can be used to prevent Terraform from demoting data consistency errors to warning logs during PlanResourceChange operations with the resource (#​1227)

v2.27.0

Compare Source

NOTES:

  • helper/schema: Consumers directly referencing the Resource type Schema field should switch to the SchemaMap method to ensure new SchemaFunc field data is properly retrieved (#​1217)

ENHANCEMENTS:

  • all: Improved SDK logging performance when messages would be skipped due to configured logging level (#​1202)
  • helper/schema: Added Resource type SchemaFunc field and SchemaMap method, which can reduce resident memory usage with large schemas (#​1217)

v2.26.1

Compare Source

BUG FIXES:

  • helper/resource: Prevented build errors with type aliasing added in v2.26.0 (#​1176)

v2.26.0

Compare Source

NOTES:

  • This Go module has been updated to Go 1.19 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#​1163)
  • helper/resource: Deprecated PrefixedUniqueId() and UniqueId(). Use the helper/id package instead. These deprecations are to assist in migrating to terraform-plugin-testing (#​1167)
  • helper/resource: Deprecated RetryContext(), StateChangeConf, and associated *Error types. Use the helper/retry package instead. These deprecations are to assist in migrating to terraform-plugin-testing (#​1167)

ENHANCEMENTS:

  • helper/id: New helper/id package added. resource.PrefixedUniqueId() and resource.UniqueId() are deprecated, helper/id should be used instead. helper/resource now contains aliases to the migrated code (#​1167)
  • helper/retry: New helper/retry package added. resource.RetryContext(), resource.StateChangeConf, and associated *Error types are deprecated, helper/retry should be used instead. `helper/resource now contains aliases to the migrated code (#​1167)

v2.25.0

Compare Source

BUG FIXES:

  • helper/schema: Allow diagnostic messages with incorrect UTF-8 encoding to pass through with the invalid sequences replaced with the Unicode Replacement Character. This avoids returning the unhelpful message "string field contains invalid UTF-8" in that case. (#​1111)
  • helper/schema: Prevented unexpected difference for timeouts on first plan after import (#​1146)

v2.24.1

Compare Source

BUG FIXES:

  • helper/resource: Fixed TestStep type ImportStateCheck field so that it only matches against resources following a change in behaviour in Terraform 1.3 that imports both resources and data sources into state (#​1089)
  • helper/resource: Prevented go-plugin goroutine leak per Terraform command (#​1095)
  • helper/resource: Prevented goroutine leak per Terraform command when testing terraform-plugin-sdk based providers via Providers or ProviderFactories (#​1091)
  • helper/resource: Prevented provider configuration already given error when TestStep type Config field already contained provider configuration block (#​1092)

v2.24.0

Compare Source

ENHANCEMENTS:

  • helper/resource: Added TestStep type RefreshState field, which enables a step that refreshes state without an explicit apply or configuration changes (#​1070)

BUG FIXES:

  • helper/resource: Fixed TestStep type ImportStateVerify field so that it only matches against resources following a change in behaviour in Terraform 1.3 that imports both resources and their dependent data sources (#​1077)

v2.23.0

Compare Source

ENHANCEMENTS:

  • helper/resource: Added Terraform configuration to TRACE logging (#​1059)
  • helper/resource: Added terraform plan output to TRACE logging (#​1058)

BUG FIXES:

  • helper/resource: Prevented Inconsistent dependency lock file errors when using ExternalProviders outside the hashicorp namespace (#​1057)

v2.22.0

Compare Source

ENHANCEMENTS:

  • helper/resource: Add ImportStatePersist to optionally persist state generated during import (#​1052)

BUG FIXES:

  • helper/schema: Delayed deprecated attribute warnings for unknown values, which may be null (#​1047)
  • helper/schema: Included path information in list size diagnostics for cases where Terraform does not include the configuration source (#​826)

v2.21.0

Compare Source

NOTES:

  • This Go module has been updated to Go 1.18 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#​1027)

BUG FIXES:

  • helper/resource: Fixed TestStep type Taint field usage to properly recreate resources (#​1031)
  • helper/schema: Ensured RawConfig, RawPlan, and RawState are correctly copied during planning with recreation (#​1024)

v2.20.0

Compare Source

NOTES:

  • helper/logging: Existing NewTransport() is now deprecated in favour of using the new NewLoggingHTTPTransport() or NewSubsystemLoggingHTTPTransport() (#​1006)

FEATURES:

  • helper/logging: New NewLoggingHTTPTransport() and NewSubsystemLoggingHTTPTransport() functions, providing http.RoundTripper Transport implementations that log request/response using terraform-plugin-log (#​546) (#​1006)

v2.19.0

Compare Source

NOTES:

  • The underlying terraform-plugin-log dependency has been updated to v0.6.0, which includes log filtering support and breaking changes of With() to SetField() function names. Any provider logging which calls those functions may require updates. (#​1003)

v2.18.0

Compare Source

ENHANCEMENTS:

  • helper/resource: Added TF_ACC_LOG, TF_LOG_CORE, and TF_LOG_PROVIDER environment variable handling for Terraform versions 0.15 and later (#​993)
  • helper/schema: Added sdk.proto logger request duration and response diagnostics logging (#​996)

BUG FIXES:

  • helper/resource: Ensured errors are always logged. (#​983)

v2.17.0

Compare Source

NOTES:

  • helper/resource: Provider references or external installation can now be handled at either the TestCase or TestStep level. Using the TestStep handling, advanced use cases are now enabled such as state upgrade acceptance testing. (#​972)

ENHANCEMENTS:

  • helper/resource: Added TestStep type ExternalProviders, ProtoV5ProviderFactories, ProtoV6ProviderFactories, and ProviderFactories fields (#​972)

BUG FIXES:

  • helper/resource: Removed extraneous terraform state show command when not using the TestStep type Taint field (#​972)

v2.16.0

Compare Source

ENHANCEMENTS:

  • helper/resource: Added error logging before failing tests, so errors are visible in test output and any separate log file (#​958)

BUG FIXES:

v2.15.0

Compare Source

FEATURES:

  • helper/resource: New TestCheckResourceAttrWith test helper, that simplifies checking of attribute values via custom functions (#​950)

ENHANCEMENTS:

  • helper/schema: Propagated tf_data_source_type, tf_req_id, tf_resource_type, and tf_rpc fields in log entries (#​955)

BUG FIXES:

  • helper/resource: Prevented Unable to create logging subsystem with AdditionalLocationOffset due to missing root logger options warning logs during acceptance testing (#​955)

v2.14.0

Compare Source

NOTES:

  • This Go module has been updated to Go 1.17 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#​934)

BUG FIXES:

  • helper/resource: Ensured Terraform CLI logs are written to TF_LOG_PATH_MASK environment variable value when both TF_ACC_LOG_PATH and TF_LOG_PATH_MASK are set (#​938)
  • helper/resource: Ensured @caller in SDK logging entries accurately reflected calling code location (#​939)
  • helper/resource: Prevented regression since 2.13.0 with the removal of environment variables, including TF_VAR_*, when calling Terraform CLI commands (#​937)
  • helper/schema: Ensured @caller in SDK logging entries accurately reflected calling code location (#​939)
  • helper/schema: Prevented missing SDK logging entries and confusing provider.stdio TRACE logging entries (#​936)
stretchr/testify (github.com/stretchr/testify)

v1.10.0

Compare Source

What's Changed

Functional Changes
Fixes
Documantation, Build & CI

New Contributors

Full Changelog: stretchr/testify@v1.9.0...v1.10.0

v1.9.0

Compare Source

What's Changed

New Contributors

Full Changelog: stretchr/testify@v1.8.4...v1.9.0

v1.8.4

Compare Source

What's Changed

New Contributors

Full Changelog: stretchr/testify@v1.8.3...v1.8.4

v1.8.3

Compare Source

What's Changed

New 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

disabled

Copy link
Author

mend-for-garden.eu.org bot commented Jul 18, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 31 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.19 -> 1.24.0
github.com/Masterminds/goutils v1.1.0 -> v1.1.1
github.com/fatih/color v1.7.0 -> v1.16.0
github.com/golang/protobuf v1.5.2 -> v1.5.4
github.com/google/go-cmp v0.5.7 -> v0.6.0
github.com/google/uuid v1.1.2 -> v1.6.0
github.com/hashicorp/go-hclog v1.2.0 -> v1.6.3
github.com/hashicorp/go-plugin v1.4.3 -> v1.6.2
github.com/hashicorp/go-uuid v1.0.2 -> v1.0.3
github.com/hashicorp/go-version v1.4.0 -> v1.7.0
github.com/hashicorp/hc-install v0.3.1 -> v0.9.1
github.com/hashicorp/hcl/v2 v2.11.1 -> v2.23.0
github.com/hashicorp/terraform-exec v0.16.0 -> v0.22.0
github.com/hashicorp/terraform-json v0.13.0 -> v0.24.0
github.com/hashicorp/terraform-plugin-go v0.8.0 -> v0.26.0
github.com/hashicorp/terraform-plugin-log v0.3.0 -> v0.9.0
github.com/hashicorp/terraform-registry-address v0.0.0-20210412075316-9b2996cce896 -> v0.2.4
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 -> v0.1.1
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d -> v0.1.1
github.com/huandu/xstrings v1.3.2 -> v1.3.3
github.com/imdario/mergo v0.3.12 -> v0.3.15
github.com/mattn/go-colorable v0.1.12 -> v0.1.13
github.com/mattn/go-isatty v0.0.14 -> v0.0.20
github.com/mitchellh/mapstructure v1.4.3 -> v1.5.0
github.com/posener/complete v1.2.1 -> v1.2.3
github.com/zclconf/go-cty v1.10.0 -> v1.16.2
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e -> v0.33.0
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd -> v0.34.0
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 -> v0.23.0
google.golang.org/grpc v1.45.0 -> v1.69.4
google.golang.org/protobuf v1.27.1 -> v1.36.3
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 -> v3.0.1

@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from 69fd60e to 4840691 Compare July 18, 2024 12:40
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 4840691 to d45e501 Compare August 7, 2024 08:08
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from d45e501 to 8ea7760 Compare August 14, 2024 09:20
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 8ea7760 to 4ecdbef Compare September 6, 2024 07:50
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 4ecdbef to be3bd84 Compare October 2, 2024 06:23
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update Mend: high confidence minor and patch dependency updates Update module github.com/stretchr/testify to v1.9.0 Nov 1, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from e800228 to 74e0a38 Compare November 5, 2024 10:12
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update module github.com/stretchr/testify to v1.9.0 Update Mend: high confidence minor and patch dependency updates Nov 5, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 74e0a38 to db137a1 Compare November 9, 2024 09:55
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update Mend: high confidence minor and patch dependency updates Update module github.com/stretchr/testify to v1.9.0 Nov 9, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from db137a1 to 8b222e7 Compare November 18, 2024 11:47
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update module github.com/stretchr/testify to v1.9.0 Update Mend: high confidence minor and patch dependency updates Nov 18, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 8b222e7 to c86d554 Compare November 22, 2024 10:52
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update Mend: high confidence minor and patch dependency updates Update module github.com/stretchr/testify to v1.9.0 Nov 22, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from c86d554 to 0bce243 Compare November 23, 2024 14:08
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update module github.com/stretchr/testify to v1.9.0 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.35.0 Nov 23, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.35.0 Update module github.com/stretchr/testify to v1.10.0 Nov 26, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from 6c202ae to 172b233 Compare November 27, 2024 06:35
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update module github.com/stretchr/testify to v1.10.0 Update Mend: high confidence minor and patch dependency updates Nov 27, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 172b233 to 1efd62b Compare November 28, 2024 07:26
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update Mend: high confidence minor and patch dependency updates Update module github.com/stretchr/testify to v1.10.0 Nov 28, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update module github.com/stretchr/testify to v1.10.0 Update module github.com/stretchr/testify to v1.10.0 - autoclosed Nov 29, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot deleted the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch November 29, 2024 07:55
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update module github.com/stretchr/testify to v1.10.0 - autoclosed Update module github.com/stretchr/testify to v1.10.0 Nov 30, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot restored the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch November 30, 2024 07:10
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update module github.com/stretchr/testify to v1.10.0 Update Mend: high confidence minor and patch dependency updates Dec 2, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from ac2d9d4 to 971f62f Compare December 3, 2024 06:57
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update Mend: high confidence minor and patch dependency updates Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.35.0 Dec 3, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 971f62f to 218d1d9 Compare December 4, 2024 06:33
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.35.0 Update Mend: high confidence minor and patch dependency updates Dec 4, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 218d1d9 to 1722be0 Compare December 9, 2024 07:19
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update Mend: high confidence minor and patch dependency updates Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.35.0 Dec 9, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 1722be0 to 3a94639 Compare December 12, 2024 07:41
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.35.0 Update Mend: high confidence minor and patch dependency updates Dec 12, 2024
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 3a94639 to 63733d1 Compare December 13, 2024 07:26
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from 9ad6911 to 3d8b7c3 Compare December 21, 2024 09:32
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from df74094 to 6911b71 Compare January 9, 2025 09:28
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 6911b71 to 029b7a9 Compare January 17, 2025 11:21
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 029b7a9 to 39ac423 Compare February 5, 2025 02:36
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 5 times, most recently from 3bba74f to 9aa0ede Compare February 18, 2025 20:39
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update Mend: high confidence minor and patch dependency updates Update module github.com/stretchr/testify to v1.10.0 Feb 20, 2025
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from f1ef32d to 0b7ad55 Compare February 22, 2025 11:36
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update module github.com/stretchr/testify to v1.10.0 Update Mend: high confidence minor and patch dependency updates Feb 22, 2025
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 0b7ad55 to c93d52b Compare February 24, 2025 08:16
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update Mend: high confidence minor and patch dependency updates Update module github.com/stretchr/testify to v1.10.0 Feb 24, 2025
@mend-for-garden.eu.org mend-for-garden.eu.org bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from c93d52b to bce836f Compare February 27, 2025 13:15
@mend-for-garden.eu.org mend-for-garden.eu.org bot changed the title Update module github.com/stretchr/testify to v1.10.0 Update Mend: high confidence minor and patch dependency updates Feb 27, 2025
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