Skip to content

chore(deps): Bump the misc-dependencies group across 3 directories with 27 updates - #1092

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/misc-dependencies-ecccf06c2f
Open

chore(deps): Bump the misc-dependencies group across 3 directories with 27 updates#1092
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/misc-dependencies-ecccf06c2f

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the misc-dependencies group with 13 updates in the / directory:

Package From To
github.com/fsnotify/fsnotify 1.9.0 1.10.1
github.com/fxamacker/cbor/v2 2.9.1 2.9.2
github.com/go-logr/logr 1.4.3 1.4.4
github.com/go-openapi/jsonpointer 0.22.5 1.0.0
github.com/go-openapi/jsonreference 0.21.5 1.0.0
github.com/go-openapi/swag 0.25.5 0.28.0
github.com/pelletier/go-toml/v2 2.3.0 2.4.3
go.yaml.in/yaml/v3 3.0.4 3.0.5
golang.org/x/mod 0.37.0 0.38.0
golang.org/x/net 0.56.0 0.57.0
golang.org/x/tools 0.47.0 0.48.0
github.com/onsi/ginkgo/v2 2.28.1 2.32.0
github.com/Masterminds/semver/v3 3.4.0 3.5.0

Bumps the misc-dependencies group with 11 updates in the /tests/e2e directory:

Package From To
github.com/fxamacker/cbor/v2 2.9.1 2.9.2
github.com/go-logr/logr 1.4.3 1.4.4
github.com/go-openapi/jsonpointer 0.22.5 1.0.0
github.com/go-openapi/jsonreference 0.21.5 1.0.0
github.com/go-openapi/swag 0.25.5 0.28.0
go.yaml.in/yaml/v3 3.0.4 3.0.5
golang.org/x/mod 0.37.0 0.38.0
golang.org/x/net 0.56.0 0.57.0
golang.org/x/tools 0.47.0 0.48.0
github.com/onsi/ginkgo/v2 2.28.1 2.32.0
github.com/Masterminds/semver/v3 3.4.0 3.5.0

Bumps the misc-dependencies group with 8 updates in the /tests/integration directory:

Package From To
github.com/fsnotify/fsnotify 1.9.0 1.10.1
github.com/fxamacker/cbor/v2 2.9.1 2.9.2
github.com/go-logr/logr 1.4.3 1.4.4
github.com/go-openapi/jsonpointer 0.22.5 1.0.0
github.com/go-openapi/jsonreference 0.21.5 1.0.0
github.com/go-openapi/swag 0.25.5 0.28.0
go.yaml.in/yaml/v3 3.0.4 3.0.5
golang.org/x/net 0.56.0 0.57.0

Updates github.com/fsnotify/fsnotify from 1.9.0 to 1.10.1

Release notes

Sourced from github.com/fsnotify/fsnotify's releases.

v1.10.1

Changes and fixes

  • inotify: don't remove sibling watches sharing a path prefix (#754)

  • inotify, windows: don't rename sibling watches sharing a path prefix (#755)

#754: fsnotify/fsnotify#754 #755: fsnotify/fsnotify#755

v1.10.0

This version of fsnotify needs Go 1.23.

