autoscaler
autoscaler copied to clipboard
fix(deps): update golang-modules
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| cloud.google.com/go/scheduler | v1.11.7 -> v1.11.8 |
||
| cloud.google.com/go/spanner | v1.82.0 -> v1.86.1 |
||
| github.com/gruntwork-io/terratest | v0.50.0 -> v0.53.0 |
||
| github.com/stretchr/testify | v1.10.0 -> v1.11.1 |
||
| google.golang.org/protobuf | v1.36.6 -> v1.36.10 |
Release Notes
gruntwork-io/terratest (github.com/gruntwork-io/terratest)
v0.53.0
What's Changed
- Add independent Go modules for terragrunt and dependencies by @james00012 in #1608
- Bump github.com/ulikunitz/xz from 0.5.10 to 0.5.14 in /modules/terraform by @dependabot[bot] in #1611
- Revert PR #1608: Revert modularization changes by @james00012 in #1614
- Fix typo in docs for
InitAndValidateInputsE()by @particleflux in #1616
Full Changelog: https://github.com/gruntwork-io/terratest/compare/v0.52.0...v0.53.0
v0.52.0
What's Changed
- feat: Add SSH certificate authentication support for Terratest by @james00012 in #1594
- Update golang.org/x/tools to v0.36.0 for Go 1.25+ compatibility by @james00012 in #1593
- fix: prevent segfault in helm.UnmarshalK8SYaml with empty YAML documents by @james00012 in #1597
- Add ExecPod functions to execute commands in Kubernetes pods by @james00012 in #1599
- Add terragrunt run-all helpers and refactor helm module by @james00012 in #1601
- docs: add helm as an entry to package table by @Sacquer in #1604
- Ensuring that multiple dummy servers can use the same handlers by @Malhavok in #1603
- Fix order of ExtraArgs for Output command with non-empty key (fixes #1606) by @dee-kryvenko in #1607
New Contributors
- @Sacquer made their first contribution in #1604
- @Malhavok made their first contribution in #1603
Full Changelog: https://github.com/gruntwork-io/terratest/compare/v0.51.0...v0.52.0
v0.51.0
What's Changed
- Support for
terragrunt stack generateby @james00012 in #1562 - Implement terragrunt stack run support by @james00012 in #1563
- Fixing failing tests and refactoring terragrunt modules for consistency by @james00012 in #1566
- chore(k8s): replace http-echo image and update Deployment for compatibility by @james00012 in #1567
- Refactor terragrunt module and add dedicated test pipeline by @james00012 in #1569
- Implement support for terragrunt stack output command by @james00012 in #1570
- Bump golang.org/x/oauth2 from 0.24.0 to 0.27.0 by @dependabot[bot] in #1572
- Bump nokogiri from 1.18.8 to 1.18.9 in /docs by @dependabot[bot] in #1574
- Fix broken terragrunt stack output functionality and tests by @james00012 in #1578
- feat: Add stdin support for terragrunt run command by @james00012 in #1580
- feat(terragrunt): Separate terragrunt and terraform arguments by @james00012 in #1581
- feat: Add terragrunt stack clean command and improve module by @james00012 in #1582
- feat: Add support for custom OPA command line arguments by @james00012 in #1576
- Bump github.com/ulikunitz/xz from 0.5.10 to 0.5.14 by @dependabot[bot] in #1585
- Upgrade Kubernetes client libraries by @james00012 in #1590
- Bump rexml from 3.3.9 to 3.4.2 in /docs by @dependabot[bot] in #1592
Full Changelog: https://github.com/gruntwork-io/terratest/compare/v0.50.0...v0.51.0
stretchr/testify (github.com/stretchr/testify)
v1.11.1
This release fixes #1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (String() string) with a method which mutates their value, when passed to mock.Mock.On (m.On("Method", <expected>).Return()) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case.
What's Changed
- Backport #1786 to release/1.11: mock: revert to pre-v1.11.0 argument matching behavior for mutating stringers by @brackendawson in #1788
Full Changelog: https://github.com/stretchr/testify/compare/v1.11.0...v1.11.1
v1.11.0
What's Changed
Functional Changes
v1.11.0 Includes a number of performance improvements.
- Call stack perf change for CallerInfo by @mikeauclair in #1614
- Lazily render mock diff output on successful match by @mikeauclair in #1615
- assert: check early in Eventually, EventuallyWithT, and Never by @cszczepaniak in #1427
- assert: add IsNotType by @bartventer in #1730
- assert.JSONEq: shortcut if same strings by @dolmen in #1754
- assert.YAMLEq: shortcut if same strings by @dolmen in #1755
- assert: faster and simpler isEmpty using reflect.Value.IsZero by @dolmen in #1761
- suite: faster methods filtering (internal refactor) by @dolmen in #1758
Fixes
- assert.ErrorAs: log target type by @craig65535 in #1345
- Fix failure message formatting for Positive and Negative asserts in #1062
- Improve ErrorIs message when error is nil but an error was expected by @tsioftas in #1681
- fix Subset/NotSubset when calling with mixed input types by @siliconbrain in #1729
- Improve ErrorAs failure message when error is nil by @ccoVeille in #1734
- mock.AssertNumberOfCalls: improve error msg by @3scalation in #1743
Documentation, Build & CI
- docs: Fix typo in README by @alexandear in #1688
- Replace deprecated io/ioutil with io and os by @alexandear in #1684
- Document consequences of calling t.FailNow() by @greg0ire in #1710
- chore: update docs for Unset #1621 by @techfg in #1709
- README: apply gofmt to examples by @alexandear in #1687
- refactor: use %q and %T to simplify fmt.Sprintf by @alexandear in #1674
- Propose Christophe Colombier (ccoVeille) as approver by @brackendawson in #1716
- Update documentation for the Error function in assert or require package by @architagr in #1675
- assert: remove deprecated build constraints by @alexandear in #1671
- assert: apply gofumpt to internal test suite by @ccoVeille in #1739
- CI: fix shebang in .ci.*.sh scripts by @dolmen in #1746
- assert,require: enable parallel testing on (almost) all top tests by @dolmen in #1747
- suite.Passed: add one more status test report by @Ararsa-Derese in #1706
- Add Helper() method in internal mocks and assert.CollectT by @dolmen in #1423
- assert.Same/NotSame: improve usage of Sprintf by @ccoVeille in #1742
- mock: enable parallel testing on internal testsuite by @dolmen in #1756
- suite: cleanup use of 'testing' internals at runtime by @dolmen in #1751
- assert: check test failure message for Empty and NotEmpty by @ccoVeille in #1745
- deps: fix dependency cycle with objx (again) by @dolmen in #1567
- assert.Empty: comprehensive doc of "Empty"-ness rules by @dolmen in #1753
- doc: improve godoc of top level 'testify' package by @dolmen in #1760
- assert.ErrorAs: simplify retrieving the type name by @ccoVeille in #1740
- assert.EqualValues: improve test coverage to 100% by @dolmen in #1763
- suite.Run: simplify running of Setup/TeardownSuite by @renzoarreaza in #1769
- assert.CallerInfo: micro optimization by using LastIndexByte by @dolmen in #1767
- assert.CallerInfo: micro cleanup by @dolmen in #1768
- assert: refactor TestFileExists and TestDirExists tests to enable parallel testing by @dolmen in #1766
- suite.Run: refactor handling of stats for improved readability by @dolmen in #1764
- tests: improve captureTestingT helper by @ccoVeille in #1741
- build(deps): bump actions/checkout from 4 to 5 by @dependabot[bot] in #1778
New Contributors
- @greg0ire made their first contribution in #1710
- @techfg made their first contribution in #1709
- @mikeauclair made their first contribution in #1614
- @cszczepaniak made their first contribution in #1427
- @architagr made their first contribution in #1675
- @tsioftas made their first contribution in #1681
- @siliconbrain made their first contribution in #1729
- @bartventer made their first contribution in #1730
- @Ararsa-Derese made their first contribution in #1706
- @renzoarreaza made their first contribution in #1769
- @3scalation made their first contribution in #1743
Full Changelog: https://github.com/stretchr/testify/compare/v1.10.0...v1.11.0
protocolbuffers/protobuf-go (google.golang.org/protobuf)
v1.36.10
Full Changelog: https://github.com/protocolbuffers/protobuf-go/compare/v1.36.9...v1.36.10
Bug fixes: CL/704415: reflect/protodesc: edition-2024-specific properties should not be lost when converting FileDescriptorProto to protoreflect.FileDescriptor
Maintenance: CL/708555: internal/race_test: add missing impl.LazyEnabled() t.Skip CL/703295: proto: add more invalid group encoding test cases CL/703276: internal/impl: verify lazy unmarshal on Deterministic encoding CL/703275: internal/impl: stop using deprecated .Field in lazy_test.go CL/702795: all: update to latest github.com/google/go-cmp
v1.36.9
Full Changelog: https://github.com/protocolbuffers/protobuf-go/compare/v1.36.8...v1.36.9
User-visible changes: CL/699715: cmd/protoc-gen-go: add test for "import option" directive CL/699115: internal/editionssupport: declare support for edition 2024 CL/697595: editions: Fix spelling mistake in panic message
v1.36.8
Maintenance:
CL/696316: all: set Go language version to Go 1.23 CL/696315: types: regenerate using latest protobuf v32 release
v1.36.7
Maintenance / optimizations:
CL/683955: encoding/protowire: micro-optimize SizeVarint (-20% on Intel) CL/674055: internal/impl: remove unnecessary atomic access for non-lazy lists CL/674015: impl: remove unnecessary nil check from presence.Present CL/673495: types/descriptorpb: regenerate using latest protobuf v31 release CL/670516: cmd/protoc-gen-go: centralize presence and lazy logic into filedesc CL/670515: internal: move usePresenceForField to internal/filedesc CL/670275: internal/impl: clean up usePresenceForField() (no-op)
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
This PR was generated by Mend Renovate. View the repository job log.