Commit 4e57f18
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.
-> 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 & 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- pkg
- configReader/helper
- openSearch/openSearchClient
4 files changed
+107
-88
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| |||
65 | 65 | | |
66 | 66 | | |
67 | 67 | | |
68 | | - | |
69 | | - | |
70 | | - | |
71 | | - | |
72 | | - | |
73 | | - | |
74 | | - | |
75 | | - | |
76 | | - | |
77 | | - | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
78 | 78 | | |
79 | 79 | | |
80 | 80 | | |
| |||
130 | 130 | | |
131 | 131 | | |
132 | 132 | | |
133 | | - | |
134 | | - | |
135 | | - | |
136 | | - | |
137 | | - | |
138 | | - | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
139 | 139 | | |
140 | | - | |
| 140 | + | |
141 | 141 | | |
142 | 142 | | |
143 | | - | |
144 | | - | |
| 143 | + | |
| 144 | + | |
145 | 145 | | |
146 | | - | |
| 146 | + | |
147 | 147 | | |
148 | 148 | | |
149 | 149 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
86 | 86 | | |
87 | 87 | | |
88 | 88 | | |
89 | | - | |
90 | | - | |
91 | | - | |
92 | | - | |
93 | | - | |
94 | | - | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
95 | 95 | | |
96 | | - | |
97 | | - | |
98 | | - | |
99 | | - | |
100 | | - | |
101 | | - | |
102 | | - | |
103 | | - | |
104 | | - | |
105 | | - | |
106 | | - | |
107 | | - | |
108 | | - | |
109 | | - | |
110 | | - | |
111 | | - | |
112 | | - | |
113 | | - | |
114 | | - | |
115 | | - | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
116 | 116 | | |
117 | 117 | | |
118 | 118 | | |
| |||
136 | 136 | | |
137 | 137 | | |
138 | 138 | | |
139 | | - | |
140 | | - | |
| 139 | + | |
| 140 | + | |
141 | 141 | | |
142 | 142 | | |
143 | 143 | | |
| |||
243 | 243 | | |
244 | 244 | | |
245 | 245 | | |
246 | | - | |
247 | | - | |
| 246 | + | |
| 247 | + | |
248 | 248 | | |
249 | 249 | | |
250 | 250 | | |
| |||
308 | 308 | | |
309 | 309 | | |
310 | 310 | | |
311 | | - | |
312 | | - | |
313 | | - | |
314 | | - | |
315 | | - | |
316 | | - | |
317 | | - | |
318 | | - | |
319 | | - | |
320 | | - | |
321 | | - | |
322 | | - | |
323 | | - | |
324 | | - | |
325 | | - | |
326 | | - | |
| 311 | + | |
| 312 | + | |
| 313 | + | |
| 314 | + | |
| 315 | + | |
| 316 | + | |
| 317 | + | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
| 322 | + | |
| 323 | + | |
| 324 | + | |
| 325 | + | |
| 326 | + | |
327 | 327 | | |
328 | 328 | | |
329 | 329 | | |
330 | 330 | | |
331 | | - | |
332 | | - | |
| 331 | + | |
| 332 | + | |
333 | 333 | | |
334 | 334 | | |
335 | | - | |
336 | | - | |
| 335 | + | |
| 336 | + | |
337 | 337 | | |
338 | 338 | | |
339 | 339 | | |
| |||
342 | 342 | | |
343 | 343 | | |
344 | 344 | | |
345 | | - | |
346 | | - | |
| 345 | + | |
| 346 | + | |
347 | 347 | | |
348 | 348 | | |
349 | 349 | | |
350 | 350 | | |
351 | 351 | | |
352 | 352 | | |
353 | 353 | | |
354 | | - | |
355 | | - | |
| 354 | + | |
| 355 | + | |
356 | 356 | | |
357 | 357 | | |
358 | 358 | | |
359 | 359 | | |
360 | | - | |
361 | | - | |
| 360 | + | |
| 361 | + | |
362 | 362 | | |
363 | 363 | | |
364 | 364 | | |
365 | | - | |
366 | | - | |
367 | | - | |
368 | | - | |
369 | | - | |
370 | | - | |
| 365 | + | |
| 366 | + | |
| 367 | + | |
| 368 | + | |
| 369 | + | |
| 370 | + | |
371 | 371 | | |
372 | 372 | | |
373 | 373 | | |
| |||
0 commit comments