-
Notifications
You must be signed in to change notification settings - Fork 10
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
Update All api dependencies #309
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 2 Skipped Deployments
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
e8715ed
to
6bd8be4
Compare
560fedd
to
85c8fed
Compare
1b16563
to
0ed27c0
Compare
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
d305d08
to
da5dea0
Compare
da5dea0
to
15d6a7e
Compare
64b1a94
to
266e158
Compare
849b083
to
47fff9e
Compare
84d9a79
to
1ae53b8
Compare
1ae53b8
to
ce5b69f
Compare
This PR contains the following updates:
v1.10.0
->v1.10.1
v1.4.1
->v1.4.4
v2.0.0
->v2.1.0
v1.4.7
->v1.4.8
v0.128.0
->v0.129.0
v1.14.0
->v1.15.0
v5.7.1
->v5.7.2
v4.12.0
->v4.13.3
v7.0.81
->v7.0.84
v0.1.0-alpha.39
->v0.1.0-alpha.51
v0.18.7
->v0.21.2
v3.4.0
->v3.5.0
v1.0.49
->v1.0.53
v1.47.0
->v1.49.1
v4.24.10
->v4.25.1
v1.23.6
->v1.23.11
v1.27.6
->v1.28.4
1.23.3
->1.23.5
v1.33.0
->v1.34.0
v1.33.0
->v1.34.0
v1.33.0
->v1.34.0
v1.33.0
->v1.34.0
v0.31.0
->v0.32.0
701f63a
->e0ece0d
v0.33.0
->v0.34.0
v0.24.0
->v0.25.0
v0.209.0
->v0.219.0
v1.36.1
->v1.36.4
Release Notes
PuerkitoBio/goquery (github.com/PuerkitoBio/goquery)
v1.10.1
Compare Source
Update
go.mod
dependencies.ThreeDotsLabs/watermill (github.com/ThreeDotsLabs/watermill)
v1.4.4
Compare Source
What's Changed
cqrs.ProtobufMarshaler
(with github.com/gogo/protobuf) in favour ofcqrs.ProtoMarshaler
by @roblaszczak in https://github.com/ThreeDotsLabs/watermill/pull/526Suggested migration steps for
cqrs.ProtobufMarshaler
cqrs.ProtobufMarshaler
from this release is backward and forward compatible withcqrs.ProtoMarshaler
.cqrs.ProtobufMarshaler
from Watermill versions until v1.4.3 are not forward compatible withcqrs.ProtoMarshaler
.Suggested migration steps:
cqrs.ProtobufMarshaler
tocqrs.ProtoMarshaler
.Full Changelog: ThreeDotsLabs/watermill@v1.4.3...v1.4.4
v1.4.3
Compare Source
What's Changed
New Contributors
Full Changelog: ThreeDotsLabs/watermill@v1.4.2...v1.4.3
v1.4.2
Compare Source
What's Changed
New Contributors
Full Changelog: ThreeDotsLabs/watermill@v1.4.1...v1.4.2
dgraph-io/ristretto (github.com/dgraph-io/ristretto/v2)
v2.1.0
: Ristretto v2.1.0Compare Source
What's Changed
Full Changelog: dgraph-io/ristretto@v2.0.1...v2.1.0
v2.0.1
Compare Source
Fixed
Full Changelog: dgraph-io/ristretto@v2.0.0...v2.0.1
gabriel-vasile/mimetype (github.com/gabriel-vasile/mimetype)
v1.4.8
: Add support for APKCompare Source
What's Changed
New Contributors
Full Changelog: gabriel-vasile/mimetype@v1.4.7...v1.4.8
getkin/kin-openapi (github.com/getkin/kin-openapi)
v0.129.0
Compare Source
What's Changed
x-www-form-urlencoded
with arbitrary nested allOf by @mikhalytch in https://github.com/getkin/kin-openapi/pull/1046New Contributors
Full Changelog: getkin/kin-openapi@v0.128.0...v0.129.0
gosimple/slug (github.com/gosimple/slug)
v1.15.0
Compare Source
🚀 New features and improvements
jackc/pgx (github.com/jackc/pgx/v5)
v5.7.2
Compare Source
labstack/echo (github.com/labstack/echo/v4)
v4.13.3
Compare Source
Security
v4.13.2
Compare Source
Security
v4.13.1
Compare Source
Fixes
Transfer-Encoding: chunked
requests by @178inaba in https://github.com/labstack/echo/pull/2717v4.13.0
Compare Source
BREAKING CHANGE JWT Middleware Removed from Core use labstack/echo-jwt instead
The JWT middleware has been removed from Echo core due to another security vulnerability, CVE-2024-51744. For more details, refer to issue #2699. A drop-in replacement is available in the labstack/echo-jwt repository.
Important: Direct assignments like
token := c.Get("user").(*jwt.Token)
will now cause a panic due to an invalid cast. Update your code accordingly. Replace the current imports from"github.com/golang-jwt/jwt"
in your handlers to the new middleware version using"github.com/golang-jwt/jwt/v5"
.Background:
The version of
golang-jwt/jwt
(v3.2.2) previously used in Echo core has been in an unmaintained state for some time. This is not the first vulnerability affecting this library; earlier issues were addressed in PR #1946.JWT middleware was marked as deprecated in Echo core as of v4.10.0 on 2022-12-27. If you did not notice that, consider leveraging tools like Staticcheck to catch such deprecations earlier in you dev/CI flow. For bonus points - check out gosec.
We sincerely apologize for any inconvenience caused by this change. While we strive to maintain backward compatibility within Echo core, recurring security issues with third-party dependencies have forced this decision.
Enhancements
MultipartForm
test by @martinyonatann in https://github.com/labstack/echo/pull/2682bind
: add support of multipart multi files by @martinyonatann in https://github.com/labstack/echo/pull/2684html/template
andtext/template
packages. by @aldas in https://github.com/labstack/echo/pull/2690minio/minio-go (github.com/minio/minio-go/v7)
v7.0.84
: Bugfix ReleaseCompare Source
What's Changed
New Contributors
Full Changelog: minio/minio-go@v7.0.83...v7.0.84
v7.0.83
: Bugfix ReleaseCompare Source
What's Changed
New Contributors
Full Changelog: minio/minio-go@v7.0.82...v7.0.83
v7.0.82
: Bugfix ReleaseCompare Source
What's Changed
obj.Stat()
by @OrkhanAlikhanov in https://github.com/minio/minio-go/pull/2028New Contributors
Full Changelog: minio/minio-go@v7.0.81...v7.0.82
openai/openai-go (github.com/openai/openai-go)
v0.1.0-alpha.51
Compare Source
0.1.0-alpha.51 (2025-01-31)
Full Changelog: v0.1.0-alpha.50...v0.1.0-alpha.51
Features
Bug Fixes
v0.1.0-alpha.50
Compare Source
0.1.0-alpha.50 (2025-01-29)
Full Changelog: v0.1.0-alpha.49...v0.1.0-alpha.50
Chores
v0.1.0-alpha.49
Compare Source
0.1.0-alpha.49 (2025-01-22)
Full Changelog: v0.1.0-alpha.48...v0.1.0-alpha.49
Features
v0.1.0-alpha.48
Compare Source
0.1.0-alpha.48 (2025-01-21)
Full Changelog: v0.1.0-alpha.47...v0.1.0-alpha.48
Bug Fixes
Chores
streaming.go
(#176) (8c54a3b)v0.1.0-alpha.47
Compare Source
0.1.0-alpha.47 (2025-01-20)
Full Changelog: v0.1.0-alpha.46...v0.1.0-alpha.47
Bug Fixes
v0.1.0-alpha.46
Compare Source
0.1.0-alpha.46 (2025-01-17)
Full Changelog: v0.1.0-alpha.45...v0.1.0-alpha.46
Chores
v0.1.0-alpha.45
Compare Source
0.1.0-alpha.45 (2025-01-09)
Full Changelog: v0.1.0-alpha.44...v0.1.0-alpha.45
Chores
v0.1.0-alpha.44
Compare Source
0.1.0-alpha.44 (2025-01-08)
Full Changelog: v0.1.0-alpha.43...v0.1.0-alpha.44
Documentation
v0.1.0-alpha.43
Compare Source
0.1.0-alpha.43 (2025-01-03)
Full Changelog: v0.1.0-alpha.42...v0.1.0-alpha.43
Chores
v0.1.0-alpha.42
Compare Source
0.1.0-alpha.42 (2025-01-02)
Full Changelog: v0.1.0-alpha.41...v0.1.0-alpha.42
Chores
Configuration
📅 Schedule: Branch creation - "every weekend" (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.
This PR was generated by Mend Renovate. View the repository job log.