Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented May 7, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/aws/aws-sdk-go-v2/service/s3 v1.79.2 -> v1.79.3 age adoption passing confidence
github.com/hypermodeinc/modus/sdk/go v0.17.3 -> v0.17.4 age adoption passing confidence
github.com/lestrrat-go/jwx/v3 v3.0.0 -> v3.0.1 age adoption passing confidence
github.com/neo4j/neo4j-go-driver/v5 v5.28.0 -> v5.28.1 age adoption passing confidence
github.com/puzpuzpuz/xsync/v4 v4.0.0 -> v4.1.0 age adoption passing confidence
github.com/spf13/cast v1.7.1 -> v1.8.0 age adoption passing confidence
github.com/wundergraph/graphql-go-tools/v2 v2.0.0-rc.173 -> v2.0.0-rc.176 age adoption passing confidence
golang.org/x/sys v0.32.0 -> v0.33.0 age adoption passing confidence

Release Notes

lestrrat-go/jwx (github.com/lestrrat-go/jwx/v3)

v3.0.1

Compare Source

What's Changed

Please read the Changes file and upgrade accordingly, especially if you are using the following combinations for JWE:

  • DIRECT mode content encryption
  • Using A256CBC_HS512
  • With an erroneously created CEK of exactly 32-bytes.

New Contributors

Full Changelog: lestrrat-go/jwx@v3.0.0...v3.0.1

neo4j/neo4j-go-driver (github.com/neo4j/neo4j-go-driver/v5)

v5.28.1

Compare Source

See https://github.com/neo4j/neo4j-go-driver/wiki/5.x-changelog for more information.

puzpuzpuz/xsync (github.com/puzpuzpuz/xsync/v4)

v4.1.0

Compare Source

  • New data structure: UMPSCQueue #​168
  • Speed up LoadAndDelete and Delete in case of non-existing Map key #​167
  • Parallel Map resize #​170

UMPSCQueue is 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, Map spawns additional goroutines to speed up resizing the hash table. This can be disabled when creating a Map with the new WithSerialResize setting:

m := xsync.NewMap[int, int](xsync.WithSerialResize())
// resize will take place on the current goroutine only
for i := 0; i < 10000; i++ {
	m.Store(i, i)
}

Thanks @​PapaCharlie and @​llxisdsh for the contributions!

spf13/cast (github.com/spf13/cast)

v1.8.0

Compare Source

What's Changed

New Contributors

Full Changelog: spf13/cast@v1.7.1...v1.8.0

wundergraph/graphql-go-tools (github.com/wundergraph/graphql-go-tools/v2)

v2.0.0-rc.176

Compare Source

Bug Fixes

v2.0.0-rc.175

Compare Source

Features
  • remove intermediate buffer from ResolveGraphQLResponse (#​1137) (9f25e6f)

v2.0.0-rc.174

Compare Source

Features

Configuration

📅 Schedule: Branch creation - "on Wednesday" (UTC), 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.

@renovate renovate bot requested a review from a team May 7, 2025 03:06
@renovate
Copy link
Contributor Author

renovate bot commented May 7, 2025

ℹ Artifact update notice

File name: runtime/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):

  • 4 additional dependencies were updated

Details:

Package Change
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.7.0 -> v1.7.1
github.com/lestrrat-go/httprc/v3 v3.0.0-beta1 -> v3.0.0-beta2
golang.org/x/crypto v0.36.0 -> v0.37.0
golang.org/x/term v0.30.0 -> v0.31.0

@mattjohnsonpint mattjohnsonpint merged commit 1f99ad6 into main May 7, 2025
49 checks passed
@mattjohnsonpint mattjohnsonpint deleted the renovate/go-minor-and-patch branch May 7, 2025 05:17
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Development

Successfully merging this pull request may close these issues.

2 participants