fix(deps): update go minor and patch dependencies#96
fix(deps): update go minor and patch dependencies#96red-hat-konflux[bot] wants to merge 1 commit intomasterfrom
Conversation
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
WalkthroughUpdated indirect Go module dependencies in Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes 🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
0137672 to
acaa6f8
Compare
There was a problem hiding this comment.
Actionable comments posted: 2
🤖 Fix all issues with AI agents
In `@go.mod`:
- Line 60: Replace the invalid module path "go.yaml.in/yaml/v2" with the correct
"gopkg.in/yaml.v2" or remove the erroneous entry entirely; if your intent was to
upgrade the YAML dependency to v2.4.3, update the existing "gopkg.in/yaml.v2
v2.4.0 // indirect" entry to v2.4.3 and delete the incorrect "go.yaml.in/yaml/v2
v2.4.3 // indirect" line, then run go mod tidy to reconcile and clean up the
go.mod.
- Around line 61-62: The go.mod entry for the module "golang.org/x/text" is
using the non-existent version v0.34.0; update the version string to "v0.33.0"
(replace the "golang.org/x/text v0.34.0" entry with "golang.org/x/text v0.33.0")
and then run a module sync (e.g., go get golang.org/x/text@v0.33.0 and go mod
tidy) so the change is validated and the dependency graph is consistent with the
existing valid versions like golang.org/x/crypto and golang.org/x/mod.
| go.yaml.in/yaml/v3 v3.0.4 // indirect | ||
| golang.org/x/crypto v0.47.0 // indirect | ||
| golang.org/x/mod v0.32.0 // indirect | ||
| go.yaml.in/yaml/v2 v2.4.3 // indirect |
There was a problem hiding this comment.
Invalid module path: go.yaml.in/yaml/v2 should be gopkg.in/yaml.v2.
The import path go.yaml.in/yaml/v2 is incorrect and will cause build failures. The standard YAML v2 library for Go uses the import path gopkg.in/yaml.v2 (as correctly shown on line 68).
This appears to be a typo or error introduced during the dependency update. Please correct this entry or remove it if it was added in error.
🐛 Proposed fix
- go.yaml.in/yaml/v2 v2.4.3 // indirect
+ gopkg.in/yaml.v2 v2.4.3 // indirectHowever, note that line 68 already contains gopkg.in/yaml.v2 v2.4.0 // indirect. If you intend to update that version to v2.4.3, you should modify line 68 instead and remove line 60 entirely. Run go mod tidy to clean up duplicate or incorrect entries.
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| go.yaml.in/yaml/v2 v2.4.3 // indirect | |
| gopkg.in/yaml.v2 v2.4.3 // indirect |
🤖 Prompt for AI Agents
In `@go.mod` at line 60, Replace the invalid module path "go.yaml.in/yaml/v2" with
the correct "gopkg.in/yaml.v2" or remove the erroneous entry entirely; if your
intent was to upgrade the YAML dependency to v2.4.3, update the existing
"gopkg.in/yaml.v2 v2.4.0 // indirect" entry to v2.4.3 and delete the incorrect
"go.yaml.in/yaml/v2 v2.4.3 // indirect" line, then run go mod tidy to reconcile
and clean up the go.mod.
7f65e65 to
e817249
Compare
e817249 to
04efb5f
Compare
654280c to
2ed4a5c
Compare
89609a8 to
e22808d
Compare
a98feb7 to
aac7900
Compare
6a1cb37 to
5150e1b
Compare
3ffbb17 to
04eda38
Compare
ℹ️ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
This PR contains the following updates:
v1.1.0→v1.2.0v0.133.0→v0.137.0v0.22.4→v0.23.1v0.25.4→v0.26.0v1.9.3→v1.10.0v5.8.0→v5.9.2v0.9.1→v0.9.2v1.14.33→v1.14.44v2.5.1→v2.7.0v1.3.1→v1.4.0v0.0.0-20250309154309-f31be36b4037→v0.0.9v0.0.0-20250309153720-d2182401db90→v0.0.12v0.19.2→v0.20.1v2.0.0→v2.1.0v0.6.2→v0.6.31.25.7→1.26.2v2.4.3→v2.4.4v0.47.0→v0.50.0v0.32.0→v0.35.0v0.19.0→v0.20.0v0.40.0→v0.43.0v0.41.0→v0.44.0Warning
Some dependencies could not be looked up. Check the warning logs for more information.
Release Notes
FiloSottile/edwards25519 (filippo.io/edwards25519)
v1.2.0Compare Source
v1.1.1Compare Source
getkin/kin-openapi (github.com/getkin/kin-openapi)
v0.137.0Compare Source
What's Changed
cc4f8d9by @fenollp in #1161Full Changelog: getkin/kin-openapi@v0.136.0...v0.137.0
v0.136.0Compare Source
What's Changed
New Contributors
Full Changelog: getkin/kin-openapi@v0.135.0...v0.136.0
v0.135.0Compare Source
What's Changed
New Contributors
Full Changelog: getkin/kin-openapi@v0.134.0...v0.135.0
v0.134.0Compare Source
What's Changed
New Contributors
Full Changelog: getkin/kin-openapi@v0.133.0...v0.134.0
go-openapi/jsonpointer (github.com/go-openapi/jsonpointer)
v0.23.1Compare Source
0.23.1 - 2026-04-18
Full Changelog: go-openapi/jsonpointer@v0.23.0...v0.23.1
5 commits in this release.
Fixed bugs
Documentation
Updates
People who contributed to this release
jsonpointer license terms
v0.23.0Compare Source
0.23.0 - 2026-04-15
Support for known limitations
Full Changelog: go-openapi/jsonpointer@v0.22.5...v0.23.0
16 commits in this release.
Implemented enhancements
"-"array suffix is now supported by @fredbi in #121 ...Fixed bugs
Documentation
Miscellaneous tasks
Updates
People who contributed to this release
New Contributors
in #118
jsonpointer license terms
v0.22.5Compare Source
0.22.5 - 2026-03-02
Full Changelog: go-openapi/jsonpointer@v0.22.4...v0.22.5
15 commits in this release.
Documentation
Code quality
Miscellaneous tasks
Updates
People who contributed to this release
New Contributors
in #97
jsonpointer license terms
go-openapi/swag (github.com/go-openapi/swag/jsonname)
v0.26.0Compare Source
0.26.0 - 2026-04-15
Full Changelog: go-openapi/swag@v0.25.5...v0.26.0
14 commits in this release.
Implemented enhancements
Documentation
Code quality
Miscellaneous tasks
Updates
People who contributed to this release
swag license terms
Per-module changes
cmdutils (0.26.0)
Miscellaneous tasks
conv (0.26.0)
Miscellaneous tasks
Updates
fileutils (0.26.0)
Miscellaneous tasks
Updates
jsonname (0.26.0)
Implemented enhancements
Miscellaneous tasks
Updates
jsonutils/adapters/easyjson (0.26.0)
Miscellaneous tasks
Updates
jsonutils/adapters/testintegration/benchmarks (0.26.0)
Miscellaneous tasks
Updates
jsonutils/adapters/testintegration (0.26.0)
Miscellaneous tasks
Updates
jsonutils/fixtures_test (0.26.0)
Miscellaneous tasks
Updates
jsonutils (0.26.0)
Miscellaneous tasks
Updates
loading (0.26.0)
Miscellaneous tasks
Updates
mangling (0.26.0)
Miscellaneous tasks
Updates
netutils (0.26.0)
Miscellaneous tasks
Updates
stringutils (0.26.0)
Miscellaneous tasks
Updates
typeutils (0.26.0)
Miscellaneous tasks
Updates
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.
To execute skipped test pipelines write comment
/ok-to-test.Documentation
Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.