Skip to content

Commit 165a27c

Browse files
build(deps): Bump github.com/evanphx/json-patch/v5 from 5.7.0 to 5.8.1 in /common (#302)
Bumps [github.com/evanphx/json-patch/v5](https://github.com/evanphx/json-patch) from 5.7.0 to 5.8.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/evanphx/json-patch/releases">github.com/evanphx/json-patch/v5's releases</a>.</em></p> <blockquote> <h2>Fix API breakage</h2> <p>This PR fixes Operation containing a reference to internal/json and breaking the ability to manually compose one. This restores that ability using a type alias.</p> <p><strong>Full Changelog</strong>: <a href="https://github.com/evanphx/json-patch/compare/v5.8.0...v5.8.1">https://github.com/evanphx/json-patch/compare/v5.8.0...v5.8.1</a></p> <h2>Blargh Phixs and Empathyprovements</h2> <p>This release fixes a few stray panics, addresses large number accuracy, and improves performance!</p> <h2>What's Changed</h2> <ul> <li>Compare strings after decoding them to handle unicode correctly. Fixes <a href="https://redirect.github.com/evanphx/json-patch/issues/172">#172</a> by <a href="https://github.com/evanphx"><code>@​evanphx</code></a> in <a href="https://redirect.github.com/evanphx/json-patch/pull/195">evanphx/json-patch#195</a></li> <li>Always use UseNumber() to avoid float64 lossyness by <a href="https://github.com/evanphx"><code>@​evanphx</code></a> in <a href="https://redirect.github.com/evanphx/json-patch/pull/194">evanphx/json-patch#194</a></li> <li>Handle null correctly when introduced by replace. Fixes <a href="https://redirect.github.com/evanphx/json-patch/issues/171">#171</a> by <a href="https://github.com/evanphx"><code>@​evanphx</code></a> in <a href="https://redirect.github.com/evanphx/json-patch/pull/196">evanphx/json-patch#196</a></li> <li>Handle from=&quot;&quot; more properly. Fixes <a href="https://redirect.github.com/evanphx/json-patch/issues/192">#192</a> by <a href="https://github.com/evanphx"><code>@​evanphx</code></a> in <a href="https://redirect.github.com/evanphx/json-patch/pull/193">evanphx/json-patch#193</a></li> <li>Improve performance by <a href="https://github.com/evanphx"><code>@​evanphx</code></a> in <a href="https://redirect.github.com/evanphx/json-patch/pull/197">evanphx/json-patch#197</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/evanphx/json-patch/compare/v5.7.0...v5.8.0">https://github.com/evanphx/json-patch/compare/v5.7.0...v5.8.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanphx/json-patch/commit/b82b685c982b26399c940fc89be030f343570192"><code>b82b685</code></a> Use a type alias for RawMessage to avoid breaking the public API of Operation</li> <li><a href="https://github.com/evanphx/json-patch/commit/05c952675fb54a42b0120d9602a65958001d1dce"><code>05c9526</code></a> Merge pull request <a href="https://redirect.github.com/evanphx/json-patch/issues/197">#197</a> from evanphx/f-perf</li> <li><a href="https://github.com/evanphx/json-patch/commit/7a438a6eed18be914c52bcfa1730199931f7bd1e"><code>7a438a6</code></a> Minor simplifications</li> <li><a href="https://github.com/evanphx/json-patch/commit/2a122d1880d16ec5c5e34fc9adff482ebb029ca5"><code>2a122d1</code></a> More optimizations</li> <li><a href="https://github.com/evanphx/json-patch/commit/174e1d7a1f84118ba7030d46ac371d331060b798"><code>174e1d7</code></a> Add MergePatch benchmark</li> <li><a href="https://github.com/evanphx/json-patch/commit/7b8895c9258ff24a26f3a7e0ecd46bea33d7a573"><code>7b8895c</code></a> Use internal/json</li> <li><a href="https://github.com/evanphx/json-patch/commit/f18a4986aaf1c188fda8cd29a842f080e1c0ba38"><code>f18a498</code></a> Import version of encoding/json, alter to track key order</li> <li><a href="https://github.com/evanphx/json-patch/commit/a9c085a75a5541ebc19b239ff620078cdf51942e"><code>a9c085a</code></a> Merge pull request <a href="https://redirect.github.com/evanphx/json-patch/issues/193">#193</a> from evanphx/b-empty-from</li> <li><a href="https://github.com/evanphx/json-patch/commit/e8ab61f4a0e6205bbed116ee7c172f22554ecb2e"><code>e8ab61f</code></a> Catch IO advancement errors as well</li> <li><a href="https://github.com/evanphx/json-patch/commit/c645ff441b0958be0c723b43e1eb95f2746d3a0e"><code>c645ff4</code></a> Handle <code>add</code> with path=&quot;&quot;. Fixes <a href="https://redirect.github.com/evanphx/json-patch/issues/188">#188</a></li> <li>Additional commits viewable in <a href="https://github.com/evanphx/json-patch/compare/v5.7.0...v5.8.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/evanphx/json-patch/v5&package-manager=go_modules&previous-version=5.7.0&new-version=5.8.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jimmi Dyson <[email protected]>
1 parent cb43fed commit 165a27c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

common/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module github.com/d2iq-labs/capi-runtime-extensions/common
66
go 1.21
77

88
require (
9-
github.com/evanphx/json-patch/v5 v5.7.0
9+
github.com/evanphx/json-patch/v5 v5.8.1
1010
github.com/go-logr/logr v1.4.1
1111
github.com/onsi/gomega v1.31.1
1212
github.com/spf13/pflag v1.0.5

common/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ github.com/emicklei/go-restful/v3 v3.11.0 h1:rAQeMHw1c7zTmncogyy8VvRZwtkmkZ4FxER
2424
github.com/emicklei/go-restful/v3 v3.11.0/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc=
2525
github.com/evanphx/json-patch v5.6.0+incompatible h1:jBYDEEiFBPxA0v50tFdvOzQQTCvpL6mnFh5mB2/l16U=
2626
github.com/evanphx/json-patch v5.6.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk=
27-
github.com/evanphx/json-patch/v5 v5.7.0 h1:nJqP7uwL84RJInrohHfW0Fx3awjbm8qZeFv0nW9SYGc=
28-
github.com/evanphx/json-patch/v5 v5.7.0/go.mod h1:VNkHZ/282BpEyt/tObQO8s5CMPmYYq14uClGH4abBuQ=
27+
github.com/evanphx/json-patch/v5 v5.8.1 h1:iPEdwg0XayoS+E7Mth9JxwUtOgyVxnDTXHtKhZPlZxA=
28+
github.com/evanphx/json-patch/v5 v5.8.1/go.mod h1:VNkHZ/282BpEyt/tObQO8s5CMPmYYq14uClGH4abBuQ=
2929
github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg=
3030
github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U=
3131
github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA=

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ require (
3636
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3737
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
3838
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
39-
github.com/evanphx/json-patch/v5 v5.8.0 // indirect
39+
github.com/evanphx/json-patch/v5 v5.8.1 // indirect
4040
github.com/fsnotify/fsnotify v1.7.0 // indirect
4141
github.com/go-openapi/jsonpointer v0.19.6 // indirect
4242
github.com/go-openapi/jsonreference v0.20.2 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ github.com/emicklei/go-restful/v3 v3.11.0 h1:rAQeMHw1c7zTmncogyy8VvRZwtkmkZ4FxER
3939
github.com/emicklei/go-restful/v3 v3.11.0/go.mod h1:6n3XBCmQQb25CM2LCACGz8ukIrRry+4bhvbpWn3mrbc=
4040
github.com/evanphx/json-patch v5.6.0+incompatible h1:jBYDEEiFBPxA0v50tFdvOzQQTCvpL6mnFh5mB2/l16U=
4141
github.com/evanphx/json-patch v5.6.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk=
42-
github.com/evanphx/json-patch/v5 v5.8.0 h1:lRj6N9Nci7MvzrXuX6HFzU8XjmhPiXPlsKEy1u0KQro=
43-
github.com/evanphx/json-patch/v5 v5.8.0/go.mod h1:VNkHZ/282BpEyt/tObQO8s5CMPmYYq14uClGH4abBuQ=
42+
github.com/evanphx/json-patch/v5 v5.8.1 h1:iPEdwg0XayoS+E7Mth9JxwUtOgyVxnDTXHtKhZPlZxA=
43+
github.com/evanphx/json-patch/v5 v5.8.1/go.mod h1:VNkHZ/282BpEyt/tObQO8s5CMPmYYq14uClGH4abBuQ=
4444
github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg=
4545
github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U=
4646
github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA=

0 commit comments

Comments
 (0)