Skip to content

Commit

Permalink
Bump github.com/itchyny/gojq from 0.12.14 to 0.12.15 (#7652)
Browse files Browse the repository at this point in the history
Bumps [github.com/itchyny/gojq](https://github.com/itchyny/gojq) from
0.12.14 to 0.12.15.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/itchyny/gojq/releases">github.com/itchyny/gojq's
releases</a>.</em></p>
<blockquote>
<h2>Release v0.12.15</h2>
<ul>
<li>implement <code>ltrim</code>, <code>rtrim</code>, and
<code>trim</code> functions</li>
<li>implement <code>gojq.ParseError</code> for getting the offset and
token of query parsing error</li>
<li>implement <code>gojq.HaltError</code> for detecting halt errors and
stopping outer iteration</li>
<li>fix object construction with duplicate keys (<code>{x:0,y:1} |
{a:.x,a:.y}</code>)</li>
<li>fix <code>halt</code> and <code>halt_error</code> functions to stop
the command execution immediately</li>
<li>fix variable scope of binding syntax (<code>&quot;a&quot; as $v |
def f: $v; &quot;b&quot; as $v | f</code>)</li>
<li>fix pre-defined variables to be available in initial modules
(<code>$ARGS</code> in <code>~/.jq</code>)</li>
<li>fix <code>ltrimstr</code> and <code>rtrimstr</code> functions to
emit error on non-string input</li>
<li>fix <code>nearbyint</code> and <code>rint</code> functions to round
ties to even</li>
<li>improve parser to allow <code>reduce</code>, <code>foreach</code>,
<code>if</code>, <code>try</code>-<code>catch</code> syntax as object
values</li>
<li>remove <code>pow10</code> in favor of <code>exp10</code>, define
<code>scalbn</code> and <code>scalbln</code> by <code>ldexp</code></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/itchyny/gojq/blob/main/CHANGELOG.md">github.com/itchyny/gojq's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/itchyny/gojq/compare/v0.12.14..v0.12.15">v0.12.15</a>
(2024-04-01)</h2>
<ul>
<li>implement <code>ltrim</code>, <code>rtrim</code>, and
<code>trim</code> functions</li>
<li>implement <code>gojq.ParseError</code> for getting the offset and
token of query parsing error</li>
<li>implement <code>gojq.HaltError</code> for detecting halt errors and
stopping outer iteration</li>
<li>fix object construction with duplicate keys (<code>{x:0,y:1} |
{a:.x,a:.y}</code>)</li>
<li>fix <code>halt</code> and <code>halt_error</code> functions to stop
the command execution immediately</li>
<li>fix variable scope of binding syntax (<code>&quot;a&quot; as $v |
def f: $v; &quot;b&quot; as $v | f</code>)</li>
<li>fix pre-defined variables to be available in initial modules
(<code>$ARGS</code> in <code>~/.jq</code>)</li>
<li>fix <code>ltrimstr</code> and <code>rtrimstr</code> functions to
emit error on non-string input</li>
<li>fix <code>nearbyint</code> and <code>rint</code> functions to round
ties to even</li>
<li>improve parser to allow <code>reduce</code>, <code>foreach</code>,
<code>if</code>, <code>try</code>-<code>catch</code> syntax as object
values</li>
<li>remove <code>pow10</code> in favor of <code>exp10</code>, define
<code>scalbn</code> and <code>scalbln</code> by <code>ldexp</code></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/itchyny/gojq/commit/ca9fd97cd6247319f0bf999a670814bc1a3b071f"><code>ca9fd97</code></a>
bump up version to 0.12.15</li>
<li><a
href="https://github.com/itchyny/gojq/commit/3b43597c280e00fa4893b4db686a15666b53d0b8"><code>3b43597</code></a>
update CHANGELOG.md for v0.12.15</li>
<li><a
href="https://github.com/itchyny/gojq/commit/88cca901830ded08488195172fca4e313b553a42"><code>88cca90</code></a>
update jq differences to clarify regular expression differences</li>
<li><a
href="https://github.com/itchyny/gojq/commit/79e6f53f49be4a9bf1b6b64eb81dc769bad22804"><code>79e6f53</code></a>
add document comments to methods of HaltError</li>
<li><a
href="https://github.com/itchyny/gojq/commit/13da5a1e1ff5b900b21e3bb1becb8499af6231a8"><code>13da5a1</code></a>
login to Docker registries only when pushing a tag</li>
<li><a
href="https://github.com/itchyny/gojq/commit/e7e015b76e260ab5c333d0d5f384921b92dfe990"><code>e7e015b</code></a>
update dependencies</li>
<li><a
href="https://github.com/itchyny/gojq/commit/2cc65b621eba3357cad1b2d6d93f53ede6c13e27"><code>2cc65b6</code></a>
improve .gitattributes to mark generated files</li>
<li><a
href="https://github.com/itchyny/gojq/commit/bbbbe84b10fe3f67feda3cacf4cde89b46ff511d"><code>bbbbe84</code></a>
export HaltError struct type not interface</li>
<li><a
href="https://github.com/itchyny/gojq/commit/c8171c6b148dd6fbc2d4d5494f225ecb85294054"><code>c8171c6</code></a>
align caret in error messages using width specifier</li>
<li><a
href="https://github.com/itchyny/gojq/commit/57cf5532430f18acabdc0783499d3cf71024eb52"><code>57cf553</code></a>
move Parse to query.go to enable document comments</li>
<li>Additional commits viewable in <a
href="https://github.com/itchyny/gojq/compare/v0.12.14...v0.12.15">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/itchyny/gojq&package-manager=go_modules&previous-version=0.12.14&new-version=0.12.15)](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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Apr 2, 2024
1 parent bd76436 commit 24a5dc1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ require (
github.com/google/go-containerregistry v0.19.1
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1
github.com/itchyny/gojq v0.12.14
github.com/itchyny/gojq v0.12.15
github.com/jinzhu/copier v0.4.0
github.com/lib/pq v1.10.9
github.com/mitchellh/go-homedir v1.1.0
Expand Down Expand Up @@ -192,7 +192,7 @@ require (
github.com/prometheus/client_model v0.5.0 // indirect
github.com/prometheus/common v0.45.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/rubenv/sql-migrate v1.5.2 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/sagikazarmark/locafero v0.4.0 // indirect
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -498,8 +498,8 @@ github.com/imdario/mergo v0.3.16/go.mod h1:WBLT9ZmE3lPoWsEzCh9LPo3TiwVN+ZKEjmz+h
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
github.com/itchyny/gojq v0.12.14 h1:6k8vVtsrhQSYgSGg827AD+PVVaB1NLXEdX+dda2oZCc=
github.com/itchyny/gojq v0.12.14/go.mod h1:y1G7oO7XkcR1LPZO59KyoCRy08T3j9vDYRV0GgYSS+s=
github.com/itchyny/gojq v0.12.15 h1:WC1Nxbx4Ifw5U2oQWACYz32JK8G9qxNtHzrvW4KEcqI=
github.com/itchyny/gojq v0.12.15/go.mod h1:uWAHCbCIla1jiNxmeT5/B5mOjSdfkCq6p8vxWg+BM10=
github.com/itchyny/timefmt-go v0.1.5 h1:G0INE2la8S6ru/ZI5JecgyzbbJNs5lG1RcBqa7Jm6GE=
github.com/itchyny/timefmt-go v0.1.5/go.mod h1:nEP7L+2YmAbT2kZ2HfSs1d8Xtw9LY8D2stDBckWakZ8=
github.com/jinzhu/copier v0.4.0 h1:w3ciUoD19shMCRargcpm0cm91ytaBhDvuRpz1ODO/U8=
Expand Down Expand Up @@ -716,8 +716,8 @@ github.com/redis/go-redis/extra/redisotel/v9 v9.0.5/go.mod h1:WZjPDy7VNzn77AAfnA
github.com/redis/go-redis/v9 v9.1.0 h1:137FnGdk+EQdCbye1FW+qOEcY5S+SpY9T0NiuqvtfMY=
github.com/redis/go-redis/v9 v9.1.0/go.mod h1:urWj3He21Dj5k4TK1y59xH8Uj6ATueP8AH1cY3lZl4c=
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis=
github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ=
github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M=
Expand Down

0 comments on commit 24a5dc1

Please sign in to comment.