-
Notifications
You must be signed in to change notification settings - Fork 0
deps(deps): update all non-major dependencies #426
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
base: main
Are you sure you want to change the base?
Conversation
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
Codecov ReportAll modified and coverable lines are covered by tests ✅ @@ Coverage Diff @@
## main #426 +/- ##
=======================================
Coverage 35.32% 35.32%
=======================================
Files 33 33
Lines 2701 2701
=======================================
Hits 954 954
Misses 1647 1647
Partials 100 100 Continue to review full report in Codecov by Sentry.
|
3eddf86 to
1f7047e
Compare
1f7047e to
7248fa6
Compare
7248fa6 to
0dd139b
Compare
66b04b1 to
d73378c
Compare
d73378c to
4d108a3
Compare
4d108a3 to
422f186
Compare
0072298 to
269e3bf
Compare
0aa72d8 to
817cc0f
Compare
39138b1 to
a1c883e
Compare
deb8bde to
0851bfa
Compare
2c40bfb to
eed59fc
Compare
6c32642 to
8554abe
Compare
20170d4 to
ae490b4
Compare
938a0db to
abb3b84
Compare
1d1a9f9 to
88381f6
Compare
88381f6 to
4765736
Compare
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
4765736 to
b43c4f2
Compare
This PR contains the following updates:
v1.4.2→v1.4.3v1.7.0→v1.8.0v2.22.0→v2.27.3v1.36.1→v1.38.3v1.10.0→v1.11.1v0.1.14→v0.1.16v0.46.2→v0.52.0v0.31.4→v0.35.0v0.31.4→v0.35.0v0.31.4→v0.35.0v1.9.0→v1.12.1v0.19.3→v0.22.4Release Notes
go-logr/logr (github.com/go-logr/logr)
v1.4.3Compare Source
Minor release.
What's Changed
New Contributors
Full Changelog: go-logr/logr@v1.4.2...v1.4.3
hashicorp/go-version (github.com/hashicorp/go-version)
v1.8.0Compare Source
What's Changed
New Contributors
Full Changelog: hashicorp/go-version@v1.7.0...v1.8.0
onsi/ginkgo (github.com/onsi/ginkgo/v2)
v2.27.3Compare Source
2.27.3
Fixes
report exit result in case of failure [
1c9f356]fix data race [
ece19c8]v2.27.2Compare Source
2.27.2
Fixes
a69113a]Maintenance
a99c6e0]f993df5]v2.27.1Compare Source
2.27.1
Fixes
606c1cb]a6463b3]v2.27.0Compare Source
2.27.0
Features
Transforming Nodes during Tree Construction
This release adds support for
NodeArgsTransformers that can be registered withAddTreeConstructionNodeArgsTransformer.These are called during the tree construction phase as nodes are constructed and can modify the node strings and decorators. This enables frameworks built on top of Ginkgo to modify Ginkgo nodes and enforce conventions.
Learn more here.
Spec Prioritization
A new
SpecPriority(int)decorator has been added. Ginkgo will honor priority when ordering specs, ensuring that higher priority specs start running before lower priority specsLearn more here.
Maintenance
1333dae]17ae63e]v2.26.0Compare Source
2.26.0
Features
Ginkgo can now generate json-formatted reports that are compatible with the
go testjson format. Useginkgo --gojson-report=report.go.json. This is not intended to be a replacement for Ginkgo's native json format which is more information rich and better models Ginkgo's test structure semantics.v2.25.3Compare Source
2.25.3
Fixes
f01aed1]v2.25.2Compare Source
2.25.2
Fixes
Add github output group for progress report content
Maintenance
Bump Gomega
v2.25.1Compare Source
2.25.1
Fixes
10866d3]2e42cff]v2.25.0Compare Source
2.25.0
AroundNodeThis release introduces a new decorator to support more complex spec setup usecases.
AroundNoderegisters a function that runs before each individual node. This is considered a more advanced decorator.Please read the docs for more information and some examples.
Allowed signatures:
AroundNode(func())-funcwill be called before the node is run.AroundNode(func(ctx context.Context) context.Context)-funccan wrap the passed in context and return a new one which will be passed on to the node.AroundNode(func(ctx context.Context, body func(ctx context.Context)))-ctxis the context for the node andbodyis a function that must be called to run the node. This gives you complete control over what runs before and after the node.Multiple
AroundNodedecorators can be applied to a single node and they will run in the order they are applied.Unlike setup nodes like
BeforeEachandDeferCleanup,AroundNodeis guaranteed to run in the same goroutine as the decorated node. This is necessary when working with lower-level libraries that must run on a single thread (you can callruntime.LockOSThread()in theAroundNodeto ensure that the node runs on a single thread).Since
AroundNodeallows you to modify the context you can also useAroundNodeto implement shared setup that attaches values to the context.If applied to a container,
AroundNodewill run before every node in the container. Including setup nodes likeBeforeEachandDeferCleanup.AroundNodecan also be applied toRunSpecsto run before every node in the suite. This opens up new mechanisms for instrumenting individual nodes across an entire suite.v2.24.0Compare Source
2.24.0
Features
Specs can now be decorated with (e.g.)
SemVerConstraint("2.1.0")andginkgo --sem-ver-filter="2.1.1"will only run constrained specs that match the requested version. Learn more in the docs here! Thanks to @Icarus9913 for the PR.Fixes
3f5d379]. fixes #1582Maintenance
Numerous dependency bumps and documentation fixes
v2.23.4Compare Source
2.23.4
Prior to this release Ginkgo would compute the incorrect number of available CPUs when running with
-pin a linux container. Thanks to @emirot for the fix!Features
2b9c428]Fixes
1f59d07]Maintenance
2d134d5]v2.23.3Compare Source
2.23.3
Fixes
-as a standalone argument [cfcc1a5]feaf292]88e2282]v2.23.2Compare Source
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.1Compare Source
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:
a0e52ff]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.0Compare Source
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
37a511b]Fixes
7556a86]4df06c6]Maintenance
cbcf39a]9b261ff]00f19c8]e98a4df]60cc4e2]fea6f2d]31d7813]fc3bbd6]aee0d56]809a710]v2.22.2Compare Source
What's Changed
Full Changelog: onsi/ginkgo@v2.22.1...v2.22.2
v2.22.1Compare Source
2.22.1
Fixes
Fix CSV encoding
aab3da6]c09df39]96a80fc]43dad69]Maintenance
c88c634]4df44bf]onsi/gomega (github.com/onsi/gomega)
v1.38.3Compare Source
1.38.3
Fixes
make string formatitng more consistent for users who use format.Object directly
v1.38.2Compare Source
1.38.2
c404969]v1.38.1Compare Source
1.38.1
Fixes
Numerous minor fixes and dependency bumps
v1.38.0Compare Source
1.38.0
Features
4ee7ed0]Fixes
36bbf72]Maintenance
529d408]acd1f55]bae65a0]8dda91f]212d812]59bd7f9]328c729]9a798a1]04a72c6]v1.37.0Compare Source
1.37.0
Features
5666f98]v1.36.3Compare Source
1.36.3
Maintenance
adb8b49]interface{}withany[7613216]9fe5259]a0e85b9]604a8b1]36fbc84]ced70d7]c8b4a07]06431b9]b55a92d]a1d518b]v1.36.2Compare Source
Maintenance
stretchr/testify (github.com/stretchr/testify)
v1.11.1Compare Source
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
Full Changelog: stretchr/testify@v1.11.0...v1.11.1
v1.11.0Compare Source
What's Changed
Functional Changes
v1.11.0 Includes a number of performance improvements.
Fixes
Documentation, Build & CI
New Contributors
Full Changelog: stretchr/testify@v1.10.0...v1.11.0
validator-labs/validator (github.com/validator-labs/validator)
v0.1.16Compare Source
Bug Fixes
Other
Dependency Updates
1829a12(#448) (fb42aea)4a55095(#454) (3e1fe92)b2144cd(#458) (0b04ec9)v0.1.15Compare Source
Other
Dependency Updates
5e4aaa9(#450) (4a8bc76)vmware/govmomi (github.com/vmware/govmomi)
v0.52.0Compare Source
Release v0.52.0
🐞 Fix
5c16d3f] vcsim: Avoid panic in QueryAvailablePerfMetric if VM has no Datastore💫 API Changes
2278e0e] Update folder.PlaceVMsXCluster to return available candidate networks28eeab9] fix comments and doc links7a3647c] fix action parameters8ee9995] update drafts bindings37dd0c8] bindings for esx/settings/clusters/cluster/configuration/drafts7074655] Placement policy WSDL names changed55501e2] add bindings for recent tasks and schema3230765] add bindings for esx/settings/cluster/configuration74eea10] add bindings for esx/settings/cluster/enablement/configuration/transitione61ad35] Update folder.PlaceVMsXCluster to filter clusters based on candidate networks availability - Add GoVmomi Bindings to CandidateNetworks - Made changes suggested by Shengjie8784335] Add "lsilogicsas" alias for "lsilogic-sas" in CreateSCSIController💫
govc(CLI)0b0e0cc] Add vmclass configSpec options💫
vcsim(Simulator)3efce10] add SearchIndex.FindAllByUuid() support5a50d40] Fault injection2fed341] CreateVm should allow existing nvram files38a8488] Resolve NSX OpaqueBacking to the DistributedVirtualPortgroup25ce2a1] Avoid panic if VM NIC is removed after CustomizeVM📃 Documentation
d0143b1] updateCHANGELOG.md(#3839) (#3839)🧹 Chore
e53c30d] Update version.go for v0.52.0📖 Commits
e53c30d] chore: Update version.go for v0.52.0d0143b1] docs: updateCHANGELOG.md(#3839) (#3839)edf81ad] build(deps): bump golang.org/x/text from 0.26.0 to 0.28.0 (#3835) (#3835)521695d] build(deps): bump goreleaser/goreleaser-action from 6.3.0 to 6.4.0 (#3838) (#3838)161b964] build(deps): bump github.com/go-viper/mapstructure/v2 (#3811) (#3811)90a7f76] build(deps): bump nokogiri from 1.18.8 to 1.18.9 in /gen (#3822) (#3822)57127ba] build(deps): bump test-unit from 3.6.8 to 3.7.0 in /gen (#3817) (#3817)0e836f2] build(deps): bump actions/cache from 4.2.3 to 4.2.4 (#3834) (#3834)aa32ef3] vcsim : Remove the single VM limitation for PlaceVmsXCluster API2278e0e] api: Update folder.PlaceVMsXCluster to return available candidate networks74528cf] Add option to GetVirtualDiskInfoByUUID for choosing exclude snapshot disks when calculating virtualdisk sizedebe7c7] update json tags and add tests for syncvolume api245af17] binding for CnsKubernetesQueryFilterb74b010] Implement bindings for CNS Unregister Volume Created new method called CnsUnregisterVolume Created CnsUnregisterVolume, CnsUnregisterVolumeRequestType and CnsUnregisterVolumeResponse types Created UnregisterVolume method on CNS Client Created TestUnregisterVolume function to test the changes28eeab9] api: fix comments and doc linksf12361c] Add tests for types of meta fault (#3824) (#3824)7a3647c] api: fix action parameters8ee9995] api: update drafts bindings37dd0c8] api: bindings for esx/settings/clusters/cluster/configuration/drafts7074655] api: Placement policy WSDL names changed55501e2] api: add bindings for recent tasks and schema3230765] api: add bindings for esx/settings/cluster/configuration74eea10] api: add bindings for esx/settings/cluster/enablement/configuration/transition3efce10] vcsim: add SearchIndex.FindAllByUuid() supporte48f1ff] Add CnsSyncVolume API bindingsd25f318] Update govc/USAGE.md858de8d] Introduce Govmomi bindings to support VM placement policiesb67bf1a] Added new simulator test TestPlaceVmsXClusterCreateAndPowerOnWithCandidateNetworks4a142ef] Made changes suggested in review - removed go.mod915ef1e] Fix binding generation by bumping Ruby version6248951] Updated folder.place usage9822e17] Add shared disk parameters to Cns AttachDetach Spece61ad35] api: Update folder.PlaceVMsXCluster to filter clusters based on candidate networks availability - Add GoVmomi Bindings to CandidateNetworks - Made changes suggested by Shengjie0c58602] Fix the quotation in the copyright header281c86f] update CnsVolumeCreateSpec and CnsVolumeOperationResult109a53a] Add SPBM internal types and methods related to K8s compliant names changescbbe8d2] handle vim25:NotSupported returned with CnsFault24f4996] skip CNS transaction tests when env CNS_RUN_TRANSACTION_TESTS is not set870f1e7] update CnsVolumeCreateSpec and CnsSnapshotCreateSpec for Transaction Support. add new fault CnsVolumeAlreadyExistsFault0e4a0fa] Added govmomi binding changes for SPBM API changes for reserve K8s compliant name feature5a50d40] vcsim: Fault injection2fed341] vcsim: CreateVm should allow existing nvram files8febefc] Add linkedClone creation support for CNS volumes8784335] api: Add "lsilogicsas" alias for "lsilogic-sas" in CreateSCSIController38a8488] vcsim: Resolve NSX OpaqueBacking to the DistributedVirtualPortgroup0b0e0cc] govc: Add vmclass configSpec options25ce2a1] vcsim: Avoid panic if VM NIC is removed after CustomizeVM5c16d3f] fix: vcsim: Avoid panic in QueryAvailablePerfMetric if VM has no Datastorev0.51.0Compare Source
🐞 Fix
e61afb1] vcsim: Avoid possible race in SessionManConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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.
This PR was generated by Mend Renovate. View the repository job log.