Skip to content

Commit 4e57f18

Browse files
build(deps): bump the go-dev-dependencies group with 21 updates (#296)
Bumps the go-dev-dependencies group with 21 updates: | Package | From | To | | --- | --- | --- | | [github.com/samber/lo](https://github.com/samber/lo) | `1.52.0` | `1.53.0` | | [github.com/go-openapi/jsonpointer](https://github.com/go-openapi/jsonpointer) | `0.22.4` | `0.22.5` | | [github.com/go-openapi/jsonreference](https://github.com/go-openapi/jsonreference) | `0.21.4` | `0.21.5` | | [github.com/go-openapi/spec](https://github.com/go-openapi/spec) | `0.22.3` | `0.22.4` | | [github.com/go-openapi/swag/conv](https://github.com/go-openapi/swag) | `0.25.4` | `0.25.5` | | [github.com/go-openapi/swag/jsonname](https://github.com/go-openapi/swag) | `0.25.4` | `0.25.5` | | [github.com/go-openapi/swag/jsonutils](https://github.com/go-openapi/swag) | `0.25.4` | `0.25.5` | | [github.com/go-openapi/swag/loading](https://github.com/go-openapi/swag) | `0.25.4` | `0.25.5` | | [github.com/go-openapi/swag/stringutils](https://github.com/go-openapi/swag) | `0.25.4` | `0.25.5` | | [github.com/go-openapi/swag/typeutils](https://github.com/go-openapi/swag) | `0.25.4` | `0.25.5` | | [github.com/go-openapi/swag/yamlutils](https://github.com/go-openapi/swag) | `0.25.4` | `0.25.5` | | [go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.65.0` | `0.67.0` | | [go.opentelemetry.io/otel](https://github.com/open-telemetry/opentelemetry-go) | `1.40.0` | `1.42.0` | | [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp](https://github.com/open-telemetry/opentelemetry-go) | `1.40.0` | `1.42.0` | | [go.opentelemetry.io/otel/metric](https://github.com/open-telemetry/opentelemetry-go) | `1.40.0` | `1.42.0` | | [go.opentelemetry.io/otel/trace](https://github.com/open-telemetry/opentelemetry-go) | `1.40.0` | `1.42.0` | | [go.yaml.in/yaml/v2](https://github.com/yaml/go-yaml) | `2.4.3` | `2.4.4` | | [golang.org/x/arch](https://github.com/golang/arch) | `0.24.0` | `0.25.0` | | [golang.org/x/sync](https://github.com/golang/sync) | `0.19.0` | `0.20.0` | | [golang.org/x/sys](https://github.com/golang/sys) | `0.41.0` | `0.42.0` | | [golang.org/x/time](https://github.com/golang/time) | `0.14.0` | `0.15.0` | Updates `github.com/samber/lo` from 1.52.0 to 1.53.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/samber/lo/releases">github.com/samber/lo's releases</a>.</em></p> <blockquote> <h2>v1.53.0</h2> <p>Announcing the latest release of <code>lo</code> with lots of good gifts! 🎁</p> <p>🌊 First, a big thanks to <a href="https://github.com/d-enk"><code>@​d-enk</code></a> for making lots of <strong>performance improvements</strong> in the recent weeks.</p> <p>🧪 Second, this release introduces a new <strong><code>simd</code> experimental package</strong>. If you run on an amd64 architecture and a recent CPU, you can perform very fast operations thanks to SIMD CPU instructions. -&gt; Documentation: <a href="https://lo.samber.dev/docs/experimental/simd">https://lo.samber.dev/docs/experimental/simd</a></p> <p>💥 Third, this version adds <strong><code>*Err</code> variants</strong> of many <code>lo</code> helpers (like <strong><code>MapErr</code>, <code>FlatMapErr</code>, <code>ReduceErr</code>, etc.</strong>) whose callbacks can return an error and short-circuit execution when one occurs.</p> <blockquote> <p>[!NOTE] The <code>simd</code> sub-package is considered <em>not stable</em>. We might break the initial API based on developers' feedback in the coming months.</p> </blockquote> <!-- raw HTML omitted --> <hr /> <h2>Features &amp; improvements</h2> <ul> <li>feat: adding SIMD helpers by <a href="https://github.com/samber"><code>@​samber</code></a> in <a href="https://redirect.github.com/samber/lo/pull/801">samber/lo#801</a></li> <li>feat: adding Error variants: MapErr, FlatMapErr, ReduceErr... by <a href="https://github.com/samber"><code>@​samber</code></a> in <a href="https://redirect.github.com/samber/lo/pull/823">samber/lo#823</a></li> <li>feat: support for buffer iterator by <a href="https://github.com/mimol91"><code>@​mimol91</code></a> in <a href="https://redirect.github.com/samber/lo/pull/824">samber/lo#824</a></li> <li>feat: add Take, TakeWhile, FilterTake, Window, and Sliding functions by <a href="https://github.com/juliazadorozhnaya"><code>@​juliazadorozhnaya</code></a> in <a href="https://redirect.github.com/samber/lo/pull/760">samber/lo#760</a></li> <li>feat: add a Concat slice function. by <a href="https://github.com/FGasper"><code>@​FGasper</code></a> in <a href="https://redirect.github.com/samber/lo/pull/714">samber/lo#714</a></li> <li>feat: add iterator slice helpers by <a href="https://github.com/juliazadorozhnaya"><code>@​juliazadorozhnaya</code></a> in <a href="https://redirect.github.com/samber/lo/pull/791">samber/lo#791</a></li> <li>feat(it): adding loit.Concat by <a href="https://github.com/samber"><code>@​samber</code></a> in <a href="https://redirect.github.com/samber/lo/pull/722">samber/lo#722</a></li> <li>feat: Allow Union/Intersect to take many lists by <a href="https://github.com/frankywahl"><code>@​frankywahl</code></a> in <a href="https://redirect.github.com/samber/lo/pull/181">samber/lo#181</a></li> <li>feat: Add Clone function to return shallow copy of slice collections by <a href="https://github.com/quexer"><code>@​quexer</code></a> in <a href="https://redirect.github.com/samber/lo/pull/732">samber/lo#732</a></li> <li>feat: IntersectBy by <a href="https://github.com/ghosx"><code>@​ghosx</code></a> in <a href="https://redirect.github.com/samber/lo/pull/653">samber/lo#653</a></li> <li>feat: Support Custom Assert by <a href="https://github.com/RelicOfTesla"><code>@​RelicOfTesla</code></a> in <a href="https://redirect.github.com/samber/lo/pull/755">samber/lo#755</a></li> <li>feat: Must support Custom error handler. by <a href="https://github.com/RelicOfTesla"><code>@​RelicOfTesla</code></a> in <a href="https://redirect.github.com/samber/lo/pull/752">samber/lo#752</a></li> <li>feat: WithoutNth handle non-comparable types by <a href="https://github.com/urisimchoni"><code>@​urisimchoni</code></a> in <a href="https://redirect.github.com/samber/lo/pull/774">samber/lo#774</a></li> <li>refactor: remove unnecessary type arguments in <code>NewThrottle</code> by <a href="https://github.com/d-enk"><code>@​d-enk</code></a> in <a href="https://redirect.github.com/samber/lo/pull/773">samber/lo#773</a></li> <li>refactor: lo.IntersectBy + adding loit.IntersectBy + adding doc by <a href="https://github.com/samber"><code>@​samber</code></a> in <a href="https://redirect.github.com/samber/lo/pull/739">samber/lo#739</a></li> <li>fix: rename IsSortedByKey to IsSortedBy by <a href="https://github.com/NathanBaulch"><code>@​NathanBaulch</code></a> in <a href="https://redirect.github.com/samber/lo/pull/735">samber/lo#735</a></li> <li>fix(iter/tuples): support break iteration over Zip[By] seq by <a href="https://github.com/d-enk"><code>@​d-enk</code></a> in <a href="https://redirect.github.com/samber/lo/pull/757">samber/lo#757</a></li> <li>fix(it.Mode): align behavior with lo.Mode and ensure consistent slice… by <a href="https://github.com/intojhanurag"><code>@​intojhanurag</code></a> in <a href="https://redirect.github.com/samber/lo/pull/711">samber/lo#711</a></li> <li>fix: improve Clone function to preserve nilness and avoid liveness issues by <a href="https://github.com/quexer"><code>@​quexer</code></a> in <a href="https://redirect.github.com/samber/lo/pull/740">samber/lo#740</a></li> <li>fix: reset n counter per iteration in it.Replace by <a href="https://github.com/LikimiaD"><code>@​LikimiaD</code></a> in <a href="https://redirect.github.com/samber/lo/pull/799">samber/lo#799</a></li> <li>fix: make Ellipsis operate on runes instead of bytes to prevent Unicode truncation by <a href="https://github.com/veeceey"><code>@​veeceey</code></a> in <a href="https://redirect.github.com/samber/lo/pull/796">samber/lo#796</a></li> <li>fix: correct <code>DropByIndex</code> handling of negative indices out of bounds by <a href="https://github.com/d-enk"><code>@​d-enk</code></a> in <a href="https://redirect.github.com/samber/lo/pull/778">samber/lo#778</a></li> </ul> <h2>Deprecation</h2> <ul> <li>refactor: remove helpers deprecated for more than 3y by <a href="https://github.com/samber"><code>@​samber</code></a> in <a href="https://redirect.github.com/samber/lo/pull/810">samber/lo#810</a></li> </ul> <h2>Performance improvements</h2> <ul> <li>feat: Optimize UniqMap to reduce unnecessary slice preallocation by <a href="https://github.com/ivolkoff"><code>@​ivolkoff</code></a> in <a href="https://redirect.github.com/samber/lo/pull/710">samber/lo#710</a></li> <li>refactor(it): simplify DropLast, TrimSuffix, TrimPrefix and use range loops by <a href="https://github.com/d-enk"><code>@​d-enk</code></a> in <a href="https://redirect.github.com/samber/lo/pull/782">samber/lo#782</a></li> <li>bench: fix iterators to actually iterate in benchmarks by <a href="https://github.com/d-enk"><code>@​d-enk</code></a> in <a href="https://redirect.github.com/samber/lo/pull/781">samber/lo#781</a></li> <li>refactor: simplify slice cut/trim prefix/suffix functions by <a href="https://github.com/d-enk"><code>@​d-enk</code></a> in <a href="https://redirect.github.com/samber/lo/pull/787">samber/lo#787</a></li> <li>perf: optimize Sliding by pre-allocating result capacity by <a href="https://github.com/d-enk"><code>@​d-enk</code></a> in <a href="https://redirect.github.com/samber/lo/pull/783">samber/lo#783</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/samber/lo/commit/cf6fb4f9b08c1d3d6e309581316f106dc30b458e"><code>cf6fb4f</code></a> bump v1.53.0</li> <li><a href="https://github.com/samber/lo/commit/56ef3beaf8adfea1908b094e49b3b639ea604aab"><code>56ef3be</code></a> feat: support for buffer iterator (<a href="https://redirect.github.com/samber/lo/issues/824">#824</a>)</li> <li><a href="https://github.com/samber/lo/commit/6a9f881ae1ff32a7c650464615d175ef4c26d833"><code>6a9f881</code></a> :lipstick:</li> <li><a href="https://github.com/samber/lo/commit/7f0c2e0297fc2fdffe9c69c254dee8d00f60c90a"><code>7f0c2e0</code></a> feat: adding UnzipByErrX helpers</li> <li><a href="https://github.com/samber/lo/commit/af46a13bfce4ae037193c23e05866df8d79cd163"><code>af46a13</code></a> feat: adding RejectErr helpers</li> <li><a href="https://github.com/samber/lo/commit/6f42e74a117ce59882e92a9d4a5b05520d5dee33"><code>6f42e74</code></a> doc: improve examples</li> <li><a href="https://github.com/samber/lo/commit/ff0e293ce3dbde1e80a1b1eb059078aa7d1442c4"><code>ff0e293</code></a> feat: adding FilterErr helpers</li> <li><a href="https://github.com/samber/lo/commit/4bb58fd2c6d86bf54eb9408b8247d056b8f4a006"><code>4bb58fd</code></a> feat: adding RepeatByErr helpers</li> <li><a href="https://github.com/samber/lo/commit/72a33aa3970554921210253dcce90540d6e34388"><code>72a33aa</code></a> feat: adding FilterKeysErr + FilterValuesErr helpers</li> <li><a href="https://github.com/samber/lo/commit/dd1d58e324c2277117dbdbfa86f409473eda5ece"><code>dd1d58e</code></a> feat: adding FindDuplicatesByErr helper</li> <li>Additional commits viewable in <a href="https://github.com/samber/lo/compare/v1.52.0...v1.53.0">compare view</a></li> </ul> </details> <br /> Updates `github.com/go-openapi/jsonpointer` from 0.22.4 to 0.22.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/go-openapi/jsonpointer/releases">github.com/go-openapi/jsonpointer's releases</a>.</em></p> <blockquote> <h2>v0.22.5</h2> <h2><a href="https://github.com/go-openapi/jsonpointer/tree/v0.22.5">0.22.5</a> - 2026-03-02</h2> <p><strong>Full Changelog</strong>: <a href="https://github.com/go-openapi/jsonpointer/compare/v0.22.4...v0.22.5">https://github.com/go-openapi/jsonpointer/compare/v0.22.4...v0.22.5</a></p> <p>15 commits in this release.</p> <hr /> <h3><!-- raw HTML omitted -->Documentation</h3> <ul> <li>doc: updated contributors file by <a href="https://github.com/bot-go-openapi%5Bbot%5D"><code>@​bot-go-openapi[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonpointer/pull/97">#97</a> <a href="https://github.com/go-openapi/jsonpointer/commit/62b2c8e9a62fa18651f5a928743c78d7c6d2977e">...</a></li> <li>doc: announced new discord channel by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/jsonpointer/pull/96">#96</a> <a href="https://github.com/go-openapi/jsonpointer/commit/e1aa755a739f80ff1b61d3ce7b32d83a668aa71d">...</a></li> <li>doc: updated contributors file by <a href="https://github.com/bot-go-openapi%5Bbot%5D"><code>@​bot-go-openapi[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonpointer/pull/92">#92</a> <a href="https://github.com/go-openapi/jsonpointer/commit/a9b0f9fc37a61d5bed32550e3608f969770eb912">...</a></li> </ul> <h3><!-- raw HTML omitted -->Code quality</h3> <ul> <li>chore: doc, test, lint update by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/jsonpointer/pull/105">#105</a> <a href="https://github.com/go-openapi/jsonpointer/commit/9f448d5a0b23321eb8a8744993988d1257aec9ea">...</a></li> </ul> <h3><!-- raw HTML omitted -->Miscellaneous tasks</h3> <ul> <li>ci: upgraded bump-release workflow (new input format) by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/jsonpointer/pull/106">#106</a> <a href="https://github.com/go-openapi/jsonpointer/commit/e232aafbbdce6abbf028e4d6efebf845e1ff8148">...</a></li> <li>ci: updated workflows by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/jsonpointer/pull/95">#95</a> <a href="https://github.com/go-openapi/jsonpointer/commit/a25460cc5d39af4708233db8a6083934720f9f7a">...</a></li> <li>chore: fixed missing license headers in new files by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/jsonpointer/pull/94">#94</a> <a href="https://github.com/go-openapi/jsonpointer/commit/dabf217f62134457a6832d162ef3c66d4185e586">...</a></li> <li>ci: removed duplicate workflow remaining after refactoring by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/jsonpointer/pull/93">#93</a> <a href="https://github.com/go-openapi/jsonpointer/commit/d95f06bc4132a85672e38b69dcb7dec3bfcac7c4">...</a></li> </ul> <h3><!-- raw HTML omitted -->Updates</h3> <ul> <li>chore(deps): bump github.com/go-openapi/testify/v2 from 2.3.0 to 2.4.0 in the go-openapi-dependencies group by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonpointer/pull/104">#104</a> <a href="https://github.com/go-openapi/jsonpointer/commit/565d4a24c2c239426810931cae704368550eb2b1">...</a></li> <li>chore(deps): bump github.com/go-openapi/testify/v2 from 2.2.0 to 2.3.0 in the go-openapi-dependencies group by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonpointer/pull/102">#102</a> <a href="https://github.com/go-openapi/jsonpointer/commit/869667c299b0ea85d9a0d62dc4a30d574c43308c">...</a></li> <li>chore(deps): bump the development-dependencies group with 7 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonpointer/pull/103">#103</a> <a href="https://github.com/go-openapi/jsonpointer/commit/83371ca9e2761a7a50f23122848097e73d9993e4">...</a></li> <li>chore(deps): bump the development-dependencies group with 7 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonpointer/pull/101">#101</a> <a href="https://github.com/go-openapi/jsonpointer/commit/7ad57edb02edadf3f9ca8cabc2384bb1aff79ebc">...</a></li> <li>chore(deps): bump github.com/go-openapi/testify/v2 from 2.1.8 to 2.2.0 in the go-openapi-dependencies group by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonpointer/pull/100">#100</a> <a href="https://github.com/go-openapi/jsonpointer/commit/26e9371ac46a9fe02572de7a4e9adda3a4c7abf2">...</a></li> <li>chore(deps): bump github.com/go-openapi/testify/v2 from 2.0.2 to 2.1.8 in the go-openapi-dependencies group by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonpointer/pull/98">#98</a> <a href="https://github.com/go-openapi/jsonpointer/commit/fb213a37ded83a74fafc181ea732588b3569f3f4">...</a></li> <li>chore(deps): bump the development-dependencies group with 7 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonpointer/pull/99">#99</a> <a href="https://github.com/go-openapi/jsonpointer/commit/e481e05d393868714e7e2f1a43e8be7fcdb9a40e">...</a></li> </ul> <hr /> <h3>People who contributed to this release</h3> <ul> <li><a href="https://github.com/bot-go-openapi%5Bbot%5D"><code>@​bot-go-openapi[bot]</code></a></li> <li><a href="https://github.com/fredbi"><code>@​fredbi</code></a></li> </ul> <hr /> <h3>New Contributors</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/go-openapi/jsonpointer/commit/e232aafbbdce6abbf028e4d6efebf845e1ff8148"><code>e232aaf</code></a> ci: upgraded bump-release workflow (new input format) (<a href="https://redirect.github.com/go-openapi/jsonpointer/issues/106">#106</a>)</li> <li><a href="https://github.com/go-openapi/jsonpointer/commit/9f448d5a0b23321eb8a8744993988d1257aec9ea"><code>9f448d5</code></a> chore: doc, test, lint update (<a href="https://redirect.github.com/go-openapi/jsonpointer/issues/105">#105</a>)</li> <li><a href="https://github.com/go-openapi/jsonpointer/commit/565d4a24c2c239426810931cae704368550eb2b1"><code>565d4a2</code></a> chore(deps): bump github.com/go-openapi/testify/v2</li> <li><a href="https://github.com/go-openapi/jsonpointer/commit/869667c299b0ea85d9a0d62dc4a30d574c43308c"><code>869667c</code></a> chore(deps): bump github.com/go-openapi/testify/v2</li> <li><a href="https://github.com/go-openapi/jsonpointer/commit/83371ca9e2761a7a50f23122848097e73d9993e4"><code>83371ca</code></a> chore(deps): bump the development-dependencies group with 7 updates</li> <li><a href="https://github.com/go-openapi/jsonpointer/commit/7ad57edb02edadf3f9ca8cabc2384bb1aff79ebc"><code>7ad57ed</code></a> chore(deps): bump the development-dependencies group with 7 updates</li> <li><a href="https://github.com/go-openapi/jsonpointer/commit/26e9371ac46a9fe02572de7a4e9adda3a4c7abf2"><code>26e9371</code></a> chore(deps): bump github.com/go-openapi/testify/v2</li> <li><a href="https://github.com/go-openapi/jsonpointer/commit/fb213a37ded83a74fafc181ea732588b3569f3f4"><code>fb213a3</code></a> chore(deps): bump github.com/go-openapi/testify/v2</li> <li><a href="https://github.com/go-openapi/jsonpointer/commit/e481e05d393868714e7e2f1a43e8be7fcdb9a40e"><code>e481e05</code></a> chore(deps): bump the development-dependencies group with 7 updates</li> <li><a href="https://github.com/go-openapi/jsonpointer/commit/62b2c8e9a62fa18651f5a928743c78d7c6d2977e"><code>62b2c8e</code></a> doc: updated contributors file</li> <li>Additional commits viewable in <a href="https://github.com/go-openapi/jsonpointer/compare/v0.22.4...v0.22.5">compare view</a></li> </ul> </details> <br /> Updates `github.com/go-openapi/jsonreference` from 0.21.4 to 0.21.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/go-openapi/jsonreference/releases">github.com/go-openapi/jsonreference's releases</a>.</em></p> <blockquote> <h2>v0.21.5</h2> <h2><a href="https://github.com/go-openapi/jsonreference/tree/v0.21.5">0.21.5</a> - 2026-03-02</h2> <p><strong>Full Changelog</strong>: <a href="https://github.com/go-openapi/jsonreference/compare/v0.21.4...v0.21.5">https://github.com/go-openapi/jsonreference/compare/v0.21.4...v0.21.5</a></p> <p>14 commits in this release.</p> <hr /> <h3><!-- raw HTML omitted -->Documentation</h3> <ul> <li>doc: updated contributors file by <a href="https://github.com/bot-go-openapi%5Bbot%5D"><code>@​bot-go-openapi[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonreference/pull/71">#71</a> <a href="https://github.com/go-openapi/jsonreference/commit/2d9cd9b28decc8407ae0aac79a1ab79de4078d85">...</a></li> <li>doc: announced new discord channel by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/jsonreference/pull/70">#70</a> <a href="https://github.com/go-openapi/jsonreference/commit/4b5d805b20e599b305b26b65fc10677010dfb596">...</a></li> <li>doc: added basic usage in readme and testable examples by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/jsonreference/pull/69">#69</a> <a href="https://github.com/go-openapi/jsonreference/commit/a738066b0988d4311eb0eb9b797d7c8eebcc69d9">...</a></li> <li>doc: fixed copy-paste errors with jsonpointer by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/jsonreference/pull/67">#67</a> <a href="https://github.com/go-openapi/jsonreference/commit/20e9d348b9cfda236c7cbbf5d28edc235492e468">...</a></li> </ul> <h3><!-- raw HTML omitted -->Code quality</h3> <ul> <li>chore: doc, lint, tests by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/jsonreference/pull/79">#79</a> <a href="https://github.com/go-openapi/jsonreference/commit/8b85573320ccec4f4f1e962e09c1fab880cbfc23">...</a></li> </ul> <h3><!-- raw HTML omitted -->Testing</h3> <ul> <li>test: added fuzz test for reference parser by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/jsonreference/pull/68">#68</a> <a href="https://github.com/go-openapi/jsonreference/commit/aaaad0807db0d0f4a1e19e4bb07bf3fc1141495e">...</a></li> </ul> <h3><!-- raw HTML omitted -->Miscellaneous tasks</h3> <ul> <li>ci: remove duplicate release worflow by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/jsonreference/pull/66">#66</a> <a href="https://github.com/go-openapi/jsonreference/commit/6d49d7e9a3c517ae8c964c98525a34ed61e6db97">...</a></li> </ul> <h3><!-- raw HTML omitted -->Updates</h3> <ul> <li>build(deps): bump the development-dependencies group with 7 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonreference/pull/78">#78</a> <a href="https://github.com/go-openapi/jsonreference/commit/f9fd8bdc83b4ca2d8103709e9562a17149984329">...</a></li> <li>build(deps): bump the development-dependencies group with 7 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonreference/pull/76">#76</a> <a href="https://github.com/go-openapi/jsonreference/commit/76deb1090736b0c2a5bf3f8080fb81dd0afbd4f4">...</a></li> <li>build(deps): bump github.com/go-openapi/testify/v2 from 2.1.8 to 2.2.0 in the go-openapi-dependencies group by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonreference/pull/75">#75</a> <a href="https://github.com/go-openapi/jsonreference/commit/7b4cec2fd90bdcb2677e30dc73a2fed71310c63d">...</a></li> <li>build(deps): bump github.com/go-openapi/testify/v2 from 2.1.1 to 2.1.8 in the go-openapi-dependencies group by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonreference/pull/74">#74</a> <a href="https://github.com/go-openapi/jsonreference/commit/fecb9ac79e70cf7c1617a551727a3c1fa0948ffc">...</a></li> <li>build(deps): bump the development-dependencies group with 7 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonreference/pull/73">#73</a> <a href="https://github.com/go-openapi/jsonreference/commit/8f205c3bb663372d9beeb97f384f78bda58322b1">...</a></li> <li>build(deps): bump github.com/go-openapi/testify/v2 from 2.0.2 to 2.1.1 in the go-openapi-dependencies group by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonreference/pull/72">#72</a> <a href="https://github.com/go-openapi/jsonreference/commit/9d5c22a217fb7e3a1b8b5d43ef683fe85c0acba6">...</a></li> <li>build(deps): bump the development-dependencies group with 7 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/jsonreference/pull/65">#65</a> <a href="https://github.com/go-openapi/jsonreference/commit/a28d7f166070f24a78ddfaf2739b0e1f04a2bd73">...</a></li> </ul> <hr /> <h3>People who contributed to this release</h3> <ul> <li><a href="https://github.com/fredbi"><code>@​fredbi</code></a></li> </ul> <hr /> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/go-openapi/jsonreference/commit/8b85573320ccec4f4f1e962e09c1fab880cbfc23"><code>8b85573</code></a> chore: doc, lint, tests (<a href="https://redirect.github.com/go-openapi/jsonreference/issues/79">#79</a>)</li> <li><a href="https://github.com/go-openapi/jsonreference/commit/f9fd8bdc83b4ca2d8103709e9562a17149984329"><code>f9fd8bd</code></a> build(deps): bump the development-dependencies group with 7 updates</li> <li><a href="https://github.com/go-openapi/jsonreference/commit/76deb1090736b0c2a5bf3f8080fb81dd0afbd4f4"><code>76deb10</code></a> build(deps): bump the development-dependencies group with 7 updates</li> <li><a href="https://github.com/go-openapi/jsonreference/commit/7b4cec2fd90bdcb2677e30dc73a2fed71310c63d"><code>7b4cec2</code></a> build(deps): bump github.com/go-openapi/testify/v2</li> <li><a href="https://github.com/go-openapi/jsonreference/commit/fecb9ac79e70cf7c1617a551727a3c1fa0948ffc"><code>fecb9ac</code></a> build(deps): bump github.com/go-openapi/testify/v2</li> <li><a href="https://github.com/go-openapi/jsonreference/commit/8f205c3bb663372d9beeb97f384f78bda58322b1"><code>8f205c3</code></a> build(deps): bump the development-dependencies group with 7 updates</li> <li><a href="https://github.com/go-openapi/jsonreference/commit/9d5c22a217fb7e3a1b8b5d43ef683fe85c0acba6"><code>9d5c22a</code></a> build(deps): bump github.com/go-openapi/testify/v2</li> <li><a href="https://github.com/go-openapi/jsonreference/commit/2d9cd9b28decc8407ae0aac79a1ab79de4078d85"><code>2d9cd9b</code></a> doc: updated contributors file</li> <li><a href="https://github.com/go-openapi/jsonreference/commit/4b5d805b20e599b305b26b65fc10677010dfb596"><code>4b5d805</code></a> doc: announced new discord channel</li> <li><a href="https://github.com/go-openapi/jsonreference/commit/a738066b0988d4311eb0eb9b797d7c8eebcc69d9"><code>a738066</code></a> doc: added basic usage in readme and testable examples</li> <li>Additional commits viewable in <a href="https://github.com/go-openapi/jsonreference/compare/v0.21.4...v0.21.5">compare view</a></li> </ul> </details> <br /> Updates `github.com/go-openapi/spec` from 0.22.3 to 0.22.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/go-openapi/spec/releases">github.com/go-openapi/spec's releases</a>.</em></p> <blockquote> <h2>v0.22.4</h2> <h2><a href="https://github.com/go-openapi/spec/tree/v0.22.4">0.22.4</a> - 2026-03-03</h2> <p><strong>Full Changelog</strong>: <a href="https://github.com/go-openapi/spec/compare/v0.22.3...v0.22.4">https://github.com/go-openapi/spec/compare/v0.22.3...v0.22.4</a></p> <p>9 commits in this release.</p> <hr /> <h3><!-- raw HTML omitted -->Documentation</h3> <ul> <li>doc: updated contributors file by <a href="https://github.com/bot-go-openapi%5Bbot%5D"><code>@​bot-go-openapi[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/spec/pull/247">#247</a> <a href="https://github.com/go-openapi/spec/commit/5fc39a0db5dfd51bc3ed88cde72e7caed93a17f4">...</a></li> </ul> <h3><!-- raw HTML omitted -->Code quality</h3> <ul> <li>chore: doc, tests, lint by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/spec/pull/255">#255</a> <a href="https://github.com/go-openapi/spec/commit/d6177ef6dbe2c9f47a1e0c362403848dea6027b7">...</a></li> </ul> <h3><!-- raw HTML omitted -->Updates</h3> <ul> <li>build(deps): bump github.com/go-openapi/testify/v2 from 2.3.0 to 2.4.0 in the go-openapi-dependencies group by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/spec/pull/254">#254</a> <a href="https://github.com/go-openapi/spec/commit/0c2d5d470d5dca91f7d4ead24cdd0de5bb12d20f">...</a></li> <li>build(deps): bump the development-dependencies group with 7 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/spec/pull/253">#253</a> <a href="https://github.com/go-openapi/spec/commit/7ca5d97aab7d1f2354c725e7fab54ecf8866f20b">...</a></li> <li>build(deps): bump github.com/go-openapi/testify/v2 from 2.2.0 to 2.3.0 in the go-openapi-dependencies group by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/spec/pull/252">#252</a> <a href="https://github.com/go-openapi/spec/commit/71eebab0e635b0951063dc9a170ee7968881bc59">...</a></li> <li>build(deps): bump github.com/go-openapi/testify/v2 from 2.1.8 to 2.2.0 in the go-openapi-dependencies group by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/spec/pull/250">#250</a> <a href="https://github.com/go-openapi/spec/commit/d7081599a4b8be0edb5aabd486349ef1ad414be9">...</a></li> <li>build(deps): bump the development-dependencies group with 7 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/spec/pull/251">#251</a> <a href="https://github.com/go-openapi/spec/commit/d181245f63f6fd800ca4e6bd1ecb4b1262dafd9d">...</a></li> <li>build(deps): bump github.com/go-openapi/testify/v2 from 2.0.2 to 2.1.8 in the go-openapi-dependencies group by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/spec/pull/248">#248</a> <a href="https://github.com/go-openapi/spec/commit/02c28f2fa3944826acac12e77361865d03497c4c">...</a></li> <li>build(deps): bump the development-dependencies group with 7 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/spec/pull/249">#249</a> <a href="https://github.com/go-openapi/spec/commit/22037ac9dc317bc67dbb968baf0f67c7700b6189">...</a></li> </ul> <hr /> <h3>People who contributed to this release</h3> <ul> <li><a href="https://github.com/fredbi"><code>@​fredbi</code></a></li> </ul> <hr /> <p><strong><a href="https://github.com/go-openapi/spec">spec</a> license terms</strong></p> <p><a href="https://github.com/go-openapi/spec/?tab=Apache-2.0-1-ov-file#readme"><img src="http://img.shields.io/badge/license-Apache%20v2-orange.svg" alt="License" /></a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/go-openapi/spec/commit/d6177ef6dbe2c9f47a1e0c362403848dea6027b7"><code>d6177ef</code></a> chore: doc, tests, lint (<a href="https://redirect.github.com/go-openapi/spec/issues/255">#255</a>)</li> <li><a href="https://github.com/go-openapi/spec/commit/0c2d5d470d5dca91f7d4ead24cdd0de5bb12d20f"><code>0c2d5d4</code></a> build(deps): bump github.com/go-openapi/testify/v2</li> <li><a href="https://github.com/go-openapi/spec/commit/7ca5d97aab7d1f2354c725e7fab54ecf8866f20b"><code>7ca5d97</code></a> build(deps): bump the development-dependencies group with 7 updates</li> <li><a href="https://github.com/go-openapi/spec/commit/71eebab0e635b0951063dc9a170ee7968881bc59"><code>71eebab</code></a> build(deps): bump github.com/go-openapi/testify/v2</li> <li><a href="https://github.com/go-openapi/spec/commit/d7081599a4b8be0edb5aabd486349ef1ad414be9"><code>d708159</code></a> build(deps): bump github.com/go-openapi/testify/v2</li> <li><a href="https://github.com/go-openapi/spec/commit/d181245f63f6fd800ca4e6bd1ecb4b1262dafd9d"><code>d181245</code></a> build(deps): bump the development-dependencies group with 7 updates</li> <li><a href="https://github.com/go-openapi/spec/commit/02c28f2fa3944826acac12e77361865d03497c4c"><code>02c28f2</code></a> build(deps): bump github.com/go-openapi/testify/v2</li> <li><a href="https://github.com/go-openapi/spec/commit/22037ac9dc317bc67dbb968baf0f67c7700b6189"><code>22037ac</code></a> build(deps): bump the development-dependencies group with 7 updates</li> <li><a href="https://github.com/go-openapi/spec/commit/5fc39a0db5dfd51bc3ed88cde72e7caed93a17f4"><code>5fc39a0</code></a> doc: updated contributors file</li> <li>See full diff in <a href="https://github.com/go-openapi/spec/compare/v0.22.3...v0.22.4">compare view</a></li> </ul> </details> <br /> Updates `github.com/go-openapi/swag/conv` from 0.25.4 to 0.25.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/go-openapi/swag/releases">github.com/go-openapi/swag/conv's releases</a>.</em></p> <blockquote> <h2>v0.25.5</h2> <h2><a href="https://github.com/go-openapi/swag/tree/v0.25.5">0.25.5</a> - 2026-03-02</h2> <p><strong>Full Changelog</strong>: <a href="https://github.com/go-openapi/swag/compare/v0.25.4...v0.25.5">https://github.com/go-openapi/swag/compare/v0.25.4...v0.25.5</a></p> <p>16 commits in this release.</p> <hr /> <h3><!-- raw HTML omitted -->Documentation</h3> <ul> <li>doc: updated contributors file by <a href="https://github.com/bot-go-openapi%5Bbot%5D"><code>@​bot-go-openapi[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/177">#177</a> <a href="https://github.com/go-openapi/swag/commit/4924f95b5fb3e3679dd6f4f63bfba213f769638a">...</a></li> </ul> <h3><!-- raw HTML omitted -->Code quality</h3> <ul> <li>Doc/discord invite by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/180">#180</a> <a href="https://github.com/go-openapi/swag/commit/345f85b795fa12e84e72860595b7ae527c1b83d5">...</a></li> </ul> <h3><!-- raw HTML omitted -->Testing</h3> <ul> <li>test: upgraded tests to use generics by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/176">#176</a> <a href="https://github.com/go-openapi/swag/commit/281942d23460d049a7e7ec8c13ee529b586148f5">...</a></li> <li>test: upgraded to go-openapi/[email protected] by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/175">#175</a> <a href="https://github.com/go-openapi/swag/commit/b9f9e4587cad0634e84d7af965b5948701837f21">...</a></li> </ul> <h3><!-- raw HTML omitted -->Miscellaneous tasks</h3> <ul> <li>chore: prepare release v0.25.5 by <a href="https://github.com/bot-go-openapi%5Bbot%5D"><code>@​bot-go-openapi[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/181">#181</a> <a href="https://github.com/go-openapi/swag/commit/86905ccd10f1987a41dd6988b6a6ec8c475bc449">...</a></li> <li>ci: updated ci workflows by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/179">#179</a> <a href="https://github.com/go-openapi/swag/commit/01b074b4b472f7239da4abe7229a1bdab05f6361">...</a></li> <li>ci: upgraded shared workflows (fixed secret propagation, fuzz matrix) by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/174">#174</a> <a href="https://github.com/go-openapi/swag/commit/b7e96e1d9c9e0f0ef3717fe8da3bf2e9d4287107">...</a></li> <li>ci: upgraded shared workflows (fixes mono-repo releases) by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/173">#173</a> <a href="https://github.com/go-openapi/swag/commit/236d975ed7036ca53a885f22d271e3183ff8ff56">...</a></li> </ul> <h3><!-- raw HTML omitted -->Updates</h3> <ul> <li>build(deps): bump the go-openapi-dependencies group across 15 directories with 2 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/178">#178</a> <a href="https://github.com/go-openapi/swag/commit/607decd4e0d8a4ed29cd126abebbfc13a980e6ed">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/172">#172</a> <a href="https://github.com/go-openapi/swag/commit/fd4d37313281ec907bfad4a0d73326c420c04ef0">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/170">#170</a> <a href="https://github.com/go-openapi/swag/commit/86998f7a9eab6059e2083600650e0319361ff330">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/168">#168</a> <a href="https://github.com/go-openapi/swag/commit/d706981d59b622f5d64f76785fea9175b810617b">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 2 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/167">#167</a> <a href="https://github.com/go-openapi/swag/commit/086e0322e00b065ed010c1a642981389d00acb89">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/166">#166</a> <a href="https://github.com/go-openapi/swag/commit/2bf558acf65885cdadd428b580564a2ffe492ce5">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 2 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/165">#165</a> <a href="https://github.com/go-openapi/swag/commit/7267597830115442dd5eedc599f0185489b1606e">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/164">#164</a> <a href="https://github.com/go-openapi/swag/commit/2b1f74a86d2c5095e1e2ba4bddbb55ecfc740947">...</a></li> </ul> <hr /> <h3>People who contributed to this release</h3> <ul> <li><a href="https://github.com/fredbi"><code>@​fredbi</code></a></li> </ul> <hr /> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/go-openapi/swag/commit/86905ccd10f1987a41dd6988b6a6ec8c475bc449"><code>86905cc</code></a> chore: prepare release v0.25.5</li> <li><a href="https://github.com/go-openapi/swag/commit/345f85b795fa12e84e72860595b7ae527c1b83d5"><code>345f85b</code></a> doc: updated docs, links (<a href="https://redirect.github.com/go-openapi/swag/issues/180">#180</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/01b074b4b472f7239da4abe7229a1bdab05f6361"><code>01b074b</code></a> ci: updated ci workflows (<a href="https://redirect.github.com/go-openapi/swag/issues/179">#179</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/607decd4e0d8a4ed29cd126abebbfc13a980e6ed"><code>607decd</code></a> build(deps): bump the go-openapi-dependencies group across 15 directories wit...</li> <li><a href="https://github.com/go-openapi/swag/commit/4924f95b5fb3e3679dd6f4f63bfba213f769638a"><code>4924f95</code></a> doc: updated contributors file</li> <li><a href="https://github.com/go-openapi/swag/commit/281942d23460d049a7e7ec8c13ee529b586148f5"><code>281942d</code></a> test: upgraded tests to use generics (<a href="https://redirect.github.com/go-openapi/swag/issues/176">#176</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/b9f9e4587cad0634e84d7af965b5948701837f21"><code>b9f9e45</code></a> test: upgraded to go-openapi/[email protected] (<a href="https://redirect.github.com/go-openapi/swag/issues/175">#175</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/b7e96e1d9c9e0f0ef3717fe8da3bf2e9d4287107"><code>b7e96e1</code></a> ci: upgraded shared workflows (fixed secret propagation, fuzz matrix) (<a href="https://redirect.github.com/go-openapi/swag/issues/174">#174</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/236d975ed7036ca53a885f22d271e3183ff8ff56"><code>236d975</code></a> ci: upgraded shared workflows (fixes mono-repo releases) (<a href="https://redirect.github.com/go-openapi/swag/issues/173">#173</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/fd4d37313281ec907bfad4a0d73326c420c04ef0"><code>fd4d373</code></a> build(deps): bump the development-dependencies group across 2 directories wit...</li> <li>Additional commits viewable in <a href="https://github.com/go-openapi/swag/compare/v0.25.4...v0.25.5">compare view</a></li> </ul> </details> <br /> Updates `github.com/go-openapi/swag/jsonname` from 0.25.4 to 0.25.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/go-openapi/swag/releases">github.com/go-openapi/swag/jsonname's releases</a>.</em></p> <blockquote> <h2>v0.25.5</h2> <h2><a href="https://github.com/go-openapi/swag/tree/v0.25.5">0.25.5</a> - 2026-03-02</h2> <p><strong>Full Changelog</strong>: <a href="https://github.com/go-openapi/swag/compare/v0.25.4...v0.25.5">https://github.com/go-openapi/swag/compare/v0.25.4...v0.25.5</a></p> <p>16 commits in this release.</p> <hr /> <h3><!-- raw HTML omitted -->Documentation</h3> <ul> <li>doc: updated contributors file by <a href="https://github.com/bot-go-openapi%5Bbot%5D"><code>@​bot-go-openapi[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/177">#177</a> <a href="https://github.com/go-openapi/swag/commit/4924f95b5fb3e3679dd6f4f63bfba213f769638a">...</a></li> </ul> <h3><!-- raw HTML omitted -->Code quality</h3> <ul> <li>Doc/discord invite by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/180">#180</a> <a href="https://github.com/go-openapi/swag/commit/345f85b795fa12e84e72860595b7ae527c1b83d5">...</a></li> </ul> <h3><!-- raw HTML omitted -->Testing</h3> <ul> <li>test: upgraded tests to use generics by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/176">#176</a> <a href="https://github.com/go-openapi/swag/commit/281942d23460d049a7e7ec8c13ee529b586148f5">...</a></li> <li>test: upgraded to go-openapi/[email protected] by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/175">#175</a> <a href="https://github.com/go-openapi/swag/commit/b9f9e4587cad0634e84d7af965b5948701837f21">...</a></li> </ul> <h3><!-- raw HTML omitted -->Miscellaneous tasks</h3> <ul> <li>chore: prepare release v0.25.5 by <a href="https://github.com/bot-go-openapi%5Bbot%5D"><code>@​bot-go-openapi[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/181">#181</a> <a href="https://github.com/go-openapi/swag/commit/86905ccd10f1987a41dd6988b6a6ec8c475bc449">...</a></li> <li>ci: updated ci workflows by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/179">#179</a> <a href="https://github.com/go-openapi/swag/commit/01b074b4b472f7239da4abe7229a1bdab05f6361">...</a></li> <li>ci: upgraded shared workflows (fixed secret propagation, fuzz matrix) by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/174">#174</a> <a href="https://github.com/go-openapi/swag/commit/b7e96e1d9c9e0f0ef3717fe8da3bf2e9d4287107">...</a></li> <li>ci: upgraded shared workflows (fixes mono-repo releases) by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/173">#173</a> <a href="https://github.com/go-openapi/swag/commit/236d975ed7036ca53a885f22d271e3183ff8ff56">...</a></li> </ul> <h3><!-- raw HTML omitted -->Updates</h3> <ul> <li>build(deps): bump the go-openapi-dependencies group across 15 directories with 2 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/178">#178</a> <a href="https://github.com/go-openapi/swag/commit/607decd4e0d8a4ed29cd126abebbfc13a980e6ed">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/172">#172</a> <a href="https://github.com/go-openapi/swag/commit/fd4d37313281ec907bfad4a0d73326c420c04ef0">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/170">#170</a> <a href="https://github.com/go-openapi/swag/commit/86998f7a9eab6059e2083600650e0319361ff330">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/168">#168</a> <a href="https://github.com/go-openapi/swag/commit/d706981d59b622f5d64f76785fea9175b810617b">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 2 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/167">#167</a> <a href="https://github.com/go-openapi/swag/commit/086e0322e00b065ed010c1a642981389d00acb89">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/166">#166</a> <a href="https://github.com/go-openapi/swag/commit/2bf558acf65885cdadd428b580564a2ffe492ce5">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 2 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/165">#165</a> <a href="https://github.com/go-openapi/swag/commit/7267597830115442dd5eedc599f0185489b1606e">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/164">#164</a> <a href="https://github.com/go-openapi/swag/commit/2b1f74a86d2c5095e1e2ba4bddbb55ecfc740947">...</a></li> </ul> <hr /> <h3>People who contributed to this release</h3> <ul> <li><a href="https://github.com/fredbi"><code>@​fredbi</code></a></li> </ul> <hr /> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/go-openapi/swag/commit/86905ccd10f1987a41dd6988b6a6ec8c475bc449"><code>86905cc</code></a> chore: prepare release v0.25.5</li> <li><a href="https://github.com/go-openapi/swag/commit/345f85b795fa12e84e72860595b7ae527c1b83d5"><code>345f85b</code></a> doc: updated docs, links (<a href="https://redirect.github.com/go-openapi/swag/issues/180">#180</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/01b074b4b472f7239da4abe7229a1bdab05f6361"><code>01b074b</code></a> ci: updated ci workflows (<a href="https://redirect.github.com/go-openapi/swag/issues/179">#179</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/607decd4e0d8a4ed29cd126abebbfc13a980e6ed"><code>607decd</code></a> build(deps): bump the go-openapi-dependencies group across 15 directories wit...</li> <li><a href="https://github.com/go-openapi/swag/commit/4924f95b5fb3e3679dd6f4f63bfba213f769638a"><code>4924f95</code></a> doc: updated contributors file</li> <li><a href="https://github.com/go-openapi/swag/commit/281942d23460d049a7e7ec8c13ee529b586148f5"><code>281942d</code></a> test: upgraded tests to use generics (<a href="https://redirect.github.com/go-openapi/swag/issues/176">#176</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/b9f9e4587cad0634e84d7af965b5948701837f21"><code>b9f9e45</code></a> test: upgraded to go-openapi/[email protected] (<a href="https://redirect.github.com/go-openapi/swag/issues/175">#175</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/b7e96e1d9c9e0f0ef3717fe8da3bf2e9d4287107"><code>b7e96e1</code></a> ci: upgraded shared workflows (fixed secret propagation, fuzz matrix) (<a href="https://redirect.github.com/go-openapi/swag/issues/174">#174</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/236d975ed7036ca53a885f22d271e3183ff8ff56"><code>236d975</code></a> ci: upgraded shared workflows (fixes mono-repo releases) (<a href="https://redirect.github.com/go-openapi/swag/issues/173">#173</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/fd4d37313281ec907bfad4a0d73326c420c04ef0"><code>fd4d373</code></a> build(deps): bump the development-dependencies group across 2 directories wit...</li> <li>Additional commits viewable in <a href="https://github.com/go-openapi/swag/compare/v0.25.4...v0.25.5">compare view</a></li> </ul> </details> <br /> Updates `github.com/go-openapi/swag/jsonutils` from 0.25.4 to 0.25.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/go-openapi/swag/releases">github.com/go-openapi/swag/jsonutils's releases</a>.</em></p> <blockquote> <h2>v0.25.5</h2> <h2><a href="https://github.com/go-openapi/swag/tree/v0.25.5">0.25.5</a> - 2026-03-02</h2> <p><strong>Full Changelog</strong>: <a href="https://github.com/go-openapi/swag/compare/v0.25.4...v0.25.5">https://github.com/go-openapi/swag/compare/v0.25.4...v0.25.5</a></p> <p>16 commits in this release.</p> <hr /> <h3><!-- raw HTML omitted -->Documentation</h3> <ul> <li>doc: updated contributors file by <a href="https://github.com/bot-go-openapi%5Bbot%5D"><code>@​bot-go-openapi[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/177">#177</a> <a href="https://github.com/go-openapi/swag/commit/4924f95b5fb3e3679dd6f4f63bfba213f769638a">...</a></li> </ul> <h3><!-- raw HTML omitted -->Code quality</h3> <ul> <li>Doc/discord invite by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/180">#180</a> <a href="https://github.com/go-openapi/swag/commit/345f85b795fa12e84e72860595b7ae527c1b83d5">...</a></li> </ul> <h3><!-- raw HTML omitted -->Testing</h3> <ul> <li>test: upgraded tests to use generics by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/176">#176</a> <a href="https://github.com/go-openapi/swag/commit/281942d23460d049a7e7ec8c13ee529b586148f5">...</a></li> <li>test: upgraded to go-openapi/[email protected] by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/175">#175</a> <a href="https://github.com/go-openapi/swag/commit/b9f9e4587cad0634e84d7af965b5948701837f21">...</a></li> </ul> <h3><!-- raw HTML omitted -->Miscellaneous tasks</h3> <ul> <li>chore: prepare release v0.25.5 by <a href="https://github.com/bot-go-openapi%5Bbot%5D"><code>@​bot-go-openapi[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/181">#181</a> <a href="https://github.com/go-openapi/swag/commit/86905ccd10f1987a41dd6988b6a6ec8c475bc449">...</a></li> <li>ci: updated ci workflows by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/179">#179</a> <a href="https://github.com/go-openapi/swag/commit/01b074b4b472f7239da4abe7229a1bdab05f6361">...</a></li> <li>ci: upgraded shared workflows (fixed secret propagation, fuzz matrix) by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/174">#174</a> <a href="https://github.com/go-openapi/swag/commit/b7e96e1d9c9e0f0ef3717fe8da3bf2e9d4287107">...</a></li> <li>ci: upgraded shared workflows (fixes mono-repo releases) by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/173">#173</a> <a href="https://github.com/go-openapi/swag/commit/236d975ed7036ca53a885f22d271e3183ff8ff56">...</a></li> </ul> <h3><!-- raw HTML omitted -->Updates</h3> <ul> <li>build(deps): bump the go-openapi-dependencies group across 15 directories with 2 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/178">#178</a> <a href="https://github.com/go-openapi/swag/commit/607decd4e0d8a4ed29cd126abebbfc13a980e6ed">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/172">#172</a> <a href="https://github.com/go-openapi/swag/commit/fd4d37313281ec907bfad4a0d73326c420c04ef0">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/170">#170</a> <a href="https://github.com/go-openapi/swag/commit/86998f7a9eab6059e2083600650e0319361ff330">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/168">#168</a> <a href="https://github.com/go-openapi/swag/commit/d706981d59b622f5d64f76785fea9175b810617b">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 2 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/167">#167</a> <a href="https://github.com/go-openapi/swag/commit/086e0322e00b065ed010c1a642981389d00acb89">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/166">#166</a> <a href="https://github.com/go-openapi/swag/commit/2bf558acf65885cdadd428b580564a2ffe492ce5">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 2 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/165">#165</a> <a href="https://github.com/go-openapi/swag/commit/7267597830115442dd5eedc599f0185489b1606e">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/164">#164</a> <a href="https://github.com/go-openapi/swag/commit/2b1f74a86d2c5095e1e2ba4bddbb55ecfc740947">...</a></li> </ul> <hr /> <h3>People who contributed to this release</h3> <ul> <li><a href="https://github.com/fredbi"><code>@​fredbi</code></a></li> </ul> <hr /> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/go-openapi/swag/commit/86905ccd10f1987a41dd6988b6a6ec8c475bc449"><code>86905cc</code></a> chore: prepare release v0.25.5</li> <li><a href="https://github.com/go-openapi/swag/commit/345f85b795fa12e84e72860595b7ae527c1b83d5"><code>345f85b</code></a> doc: updated docs, links (<a href="https://redirect.github.com/go-openapi/swag/issues/180">#180</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/01b074b4b472f7239da4abe7229a1bdab05f6361"><code>01b074b</code></a> ci: updated ci workflows (<a href="https://redirect.github.com/go-openapi/swag/issues/179">#179</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/607decd4e0d8a4ed29cd126abebbfc13a980e6ed"><code>607decd</code></a> build(deps): bump the go-openapi-dependencies group across 15 directories wit...</li> <li><a href="https://github.com/go-openapi/swag/commit/4924f95b5fb3e3679dd6f4f63bfba213f769638a"><code>4924f95</code></a> doc: updated contributors file</li> <li><a href="https://github.com/go-openapi/swag/commit/281942d23460d049a7e7ec8c13ee529b586148f5"><code>281942d</code></a> test: upgraded tests to use generics (<a href="https://redirect.github.com/go-openapi/swag/issues/176">#176</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/b9f9e4587cad0634e84d7af965b5948701837f21"><code>b9f9e45</code></a> test: upgraded to go-openapi/[email protected] (<a href="https://redirect.github.com/go-openapi/swag/issues/175">#175</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/b7e96e1d9c9e0f0ef3717fe8da3bf2e9d4287107"><code>b7e96e1</code></a> ci: upgraded shared workflows (fixed secret propagation, fuzz matrix) (<a href="https://redirect.github.com/go-openapi/swag/issues/174">#174</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/236d975ed7036ca53a885f22d271e3183ff8ff56"><code>236d975</code></a> ci: upgraded shared workflows (fixes mono-repo releases) (<a href="https://redirect.github.com/go-openapi/swag/issues/173">#173</a>)</li> <li><a href="https://github.com/go-openapi/swag/commit/fd4d37313281ec907bfad4a0d73326c420c04ef0"><code>fd4d373</code></a> build(deps): bump the development-dependencies group across 2 directories wit...</li> <li>Additional commits viewable in <a href="https://github.com/go-openapi/swag/compare/v0.25.4...v0.25.5">compare view</a></li> </ul> </details> <br /> Updates `github.com/go-openapi/swag/loading` from 0.25.4 to 0.25.5 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/go-openapi/swag/releases">github.com/go-openapi/swag/loading's releases</a>.</em></p> <blockquote> <h2>v0.25.5</h2> <h2><a href="https://github.com/go-openapi/swag/tree/v0.25.5">0.25.5</a> - 2026-03-02</h2> <p><strong>Full Changelog</strong>: <a href="https://github.com/go-openapi/swag/compare/v0.25.4...v0.25.5">https://github.com/go-openapi/swag/compare/v0.25.4...v0.25.5</a></p> <p>16 commits in this release.</p> <hr /> <h3><!-- raw HTML omitted -->Documentation</h3> <ul> <li>doc: updated contributors file by <a href="https://github.com/bot-go-openapi%5Bbot%5D"><code>@​bot-go-openapi[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/177">#177</a> <a href="https://github.com/go-openapi/swag/commit/4924f95b5fb3e3679dd6f4f63bfba213f769638a">...</a></li> </ul> <h3><!-- raw HTML omitted -->Code quality</h3> <ul> <li>Doc/discord invite by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/180">#180</a> <a href="https://github.com/go-openapi/swag/commit/345f85b795fa12e84e72860595b7ae527c1b83d5">...</a></li> </ul> <h3><!-- raw HTML omitted -->Testing</h3> <ul> <li>test: upgraded tests to use generics by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/176">#176</a> <a href="https://github.com/go-openapi/swag/commit/281942d23460d049a7e7ec8c13ee529b586148f5">...</a></li> <li>test: upgraded to go-openapi/[email protected] by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/175">#175</a> <a href="https://github.com/go-openapi/swag/commit/b9f9e4587cad0634e84d7af965b5948701837f21">...</a></li> </ul> <h3><!-- raw HTML omitted -->Miscellaneous tasks</h3> <ul> <li>chore: prepare release v0.25.5 by <a href="https://github.com/bot-go-openapi%5Bbot%5D"><code>@​bot-go-openapi[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/181">#181</a> <a href="https://github.com/go-openapi/swag/commit/86905ccd10f1987a41dd6988b6a6ec8c475bc449">...</a></li> <li>ci: updated ci workflows by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/179">#179</a> <a href="https://github.com/go-openapi/swag/commit/01b074b4b472f7239da4abe7229a1bdab05f6361">...</a></li> <li>ci: upgraded shared workflows (fixed secret propagation, fuzz matrix) by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/174">#174</a> <a href="https://github.com/go-openapi/swag/commit/b7e96e1d9c9e0f0ef3717fe8da3bf2e9d4287107">...</a></li> <li>ci: upgraded shared workflows (fixes mono-repo releases) by <a href="https://github.com/fredbi"><code>@​fredbi</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/173">#173</a> <a href="https://github.com/go-openapi/swag/commit/236d975ed7036ca53a885f22d271e3183ff8ff56">...</a></li> </ul> <h3><!-- raw HTML omitted -->Updates</h3> <ul> <li>build(deps): bump the go-openapi-dependencies group across 15 directories with 2 updates by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/178">#178</a> <a href="https://github.com/go-openapi/swag/commit/607decd4e0d8a4ed29cd126abebbfc13a980e6ed">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/172">#172</a> <a href="https://github.com/go-openapi/swag/commit/fd4d37313281ec907bfad4a0d73326c420c04ef0">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/170">#170</a> <a href="https://github.com/go-openapi/swag/commit/86998f7a9eab6059e2083600650e0319361ff330">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 1 update by <a href="https://github.com/dependabot%5Bbot%5D"><code>@​dependabot[bot]</code></a> in <a href="https://redirect.github.com/go-openapi/swag/pull/168">#168</a> <a href="https://github.com/go-openapi/swag/commit/d706981d59b622f5d64f76785fea9175b810617b">...</a></li> <li>build(deps): bump the development-dependencies group across 2 directories with 2 updates by <a href="https://github.com/depen…
1 parent 178b8cd commit 4e57f18

File tree

4 files changed

+107
-88
lines changed

4 files changed

+107
-88
lines changed

go.mod

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ require (
1818
github.com/peterldowns/pgtestdb/migrators/golangmigrator v0.1.1
1919
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
2020
github.com/rs/zerolog v1.34.0
21-
github.com/samber/lo v1.52.0
21+
github.com/samber/lo v1.53.0
2222
github.com/spf13/viper v1.21.0
2323
github.com/stretchr/testify v1.11.1
2424
github.com/swaggo/files/v2 v2.0.2
@@ -65,16 +65,16 @@ require (
6565
github.com/go-logr/logr v1.4.3 // indirect
6666
github.com/go-logr/stdr v1.2.2 // indirect
6767
github.com/go-ole/go-ole v1.3.0 // indirect
68-
github.com/go-openapi/jsonpointer v0.22.4 // indirect
69-
github.com/go-openapi/jsonreference v0.21.4 // indirect
70-
github.com/go-openapi/spec v0.22.3 // indirect
71-
github.com/go-openapi/swag/conv v0.25.4 // indirect
72-
github.com/go-openapi/swag/jsonname v0.25.4 // indirect
73-
github.com/go-openapi/swag/jsonutils v0.25.4 // indirect
74-
github.com/go-openapi/swag/loading v0.25.4 // indirect
75-
github.com/go-openapi/swag/stringutils v0.25.4 // indirect
76-
github.com/go-openapi/swag/typeutils v0.25.4 // indirect
77-
github.com/go-openapi/swag/yamlutils v0.25.4 // indirect
68+
github.com/go-openapi/jsonpointer v0.22.5 // indirect
69+
github.com/go-openapi/jsonreference v0.21.5 // indirect
70+
github.com/go-openapi/spec v0.22.4 // indirect
71+
github.com/go-openapi/swag/conv v0.25.5 // indirect
72+
github.com/go-openapi/swag/jsonname v0.25.5 // indirect
73+
github.com/go-openapi/swag/jsonutils v0.25.5 // indirect
74+
github.com/go-openapi/swag/loading v0.25.5 // indirect
75+
github.com/go-openapi/swag/stringutils v0.25.5 // indirect
76+
github.com/go-openapi/swag/typeutils v0.25.5 // indirect
77+
github.com/go-openapi/swag/yamlutils v0.25.5 // indirect
7878
github.com/go-playground/locales v0.14.1 // indirect
7979
github.com/go-playground/universal-translator v0.18.1 // indirect
8080
github.com/go-viper/mapstructure/v2 v2.5.0 // indirect
@@ -130,20 +130,20 @@ require (
130130
github.com/yusufpapurcu/wmi v1.2.4 // indirect
131131
go.mongodb.org/mongo-driver/v2 v2.5.0 // indirect
132132
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
133-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.65.0 // indirect
134-
go.opentelemetry.io/otel v1.40.0 // indirect
135-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.40.0 // indirect
136-
go.opentelemetry.io/otel/metric v1.40.0 // indirect
137-
go.opentelemetry.io/otel/trace v1.40.0 // indirect
138-
go.yaml.in/yaml/v2 v2.4.3 // indirect
133+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0 // indirect
134+
go.opentelemetry.io/otel v1.42.0 // indirect
135+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.42.0 // indirect
136+
go.opentelemetry.io/otel/metric v1.42.0 // indirect
137+
go.opentelemetry.io/otel/trace v1.42.0 // indirect
138+
go.yaml.in/yaml/v2 v2.4.4 // indirect
139139
go.yaml.in/yaml/v3 v3.0.4 // indirect
140-
golang.org/x/arch v0.24.0 // indirect
140+
golang.org/x/arch v0.25.0 // indirect
141141
golang.org/x/mod v0.33.0 // indirect
142142
golang.org/x/net v0.51.0 // indirect
143-
golang.org/x/sync v0.19.0 // indirect
144-
golang.org/x/sys v0.41.0 // indirect
143+
golang.org/x/sync v0.20.0 // indirect
144+
golang.org/x/sys v0.42.0 // indirect
145145
golang.org/x/text v0.34.0 // indirect
146-
golang.org/x/time v0.14.0 // indirect
146+
golang.org/x/time v0.15.0 // indirect
147147
golang.org/x/tools v0.42.0 // indirect
148148
google.golang.org/protobuf v1.36.11 // indirect
149149
gopkg.in/yaml.v3 v3.0.1 // indirect

go.sum

Lines changed: 62 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -86,33 +86,33 @@ github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre
8686
github.com/go-ole/go-ole v1.2.6/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0=
8787
github.com/go-ole/go-ole v1.3.0 h1:Dt6ye7+vXGIKZ7Xtk4s6/xVdGDQynvom7xCFEdWr6uE=
8888
github.com/go-ole/go-ole v1.3.0/go.mod h1:5LS6F96DhAwUc7C+1HLexzMXY1xGRSryjyPPKW6zv78=
89-
github.com/go-openapi/jsonpointer v0.22.4 h1:dZtK82WlNpVLDW2jlA1YCiVJFVqkED1MegOUy9kR5T4=
90-
github.com/go-openapi/jsonpointer v0.22.4/go.mod h1:elX9+UgznpFhgBuaMQ7iu4lvvX1nvNsesQ3oxmYTw80=
91-
github.com/go-openapi/jsonreference v0.21.4 h1:24qaE2y9bx/q3uRK/qN+TDwbok1NhbSmGjjySRCHtC8=
92-
github.com/go-openapi/jsonreference v0.21.4/go.mod h1:rIENPTjDbLpzQmQWCj5kKj3ZlmEh+EFVbz3RTUh30/4=
93-
github.com/go-openapi/spec v0.22.3 h1:qRSmj6Smz2rEBxMnLRBMeBWxbbOvuOoElvSvObIgwQc=
94-
github.com/go-openapi/spec v0.22.3/go.mod h1:iIImLODL2loCh3Vnox8TY2YWYJZjMAKYyLH2Mu8lOZs=
89+
github.com/go-openapi/jsonpointer v0.22.5 h1:8on/0Yp4uTb9f4XvTrM2+1CPrV05QPZXu+rvu2o9jcA=
90+
github.com/go-openapi/jsonpointer v0.22.5/go.mod h1:gyUR3sCvGSWchA2sUBJGluYMbe1zazrYWIkWPjjMUY0=
91+
github.com/go-openapi/jsonreference v0.21.5 h1:6uCGVXU/aNF13AQNggxfysJ+5ZcU4nEAe+pJyVWRdiE=
92+
github.com/go-openapi/jsonreference v0.21.5/go.mod h1:u25Bw85sX4E2jzFodh1FOKMTZLcfifd1Q+iKKOUxExw=
93+
github.com/go-openapi/spec v0.22.4 h1:4pxGjipMKu0FzFiu/DPwN3CTBRlVM2yLf/YTWorYfDQ=
94+
github.com/go-openapi/spec v0.22.4/go.mod h1:WQ6Ai0VPWMZgMT4XySjlRIE6GP1bGQOtEThn3gcWLtQ=
9595
github.com/go-openapi/swag v0.19.15 h1:D2NRCBzS9/pEY3gP9Nl8aDqGUcPFrwG2p+CNFrLyrCM=
96-
github.com/go-openapi/swag/conv v0.25.4 h1:/Dd7p0LZXczgUcC/Ikm1+YqVzkEeCc9LnOWjfkpkfe4=
97-
github.com/go-openapi/swag/conv v0.25.4/go.mod h1:3LXfie/lwoAv0NHoEuY1hjoFAYkvlqI/Bn5EQDD3PPU=
98-
github.com/go-openapi/swag/jsonname v0.25.4 h1:bZH0+MsS03MbnwBXYhuTttMOqk+5KcQ9869Vye1bNHI=
99-
github.com/go-openapi/swag/jsonname v0.25.4/go.mod h1:GPVEk9CWVhNvWhZgrnvRA6utbAltopbKwDu8mXNUMag=
100-
github.com/go-openapi/swag/jsonutils v0.25.4 h1:VSchfbGhD4UTf4vCdR2F4TLBdLwHyUDTd1/q4i+jGZA=
101-
github.com/go-openapi/swag/jsonutils v0.25.4/go.mod h1:7OYGXpvVFPn4PpaSdPHJBtF0iGnbEaTk8AvBkoWnaAY=
102-
github.com/go-openapi/swag/jsonutils/fixtures_test v0.25.4 h1:IACsSvBhiNJwlDix7wq39SS2Fh7lUOCJRmx/4SN4sVo=
103-
github.com/go-openapi/swag/jsonutils/fixtures_test v0.25.4/go.mod h1:Mt0Ost9l3cUzVv4OEZG+WSeoHwjWLnarzMePNDAOBiM=
104-
github.com/go-openapi/swag/loading v0.25.4 h1:jN4MvLj0X6yhCDduRsxDDw1aHe+ZWoLjW+9ZQWIKn2s=
105-
github.com/go-openapi/swag/loading v0.25.4/go.mod h1:rpUM1ZiyEP9+mNLIQUdMiD7dCETXvkkC30z53i+ftTE=
106-
github.com/go-openapi/swag/stringutils v0.25.4 h1:O6dU1Rd8bej4HPA3/CLPciNBBDwZj9HiEpdVsb8B5A8=
107-
github.com/go-openapi/swag/stringutils v0.25.4/go.mod h1:GTsRvhJW5xM5gkgiFe0fV3PUlFm0dr8vki6/VSRaZK0=
108-
github.com/go-openapi/swag/typeutils v0.25.4 h1:1/fbZOUN472NTc39zpa+YGHn3jzHWhv42wAJSN91wRw=
109-
github.com/go-openapi/swag/typeutils v0.25.4/go.mod h1:Ou7g//Wx8tTLS9vG0UmzfCsjZjKhpjxayRKTHXf2pTE=
110-
github.com/go-openapi/swag/yamlutils v0.25.4 h1:6jdaeSItEUb7ioS9lFoCZ65Cne1/RZtPBZ9A56h92Sw=
111-
github.com/go-openapi/swag/yamlutils v0.25.4/go.mod h1:MNzq1ulQu+yd8Kl7wPOut/YHAAU/H6hL91fF+E2RFwc=
112-
github.com/go-openapi/testify/enable/yaml/v2 v2.0.2 h1:0+Y41Pz1NkbTHz8NngxTuAXxEodtNSI1WG1c/m5Akw4=
113-
github.com/go-openapi/testify/enable/yaml/v2 v2.0.2/go.mod h1:kme83333GCtJQHXQ8UKX3IBZu6z8T5Dvy5+CW3NLUUg=
114-
github.com/go-openapi/testify/v2 v2.0.2 h1:X999g3jeLcoY8qctY/c/Z8iBHTbwLz7R2WXd6Ub6wls=
115-
github.com/go-openapi/testify/v2 v2.0.2/go.mod h1:HCPmvFFnheKK2BuwSA0TbbdxJ3I16pjwMkYkP4Ywn54=
96+
github.com/go-openapi/swag/conv v0.25.5 h1:wAXBYEXJjoKwE5+vc9YHhpQOFj2JYBMF2DUi+tGu97g=
97+
github.com/go-openapi/swag/conv v0.25.5/go.mod h1:CuJ1eWvh1c4ORKx7unQnFGyvBbNlRKbnRyAvDvzWA4k=
98+
github.com/go-openapi/swag/jsonname v0.25.5 h1:8p150i44rv/Drip4vWI3kGi9+4W9TdI3US3uUYSFhSo=
99+
github.com/go-openapi/swag/jsonname v0.25.5/go.mod h1:jNqqikyiAK56uS7n8sLkdaNY/uq6+D2m2LANat09pKU=
100+
github.com/go-openapi/swag/jsonutils v0.25.5 h1:XUZF8awQr75MXeC+/iaw5usY/iM7nXPDwdG3Jbl9vYo=
101+
github.com/go-openapi/swag/jsonutils v0.25.5/go.mod h1:48FXUaz8YsDAA9s5AnaUvAmry1UcLcNVWUjY42XkrN4=
102+
github.com/go-openapi/swag/jsonutils/fixtures_test v0.25.5 h1:SX6sE4FrGb4sEnnxbFL/25yZBb5Hcg1inLeErd86Y1U=
103+
github.com/go-openapi/swag/jsonutils/fixtures_test v0.25.5/go.mod h1:/2KvOTrKWjVA5Xli3DZWdMCZDzz3uV/T7bXwrKWPquo=
104+
github.com/go-openapi/swag/loading v0.25.5 h1:odQ/umlIZ1ZVRteI6ckSrvP6e2w9UTF5qgNdemJHjuU=
105+
github.com/go-openapi/swag/loading v0.25.5/go.mod h1:I8A8RaaQ4DApxhPSWLNYWh9NvmX2YKMoB9nwvv6oW6g=
106+
github.com/go-openapi/swag/stringutils v0.25.5 h1:NVkoDOA8YBgtAR/zvCx5rhJKtZF3IzXcDdwOsYzrB6M=
107+
github.com/go-openapi/swag/stringutils v0.25.5/go.mod h1:PKK8EZdu4QJq8iezt17HM8RXnLAzY7gW0O1KKarrZII=
108+
github.com/go-openapi/swag/typeutils v0.25.5 h1:EFJ+PCga2HfHGdo8s8VJXEVbeXRCYwzzr9u4rJk7L7E=
109+
github.com/go-openapi/swag/typeutils v0.25.5/go.mod h1:itmFmScAYE1bSD8C4rS0W+0InZUBrB2xSPbWt6DLGuc=
110+
github.com/go-openapi/swag/yamlutils v0.25.5 h1:kASCIS+oIeoc55j28T4o8KwlV2S4ZLPT6G0iq2SSbVQ=
111+
github.com/go-openapi/swag/yamlutils v0.25.5/go.mod h1:Gek1/SjjfbYvM+Iq4QGwa/2lEXde9n2j4a3wI3pNuOQ=
112+
github.com/go-openapi/testify/enable/yaml/v2 v2.4.0 h1:7SgOMTvJkM8yWrQlU8Jm18VeDPuAvB/xWrdxFJkoFag=
113+
github.com/go-openapi/testify/enable/yaml/v2 v2.4.0/go.mod h1:14iV8jyyQlinc9StD7w1xVPW3CO3q1Gj04Jy//Kw4VM=
114+
github.com/go-openapi/testify/v2 v2.4.0 h1:8nsPrHVCWkQ4p8h1EsRVymA2XABB4OT40gcvAu+voFM=
115+
github.com/go-openapi/testify/v2 v2.4.0/go.mod h1:HCPmvFFnheKK2BuwSA0TbbdxJ3I16pjwMkYkP4Ywn54=
116116
github.com/go-playground/assert/v2 v2.2.0 h1:JvknZsQTYeFEAhQwI4qEt9cyV5ONwRHC+lYKSsYSR8s=
117117
github.com/go-playground/assert/v2 v2.2.0/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4=
118118
github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA=
@@ -136,8 +136,8 @@ github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX
136136
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
137137
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
138138
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
139-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.7 h1:X+2YciYSxvMQK0UZ7sg45ZVabVZBeBuvMkmuI2V3Fak=
140-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.7/go.mod h1:lW34nIZuQ8UDPdkon5fmfp2l3+ZkQ2me/+oecHYLOII=
139+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 h1:HWRh5R2+9EifMyIHV7ZV+MIZqgz+PMpZ14Jynv3O2Zs=
140+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0/go.mod h1:JfhWUomR1baixubs02l85lZYYOm7LV6om4ceouMv45c=
141141
github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ=
142142
github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48=
143143
github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k=
@@ -243,8 +243,8 @@ github.com/rs/zerolog v1.34.0 h1:k43nTLIwcTVQAncfCw4KZ2VY6ukYoZaBPNOE8txlOeY=
243243
github.com/rs/zerolog v1.34.0/go.mod h1:bJsvje4Z08ROH4Nhs5iH600c3IkWhwp44iRc54W6wYQ=
244244
github.com/sagikazarmark/locafero v0.12.0 h1:/NQhBAkUb4+fH1jivKHWusDYFjMOOKU88eegjfxfHb4=
245245
github.com/sagikazarmark/locafero v0.12.0/go.mod h1:sZh36u/YSZ918v0Io+U9ogLYQJ9tLLBmM4eneO6WwsI=
246-
github.com/samber/lo v1.52.0 h1:Rvi+3BFHES3A8meP33VPAxiBZX/Aws5RxrschYGjomw=
247-
github.com/samber/lo v1.52.0/go.mod h1:4+MXEGsJzbKGaUEQFKBq2xtfuznW9oz/WrgyzMzRoM0=
246+
github.com/samber/lo v1.53.0 h1:t975lj2py4kJPQ6haz1QMgtId2gtmfktACxIXArw3HM=
247+
github.com/samber/lo v1.53.0/go.mod h1:4+MXEGsJzbKGaUEQFKBq2xtfuznW9oz/WrgyzMzRoM0=
248248
github.com/shirou/gopsutil/v4 v4.26.2 h1:X8i6sicvUFih4BmYIGT1m2wwgw2VG9YgrDTi7cIRGUI=
249249
github.com/shirou/gopsutil/v4 v4.26.2/go.mod h1:LZ6ewCSkBqUpvSOf+LsTGnRinC6iaNUNMGBtDkJBaLQ=
250250
github.com/sirupsen/logrus v1.9.4 h1:TsZE7l11zFCLZnZ+teH4Umoq5BhEIfIzfRDZ1Uzql2w=
@@ -308,32 +308,32 @@ go.mongodb.org/mongo-driver/v2 v2.5.0 h1:yXUhImUjjAInNcpTcAlPHiT7bIXhshCTL3jVBkF
308308
go.mongodb.org/mongo-driver/v2 v2.5.0/go.mod h1:yOI9kBsufol30iFsl1slpdq1I0eHPzybRWdyYUs8K/0=
309309
go.opentelemetry.io/auto/sdk v1.2.1 h1:jXsnJ4Lmnqd11kwkBV2LgLoFMZKizbCi5fNZ/ipaZ64=
310310
go.opentelemetry.io/auto/sdk v1.2.1/go.mod h1:KRTj+aOaElaLi+wW1kO/DZRXwkF4C5xPbEe3ZiIhN7Y=
311-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.65.0 h1:7iP2uCb7sGddAr30RRS6xjKy7AZ2JtTOPA3oolgVSw8=
312-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.65.0/go.mod h1:c7hN3ddxs/z6q9xwvfLPk+UHlWRQyaeR1LdgfL/66l0=
313-
go.opentelemetry.io/otel v1.40.0 h1:oA5YeOcpRTXq6NN7frwmwFR0Cn3RhTVZvXsP4duvCms=
314-
go.opentelemetry.io/otel v1.40.0/go.mod h1:IMb+uXZUKkMXdPddhwAHm6UfOwJyh4ct1ybIlV14J0g=
315-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.40.0 h1:QKdN8ly8zEMrByybbQgv8cWBcdAarwmIPZ6FThrWXJs=
316-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.40.0/go.mod h1:bTdK1nhqF76qiPoCCdyFIV+N/sRHYXYCTQc+3VCi3MI=
317-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.40.0 h1:wVZXIWjQSeSmMoxF74LzAnpVQOAFDo3pPji9Y4SOFKc=
318-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.40.0/go.mod h1:khvBS2IggMFNwZK/6lEeHg/W57h/IX6J4URh57fuI40=
319-
go.opentelemetry.io/otel/metric v1.40.0 h1:rcZe317KPftE2rstWIBitCdVp89A2HqjkxR3c11+p9g=
320-
go.opentelemetry.io/otel/metric v1.40.0/go.mod h1:ib/crwQH7N3r5kfiBZQbwrTge743UDc7DTFVZrrXnqc=
321-
go.opentelemetry.io/otel/sdk v1.40.0 h1:KHW/jUzgo6wsPh9At46+h4upjtccTmuZCFAc9OJ71f8=
322-
go.opentelemetry.io/otel/sdk v1.40.0/go.mod h1:Ph7EFdYvxq72Y8Li9q8KebuYUr2KoeyHx0DRMKrYBUE=
323-
go.opentelemetry.io/otel/sdk/metric v1.40.0 h1:mtmdVqgQkeRxHgRv4qhyJduP3fYJRMX4AtAlbuWdCYw=
324-
go.opentelemetry.io/otel/sdk/metric v1.40.0/go.mod h1:4Z2bGMf0KSK3uRjlczMOeMhKU2rhUqdWNoKcYrtcBPg=
325-
go.opentelemetry.io/otel/trace v1.40.0 h1:WA4etStDttCSYuhwvEa8OP8I5EWu24lkOzp+ZYblVjw=
326-
go.opentelemetry.io/otel/trace v1.40.0/go.mod h1:zeAhriXecNGP/s2SEG3+Y8X9ujcJOTqQ5RgdEJcawiA=
311+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0 h1:OyrsyzuttWTSur2qN/Lm0m2a8yqyIjUVBZcxFPuXq2o=
312+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0/go.mod h1:C2NGBr+kAB4bk3xtMXfZ94gqFDtg/GkI7e9zqGh5Beg=
313+
go.opentelemetry.io/otel v1.42.0 h1:lSQGzTgVR3+sgJDAU/7/ZMjN9Z+vUip7leaqBKy4sho=
314+
go.opentelemetry.io/otel v1.42.0/go.mod h1:lJNsdRMxCUIWuMlVJWzecSMuNjE7dOYyWlqOXWkdqCc=
315+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.42.0 h1:THuZiwpQZuHPul65w4WcwEnkX2QIuMT+UFoOrygtoJw=
316+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.42.0/go.mod h1:J2pvYM5NGHofZ2/Ru6zw/TNWnEQp5crgyDeSrYpXkAw=
317+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.42.0 h1:uLXP+3mghfMf7XmV4PkGfFhFKuNWoCvvx5wP/wOXo0o=
318+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.42.0/go.mod h1:v0Tj04armyT59mnURNUJf7RCKcKzq+lgJs6QSjHjaTc=
319+
go.opentelemetry.io/otel/metric v1.42.0 h1:2jXG+3oZLNXEPfNmnpxKDeZsFI5o4J+nz6xUlaFdF/4=
320+
go.opentelemetry.io/otel/metric v1.42.0/go.mod h1:RlUN/7vTU7Ao/diDkEpQpnz3/92J9ko05BIwxYa2SSI=
321+
go.opentelemetry.io/otel/sdk v1.42.0 h1:LyC8+jqk6UJwdrI/8VydAq/hvkFKNHZVIWuslJXYsDo=
322+
go.opentelemetry.io/otel/sdk v1.42.0/go.mod h1:rGHCAxd9DAph0joO4W6OPwxjNTYWghRWmkHuGbayMts=
323+
go.opentelemetry.io/otel/sdk/metric v1.42.0 h1:D/1QR46Clz6ajyZ3G8SgNlTJKBdGp84q9RKCAZ3YGuA=
324+
go.opentelemetry.io/otel/sdk/metric v1.42.0/go.mod h1:Ua6AAlDKdZ7tdvaQKfSmnFTdHx37+J4ba8MwVCYM5hc=
325+
go.opentelemetry.io/otel/trace v1.42.0 h1:OUCgIPt+mzOnaUTpOQcBiM/PLQ/Op7oq6g4LenLmOYY=
326+
go.opentelemetry.io/otel/trace v1.42.0/go.mod h1:f3K9S+IFqnumBkKhRJMeaZeNk9epyhnCmQh/EysQCdc=
327327
go.opentelemetry.io/proto/otlp v1.9.0 h1:l706jCMITVouPOqEnii2fIAuO3IVGBRPV5ICjceRb/A=
328328
go.opentelemetry.io/proto/otlp v1.9.0/go.mod h1:xE+Cx5E/eEHw+ISFkwPLwCZefwVjY+pqKg1qcK03+/4=
329329
go.uber.org/mock v0.6.0 h1:hyF9dfmbgIX5EfOdasqLsWD6xqpNZlXblLB/Dbnwv3Y=
330330
go.uber.org/mock v0.6.0/go.mod h1:KiVJ4BqZJaMj4svdfmHM0AUx4NJYO8ZNpPnZn1Z+BBU=
331-
go.yaml.in/yaml/v2 v2.4.3 h1:6gvOSjQoTB3vt1l+CU+tSyi/HOjfOjRLJ4YwYZGwRO0=
332-
go.yaml.in/yaml/v2 v2.4.3/go.mod h1:zSxWcmIDjOzPXpjlTTbAsKokqkDNAVtZO0WOMiT90s8=
331+
go.yaml.in/yaml/v2 v2.4.4 h1:tuyd0P+2Ont/d6e2rl3be67goVK4R6deVxCUX5vyPaQ=
332+
go.yaml.in/yaml/v2 v2.4.4/go.mod h1:gMZqIpDtDqOfM0uNfy0SkpRhvUryYH0Z6wdMYcacYXQ=
333333
go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc=
334334
go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg=
335-
golang.org/x/arch v0.24.0 h1:qlJ3M9upxvFfwRM51tTg3Yl+8CP9vCC1E7vlFpgv99Y=
336-
golang.org/x/arch v0.24.0/go.mod h1:dNHoOeKiyja7GTvF9NJS1l3Z2yntpQNzgrjh1cU103A=
335+
golang.org/x/arch v0.25.0 h1:qnk6Ksugpi5Bz32947rkUgDt9/s5qvqDPl/gBKdMJLE=
336+
golang.org/x/arch v0.25.0/go.mod h1:0X+GdSIP+kL5wPmpK7sdkEVTt2XoYP0cSjQSbZBwOi8=
337337
golang.org/x/crypto v0.48.0 h1:/VRzVqiRSggnhY7gNRxPauEQ5Drw9haKdM0jqfcCFts=
338338
golang.org/x/crypto v0.48.0/go.mod h1:r0kV5h3qnFPlQnBSrULhlsRfryS2pmewsg+XfMgkVos=
339339
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 h1:aAcj0Da7eBAtrTp03QXWvm88pSyOt+UgdZw2BFZ+lEw=
@@ -342,32 +342,32 @@ golang.org/x/mod v0.33.0 h1:tHFzIWbBifEmbwtGz65eaWyGiGZatSrT9prnU8DbVL8=
342342
golang.org/x/mod v0.33.0/go.mod h1:swjeQEj+6r7fODbD2cqrnje9PnziFuw4bmLbBZFrQ5w=
343343
golang.org/x/net v0.51.0 h1:94R/GTO7mt3/4wIKpcR5gkGmRLOuE/2hNGeWq/GBIFo=
344344
golang.org/x/net v0.51.0/go.mod h1:aamm+2QF5ogm02fjy5Bb7CQ0WMt1/WVM7FtyaTLlA9Y=
345-
golang.org/x/sync v0.19.0 h1:vV+1eWNmZ5geRlYjzm2adRgW2/mcpevXNg50YZtPCE4=
346-
golang.org/x/sync v0.19.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI=
345+
golang.org/x/sync v0.20.0 h1:e0PTpb7pjO8GAtTs2dQ6jYa5BWYlMuX047Dco/pItO4=
346+
golang.org/x/sync v0.20.0/go.mod h1:9xrNwdLfx4jkKbNva9FpL6vEN7evnE43NNNJQ2LF3+0=
347347
golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
348348
golang.org/x/sys v0.0.0-20201204225414-ed752295db88/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
349349
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
350350
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
351351
golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
352352
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
353353
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
354-
golang.org/x/sys v0.41.0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k=
355-
golang.org/x/sys v0.41.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
354+
golang.org/x/sys v0.42.0 h1:omrd2nAlyT5ESRdCLYdm3+fMfNFE/+Rf4bDIQImRJeo=
355+
golang.org/x/sys v0.42.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
356356
golang.org/x/term v0.40.0 h1:36e4zGLqU4yhjlmxEaagx2KuYbJq3EwY8K943ZsHcvg=
357357
golang.org/x/term v0.40.0/go.mod h1:w2P8uVp06p2iyKKuvXIm7N/y0UCRt3UfJTfZ7oOpglM=
358358
golang.org/x/text v0.34.0 h1:oL/Qq0Kdaqxa1KbNeMKwQq0reLCCaFtqu2eNuSeNHbk=
359359
golang.org/x/text v0.34.0/go.mod h1:homfLqTYRFyVYemLBFl5GgL/DWEiH5wcsQ5gSh1yziA=
360-
golang.org/x/time v0.14.0 h1:MRx4UaLrDotUKUdCIqzPC48t1Y9hANFKIRpNx+Te8PI=
361-
golang.org/x/time v0.14.0/go.mod h1:eL/Oa2bBBK0TkX57Fyni+NgnyQQN4LitPmob2Hjnqw4=
360+
golang.org/x/time v0.15.0 h1:bbrp8t3bGUeFOx08pvsMYRTCVSMk89u4tKbNOZbp88U=
361+
golang.org/x/time v0.15.0/go.mod h1:Y4YMaQmXwGQZoFaVFk4YpCt4FLQMYKZe9oeV/f4MSno=
362362
golang.org/x/tools v0.42.0 h1:uNgphsn75Tdz5Ji2q36v/nsFSfR/9BRFvqhGBaJGd5k=
363363
golang.org/x/tools v0.42.0/go.mod h1:Ma6lCIwGZvHK6XtgbswSoWroEkhugApmsXyrUmBhfr0=
364364
google.golang.org/genproto v0.0.0-20250603155806-513f23925822 h1:rHWScKit0gvAPuOnu87KpaYtjK5zBMLcULh7gxkCXu4=
365-
google.golang.org/genproto/googleapis/api v0.0.0-20260128011058-8636f8732409 h1:merA0rdPeUV3YIIfHHcH4qBkiQAc1nfCKSI7lB4cV2M=
366-
google.golang.org/genproto/googleapis/api v0.0.0-20260128011058-8636f8732409/go.mod h1:fl8J1IvUjCilwZzQowmw2b7HQB2eAuYBabMXzWurF+I=
367-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260128011058-8636f8732409 h1:H86B94AW+VfJWDqFeEbBPhEtHzJwJfTbgE2lZa54ZAQ=
368-
google.golang.org/genproto/googleapis/rpc v0.0.0-20260128011058-8636f8732409/go.mod h1:j9x/tPzZkyxcgEFkiKEEGxfvyumM01BEtsW8xzOahRQ=
369-
google.golang.org/grpc v1.78.0 h1:K1XZG/yGDJnzMdd/uZHAkVqJE+xIDOcmdSFZkBUicNc=
370-
google.golang.org/grpc v1.78.0/go.mod h1:I47qjTo4OKbMkjA/aOOwxDIiPSBofUtQUI5EfpWvW7U=
365+
google.golang.org/genproto/googleapis/api v0.0.0-20260209200024-4cfbd4190f57 h1:JLQynH/LBHfCTSbDWl+py8C+Rg/k1OVH3xfcaiANuF0=
366+
google.golang.org/genproto/googleapis/api v0.0.0-20260209200024-4cfbd4190f57/go.mod h1:kSJwQxqmFXeo79zOmbrALdflXQeAYcUbgS7PbpMknCY=
367+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260209200024-4cfbd4190f57 h1:mWPCjDEyshlQYzBpMNHaEof6UX1PmHcaUODUywQ0uac=
368+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260209200024-4cfbd4190f57/go.mod h1:j9x/tPzZkyxcgEFkiKEEGxfvyumM01BEtsW8xzOahRQ=
369+
google.golang.org/grpc v1.79.2 h1:fRMD94s2tITpyJGtBBn7MkMseNpOZU8ZxgC3MMBaXRU=
370+
google.golang.org/grpc v1.79.2/go.mod h1:KmT0Kjez+0dde/v2j9vzwoAScgEPx/Bw1CYChhHLrHQ=
371371
google.golang.org/protobuf v1.36.11 h1:fV6ZwhNocDyBLK0dj+fg8ektcVegBBuEolpbTQyBNVE=
372372
google.golang.org/protobuf v1.36.11/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco=
373373
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

0 commit comments

Comments
 (0)