chore(deps): Update go modules and/or dev-tools
This PR contains the following updates:
| Package | Type | Update | Change | Pending | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|---|---|---|
| cft/developer-tools | minor | 1.22 -> 1.23 |
||||||
| cloud.google.com/go | require | minor | v0.115.1 -> v0.117.0 |
v0.118.0 |
||||
| github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test | require | minor | v0.16.2 -> v0.17.3 |
v0.17.4 |
||||
| github.com/stretchr/testify | require | minor | v1.9.0 -> v1.10.0 |
|||||
| go (source) | toolchain | minor | 1.22.7 -> 1.23.4 |
|||||
| google.golang.org/api | require | minor | v0.198.0 -> v0.214.0 |
Release Notes
googleapis/google-cloud-go (cloud.google.com/go)
v0.117.0
Features
- internal/trace: Remove previously deprecated OpenCensus support (#11230) (40cf125), refs #10287
- transport: Remove deprecated EXPERIMENTAL OpenCensus trace context propagation (#11239) (0d1ac87), refs #10287 #11230
v0.116.0
Features
stretchr/testify (github.com/stretchr/testify)
v1.10.0
What's Changed
Functional Changes
- Add PanicAssertionFunc by @fahimbagar in https://github.com/stretchr/testify/pull/1337
- assert: deprecate CompareType by @dolmen in https://github.com/stretchr/testify/pull/1566
- assert: make YAML dependency pluggable via build tags by @dolmen in https://github.com/stretchr/testify/pull/1579
- assert: new assertion NotElementsMatch by @hendrywiranto in https://github.com/stretchr/testify/pull/1600
- mock: in order mock calls by @ReyOrtiz in https://github.com/stretchr/testify/pull/1637
- Add assertion for NotErrorAs by @palsivertsen in https://github.com/stretchr/testify/pull/1129
- Record Return Arguments of a Call by @jayd3e in https://github.com/stretchr/testify/pull/1636
- assert.EqualExportedValues: accepts everything by @redachl in https://github.com/stretchr/testify/pull/1586
Fixes
- assert: make tHelper a type alias by @dolmen in https://github.com/stretchr/testify/pull/1562
- Do not get argument again unnecessarily in Arguments.Error() by @TomWright in https://github.com/stretchr/testify/pull/820
- Fix time.Time compare by @myxo in https://github.com/stretchr/testify/pull/1582
- assert.Regexp: handle []byte array properly by @kevinburkesegment in https://github.com/stretchr/testify/pull/1587
- assert: collect.FailNow() should not panic by @marshall-lee in https://github.com/stretchr/testify/pull/1481
- mock: simplify implementation of FunctionalOptions by @dolmen in https://github.com/stretchr/testify/pull/1571
- mock: caller information for unexpected method call by @spirin in https://github.com/stretchr/testify/pull/1644
- suite: fix test failures by @stevenh in https://github.com/stretchr/testify/pull/1421
- Fix issue #1662 (comparing infs should fail) by @ybrustin in https://github.com/stretchr/testify/pull/1663
- NotSame should fail if args are not pointers #1661 by @sikehish in https://github.com/stretchr/testify/pull/1664
- Increase timeouts in Test_Mock_Called_blocks to reduce flakiness in CI by @sikehish in https://github.com/stretchr/testify/pull/1667
- fix: compare functional option names for indirect calls by @arjun-1 in https://github.com/stretchr/testify/pull/1626
Documantation, Build & CI
- .gitignore: ignore "go test -c" binaries by @dolmen in https://github.com/stretchr/testify/pull/1565
- mock: improve doc by @dolmen in https://github.com/stretchr/testify/pull/1570
- mock: fix FunctionalOptions docs by @snirye in https://github.com/stretchr/testify/pull/1433
- README: link out to the excellent testifylint by @brackendawson in https://github.com/stretchr/testify/pull/1568
- assert: fix typo in comment by @JohnEndson in https://github.com/stretchr/testify/pull/1580
- Correct the EventuallyWithT and EventuallyWithTf example by @JonCrowther in https://github.com/stretchr/testify/pull/1588
- CI: bump softprops/action-gh-release from 1 to 2 by @dependabot in https://github.com/stretchr/testify/pull/1575
- mock: document more alternatives to deprecated AnythingOfTypeArgument by @dolmen in https://github.com/stretchr/testify/pull/1569
- assert: Correctly document EqualValues behavior by @brackendawson in https://github.com/stretchr/testify/pull/1593
- fix: grammar in godoc by @miparnisari in https://github.com/stretchr/testify/pull/1607
- .github/workflows: Run tests for Go 1.22 by @HaraldNordgren in https://github.com/stretchr/testify/pull/1629
- Document suite's lack of support for t.Parallel by @brackendawson in https://github.com/stretchr/testify/pull/1645
- assert: fix typos in comments by @alexandear in https://github.com/stretchr/testify/pull/1650
- mock: fix doc comment for NotBefore by @alexandear in https://github.com/stretchr/testify/pull/1651
- Generate better comments for require package by @Neokil in https://github.com/stretchr/testify/pull/1610
- README: replace Testify V2 notice with @dolmen's V2 manifesto by @hendrywiranto in https://github.com/stretchr/testify/pull/1518
New Contributors
- @fahimbagar made their first contribution in https://github.com/stretchr/testify/pull/1337
- @TomWright made their first contribution in https://github.com/stretchr/testify/pull/820
- @snirye made their first contribution in https://github.com/stretchr/testify/pull/1433
- @myxo made their first contribution in https://github.com/stretchr/testify/pull/1582
- @JohnEndson made their first contribution in https://github.com/stretchr/testify/pull/1580
- @JonCrowther made their first contribution in https://github.com/stretchr/testify/pull/1588
- @miparnisari made their first contribution in https://github.com/stretchr/testify/pull/1607
- @marshall-lee made their first contribution in https://github.com/stretchr/testify/pull/1481
- @spirin made their first contribution in https://github.com/stretchr/testify/pull/1644
- @ReyOrtiz made their first contribution in https://github.com/stretchr/testify/pull/1637
- @stevenh made their first contribution in https://github.com/stretchr/testify/pull/1421
- @jayd3e made their first contribution in https://github.com/stretchr/testify/pull/1636
- @Neokil made their first contribution in https://github.com/stretchr/testify/pull/1610
- @redachl made their first contribution in https://github.com/stretchr/testify/pull/1586
- @ybrustin made their first contribution in https://github.com/stretchr/testify/pull/1663
- @sikehish made their first contribution in https://github.com/stretchr/testify/pull/1664
- @arjun-1 made their first contribution in https://github.com/stretchr/testify/pull/1626
Full Changelog: https://github.com/stretchr/testify/compare/v1.9.0...v1.10.0
googleapis/google-api-go-client (google.golang.org/api)
v0.214.0
Features
- all: Auto-regenerate discovery clients (#2926) (7a17059)
- all: Auto-regenerate discovery clients (#2931) (946a672)
v0.213.0
Features
v0.212.0
Features
- Add logging support (#2856) (ccc9019)
- all: Auto-regenerate discovery clients (#2909) (c3b4421)
- all: Auto-regenerate discovery clients (#2912) (f9e9be1)
- all: Auto-regenerate discovery clients (#2916) (b46f348)
- all: Auto-regenerate discovery clients (#2919) (5a3b270)
- all: Auto-regenerate discovery clients (#2920) (ed29945)
- all: Auto-regenerate discovery clients (#2922) (4fd4833)
- Pass through logging in options (#2923) (2884c4e)
v0.211.0
Features
- all: Auto-regenerate discovery clients (#2897) (a7a9149)
- all: Auto-regenerate discovery clients (#2899) (587a11d)
- all: Auto-regenerate discovery clients (#2902) (d4cb90f)
- all: Auto-regenerate discovery clients (#2903) (6528fb2)
- all: Auto-regenerate discovery clients (#2905) (f37ece7)
- all: Auto-regenerate discovery clients (#2906) (91960b1)
- transport: Remove deprecated EXPERIMENTAL OpenCensus trace context propagation (#2901) (2b3363e)
Bug Fixes
v0.210.0
Features
- all: Auto-regenerate discovery clients (#2886) (f446504)
- all: Auto-regenerate discovery clients (#2888) (a990614)
- all: Auto-regenerate discovery clients (#2892) (22e0d11)
- all: Auto-regenerate discovery clients (#2893) (2657039)
- all: Auto-regenerate discovery clients (#2895) (46fab24)
- all: Auto-regenerate discovery clients (#2896) (efded92)
- Async refresh dry run in parallel with sync refresh (#2849) (acd2581)
- option/internaloption: Add AuthCreds helper (#2891) (6ee8349)
Bug Fixes
v0.209.0
Features
v0.208.0
Features
- all: Auto-regenerate discovery clients (#2881) (44435a9)
- gensupport: Per-chunk transfer timeout configs (09fa125)
- gensupport: Per-chunk transfer timeout configs (#2865) (09fa125)
v0.207.0
Features
- all: Auto-regenerate discovery clients (#2874) (e9ebb69)
- all: Auto-regenerate discovery clients (#2876) (796b248)
- all: Auto-regenerate discovery clients (#2879) (9c21349)
v0.206.0
Features
- all: Auto-regenerate discovery clients (#2862) (c552a34)
- all: Auto-regenerate discovery clients (#2866) (6495d84)
- all: Auto-regenerate discovery clients (#2868) (58faff9)
- all: Auto-regenerate discovery clients (#2870) (031802c)
- all: Auto-regenerate discovery clients (#2871) (8fab1d8)
- all: Auto-regenerate discovery clients (#2872) (20de5d2)
- option: Add support for user loggers (#2873) (922e59d)
v0.205.0
Features
- all: Auto-regenerate discovery clients (#2852) (e3868f2)
- all: Auto-regenerate discovery clients (#2855) (47ea8e4)
- all: Auto-regenerate discovery clients (#2857) (7832094)
- all: Auto-regenerate discovery clients (#2858) (eb00c84)
- all: Auto-regenerate discovery clients (#2860) (3347fa1)
v0.204.0
Features
- all: Auto-regenerate discovery clients (#2837) (343ae0e)
- all: Auto-regenerate discovery clients (#2839) (37b271e)
- all: Auto-regenerate discovery clients (#2841) (fb3747b)
- all: Auto-regenerate discovery clients (#2842) (7221d2c)
- all: Auto-regenerate discovery clients (#2844) (56c5ddb)
- all: Auto-regenerate discovery clients (#2845) (9d5f008)
- all: Auto-regenerate discovery clients (#2848) (5bc448d)
- all: Auto-regenerate discovery clients (#2850) (7955ec4)
Bug Fixes
Documentation
v0.203.0
Features
v0.202.0
Features
- all: Auto-regenerate discovery clients (#2827) (cb3f24b)
- all: Auto-regenerate discovery clients (#2829) (5384fb9)
- all: Auto-regenerate discovery clients (#2830) (64042ed)
- all: Auto-regenerate discovery clients (#2831) (d094279)
- all: Auto-regenerate discovery clients (#2833) (87e652f)
v0.201.0
Features
- all: Auto-regenerate discovery clients (#2822) (02a3fa0)
- all: Auto-regenerate discovery clients (#2825) (2c66186)
v0.200.0
Features
- all: Auto-regenerate discovery clients (#2801) (4f39791)
- all: Auto-regenerate discovery clients (#2803) (1cd1132)
- all: Auto-regenerate discovery clients (#2804) (9d791a4)
- all: Auto-regenerate discovery clients (#2806) (1babb16)
- all: Auto-regenerate discovery clients (#2809) (9250036)
- all: Auto-regenerate discovery clients (#2811) (4fe9fdf)
- all: Auto-regenerate discovery clients (#2812) (f5c1edd)
- all: Auto-regenerate discovery clients (#2813) (8fad922)
- all: Auto-regenerate discovery clients (#2814) (2c6dcc6)
- all: Auto-regenerate discovery clients (#2816) (d5b5e6f)
- all: Auto-regenerate discovery clients (#2817) (0a52d2a)
v0.199.0
Features
- all: Auto-regenerate discovery clients (#2791) (bd9630a)
- all: Auto-regenerate discovery clients (#2793) (ac7c6de)
- all: Auto-regenerate discovery clients (#2794) (d0e0dc3)
- all: Auto-regenerate discovery clients (#2796) (34102ae)
- all: Auto-regenerate discovery clients (#2797) (21926ca)
- all: Auto-regenerate discovery clients (#2799) (9ce4b50)
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 is behind base branch, 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
This PR was generated by Mend Renovate. View the repository job log.
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
ℹ Artifact update notice
File name: test/integration/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):
- 36 additional dependencies were updated
Details:
| Package | Change |
|---|---|
cloud.google.com/go |
v0.110.7 -> v0.116.0 |
cloud.google.com/go/compute |
v1.23.0 -> v1.28.3 |
cloud.google.com/go/compute/metadata |
v0.2.3 -> v0.5.2 |
cloud.google.com/go/iam |
v1.1.2 -> v1.2.2 |
cloud.google.com/go/storage |
v1.33.0 -> v1.47.0 |
github.com/go-openapi/jsonpointer |
v0.20.0 -> v0.21.0 |
github.com/go-openapi/swag |
v0.22.4 -> v0.23.0 |
github.com/golang/protobuf |
v1.5.3 -> v1.5.4 |
github.com/google/gnostic-models |
v0.6.8 -> v0.6.9 |
github.com/google/s2a-go |
v0.1.7 -> v0.1.8 |
github.com/google/uuid |
v1.3.1 -> v1.6.0 |
github.com/googleapis/enterprise-certificate-proxy |
v0.2.5 -> v0.3.4 |
github.com/googleapis/gax-go/v2 |
v2.12.0 -> v2.14.0 |
github.com/gruntwork-io/terratest |
v0.47.1 -> v0.48.2 |
github.com/hashicorp/go-version |
v1.6.0 -> v1.7.0 |
github.com/hashicorp/hcl/v2 |
v2.20.1 -> v2.22.0 |
github.com/hashicorp/terraform-config-inspect |
v0.0.0-20240801114854-6714b46f5fe4 -> v0.0.0-20250203082807-efaa306e97b4 |
github.com/hashicorp/terraform-json |
v0.22.1 -> v0.24.0 |
github.com/tidwall/gjson |
v1.17.3 -> v1.18.0 |
github.com/tmccombs/hcl2json |
v0.6.0 -> v0.6.4 |
github.com/zclconf/go-cty |
v1.14.4 -> v1.15.1 |
golang.org/x/crypto |
v0.31.0 -> v0.32.0 |
golang.org/x/mod |
v0.21.0 -> v0.23.0 |
golang.org/x/net |
v0.25.0 -> v0.34.0 |
golang.org/x/oauth2 |
v0.12.0 -> v0.24.0 |
golang.org/x/sync |
v0.10.0 -> v0.11.0 |
golang.org/x/sys |
v0.28.0 -> v0.29.0 |
golang.org/x/tools |
v0.21.1-0.20240508182429-e35e4ccd0d2d -> v0.26.0 |
google.golang.org/api |
v0.138.0 -> v0.206.0 |
google.golang.org/genproto |
v0.0.0-20230822172742-b8732ec3820d -> v0.0.0-20241113202542-65e8d215514f |
google.golang.org/genproto/googleapis/api |
v0.0.0-20230822172742-b8732ec3820d -> v0.0.0-20241104194629-dd2ea8efbc28 |
google.golang.org/genproto/googleapis/rpc |
v0.0.0-20230822172742-b8732ec3820d -> v0.0.0-20241104194629-dd2ea8efbc28 |
google.golang.org/grpc |
v1.58.3 -> v1.67.1 |
google.golang.org/protobuf |
v1.33.0 -> v1.35.1 |
k8s.io/kube-openapi |
v0.0.0-20231010175941-2dd684a91f00 -> v0.0.0-20241212222426-2c72e554b1e7 |
sigs.k8s.io/kustomize/kyaml |
v0.17.2 -> v0.19.0 |
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun
/gcbrun