cluster-api-provider-cloudstack
cluster-api-provider-cloudstack copied to clipboard
Bump the all-go-mod-patch-and-minor group across 3 directories with 17 updates
Bumps the all-go-mod-patch-and-minor group with 9 updates in the / directory:
| Package | From | To |
|---|---|---|
| github.com/apache/cloudstack-go/v2 | 2.16.1 |
2.17.0 |
| github.com/jellydator/ttlcache/v3 | 3.2.0 |
3.3.0 |
| github.com/onsi/ginkgo/v2 | 2.22.2 |
2.23.3 |
| github.com/onsi/gomega | 1.36.2 |
1.36.3 |
| github.com/spf13/pflag | 1.0.5 |
1.0.6 |
| k8s.io/api | 0.31.3 |
0.31.7 |
| k8s.io/client-go | 0.31.3 |
0.31.7 |
| k8s.io/component-base | 0.31.3 |
0.31.7 |
| sigs.k8s.io/controller-runtime | 0.19.6 |
0.19.7 |
Bumps the all-go-mod-patch-and-minor group with 7 updates in the /hack/tools directory:
| Package | From | To |
|---|---|---|
| github.com/onsi/ginkgo/v2 | 2.22.2 |
2.23.3 |
| github.com/spf13/pflag | 1.0.5 |
1.0.6 |
| k8s.io/api | 0.31.2 |
0.31.7 |
| github.com/a8m/envsubst | 1.4.2 |
1.4.3 |
| honnef.co/go/tools | 0.4.7 |
0.6.1 |
| sigs.k8s.io/controller-tools | 0.16.5 |
0.17.2 |
| sigs.k8s.io/kustomize/kustomize/v5 | 5.4.3 |
5.6.0 |
Bumps the all-go-mod-patch-and-minor group with 9 updates in the /test/e2e directory:
| Package | From | To |
|---|---|---|
| github.com/apache/cloudstack-go/v2 | 2.16.1 |
2.17.0 |
| github.com/onsi/ginkgo/v2 | 2.22.2 |
2.23.3 |
| github.com/onsi/gomega | 1.36.2 |
1.36.3 |
| github.com/spf13/pflag | 1.0.5 |
1.0.6 |
| k8s.io/api | 0.31.3 |
0.31.7 |
| k8s.io/client-go | 0.31.3 |
0.31.7 |
| k8s.io/component-base | 0.31.3 |
0.31.7 |
| sigs.k8s.io/controller-runtime | 0.19.6 |
0.19.7 |
| github.com/Shopify/toxiproxy/v2 | 2.5.0 |
2.12.0 |
Updates github.com/apache/cloudstack-go/v2 from 2.16.1 to 2.17.0
Release notes
Sourced from github.com/apache/cloudstack-go/v2's releases.
v2.17.0
What's Changed
- add +30 more apis by
@ahmedali6in apache/cloudstack-go#89- Update go version by
@Pearl1594in apache/cloudstack-go#94- Update SDK with 4.20 APIs by
@Pearl1594in apache/cloudstack-go#93- Add missing API calls for Cloudstack 4.20 by
@phsmin apache/cloudstack-go#91- Update README.md by
@DaanHooglandin apache/cloudstack-go#95- update listApis.json, Quota API, and fixed double url value handling (based on #90) by
@DaanHooglandand@tonymmm1in apache/cloudstack-go#98- Add test data for register userkeys by
@Pearl1594in apache/cloudstack-go#99New Contributors
@ahmedali6made their first contribution in apache/cloudstack-go#89@phsmmade their first contribution in apache/cloudstack-go#91Full Changelog: https://github.com/apache/cloudstack-go/compare/v2.16.1...v2.17.0
Commits
bfc6c0cAdd test data for register userkeys (#99)b8e58e9update listApis.json, Quota API, and fixed double url value handling (based o...f28c8b7Merge pull request #95 from apache/DaanHoogland-patch-1e570e06Update README.md73eb42dUpdate README.mdd654fccAdd missing API calls for Cloudstack 4.20 #91f184c7cRemove ShutdownService_test.go25d94b9replace deprecated github.com/golang/mock packagef8d42b4Add generated 4.20 codefd3145eupdate listApis to Cloudstack 4.20- Additional commits viewable in compare view
Updates github.com/jellydator/ttlcache/v3 from 3.2.0 to 3.3.0
Release notes
Sourced from github.com/jellydator/ttlcache/v3's releases.
v3.3.0
What's Changed
- Add
RangeBackwardsmethod by@k1LoWin jellydator/ttlcache#149- Optimize
Lenmethod by counting expired items in expiration queue by@hongkuancnin jellydator/ttlcache#150New Contributors
@k1LoWmade their first contribution in jellydator/ttlcache#149Full Changelog: https://github.com/jellydator/ttlcache/compare/v3.2.1...v3.3.0
v3.2.1
What's Changed
- Create dependabot.yaml by
@hkadakiain jellydator/ttlcache#128- Add thread safety to features list by
@trajan0xin jellydator/ttlcache#137- Fix update of expired items by
@Snawootin jellydator/ttlcache#124- Fix data race in
Itemsmethod by@hongkuancnin jellydator/ttlcache#146- Exclude expired keys in data retrieval methods by
@hongkuancnin jellydator/ttlcache#148New Contributors
@hkadakiamade their first contribution in jellydator/ttlcache#128@trajan0xmade their first contribution in jellydator/ttlcache#137@Snawootmade their first contribution in jellydator/ttlcache#124@hongkuancnmade their first contribution in jellydator/ttlcache#146Full Changelog: https://github.com/jellydator/ttlcache/compare/v3.2.0...v3.2.1
Commits
09bb8f4OptimizeLenmethod by counting expired items in expiration queue923d329AddRangeBackwardsmethodd22fb9eExclude expired keys in data retrieval methods1e6fd11remove size when initializing mapf4a6991use value directly when range map2371d93Fix data race in Items()66d8e52Bump golang.org/x/sync from 0.7.0 to 0.8.062c3733fix double insertion into expiration queue9ca4fc0add test for update of expired itemsd62194aadd thread safety to features list (#137)- Additional commits viewable in compare view
Updates github.com/onsi/ginkgo/v2 from 2.22.2 to 2.23.3
Release notes
Sourced from github.com/onsi/ginkgo/v2's releases.
v2.23.3
2.23.3
Fixes
- allow
-as a standalone argument [cfcc1a5]- Bug Fix: Add GinkoTBWrapper.Chdir() and GinkoTBWrapper.Context() [feaf292]
- ignore exit code for symbol test on linux [88e2282]
v2.23.2
2.23.2
🎉🎉🎉
At long last, some long-standing performance gaps between
ginkgoandgo testhave been resolved!Ginkgo operates by running
go test -cto generate test binaries, and then running those binaries. It turns out that the compilation step ofgo test -cis slower thango test's compilation step becausego teststrips out debug symbols (ldflags=-w) whereasgo test -cdoes not.Ginkgo now passes the appropriate
ldflagstogo test -cwhen running specs to strip out symbols. This is only done when it is safe to do so and symbols are preferred when profiling is enabled and whenginkgo buildis called explicitly.This, coupled, with the instructions for disabling XProtect on MacOS yields a much better performance experience with Ginkgo.
v2.23.1
2.23.1
🚨 For users on MacOS 🚨
A long-standing Ginkgo performance issue on MacOS seems to be due to mac's antimalware XProtect. You can follow the instructions here to disable it in your terminal. Doing so sped up Ginkgo's own test suite from 1m8s to 47s.
Fixes
Ginkgo's CLI is now a bit clearer if you pass flags in incorrectly:
- make it clearer that you need to pass a filename to the various profile flags, not an absolute directory [a0e52ff]
- emit an error and exit if the ginkgo invocation includes flags after positional arguments [b799d8d]
This might cause existing CI builds to fail. If so then it's likely that your CI build was misconfigured and should be corrected. Open an issue if you need help.
v2.23.0
2.23.0
Ginkgo 2.23.0 adds a handful of methods to
GinkgoT()to make it compatible with thetesting.TBinterface in Go 1.24.GinkgoT().Context(), in particular, is a useful shorthand for generating a new context that will clean itself up in aDeferCleanup(). This has subtle behavior differences from the golang implementation but should make sense in a Ginkgo... um... context.Features
- bump to go 1.24.0 - support new testing.TB methods and add a test to cover testing.TB regressions [37a511b]
Fixes
- fix edge case where build -o is pointing at an explicit file, not a directory [7556a86]
- Fix binary paths when precompiling multiple suites. [4df06c6]
... (truncated)
Changelog
Sourced from github.com/onsi/ginkgo/v2's changelog.
2.23.3
Fixes
- allow
-as a standalone argument [cfcc1a5]- Bug Fix: Add GinkoTBWrapper.Chdir() and GinkoTBWrapper.Context() [feaf292]
- ignore exit code for symbol test on linux [88e2282]
2.23.2
🎉🎉🎉
At long last, some long-standing performance gaps between
ginkgoandgo testhave been resolved!Ginkgo operates by running
go test -cto generate test binaries, and then running those binaries. It turns out that the compilation step ofgo test -cis slower thango test's compilation step becausego teststrips out debug symbols (ldflags=-w) whereasgo test -cdoes not.Ginkgo now passes the appropriate
ldflagstogo test -cwhen running specs to strip out symbols. This is only done when it is safe to do so and symbols are preferred when profiling is enabled and whenginkgo buildis called explicitly.This, coupled, with the instructions for disabling XProtect on MacOS yields a much better performance experience with Ginkgo.
2.23.1
🚨 For users on MacOS 🚨
A long-standing Ginkgo performance issue on MacOS seems to be due to mac's antimalware XProtect. You can follow the instructions here to disable it in your terminal. Doing so sped up Ginkgo's own test suite from 1m8s to 47s.
Fixes
Ginkgo's CLI is now a bit clearer if you pass flags in incorrectly:
- make it clearer that you need to pass a filename to the various profile flags, not an absolute directory [a0e52ff]
- emit an error and exit if the ginkgo invocation includes flags after positional arguments [b799d8d]
This might cause existing CI builds to fail. If so then it's likely that your CI build was misconfigured and should be corrected. Open an issue if you need help.
2.23.0
Ginkgo 2.23.0 adds a handful of methods to
GinkgoT()to make it compatible with thetesting.TBinterface in Go 1.24.GinkgoT().Context(), in particular, is a useful shorthand for generating a new context that will clean itself up in aDeferCleanup(). This has subtle behavior differences from the golang implementation but should make sense in a Ginkgo... um... context.Features
- bump to go 1.24.0 - support new testing.TB methods and add a test to cover testing.TB regressions [37a511b]
Fixes
- fix edge case where build -o is pointing at an explicit file, not a directory [7556a86]
- Fix binary paths when precompiling multiple suites. [4df06c6]
Maintenance
... (truncated)
Commits
04a9a74v2.23.3cfcc1a5allow-as a standalone argumentfeaf292Bug Fix: Add GinkoTBWrapper.Chdir() and GinkoTBWrapper.Context()88e2282ignore exit code for symbol test on linux979c969v2.23.2976a5c0strip out symbols when running ginkgo99e2fe2v2.23.1a0e52ffmake it clearer that you need to pass a filename to the various profile flags...b799d8demit an error and exit if the ginkgo invocation includes flags after position...a565d1fFix typo in documentation: DescribeHandleSubtree -> DescribeTableSubtree- Additional commits viewable in compare view
Updates github.com/onsi/gomega from 1.36.2 to 1.36.3
Release notes
Sourced from github.com/onsi/gomega's releases.
v1.36.3
1.36.3
Maintenance
- bump all the things [adb8b49]
- chore: replace
interface{}withany[7613216]- Bump google.golang.org/protobuf from 1.36.1 to 1.36.5 (#822) [9fe5259]
- remove spurious "toolchain" from go.mod (#819) [a0e85b9]
- Bump golang.org/x/net from 0.33.0 to 0.35.0 (#823) [604a8b1]
- Bump activesupport from 6.0.6.1 to 6.1.7.5 in /docs (#772) [36fbc84]
- Bump github-pages from 231 to 232 in /docs (#778) [ced70d7]
- Bump rexml from 3.2.6 to 3.3.9 in /docs (#788) [c8b4a07]
- Bump github.com/onsi/ginkgo/v2 from 2.22.1 to 2.22.2 (#812) [06431b9]
- Bump webrick from 1.8.1 to 1.9.1 in /docs (#800) [b55a92d]
- Fix typos (#813) [a1d518b]
Changelog
Sourced from github.com/onsi/gomega's changelog.
1.36.3
Maintenance
- bump all the things [adb8b49]
- chore: replace
interface{}withany[7613216]- Bump google.golang.org/protobuf from 1.36.1 to 1.36.5 (#822) [9fe5259]
- remove spurious "toolchain" from go.mod (#819) [a0e85b9]
- Bump golang.org/x/net from 0.33.0 to 0.35.0 (#823) [604a8b1]
- Bump activesupport from 6.0.6.1 to 6.1.7.5 in /docs (#772) [36fbc84]
- Bump github-pages from 231 to 232 in /docs (#778) [ced70d7]
- Bump rexml from 3.2.6 to 3.3.9 in /docs (#788) [c8b4a07]
- Bump github.com/onsi/ginkgo/v2 from 2.22.1 to 2.22.2 (#812) [06431b9]
- Bump webrick from 1.8.1 to 1.9.1 in /docs (#800) [b55a92d]
- Fix typos (#813) [a1d518b]
Commits
2251143v1.36.3adb8b49bump all the things7613216chore: replaceinterface{}withany9fe5259Bump google.golang.org/protobuf from 1.36.1 to 1.36.5 (#822)a0e85b9remove spurious "toolchain" from go.mod (#819)604a8b1Bump golang.org/x/net from 0.33.0 to 0.35.0 (#823)36fbc84Bump activesupport from 6.0.6.1 to 6.1.7.5 in /docs (#772)ced70d7Bump github-pages from 231 to 232 in /docs (#778)c8b4a07Bump rexml from 3.2.6 to 3.3.9 in /docs (#788)06431b9Bump github.com/onsi/ginkgo/v2 from 2.22.1 to 2.22.2 (#812)- Additional commits viewable in compare view
Updates github.com/spf13/pflag from 1.0.5 to 1.0.6
Release notes
Sourced from github.com/spf13/pflag's releases.
v1.0.6
What's Changed
- Add exported functions to preserve
pkg/flagcompatibility by@mckernin spf13/pflag#220- remove dead code for checking error nil by
@yashbhutwalain spf13/pflag#282- Add IPNetSlice and unit tests by
@rpothierin spf13/pflag#170- allow for blank ip addresses by
@duhruhin spf13/pflag#316- add github actions by
@sagikazarmarkin spf13/pflag#419New Contributors
@mckernmade their first contribution in spf13/pflag#220@yashbhutwalamade their first contribution in spf13/pflag#282@rpothiermade their first contribution in spf13/pflag#170@duhruhmade their first contribution in spf13/pflag#316@sagikazarmarkmade their first contribution in spf13/pflag#419Full Changelog: https://github.com/spf13/pflag/compare/v1.0.5...v1.0.6
Commits
5ca8134Merge pull request #419 from spf13/ci100ab0edisable unsupported dependency graph for nowa0f4dddfix govetf48cbd1add github actionsd5e0c06allow for blank ip addresses (#316)85dd5c8Add IPNetSlice and unit tests (#170)6971c29remove dead code for checking error nil (#282)81378bbAdd exported functions to preservepkg/flagcompatibility (#220)- See full diff in compare view
Updates golang.org/x/text from 0.21.0 to 0.23.0
Commits
566b44fgo.mod: update golang.org/x dependenciesd5156dacollate/build: do not use println in tests221d88cx/text: fix scientific notation by removing extraneous spacesb18c107internal/export/unicode: change C comment to mention unassigned code points835f8aclanguage: use a more straightforward return valueae68efbinternal/export/unicode: add CategoryAliases, Cn, and LC518d9c0all: upgrade go directive to at least 1.23.0 [generated]3b64043go.mod: update golang.org/x dependencies1e59086message/pipeline: add two Unalias calls- See full diff in compare view
Updates k8s.io/api from 0.31.3 to 0.31.7
Commits
c543934Update dependencies to v0.31.7 tag- See full diff in compare view
Updates k8s.io/apimachinery from 0.31.3 to 0.31.7
Commits
- See full diff in compare view
Updates k8s.io/client-go from 0.31.3 to 0.31.7
Commits
4450431Update dependencies to v0.31.7 tag8eaec8fMerge pull request #129519kishen-v/automated-cherry-pick-of-#127422e935febFix Go vet errors for master golang- See full diff in compare view
Updates k8s.io/component-base from 0.31.3 to 0.31.7
Commits
Updates sigs.k8s.io/controller-runtime from 0.19.6 to 0.19.7
Release notes
Sourced from sigs.k8s.io/controller-runtime's releases.
v0.19.7
What's Changed
- 🐛 fix: cache should list out of global cache when present and necessary by
@k8s-infra-cherrypick-robotin kubernetes-sigs/controller-runtime#3128- :bug: Fakeclient: Fix dataraces when writing to the scheme by
@k8s-infra-cherrypick-robotin kubernetes-sigs/controller-runtime#3146- Revert "✨ Expose all Go runtime metrics" by
@k8s-infra-cherrypick-robotin kubernetes-sigs/controller-runtime#3148Full Changelog: https://github.com/kubernetes-sigs/controller-runtime/compare/v0.19.6...v0.19.7
Commits
5fe7bb3Merge pull request #3148 from k8s-infra-cherrypick-robot/cherry-pick-3147-to-...97bb1ffRevert "[release-0.20] ✨ Expose all Go runtime metrics (#3100)"56df553Merge pull request #3146 from k8s-infra-cherrypick-robot/cherry-pick-3143-to-...d2145c0bug: Fakeclient: Fix dataraces when writing to the scheme13450baMerge pull request #3128 from k8s-infra-cherrypick-robot/cherry-pick-3126-to-...a2a9f54fix: cache should list out of global cache when present and necessary- See full diff in compare view
Updates github.com/onsi/ginkgo/v2 from 2.22.2 to 2.23.3
Release notes
Sourced from github.com/onsi/ginkgo/v2's releases.
v2.23.3
2.23.3
Fixes
- allow
-as a standalone argument [cfcc1a5]- Bug Fix: Add GinkoTBWrapper.Chdir() and GinkoTBWrapper.Context() [feaf292]
- ignore exit code for symbol test on linux [88e2282]
v2.23.2
2.23.2
🎉🎉🎉
At long last, some long-standing performance gaps between
ginkgoandgo testhave been resolved!Ginkgo operates by running
go test -cto generate test binaries, and then running those binaries. It turns out that the compilation step ofgo test -cis slower thango test's compilation step becausego teststrips out debug symbols (ldflags=-w) whereasgo test -cdoes not.Ginkgo now passes the appropriate
ldflagstogo test -cwhen running specs to strip out symbols. This is only done when it is safe to do so and symbols are preferred when profiling is enabled and whenginkgo buildis called explicitly.This, coupled, with the instructions for disabling XProtect on MacOS yields a much better performance experience with Ginkgo.
v2.23.1
2.23.1
🚨 For users on MacOS 🚨
A long-standing Ginkgo performance issue on MacOS seems to be due to mac's antimalware XProtect. You can follow the instructions here to disable it in your terminal. Doing so sped up Ginkgo's own test suite from 1m8s to 47s.
Fixes
Ginkgo's CLI is now a bit clearer if you pass flags in incorrectly:
- make it clearer that you need to pass a filename to the various profile flags, not an absolute directory [a0e52ff]
- emit an error and exit if the ginkgo invocation includes flags after positional arguments [b799d8d]
This might cause existing CI builds to fail. If so then it's likely that your CI build was misconfigured and should be corrected. Open an issue if you need help.
v2.23.0
2.23.0
Ginkgo 2.23.0 adds a handful of methods to
GinkgoT()to make it compatible with thetesting.TBinterface in Go 1.24.GinkgoT().Context(), in particular, is a useful shorthand for generating a new context that will clean itself up in aDeferCleanup(). This has subtle behavior differences from the golang implementation but should make sense in a Ginkgo... um... context.Features
- bump to go 1.24.0 - support new testing.TB methods and add a test to cover testing.TB regressions [37a511b]
Fixes
- fix edge case where build -o is pointing at an explicit file, not a directory [7556a86]
- Fix binary paths when precompiling multiple suites. [4df06c6]
... (truncated)
Changelog
Sourced from github.com/onsi/ginkgo/v2's changelog.
2.23.3
Fixes
- allow
-as a standalone argument [cfcc1a5]- Bug Fix: Add GinkoTBWrapper.Chdir() and GinkoTBWrapper.Context() [feaf292]
- ignore exit code for symbol test on linux [88e2282]
2.23.2
🎉🎉🎉
At long last, some long-standing performance gaps between
ginkgoandgo testhave been resolved!Ginkgo operates by running
go test -cto generate test binaries, and then running those binaries. It turns out that the compilation step ofgo test -cis slower thango test's compilation step becausego teststrips out debug symbols (ldflags=-w) whereasgo test -cdoes not.Ginkgo now passes the appropriate
ldflagstogo test -cwhen running specs to strip out symbols. This is only done when it is safe to do so and symbols are preferred when profiling is enabled and whenginkgo buildis called explicitly.This, coupled, with the instructions for disabling XProtect on MacOS yields a much better performance experience with Ginkgo.
2.23.1
🚨 For users on MacOS 🚨
A long-standing Ginkgo performance issue on MacOS seems to be due to mac's antimalware XProtect. You can follow the instructions here to disable it in your terminal. Doing so sped up Ginkgo's own test suite from 1m8s to 47s.
Fixes
Ginkgo's CLI is now a bit clearer if you pass flags in incorrectly:
- make it clearer that you need to pass a filename to the various profile flags, not an absolute directory [a0e52ff]
- emit an error and exit if the ginkgo invocation includes flags after positional arguments [b799d8d]
This might cause existing CI builds to fail. If so then it's likely that your CI build was misconfigured and should be corrected. Open an issue if you need help.
2.23.0
Ginkgo 2.23.0 adds a handful of methods to
GinkgoT()to make it compatible with thetesting.TBinterface in Go 1.24.GinkgoT().Context(), in particular, is a useful shorthand for generating a new context that will clean itself up in aDeferCleanup(). This has subtle behavior differences from the golang implementation but should make sense in a Ginkgo... um... context.Features
- bump to go 1.24.0 - support new testing.TB methods and add a test to cover testing.TB regressions [37a511b]
Fixes
- fix edge case where build -o is pointing at an explicit file, not a directory [7556a86]
- Fix binary paths when precompiling multiple suites. [4df06c6]
Maintenance
... (truncated)
Commits
04a9a74v2.23.3cfcc1a5allow-as a standalone argumentfeaf292Bug Fix: Add GinkoTBWrapper.Chdir() and GinkoTBWrapper.Context()88e2282ignore exit code for symbol test on linux979c969v2.23.2976a5c0strip out symbols when running ginkgo99e2fe2v2.23.1a0e52ffmake it clearer that you need to pass a filename to the various profile flags...b799d8demit an error and exit if the ginkgo invocation includes flags after position...a565d1fFix typo in documentation: DescribeHandleSubtree -> DescribeTableSubtree- Additional commits viewable in compare view
Updates github.com/spf13/pflag from 1.0.5 to 1.0.6
Release notes
Sourced from github.com/spf13/pflag's releases.
v1.0.6
What's Changed
- Add exported functions to preserve
pkg/flagcompatibility by@mckernin spf13/pflag#220- remove dead code for checking error nil by
@yashbhutwalain spf13/pflag#282- Add IPNetSlice and unit tests by
@rpothierin spf13/pflag#170- allow for blank ip addresses by
@duhruhin spf13/pflag#316- add github actions by
@sagikazarmarkin spf13/pflag#419New Contributors
@mckernmade their first contribution in spf13/pflag#220@yashbhutwalamade their first contribution in spf13/pflag#282@rpothiermade their first contribution in spf13/pflag#170@duhruhmade their first contribution in spf13/pflag#316@sagikazarmarkmade their first contribution in spf13/pflag#419Full Changelog: https://github.com/spf13/pflag/compare/v1.0.5...v1.0.6
Commits
5ca8134Merge pull request #419 from spf13/ci100ab0edisable unsupported dependency graph for nowa0f4dddfix govetf48cbd1add github actionsd5e0c06allow for blank ip addresses (#316)85dd5c8Add IPNetSlice and unit tests (#170)6971c29remove dead code for checking error nil (#282)81378bbAdd exported functions to preservepkg/flagcompatibility (#220)- See full diff in compare view
Updates golang.org/x/text from 0.21.0 to 0.22.0
Commits
566b44fgo.mod: update golang.org/x dependenciesd5156dacollate/build: do not use println in tests221d88cx/text: fix scientific notation by removing extraneous spacesb18c107internal/export/unicode: change C comment to mention unassigned code points835f8aclanguage: use a more straightforward return valueae68efbinternal/export/unicode: add CategoryAliases, Cn, and LC518d9c0all: upgrade go directive to at least 1.23.0 [generated]3b64043go.mod: update golang.org/x dependencies1e59086message/pipeline: add two Unalias calls- See full diff in compare view
Updates k8s.io/api from 0.31.2 to 0.31.7
Commits
c543934Update dependencies to v0.31.7 tag- See full diff in compare view
Updates github.com/a8m/envsubst from 1.4.2 to 1.4.3
Release notes
Sourced from github.com/a8m/envsubst's releases.
v1.4.3
New Contributors
@jwilkmade their first contribution in a8m/envsubst#52@polarathenemade their first contribution in a8m/envsubst#57@VietND96made their first contribution in a8m/envsubst#66Full Changelog: https://github.com/a8m/envsubst/compare/v1.4.2...v1.4.3
Commits
Updates honnef.co/go/tools from 0.4.7 to 0.6.1
Release notes
Sourced from honnef.co/go/tools's releases.
Staticcheck 2025.1.1 (v0.6.1)
This is a re-release of 2025.1 but with prebuilt binaries that have been built with Go 1.24.1.
Staticcheck 2025.1 (v0.6.0)
Added Go 1.24 support
This release adds support for Go 1.24.
Checks
Changed checks
The following checks have been improved:
- U1000 treats all fields in a struct as used if the struct has a field of type structs.HostLayout.
- S1009 now emits a clearer message.
- S1008 no longer recommends simplifying branches that contain comments (issue 704, issue 1488).
- S1009 now flags another redundant nil check (issue 1605).
- QF1002 now emits a valid automatic fix for switches that use initialization statements (issue 1613).
Staticcheck 2024.1.1 (v0.5.1)
This release fixes the detection of the used Go version when Go was compiled with experimental features such as
rangefuncorboringcrypto(#1586).Staticcheck 2024.1 (v0.5.0)
Backwards incompatible changes
Staticcheck 2024.1 contains the following backwards incompatible changes:
- The
keyifyutility has been removed. The recommended alternative is gopls.staticcheck -mergenow exits with a non-zero status if any problems have been found.Improved Go 1.22 support
This release updates Staticcheck’s database of deprecated standard library APIs to cover the Go 1.22 release. Furthermore, checks have been updated to correctly handle the new “for” loop variable scoping behavior as well as ranging over integers.
Added Go 1.23 support
Staticcheck 2024.1 has full support for iterators / range-over-func. Furthermore, SA1015 will skip any code targeting Go 1.23 or newer, as it is now possible to use
time.Tickwithout leaking memory.Improved handling of Go versions
Go 1.21 more rigorously defined the meaning of the
godirective ingo.modfiles, as well as its interactions with//go:build go1.Nbuild constraints. The go directive now specifies a minimum Go version for the module. Furthermore, it sets the language version that is in effect, which may change the semantics of Go code. For example, before Go 1.22, loop variables were reused across iterations, but since Go 1.22, loop variables only exist for the duration of an iteration. Modules that specifygo 1.22will use the new semantics, while modules that specify an older version will not.Individual files can both upgrade and downgrade their language version by using
//go:build go1.Ndirectives. In a module that requires Go 1.22, a file specifying Go 1.21 will experience the old loop variable semantics, and vice versa. Because the Go module as a whole still specifies a minimum version, even files specifying an older version will have access to the standard library of the minimum version.Staticcheck 2024.1 takes all of this into consideration when analyzing the behavior of Go code, when determining which checks are applicable, and when making suggestions. Older versions of Staticcheck were already aware of Go versions, but 2024.1 works on a more fine-grained, per-file basis, and differentiates between the pre- and post-1.21 semantics of the go directive.
The
-gocommand line flag continues to exist. It will override any module-based version selection. This is primarily useful for Go modules that target older Go versions (because here, the go directive didn’t specify a minimum version), or when working outside of Go modules.To prevent misinterpreting code, Staticcheck now refuses to analyze modules that require a version of Go that is newer than that with which Staticcheck was built.
... (truncated)
Commits
b8ec13cVersion 2025.1.1 (v0.6.1)f786191website: add 2025.1.1 release notes5af2e5fVersion 2025.1 (v0.6.0)2010dd3website: go mod tidy91a891cwebsite: add 2025.1 release notesf6cedc0Depend on Go 1.23bcecb30Update dependency on golang.org/x/tools06aa835knowledge: add deprecated for Go 1.240f2f291Include value of godebug in artifact's name1179d01Update CI to use actions/upload-artifact@v4- Additional commits viewable in compare view
Updates sigs.k8s.io/controller-tools from 0.16.5 to 0.17.2
Release notes
Sourced from sigs.k8s.io/controller-tools's releases.
v0.17.2
What's Changed
- 🌱 Allow string validation on XIntOrString by
@cbandyin kubernetes-sigs/controller-tools#1118- 🌱 Test DeepCopy of contained non-pointer types by
@cbandyin kubernetes-sigs/controller-tools#1120- 🐛 Guard before type assertion by
@cbandyin kubernetes-sigs/controller-tools#1119- 📖 Add v0.17 to compatibility table by
@sbueringerin kubernetes-sigs/controller-tools#1127- 🌱 Add JoelSpeed to reviewers by
@JoelSpeedin kubernetes-sigs/controller-tools#1138- :bug: fix minor typo in
kubebuilderby@davidxiain kubernetes-sigs/controller-tools#1141- ✨ Allow customizing generated webhook K8s Service by
@davidxiain kubernetes-sigs/controller-tools#1128- 🐛 Handle pointer to alias in DeepCopy by
@cbandyin kubernetes-sigs/controller-tools#1145Dependencies
- 🌱 Bump golangci-lint to v1.63.4 by
@dongjiang1989in kubernetes-sigs/controller-tools#1132- :seedling: Bump the all-go-mod-patch-and-minor group with 3 updates by Description%20has%20been%20truncated%0A" rel="nofollow" target="_blank" >
Labels
The following labels could not be found: dependabot. Please create it before Dependabot can add it to a pull request.
Please fix the above issues or remove invalid values from dependabot.yml.
[APPROVALNOTIFIER] This PR is NOT APPROVED
This pull-request has been approved by: dependabot[bot] Once this PR has been reviewed and has the lgtm label, please assign g-gaston for approval. For more information see the Code Review Process.
The full list of commands accepted by this bot can be found here.
Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment
Hi @dependabot[bot]. Thanks for your PR.
I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.
Once the patch is verified, the new status will be reflected by the ok-to-test label.
I understand the commands that are listed here.
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.
Deploy Preview for kubernetes-sigs-cluster-api-cloudstack ready!
| Name | Link |
|---|---|
| Latest commit | ebf765ed6158cf0b5b37cdc69d2d29581c3bb98b |
| Latest deploy log | https://app.netlify.com/sites/kubernetes-sigs-cluster-api-cloudstack/deploys/67eb285eb4db780008c4f4f0 |
| Deploy Preview | https://deploy-preview-430--kubernetes-sigs-cluster-api-cloudstack.netlify.app |
| Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
@dependabot[bot]: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:
| Test name | Commit | Details | Required | Rerun command |
|---|---|---|---|---|
| capi-provider-cloudstack-presubmit-unit-test | ebf765ed6158cf0b5b37cdc69d2d29581c3bb98b | link | true | /test capi-provider-cloudstack-presubmit-unit-test |
| capi-provider-cloudstack-presubmit-build | ebf765ed6158cf0b5b37cdc69d2d29581c3bb98b | link | true | /test capi-provider-cloudstack-presubmit-build |
| capi-provider-cloudstack-presubmit-e2e-smoke-test | ebf765ed6158cf0b5b37cdc69d2d29581c3bb98b | link | true | /test capi-provider-cloudstack-presubmit-e2e-smoke-test |
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR.
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.
Superseded by #438.