chore(deps): update security updates (major)#133
Conversation
|
|
Important Review skippedReview was skipped due to path filters ⛔ Files ignored due to path filters (1)
CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
📝 Coding Plan
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This PR contains the following updates:
v1.7.2->v4.1.1v3.4.0->v4.1.1v3.0.7->v4.2.0v1.3.1->v2.1.1v3.5.1->v4.4.0v2.12.2->v3.45.5v2.6.3->v4.1.3Release Notes
formancehq/go-libs (github.com/formancehq/go-libs)
v4.1.1Compare Source
v4.1.0Compare Source
What's Changed
Full Changelog: formancehq/go-libs@v4.0.0...v4.1.0
v4.0.0Compare Source
v3.6.1Compare Source
v3.6.0Compare Source
v3.5.0Compare Source
v3.4.0Compare Source
What's Changed
New Contributors
Full Changelog: formancehq/go-libs@v3.3.0...v3.4.0
v3.3.0Compare Source
v3.2.1Compare Source
v3.2.0Compare Source
v3.1.0Compare Source
v3.0.1Compare Source
v3.0.0Compare Source
v2.2.4Compare Source
v2.2.3Compare Source
v2.2.2Compare Source
v2.2.1Compare Source
v2.0.0Compare Source
What's Changed
Full Changelog: formancehq/go-libs@v1.7.2...v2.0.0
lithammer/shortuuid (github.com/lithammer/shortuuid/v3)
v4.2.0Compare Source
What's Changed
Full Changelog: lithammer/shortuuid@v4.1.0...v4.2.0
v4.1.0Compare Source
What's Changed
github.com/google/uuidfrom 1.3.0 to 1.6.0 by @dependabot in https://github.com/lithammer/shortuuid/pull/50New Contributors
Full Changelog: lithammer/shortuuid@v4.0.0...v4.1.0
v4.0.0Compare Source
oklog/ulid (github.com/oklog/ulid)
v2.1.1Compare Source
What's Changed
ulid.Niland.IsZero()method by @tonyhb in https://github.com/oklog/ulid/pull/112New Contributors
Full Changelog: oklog/ulid@v2.1.0...v2.1.1
v2.1.0Compare Source
Full release of v2.1.0, thanks to our testers.
What's Changed
alizain/ulidby @kachick in https://github.com/oklog/ulid/pull/67New Contributors
Full Changelog: oklog/ulid@v2.0.2...v2.1.0
v2.0.2Compare Source
Identical to v2.0.1, except uses the proper /v2 suffix on the ulid import in ulid_test.go. Without this change, anyone who imported oklog/ulid at e.g. v2.0.1 into their project would also get oklog/ulid at v0-something due to the inadvertent transitive dependency.
v2.0.1Compare Source
Identical to v2.0.0, but fixes a bug in the go.mod module path.
v2.0.0Compare Source
A new major version to go with support for Go modules. Also, improved support for safe monotonic readers.
puzpuzpuz/xsync (github.com/puzpuzpuz/xsync/v3)
v4.4.0Compare Source
Mapfor integer keys #185Map.RangeRelaxedmethod for faster map iteration #187Map.DeleteMatchingmethod for batch entry deletion #186Read-heavy operations on
Mapwith integer keys are now 24-29% faster due to a more efficient hash function, as well as a number of micro-optimizations.RangeRelaxedis a much faster (~11x), lock-free alternative toRange. The downside is that the same key may be visited byRangeRelaxedmore than once if it is concurrently deleted and re-inserted during the iteration.RangeRelaxedshould be preferred overRangein all cases when weaker consistency is acceptable.DeleteMatchingdeletes all entries for which the delete return value of the input function is true. If the cancel return value is true, the iteration stops immediately. The function returns the number of deleted entries. The call locks a hash table bucket for the duration of evaluating the function for all entries in the bucket and performing deletions. It performs up to 20% faster thanRange+Delete, yet if the percentage of the entries to-be-deleted is low,RangeRelaxed+Deletecombination should be more efficient.v4.3.0Compare Source
Map.All#181Allis similar toRange, but returns aniter.Seq2, so is compatible with Go 1.23+ iterators. All of the same caveats and behavior fromRangeapply toAll.Kudos to @llxisdsh and @moskyb for making this release happen.
v4.2.0Compare Source
Map#178runtime.cheaprandinstead offastrand#177Introduces cooperative rehashing for
xsync.Mapthis means that goroutines that execute write operations, such asComputeorStore, may participate in table rehashing when the hash table grows or shrinks. From now on, table rehashing never spawns additional goroutines.This behavior is always enabled, so the
WithSerialResizefunction is now marked as deprecated and acts as a no-op.v4.1.0Compare Source
UMPSCQueue#168LoadAndDeleteandDeletein case of non-existingMapkey #167Mapresize #170UMPSCQueueis meant to serve as a replacement for a channel. However, crucially, it has infinite capacity. This is a very bad idea in many cases as it means that it never exhibits backpressure. In other words, if nothing is consuming elements from the queue, it will eventually consume all available memory and crash the process. However, there are also cases where this is desired behavior as it means the queue will dynamically allocate more memory to store temporary bursts, allowing producers to never block while the consumer catches up.From now on,
Mapspawns additional goroutines to speed up resizing the hash table. This can be disabled when creating aMapwith the newWithSerialResizesetting:Thanks @PapaCharlie and @llxisdsh for the contributions!
v4.0.0Compare Source
MapOf's hasher API is gone. The default and only hash function is now based onmaphash.Comparable.Map'sComputeAPI now supports no-op (cancel) compute operation.Thanks @PapaCharlie for making this release happen
Migration notes
*Oftypes are kept as type aliases for the renamed data structures to simplify the migration, e.g.MapOfis an alias forMap.NewMapOfPresizedfunction is gone.NewMapcombined withWithPresizeshould be used instead.Map.Computemethod now expectsvalueFnto return aComputeOpvalue instead of a boolean flag. That's to support compute operation cancellation, so that the call does nothing.Map.LoadOrTryComputemethod is renamed toLoadOrCompute. The oldLoadOrComputemethod is removed as it was redundant.zitadel/oidc (github.com/zitadel/oidc/v2)
v3.45.5Compare Source
Bug Fixes
v3.45.4Compare Source
Bug Fixes
v3.45.3Compare Source
Bug Fixes
v3.45.2Compare Source
Bug Fixes
v3.45.1Compare Source
Bug Fixes
v3.45.0Compare Source
Features
v3.44.0Compare Source
Features
v3.43.1Compare Source
Bug Fixes
v3.43.0Compare Source
Features
v3.42.0Compare Source
Features
v3.41.0Compare Source
Features
v3.40.0Compare Source
Features
v3.39.1Compare Source
Bug Fixes
v3.39.0Compare Source
Features
v3.38.1Compare Source
Bug Fixes
v3.38.0Compare Source
Features
v3.37.0Compare Source
Features
v3.36.1Compare Source
Bug Fixes
v3.36.0Compare Source
Features
v3.35.0Compare Source
Features
v3.34.2Compare Source
Bug Fixes
v3.34.1Compare Source
Bug Fixes
v3.34.0Compare Source
Features
v3.33.1Compare Source
Bug Fixes
v3.33.0Compare Source
Features
v3.32.1Compare Source
Bug Fixes
v3.32.0Compare Source
Features
v3.31.0Compare Source
Features
v3.30.1Compare Source
Bug Fixes
v3.30.0Compare Source
Features
v3.29.1Compare Source
Bug Fixes
v3.29.0Compare Source
Features
v3.28.2Compare Source
Bug Fixes
v3.28.1Compare Source
Bug Fixes
v3.28.0Compare Source
Features
v3.27.1Compare Source
Bug Fixes
v3.27.0Compare Source
Features
v3.26.1Compare Source
Bug Fixes
v3.26.0Compare Source
Features
v3.25.1Compare Source
Bug Fixes
v3.25.0Compare Source
Features
v3.24.0Compare Source
Features
v3.23.2Compare Source
Bug Fixes
RefreshTokenRequestwhen performing a token refresh (#599) (5a84d8c)v3.23.1Compare Source
Bug Fixes
v3.23.0Compare Source
Features
v3.22.1Compare Source
Bug Fixes
v3.22.0Compare Source
Features
v3.21.0Compare Source
Features
v3.20.1Compare Source
Bug Fixes
v3.20.0Compare Source
Features
v3.19.0Compare Source
Features
v3.18.0Compare Source
Features
v3.17.0Compare Source
Features
v3.16.0Compare Source
Features
v3.15.0Compare Source
Features
v3.14.0Compare Source
Features
v3.13.0Compare Source
Features
v3.12.0Compare Source
Features
v3.11.2Compare Source
Bug Fixes
v3.11.1Compare Source
Bug Fixes
v3.11.0Compare Source
Features
v3.10.3Compare Source
Bug Fixes
v3.10.2Compare Source
Bug Fixes
v3.10.1Compare Source
Bug Fixes
v3.10.0Compare Source
Features
v3.9.1Compare Source
Bug Fixes
v3.9.0Compare Source
Features
v3.8.1Compare Source
Bug Fixes
v3.8.0Compare Source
Features
v3.7.0Compare Source
Features
v3.6.0Compare Source
Features
v3.5.1Compare Source
Bug Fixes
v3.5.0Compare Source
Features
v3.4.0Compare Source
Features
v3.3.1Compare Source
Bug Fixes
v3.3.0Compare Source
Features
v3.2.1Compare Source
Bug Fixes
v3.2.0Compare Source
Features
v3.1.1Compare Source
Bug Fixes
v3.1.0Compare Source
Features
v3.0.3Compare Source
Bug Fixes
v3.0.2Compare Source
What's Changed
Full Changelog: zitadel/oidc@v3.0.1...v3.0.2
[
v3.0.1](https://redireConfiguration
📅 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 has been generated by Renovate Bot.