Changes and fixes

  • inotify: improve initialization error message (#731)

  • inotify: send Rename event if recursive watch is renamed (#696)

  • inotify: avoid copying event buffers when reading names (#741)

  • kqueue: skip dangling symlinks (ENOENT) in watchDirectoryFiles, so a bad entry no longer aborts Watcher.Add for the whole directory (#748)

  • kqueue: drop watches directly in Close() to fix a file descriptor leak when recycling watchers (#740)

  • windows: fix nil pointer dereference in remWatch (#736)

  • windows: lock watch field updates against concurrent WatchList to fix a race introduced in v1.9.0 (#709, #749)

#696: fsnotify/fsnotify#696 #709: fsnotify/fsnotify#709 #731: fsnotify/fsnotify#731 #736: fsnotify/fsnotify#736 #740: fsnotify/fsnotify#740 #741: fsnotify/fsnotify#741 #748: fsnotify/fsnotify#748 #749: fsnotify/fsnotify#749

Changelog

Sourced from github.com/fsnotify/fsnotify's changelog.

1.10.1 2026-05-04

Changes and fixes

  • inotify: don't remove sibling watches sharing a path prefix (#754)

  • inotify, windows: don't rename sibling watches sharing a path prefix (#755)

#754: fsnotify/fsnotify#754 #755: fsnotify/fsnotify#755

1.10.0 2026-04-30

This version of fsnotify needs Go 1.23.

Changes and fixes

  • inotify: improve initialization error message (#731)

  • inotify: send Rename event if recursive watch is renamed (#696)

  • inotify: avoid copying event buffers when reading names (#741)

  • kqueue: skip dangling symlinks (ENOENT) in watchDirectoryFiles, so a bad entry no longer aborts Watcher.Add for the whole directory (#748)

  • kqueue: drop watches directly in Close() to fix a file descriptor leak when recycling watchers (#740)

  • windows: fix nil pointer dereference in remWatch (#736)

  • windows: lock watch field updates against concurrent WatchList to fix a race introduced in v1.9.0 (#709, #749)

#696: fsnotify/fsnotify#696 #709: fsnotify/fsnotify#709 #731: fsnotify/fsnotify#731 #736: fsnotify/fsnotify#736 #740: fsnotify/fsnotify#740 #741: fsnotify/fsnotify#741 #748: fsnotify/fsnotify#748 #749: fsnotify/fsnotify#749

Commits
  • 76b01a6 Release 1.10.1
  • fec150b Update changelog
  • 162b421 inotify, windows: don't rename sibling watches sharing a path prefix (#755)
  • 224257f inotify: don't remove sibling watches sharing a path prefix (#754)
  • e0c956c windows: document directory Write events and stabilize tests (#745)
  • 8d01d7b Release 1.10.0
  • 602284e Update changelog
  • 7f03e59 kqueue: skip ENOENT entries in watchDirectoryFiles (#748)
  • dab9dde windows: lock watch field updates against concurrent WatchList (#709) (#749)
  • eadf267 kqueue: drop watches directly in Close() instead of going through remove() (#...
  • Additional commits viewable in compare view

Updates github.com/fxamacker/cbor/v2 from 2.9.1 to 2.9.2

Release notes

Sourced from github.com/fxamacker/cbor/v2's releases.

v2.9.2

This release refactors and hardens the streaming encoder by adding stricter checks for encoding CBOR indefinite-length data. Other changes include minor bugfixes, defensive checks, and more tests.

Projects that don't use CBOR indefinite-length data may also want to upgrade (summary of prior releases).

The stricter checks in the encoder prevent improper use of the library and bad inputs from producing malformed CBOR indefinite-length data that would be rejected by the decoder.

This release passed fuzz tests (billions of execs) and it is production quality.

What's Changed

CI / GitHub Actions and Docs

Full Changelog: fxamacker/cbor@v2.9.1...v2.9.2

Commits
  • 45589ab Merge pull request #769 from fxamacker/fxamacker/update-readme-release-status
  • 8e98ea5 Update README for v2.9.2 release
  • e501aca Merge pull request #768 from fxamacker/fxamacker/update-docs
  • e6af0aa Merge pull request #767 from fxamacker/fxamacker/refactor-indefinite-length-e...
  • 57f1601 Merge pull request #766 from fxamacker/fxamacker/no-opt-to-remove-nil-type-in...
  • 0cdb674 Fix indefinite-length string chunk validation
  • c0db60f Improve GitHub Workflow code coverage regex
  • 63937fe Fix panic message to print the unrecognized tag
  • f0352a5 Add more tests
  • 0c20a0f Refactor encoding of indefinite-length data item
  • Additional commits viewable in compare view

Updates github.com/go-logr/logr from 1.4.3 to 1.4.4

Release notes

Sourced from github.com/go-logr/logr's releases.

v1.4.4

What's Changed

New Contributors

Full Changelog: go-logr/logr@v1.4.3...v1.4.4

Commits
  • 96a9aba Fix lint
  • 51c6302 Better implementation of pointer recursion checking
  • c667114 funcr: Handle and test recursive values
  • f7ffadb Add benchmark for pointer args
  • e2a3c8e funcr: bound slog.Group nesting depth to prevent stack overflow
  • 2886d2b build(deps): bump actions/setup-go from 6.5.0 to 7.0.0
  • 0b40896 build(deps): bump github/codeql-action/upload-sarif
  • 77f671b Bump to Go 1.26
  • cce283f build(deps): bump golangci/golangci-lint-action from 9.2.1 to 9.3.0
  • 3832a11 build(deps): bump github/codeql-action/upload-sarif
  • Additional commits viewable in compare view

Updates github.com/go-openapi/jsonpointer from 0.22.5 to 1.0.0

Release notes

Sourced from github.com/go-openapi/jsonpointer's releases.

v1.0.0

1.0.0 - 2026-07-07

Stable API pledge - no change from v0.24.0

Full Changelog: go-openapi/jsonpointer@v0.24.0...v1.0.0

2 commits in this release.


Documentation


People who contributed to this release


jsonpointer license terms

License

v0.24.0

0.24.0 - 2026-06-29

Full Changelog: go-openapi/jsonpointer@v0.23.2...v0.24.0

17 commits in this release.


Implemented enhancements

  • feat(jsonname): added new json name provider more respectful of go conventions for JSON (#195) by @​fredbi ...

... (truncated)

Commits
  • 94e8608 doc: announce v1.0.0 (#144)
  • 67f7036 doc: updated contributors file
  • 933d263 doc: announced dependencies reshuffle for v0.24.0 (#142)
  • 3663b09 Merge pull request #141 from fredbi/import/jsonname
  • ae73433 chore: wired the local jsonname package & relinted
  • 5667aac build(deps): bump the go-openapi-dependencies group across 15 directories wit...
  • d138cf8 feat(jsonname): added new json name provider more respectful of go convention...
  • e8f76b3 build(deps): bump the go-openapi-dependencies group across 15 directories wit...
  • 1106664 test: upgraded tests to use generics (#176)
  • c86da87 test: upgraded to go-openapi/testify@v2.3.0 (#175)
  • Additional commits viewable in compare view

Updates github.com/go-openapi/jsonreference from 0.21.5 to 1.0.0

Release notes

Sourced from github.com/go-openapi/jsonreference's releases.

v1.0.0

1.0.0 - 2026-07-07

Stable API pledge - no change from v0.21.6

Full Changelog: go-openapi/jsonreference@v0.21.6...v1.0.0

10 commits in this release.


Documentation

Miscellaneous tasks

  • chore(ci): run contributors workflow monthly instead of weekly by @​fredbi in #103 ...

Updates


People who contributed to this release


jsonreference license terms

License

... (truncated)

Commits
  • edb350b doc: announce v1.0.0 (#108)
  • ee066a0 build(deps): bump github.com/go-openapi/jsonpointer
  • baa407a doc: updated contributors file
  • bb78ae3 build(deps): bump github.com/go-openapi/testify/v2
  • 23a0dfe ci: post README announcements to discord + bump ci-workflows to v0.4.0 (#104)
  • d4d1eb2 chore(ci): run contributors workflow monthly instead of weekly (#103)
  • 830a670 build(deps): bump the development-dependencies group with 8 updates
  • 0873ec0 doc: updated contributors file
  • 938b954 build(deps): bump the development-dependencies group with 8 updates
  • f4dadab doc: remove unused links in README
  • Additional commits viewable in compare view

Updates github.com/go-openapi/swag from 0.25.5 to 0.28.0

Release notes

Sourced from github.com/go-openapi/swag's releases.

v0.28.0

0.28.0 - 2026-07-27

Full Changelog: go-openapi/swag@v0.27.3...v0.28.0

3 commits in this release.


Implemented enhancements

  • feat(conv): add support for AppendXXX formatting of numbers by @​fredbi in #229 ...

Miscellaneous tasks

Updates


People who contributed to this release


swag license terms

License

Per-module changes


conv (0.28.0)

Implemented enhancements

... (truncated)

Commits
  • e3df199 chore: prepare release v0.28.0
  • fd5a309 feat(conv): add support for AppendXXX formatting of numbers (#229)
  • 785bef3 build(deps): bump the development-dependencies group with 9 updates
  • 179769d chore: prepare release v0.27.3
  • 1d10f1e fix: rooted path should also work on windows (#226)
  • c0c66d9 chore: prepare release v0.27.2
  • b0d2d9d fix(loading): resolve absolute in-root paths under WithRoot (#224)
  • c8a41f7 chore: prepare release v0.27.1
  • 221c895 chore: more go.mod replace missing
  • c110f25 Merge pull request #222 from fredbi/chore/fix-deps
  • Additional commits viewable in compare view

Updates github.com/go-openapi/swag/cmdutils from 0.25.5 to 0.28.0

Release notes

Sourced from github.com/go-openapi/swag/cmdutils's releases.

v0.28.0

0.28.0 - 2026-07-27

Full Changelog: go-openapi/swag@v0.27.3...v0.28.0

3 commits in this release.


Implemented enhancements

  • feat(conv): add support for AppendXXX formatting of numbers by @​fredbi in #229 ...

Miscellaneous tasks

Updates


People who contributed to this release


swag license terms

License

Per-module changes


conv (0.28.0)

Implemented enhancements

... (truncated)

Commits
  • e3df199 chore: prepare release v0.28.0
  • fd5a309 feat(conv): add support for AppendXXX formatting of numbers (#229)
  • 785bef3 build(deps): bump the development-dependencies group with 9 updates
  • 179769d chore: prepare release v0.27.3
  • 1d10f1e fix: rooted path should also work on windows (#226)
  • c0c66d9 chore: prepare release v0.27.2
  • b0d2d9d fix(loading): resolve absolute in-root paths under WithRoot (#224)
  • c8a41f7 chore: prepare release v0.27.1
  • 221c895 chore: more go.mod replace missing
  • c110f25 Merge pull request #222 from fredbi/chore/fix-deps
  • Additional commits viewable in compare view

Updates github.com/go-openapi/swag/conv from 0.25.5 to 0.28.0

Release notes

Sourced from github.com/go-openapi/swag/conv's releases.

v0.28.0

0.28.0 - 2026-07-27

Full Changelog: go-openapi/swag@v0.27.3...v0.28.0

3 commits in this release.


Implemented enhancements

  • feat(conv): add support for AppendXXX formatting of numbers by @​fredbi in #229 ...

Miscellaneous tasks

Updates


People who contributed to this release


swag license terms

License

Per-module changes


conv (0.28.0)

Implemented enhancements

... (truncated)

Commits
  • e3df199 chore: prepare release v0.28.0
  • fd5a309 feat(conv): add support for AppendXXX formatting of numbers (#229)
  • 785bef3 build(deps): bump the development-dependencies group with 9 updates
  • 179769d chore: prepare release v0.27.3
  • 1d10f1e fix: rooted path should also work on windows (#226)
  • c0c66d9 chore: prepare release v0.27.2
  • b0d2d9d fix(loading): resolve absolute in-root paths under WithRoot (#224)
  • c8a41f7 chore: prepare release v0.27.1
  • 221c895 chore: more go.mod replace missing
  • c110f25 Merge pull request #222 from fredbi/chore/fix-deps
  • Additional commits viewable in compare view

Updates github.com/go-openapi/swag/fileutils from 0.25.5 to 0.28.0

Release notes

Sourced from github.com/go-openapi/swag/fileutils's releases.

v0.28.0

0.28.0 - 2026-07-27

Full Changelog: go-openapi/swag@v0.27.3...v0.28.0

3 commits in this release.


Implemented enhancements

  • feat(conv): add support for AppendXXX formatting of numbers by @​fredbi in #229 ...

Miscellaneous tasks

Updates


People who contributed to this release


swag license terms

License

Per-module changes


conv (0.28.0)

Implemented enhancements

... (truncated)

Commits
  • e3df199 chore: prepare release v0.28.0
  • fd5a309 feat(conv): add support for AppendXXX formatting of numbers (#229)
  • 785bef3 build(deps): bump the development-dependencies group with 9 updates
  • 179769d chore: prepare release v0.27.3
  • 1d10f1e fix: rooted path should also work on windows (#226)
  • c0c66d9 chore: prepare release v0.27.2
  • b0d2d9d fix(loading): resolve absolute in-root paths under WithRoot (#224)
  • c8a41f7 chore: prepare release v0.27.1
  • 221c895 chore: more go.mod replace missing
  • c110f25 Merge pull request #222 from fredbi/chore/fix-deps
  • Additional commits viewable in compare view

Updates github.com/go-openapi/swag/jsonutils from 0.25.5 to 0.28.0

Release notes

Sourced from github.com/go-openapi/swag/jsonutils's releases.

v0.28.0

0.28.0 - 2026-07-27

Full Changelog: go-openapi/swag@v0.27.3...v0.28.0

3 commits in this release.


Implemented enhancements

  • feat(conv): add support for AppendXXX formatting of numbers by @​fredbi in #229 ...

Miscellaneous tasks

Updates


People who contributed to this release


swag license terms

License

Per-module changes


conv (0.28.0)

Implemented enhancements

... (truncated)

Commits
  • e3df199 chore: prepare release v0.28.0
  • fd5a309 feat(conv): add support for AppendXXX formatting of numbers (#229)
  • 785bef3 build(deps): bump the development-dependencies group with 9 updates
  • 179769d chore: prepare release v0.27.3
  • 1d10f1e fix: rooted path should also work on windows (#226)
  • c0c66d9 chore: prepare release v0.27.2
  • b0d2d9d fix(loading): resolve absolute in-root paths under WithRoot (#224)
  • c8a41f7 chore: prepare release v0.27.1
  • 221c895 chore: more go.mod replace missing
  • c110f25 Merge pull request #222 from fredbi/chore/fix-deps
  • Additional commits viewable in compare view

Updates github.com/go-openapi/swag/loading from 0.25.5 to 0.28.0

Release notes

Sourced from github.com/go-openapi/swag/loading's releases.

v0.28.0

0.28.0 - 2026-07-27

Full Changelog: go-openapi/swag@v0.27.3...v0.28.0

3 commits in this release.


Implemented enhancements

  • feat(conv): add support for AppendXXX formatting of numbers by @​fredbi in #229 ...

Miscellaneous tasks

Updates


People who contributed to this release


swag license terms

License

Per-module changes


conv (0.28.0)

Implemented enhancements

... (truncated)

Commits
  • e3df199 chore: prepare release v0.28.0
  • fd5a309 feat(conv): add support for AppendXXX formatting of numbers (#229)
  • 785bef3 build(deps): bump the development-dependencies group with 9 updates
  • 179769d chore: prepare release v0.27.3
  • 1d10f1e fix: rooted path should also work on windows (#226)
  • c0c66d9 chore: prepare release v0.27.2
  • b0d2d9d fix(loading): resolve absolute in-root paths under WithRoot (#224)
  • c8a41f7 chore: prepare release v0.27.1
  • 221c895 chore: more go.mod replace missing
  • c110f25 Merge pull request #222 from fredbi/chore/fix-deps
  • Additional commits viewable in compare view

Updates github.com/go-openapi/swag/mangling from 0.25.5 to 0.28.0

Release notes

Sourced from github.com/go-openapi/swag/mangling's releases.

v0.28.0

0.28.0 - 2026-07-27

Full Changelog: go-openapi/swag@v0.27.3...v0.28.0

3 commits in this release.


Implemented enhancements

  • feat(conv): add support for AppendXXX formatting of numbers by @​fredbi in #229 ...

Miscellaneous tasks

Updates


People who contributed to this release


swag license terms

License

Per-module changes


conv (0.28.0)

Implemented enhancements

... (truncated)

Commits
  • e3df199 chore: prepare release v0.28.0
  • fd5a309 feat(conv): add support for AppendXXX formatting of numbers (#229)
  • 785bef3 build(deps): bump the development-dependencies group with 9 updates
  • 179769d chore: prepare release v0.27.3
  • 1d10f1e fix: rooted path should also work on windows (#226)
  • c0c66d9 chore: prepare release v0.27.2
  • b0d2d9d fix(loading): resolve absolute in-root paths under WithRoot (#224)
  • c8a41f7 chore: prepare release v0.27.1
  • ...

    Description has been truncated

…th 27 updates

Bumps the misc-dependencies group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify) | `1.9.0` | `1.10.1` |
| [github.com/fxamacker/cbor/v2](https://github.com/fxamacker/cbor) | `2.9.1` | `2.9.2` |
| [github.com/go-logr/logr](https://github.com/go-logr/logr) | `1.4.3` | `1.4.4` |
| [github.com/go-openapi/jsonpointer](https://github.com/go-openapi/jsonpointer) | `0.22.5` | `1.0.0` |
| [github.com/go-openapi/jsonreference](https://github.com/go-openapi/jsonreference) | `0.21.5` | `1.0.0` |
| [github.com/go-openapi/swag](https://github.com/go-openapi/swag) | `0.25.5` | `0.28.0` |
| [github.com/pelletier/go-toml/v2](https://github.com/pelletier/go-toml) | `2.3.0` | `2.4.3` |
| [go.yaml.in/yaml/v3](https://github.com/yaml/go-yaml) | `3.0.4` | `3.0.5` |
| [golang.org/x/mod](https://github.com/golang/mod) | `0.37.0` | `0.38.0` |
| [golang.org/x/net](https://github.com/golang/net) | `0.56.0` | `0.57.0` |
| [golang.org/x/tools](https://github.com/golang/tools) | `0.47.0` | `0.48.0` |
| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.28.1` | `2.32.0` |
| [github.com/Masterminds/semver/v3](https://github.com/Masterminds/semver) | `3.4.0` | `3.5.0` |

Bumps the misc-dependencies group with 11 updates in the /tests/e2e directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/fxamacker/cbor/v2](https://github.com/fxamacker/cbor) | `2.9.1` | `2.9.2` |
| [github.com/go-logr/logr](https://github.com/go-logr/logr) | `1.4.3` | `1.4.4` |
| [github.com/go-openapi/jsonpointer](https://github.com/go-openapi/jsonpointer) | `0.22.5` | `1.0.0` |
| [github.com/go-openapi/jsonreference](https://github.com/go-openapi/jsonreference) | `0.21.5` | `1.0.0` |
| [github.com/go-openapi/swag](https://github.com/go-openapi/swag) | `0.25.5` | `0.28.0` |
| [go.yaml.in/yaml/v3](https://github.com/yaml/go-yaml) | `3.0.4` | `3.0.5` |
| [golang.org/x/mod](https://github.com/golang/mod) | `0.37.0` | `0.38.0` |
| [golang.org/x/net](https://github.com/golang/net) | `0.56.0` | `0.57.0` |
| [golang.org/x/tools](https://github.com/golang/tools) | `0.47.0` | `0.48.0` |
| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.28.1` | `2.32.0` |
| [github.com/Masterminds/semver/v3](https://github.com/Masterminds/semver) | `3.4.0` | `3.5.0` |

Bumps the misc-dependencies group with 8 updates in the /tests/integration directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify) | `1.9.0` | `1.10.1` |
| [github.com/fxamacker/cbor/v2](https://github.com/fxamacker/cbor) | `2.9.1` | `2.9.2` |
| [github.com/go-logr/logr](https://github.com/go-logr/logr) | `1.4.3` | `1.4.4` |
| [github.com/go-openapi/jsonpointer](https://github.com/go-openapi/jsonpointer) | `0.22.5` | `1.0.0` |
| [github.com/go-openapi/jsonreference](https://github.com/go-openapi/jsonreference) | `0.21.5` | `1.0.0` |
| [github.com/go-openapi/swag](https://github.com/go-openapi/swag) | `0.25.5` | `0.28.0` |
| [go.yaml.in/yaml/v3](https://github.com/yaml/go-yaml) | `3.0.4` | `3.0.5` |
| [golang.org/x/net](https://github.com/golang/net) | `0.56.0` | `0.57.0` |



Updates `github.com/fsnotify/fsnotify` from 1.9.0 to 1.10.1
- [Release notes](https://github.com/fsnotify/fsnotify/releases)
- [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fsnotify/fsnotify/compare/v1.9.0...v1.10.1)

Updates `github.com/fxamacker/cbor/v2` from 2.9.1 to 2.9.2
- [Release notes](https://github.com/fxamacker/cbor/releases)
- [Commits](https://github.com/fxamacker/cbor/compare/v2.9.1...v2.9.2)

Updates `github.com/go-logr/logr` from 1.4.3 to 1.4.4
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](https://github.com/go-logr/logr/compare/v1.4.3...v1.4.4)

Updates `github.com/go-openapi/jsonpointer` from 0.22.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonpointer/releases)
- [Commits](https://github.com/go-openapi/jsonpointer/compare/v0.22.5...v1.0.0)

Updates `github.com/go-openapi/jsonreference` from 0.21.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonreference/releases)
- [Commits](https://github.com/go-openapi/jsonreference/compare/v0.21.5...v1.0.0)

Updates `github.com/go-openapi/swag` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/cmdutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/conv` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/fileutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/jsonutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/loading` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/mangling` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/netutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/stringutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/typeutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/yamlutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/pelletier/go-toml/v2` from 2.3.0 to 2.4.3
- [Release notes](https://github.com/pelletier/go-toml/releases)
- [Commits](https://github.com/pelletier/go-toml/compare/v2.3.0...v2.4.3)

Updates `go.yaml.in/yaml/v3` from 3.0.4 to 3.0.5
- [Commits](https://github.com/yaml/go-yaml/compare/v3.0.4...v3.0.5)

Updates `golang.org/x/mod` from 0.37.0 to 0.38.0
- [Commits](https://github.com/golang/mod/compare/v0.37.0...v0.38.0)

Updates `golang.org/x/net` from 0.56.0 to 0.57.0
- [Commits](https://github.com/golang/net/compare/v0.56.0...v0.57.0)

Updates `golang.org/x/sys` from 0.46.0 to 0.47.0
- [Commits](https://github.com/golang/sys/compare/v0.46.0...v0.47.0)

Updates `golang.org/x/term` from 0.44.0 to 0.45.0
- [Commits](https://github.com/golang/term/compare/v0.44.0...v0.45.0)

Updates `golang.org/x/tools` from 0.47.0 to 0.48.0
- [Release notes](https://github.com/golang/tools/releases)
- [Commits](https://github.com/golang/tools/compare/v0.47.0...v0.48.0)

Updates `github.com/onsi/ginkgo/v2` from 2.28.1 to 2.32.0
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/ginkgo/compare/v2.28.1...v2.32.0)

Updates `github.com/onsi/gomega` from 1.39.1 to 1.40.0
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.39.1...v1.40.0)

Updates `github.com/Masterminds/semver/v3` from 3.4.0 to 3.5.0
- [Release notes](https://github.com/Masterminds/semver/releases)
- [Changelog](https://github.com/Masterminds/semver/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Masterminds/semver/compare/v3.4.0...v3.5.0)

Updates `github.com/google/pprof` from 0.0.0-20260302011040-a15ffb7f9dcc to 0.0.0-20260402051712-545e8a4df936
- [Commits](https://github.com/google/pprof/commits)

Updates `github.com/onsi/ginkgo/v2` from 2.28.1 to 2.32.0
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/ginkgo/compare/v2.28.1...v2.32.0)

Updates `github.com/onsi/gomega` from 1.39.1 to 1.40.0
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.39.1...v1.40.0)

Updates `github.com/Masterminds/semver/v3` from 3.4.0 to 3.5.0
- [Release notes](https://github.com/Masterminds/semver/releases)
- [Changelog](https://github.com/Masterminds/semver/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Masterminds/semver/compare/v3.4.0...v3.5.0)

Updates `github.com/fxamacker/cbor/v2` from 2.9.1 to 2.9.2
- [Release notes](https://github.com/fxamacker/cbor/releases)
- [Commits](https://github.com/fxamacker/cbor/compare/v2.9.1...v2.9.2)

Updates `github.com/go-logr/logr` from 1.4.3 to 1.4.4
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](https://github.com/go-logr/logr/compare/v1.4.3...v1.4.4)

Updates `github.com/go-openapi/jsonpointer` from 0.22.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonpointer/releases)
- [Commits](https://github.com/go-openapi/jsonpointer/compare/v0.22.5...v1.0.0)

Updates `github.com/go-openapi/jsonreference` from 0.21.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonreference/releases)
- [Commits](https://github.com/go-openapi/jsonreference/compare/v0.21.5...v1.0.0)

Updates `github.com/go-openapi/swag` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/cmdutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/conv` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/fileutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/jsonutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/loading` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/mangling` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/netutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/stringutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/typeutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/yamlutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/google/pprof` from 0.0.0-20260302011040-a15ffb7f9dcc to 0.0.0-20260402051712-545e8a4df936
- [Commits](https://github.com/google/pprof/commits)

Updates `go.yaml.in/yaml/v3` from 3.0.4 to 3.0.5
- [Commits](https://github.com/yaml/go-yaml/compare/v3.0.4...v3.0.5)

Updates `golang.org/x/mod` from 0.37.0 to 0.38.0
- [Commits](https://github.com/golang/mod/compare/v0.37.0...v0.38.0)

Updates `golang.org/x/net` from 0.56.0 to 0.57.0
- [Commits](https://github.com/golang/net/compare/v0.56.0...v0.57.0)

Updates `golang.org/x/sys` from 0.46.0 to 0.47.0
- [Commits](https://github.com/golang/sys/compare/v0.46.0...v0.47.0)

Updates `golang.org/x/term` from 0.44.0 to 0.45.0
- [Commits](https://github.com/golang/term/compare/v0.44.0...v0.45.0)

Updates `golang.org/x/tools` from 0.47.0 to 0.48.0
- [Release notes](https://github.com/golang/tools/releases)
- [Commits](https://github.com/golang/tools/compare/v0.47.0...v0.48.0)

Updates `github.com/fsnotify/fsnotify` from 1.9.0 to 1.10.1
- [Release notes](https://github.com/fsnotify/fsnotify/releases)
- [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fsnotify/fsnotify/compare/v1.9.0...v1.10.1)

Updates `github.com/fxamacker/cbor/v2` from 2.9.1 to 2.9.2
- [Release notes](https://github.com/fxamacker/cbor/releases)
- [Commits](https://github.com/fxamacker/cbor/compare/v2.9.1...v2.9.2)

Updates `github.com/go-logr/logr` from 1.4.3 to 1.4.4
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](https://github.com/go-logr/logr/compare/v1.4.3...v1.4.4)

Updates `github.com/go-openapi/jsonpointer` from 0.22.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonpointer/releases)
- [Commits](https://github.com/go-openapi/jsonpointer/compare/v0.22.5...v1.0.0)

Updates `github.com/go-openapi/jsonreference` from 0.21.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonreference/releases)
- [Commits](https://github.com/go-openapi/jsonreference/compare/v0.21.5...v1.0.0)

Updates `github.com/go-openapi/swag` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/cmdutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/conv` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/fileutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/jsonutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/loading` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/mangling` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/netutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/stringutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/typeutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/yamlutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `go.yaml.in/yaml/v3` from 3.0.4 to 3.0.5
- [Commits](https://github.com/yaml/go-yaml/compare/v3.0.4...v3.0.5)

Updates `golang.org/x/net` from 0.56.0 to 0.57.0
- [Commits](https://github.com/golang/net/compare/v0.56.0...v0.57.0)

Updates `golang.org/x/sys` from 0.46.0 to 0.47.0
- [Commits](https://github.com/golang/sys/compare/v0.46.0...v0.47.0)

Updates `golang.org/x/term` from 0.44.0 to 0.45.0
- [Commits](https://github.com/golang/term/compare/v0.44.0...v0.45.0)

Updates `github.com/fxamacker/cbor/v2` from 2.9.1 to 2.9.2
- [Release notes](https://github.com/fxamacker/cbor/releases)
- [Commits](https://github.com/fxamacker/cbor/compare/v2.9.1...v2.9.2)

Updates `github.com/go-logr/logr` from 1.4.3 to 1.4.4
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](https://github.com/go-logr/logr/compare/v1.4.3...v1.4.4)

Updates `github.com/go-openapi/jsonpointer` from 0.22.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonpointer/releases)
- [Commits](https://github.com/go-openapi/jsonpointer/compare/v0.22.5...v1.0.0)

Updates `github.com/go-openapi/jsonreference` from 0.21.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonreference/releases)
- [Commits](https://github.com/go-openapi/jsonreference/compare/v0.21.5...v1.0.0)

Updates `github.com/go-openapi/swag` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/cmdutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/conv` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/fileutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/jsonutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/loading` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/mangling` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/netutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/stringutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/typeutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/yamlutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `go.yaml.in/yaml/v3` from 3.0.4 to 3.0.5
- [Commits](https://github.com/yaml/go-yaml/compare/v3.0.4...v3.0.5)

Updates `golang.org/x/mod` from 0.37.0 to 0.38.0
- [Commits](https://github.com/golang/mod/compare/v0.37.0...v0.38.0)

Updates `golang.org/x/net` from 0.56.0 to 0.57.0
- [Commits](https://github.com/golang/net/compare/v0.56.0...v0.57.0)

Updates `golang.org/x/sys` from 0.46.0 to 0.47.0
- [Commits](https://github.com/golang/sys/compare/v0.46.0...v0.47.0)

Updates `golang.org/x/term` from 0.44.0 to 0.45.0
- [Commits](https://github.com/golang/term/compare/v0.44.0...v0.45.0)

Updates `golang.org/x/tools` from 0.47.0 to 0.48.0
- [Release notes](https://github.com/golang/tools/releases)
- [Commits](https://github.com/golang/tools/compare/v0.47.0...v0.48.0)

Updates `github.com/onsi/ginkgo/v2` from 2.28.1 to 2.32.0
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/ginkgo/compare/v2.28.1...v2.32.0)

Updates `github.com/onsi/gomega` from 1.39.1 to 1.40.0
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.39.1...v1.40.0)

Updates `github.com/Masterminds/semver/v3` from 3.4.0 to 3.5.0
- [Release notes](https://github.com/Masterminds/semver/releases)
- [Changelog](https://github.com/Masterminds/semver/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Masterminds/semver/compare/v3.4.0...v3.5.0)

Updates `github.com/google/pprof` from 0.0.0-20260302011040-a15ffb7f9dcc to 0.0.0-20260402051712-545e8a4df936
- [Commits](https://github.com/google/pprof/commits)

Updates `github.com/onsi/ginkgo/v2` from 2.28.1 to 2.32.0
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/ginkgo/compare/v2.28.1...v2.32.0)

Updates `github.com/onsi/gomega` from 1.39.1 to 1.40.0
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/gomega/compare/v1.39.1...v1.40.0)

Updates `github.com/Masterminds/semver/v3` from 3.4.0 to 3.5.0
- [Release notes](https://github.com/Masterminds/semver/releases)
- [Changelog](https://github.com/Masterminds/semver/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Masterminds/semver/compare/v3.4.0...v3.5.0)

Updates `github.com/fxamacker/cbor/v2` from 2.9.1 to 2.9.2
- [Release notes](https://github.com/fxamacker/cbor/releases)
- [Commits](https://github.com/fxamacker/cbor/compare/v2.9.1...v2.9.2)

Updates `github.com/go-logr/logr` from 1.4.3 to 1.4.4
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](https://github.com/go-logr/logr/compare/v1.4.3...v1.4.4)

Updates `github.com/go-openapi/jsonpointer` from 0.22.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonpointer/releases)
- [Commits](https://github.com/go-openapi/jsonpointer/compare/v0.22.5...v1.0.0)

Updates `github.com/go-openapi/jsonreference` from 0.21.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonreference/releases)
- [Commits](https://github.com/go-openapi/jsonreference/compare/v0.21.5...v1.0.0)

Updates `github.com/go-openapi/swag` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/cmdutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/conv` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/fileutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/jsonutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/loading` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/mangling` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/netutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/stringutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/typeutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/yamlutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/google/pprof` from 0.0.0-20260302011040-a15ffb7f9dcc to 0.0.0-20260402051712-545e8a4df936
- [Commits](https://github.com/google/pprof/commits)

Updates `go.yaml.in/yaml/v3` from 3.0.4 to 3.0.5
- [Commits](https://github.com/yaml/go-yaml/compare/v3.0.4...v3.0.5)

Updates `golang.org/x/mod` from 0.37.0 to 0.38.0
- [Commits](https://github.com/golang/mod/compare/v0.37.0...v0.38.0)

Updates `golang.org/x/net` from 0.56.0 to 0.57.0
- [Commits](https://github.com/golang/net/compare/v0.56.0...v0.57.0)

Updates `golang.org/x/sys` from 0.46.0 to 0.47.0
- [Commits](https://github.com/golang/sys/compare/v0.46.0...v0.47.0)

Updates `golang.org/x/term` from 0.44.0 to 0.45.0
- [Commits](https://github.com/golang/term/compare/v0.44.0...v0.45.0)

Updates `golang.org/x/tools` from 0.47.0 to 0.48.0
- [Release notes](https://github.com/golang/tools/releases)
- [Commits](https://github.com/golang/tools/compare/v0.47.0...v0.48.0)

Updates `github.com/fxamacker/cbor/v2` from 2.9.1 to 2.9.2
- [Release notes](https://github.com/fxamacker/cbor/releases)
- [Commits](https://github.com/fxamacker/cbor/compare/v2.9.1...v2.9.2)

Updates `github.com/go-logr/logr` from 1.4.3 to 1.4.4
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](https://github.com/go-logr/logr/compare/v1.4.3...v1.4.4)

Updates `github.com/go-openapi/jsonpointer` from 0.22.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonpointer/releases)
- [Commits](https://github.com/go-openapi/jsonpointer/compare/v0.22.5...v1.0.0)

Updates `github.com/go-openapi/jsonreference` from 0.21.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonreference/releases)
- [Commits](https://github.com/go-openapi/jsonreference/compare/v0.21.5...v1.0.0)

Updates `github.com/go-openapi/swag` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/cmdutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/conv` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/fileutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/jsonutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/loading` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/mangling` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/netutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/stringutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/typeutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/yamlutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `go.yaml.in/yaml/v3` from 3.0.4 to 3.0.5
- [Commits](https://github.com/yaml/go-yaml/compare/v3.0.4...v3.0.5)

Updates `golang.org/x/net` from 0.56.0 to 0.57.0
- [Commits](https://github.com/golang/net/compare/v0.56.0...v0.57.0)

Updates `golang.org/x/sys` from 0.46.0 to 0.47.0
- [Commits](https://github.com/golang/sys/compare/v0.46.0...v0.47.0)

Updates `golang.org/x/term` from 0.44.0 to 0.45.0
- [Commits](https://github.com/golang/term/compare/v0.44.0...v0.45.0)

Updates `github.com/fsnotify/fsnotify` from 1.9.0 to 1.10.1
- [Release notes](https://github.com/fsnotify/fsnotify/releases)
- [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fsnotify/fsnotify/compare/v1.9.0...v1.10.1)

Updates `github.com/fxamacker/cbor/v2` from 2.9.1 to 2.9.2
- [Release notes](https://github.com/fxamacker/cbor/releases)
- [Commits](https://github.com/fxamacker/cbor/compare/v2.9.1...v2.9.2)

Updates `github.com/go-logr/logr` from 1.4.3 to 1.4.4
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](https://github.com/go-logr/logr/compare/v1.4.3...v1.4.4)

Updates `github.com/go-openapi/jsonpointer` from 0.22.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonpointer/releases)
- [Commits](https://github.com/go-openapi/jsonpointer/compare/v0.22.5...v1.0.0)

Updates `github.com/go-openapi/jsonreference` from 0.21.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonreference/releases)
- [Commits](https://github.com/go-openapi/jsonreference/compare/v0.21.5...v1.0.0)

Updates `github.com/go-openapi/swag` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/cmdutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/conv` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/fileutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/jsonutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/loading` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/mangling` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/netutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/stringutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/typeutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/yamlutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `go.yaml.in/yaml/v3` from 3.0.4 to 3.0.5
- [Commits](https://github.com/yaml/go-yaml/compare/v3.0.4...v3.0.5)

Updates `golang.org/x/net` from 0.56.0 to 0.57.0
- [Commits](https://github.com/golang/net/compare/v0.56.0...v0.57.0)

Updates `golang.org/x/sys` from 0.46.0 to 0.47.0
- [Commits](https://github.com/golang/sys/compare/v0.46.0...v0.47.0)

Updates `golang.org/x/term` from 0.44.0 to 0.45.0
- [Commits](https://github.com/golang/term/compare/v0.44.0...v0.45.0)

Updates `github.com/fxamacker/cbor/v2` from 2.9.1 to 2.9.2
- [Release notes](https://github.com/fxamacker/cbor/releases)
- [Commits](https://github.com/fxamacker/cbor/compare/v2.9.1...v2.9.2)

Updates `github.com/go-logr/logr` from 1.4.3 to 1.4.4
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](https://github.com/go-logr/logr/compare/v1.4.3...v1.4.4)

Updates `github.com/go-openapi/jsonpointer` from 0.22.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonpointer/releases)
- [Commits](https://github.com/go-openapi/jsonpointer/compare/v0.22.5...v1.0.0)

Updates `github.com/go-openapi/jsonreference` from 0.21.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonreference/releases)
- [Commits](https://github.com/go-openapi/jsonreference/compare/v0.21.5...v1.0.0)

Updates `github.com/go-openapi/swag` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/cmdutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/conv` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/fileutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/jsonutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/loading` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/mangling` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/netutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/stringutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/typeutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/yamlutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `go.yaml.in/yaml/v3` from 3.0.4 to 3.0.5
- [Commits](https://github.com/yaml/go-yaml/compare/v3.0.4...v3.0.5)

Updates `golang.org/x/net` from 0.56.0 to 0.57.0
- [Commits](https://github.com/golang/net/compare/v0.56.0...v0.57.0)

Updates `golang.org/x/sys` from 0.46.0 to 0.47.0
- [Commits](https://github.com/golang/sys/compare/v0.46.0...v0.47.0)

Updates `golang.org/x/term` from 0.44.0 to 0.45.0
- [Commits](https://github.com/golang/term/compare/v0.44.0...v0.45.0)

Updates `github.com/fsnotify/fsnotify` from 1.9.0 to 1.10.1
- [Release notes](https://github.com/fsnotify/fsnotify/releases)
- [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fsnotify/fsnotify/compare/v1.9.0...v1.10.1)

Updates `github.com/fxamacker/cbor/v2` from 2.9.1 to 2.9.2
- [Release notes](https://github.com/fxamacker/cbor/releases)
- [Commits](https://github.com/fxamacker/cbor/compare/v2.9.1...v2.9.2)

Updates `github.com/go-logr/logr` from 1.4.3 to 1.4.4
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](https://github.com/go-logr/logr/compare/v1.4.3...v1.4.4)

Updates `github.com/go-openapi/jsonpointer` from 0.22.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonpointer/releases)
- [Commits](https://github.com/go-openapi/jsonpointer/compare/v0.22.5...v1.0.0)

Updates `github.com/go-openapi/jsonreference` from 0.21.5 to 1.0.0
- [Release notes](https://github.com/go-openapi/jsonreference/releases)
- [Commits](https://github.com/go-openapi/jsonreference/compare/v0.21.5...v1.0.0)

Updates `github.com/go-openapi/swag` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/cmdutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/conv` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/fileutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/jsonutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/loading` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/mangling` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/netutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/stringutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/typeutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `github.com/go-openapi/swag/yamlutils` from 0.25.5 to 0.28.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](https://github.com/go-openapi/swag/compare/v0.25.5...v0.28.0)

Updates `go.yaml.in/yaml/v3` from 3.0.4 to 3.0.5
- [Commits](https://github.com/yaml/go-yaml/compare/v3.0.4...v3.0.5)

Updates `golang.org/x/net` from 0.56.0 to 0.57.0
- [Commits](https://github.com/golang/net/compare/v0.56.0...v0.57.0)

Updates `golang.org/x/sys` from 0.46.0 to 0.47.0
- [Commits](https://github.com/golang/sys/compare/v0.46.0...v0.47.0)

Updates `golang.org/x/term` from 0.44.0 to 0.45.0
- [Commits](https://github.com/golang/term/compare/v0.44.0...v0.45.0)

---
updated-dependencies:
- dependency-name: github.com/fsnotify/fsnotify
  dependency-version: 1.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/fxamacker/cbor/v2
  dependency-version: 2.9.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: github.com/go-logr/logr
  dependency-version: 1.4.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/jsonpointer
  dependency-version: 1.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/jsonreference
  dependency-version: 1.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/cmdutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/conv
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/fileutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/jsonutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/loading
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/mangling
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/netutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/stringutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/typeutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/yamlutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/pelletier/go-toml/v2
  dependency-version: 2.4.3
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: go.yaml.in/yaml/v3
  dependency-version: 3.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/mod
  dependency-version: 0.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/net
  dependency-version: 0.57.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/sys
  dependency-version: 0.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/term
  dependency-version: 0.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/tools
  dependency-version: 0.48.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/onsi/gomega
  dependency-version: 1.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/Masterminds/semver/v3
  dependency-version: 3.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/google/pprof
  dependency-version: 0.0.0-20260402051712-545e8a4df936
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/onsi/gomega
  dependency-version: 1.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/Masterminds/semver/v3
  dependency-version: 3.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/fxamacker/cbor/v2
  dependency-version: 2.9.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: github.com/go-logr/logr
  dependency-version: 1.4.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/jsonpointer
  dependency-version: 1.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/jsonreference
  dependency-version: 1.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/cmdutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/conv
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/fileutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/jsonutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/loading
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/mangling
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/netutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/stringutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/typeutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/yamlutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/google/pprof
  dependency-version: 0.0.0-20260402051712-545e8a4df936
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: go.yaml.in/yaml/v3
  dependency-version: 3.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/mod
  dependency-version: 0.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/net
  dependency-version: 0.57.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/sys
  dependency-version: 0.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/term
  dependency-version: 0.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/tools
  dependency-version: 0.48.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/fsnotify/fsnotify
  dependency-version: 1.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/fxamacker/cbor/v2
  dependency-version: 2.9.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: github.com/go-logr/logr
  dependency-version: 1.4.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/jsonpointer
  dependency-version: 1.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/jsonreference
  dependency-version: 1.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/cmdutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/conv
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/fileutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/jsonutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/loading
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/mangling
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/netutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/stringutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/typeutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/yamlutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: go.yaml.in/yaml/v3
  dependency-version: 3.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/net
  dependency-version: 0.57.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/sys
  dependency-version: 0.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/term
  dependency-version: 0.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/fxamacker/cbor/v2
  dependency-version: 2.9.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: github.com/go-logr/logr
  dependency-version: 1.4.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/jsonpointer
  dependency-version: 1.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/jsonreference
  dependency-version: 1.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/cmdutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/conv
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/fileutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/jsonutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/loading
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/mangling
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/netutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/stringutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/typeutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/yamlutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: go.yaml.in/yaml/v3
  dependency-version: 3.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/mod
  dependency-version: 0.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/net
  dependency-version: 0.57.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/sys
  dependency-version: 0.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/term
  dependency-version: 0.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/tools
  dependency-version: 0.48.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/onsi/gomega
  dependency-version: 1.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/Masterminds/semver/v3
  dependency-version: 3.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/google/pprof
  dependency-version: 0.0.0-20260402051712-545e8a4df936
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/onsi/gomega
  dependency-version: 1.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/Masterminds/semver/v3
  dependency-version: 3.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/fxamacker/cbor/v2
  dependency-version: 2.9.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: github.com/go-logr/logr
  dependency-version: 1.4.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/jsonpointer
  dependency-version: 1.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/jsonreference
  dependency-version: 1.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/cmdutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/conv
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/fileutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/jsonutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/loading
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/mangling
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/netutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/stringutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/typeutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/go-openapi/swag/yamlutils
  dependency-version: 0.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/google/pprof
  dependency-version: 0.0.0-20260402051712-545e8a4df936
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: go.yaml.in/yaml/v3
  dependency-version: 3.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/mod
  dependency-version: 0.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/net
  dependency-version: 0.57.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/sys
  dependency-version: 0.47.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/term
  dependency-version: 0.45.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: golang.org/x/tools
  dependency-version: 0.48.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: misc-dependencies
- dependency-name: github.com/fxamacker/cbor/v2
  dependency-version: 2.9.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: misc-dependencies
- dependency-name: github.com/go-logr/logr
  dependency-version: 1.4.4
  dependenc...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added area/dependency Issues or PRs related to dependency changes ok-to-test Indicates a non-member PR verified by an org member that is safe to test. labels Aug 1, 2026
@kubernetes-prow kubernetes-prow Bot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label Aug 1, 2026
@kubernetes-prow

Copy link
Copy Markdown
Contributor

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work.

Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@kubernetes-prow kubernetes-prow Bot added the size/L Denotes a PR that changes 100-499 lines, ignoring generated files. label Aug 1, 2026
@kubernetes-prow
kubernetes-prow Bot requested a review from micahhausler August 1, 2026 01:20
@kubernetes-prow

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: dependabot[bot]
Once this PR has been reviewed and has the lgtm label, please assign kmala for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@kubernetes-prow
kubernetes-prow Bot requested a review from ronaldngounou August 1, 2026 01:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/dependency Issues or PRs related to dependency changes cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/L Denotes a PR that changes 100-499 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants