[PR #56] [MERGED] chore(deps): bump github.com/json-iterator/go from 1.1.9 to 1.1.11 #129

Closed
opened 2026-03-03 11:56:20 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Finb/bark-server/pull/56
Author: @dependabot[bot]
Created: 5/7/2021
Status: Merged
Merged: 5/7/2021
Merged by: @mritd

Base: masterHead: dependabot/go_modules/github.com/json-iterator/go-1.1.11


📝 Commits (1)

  • 7bd6d1d chore(deps): bump github.com/json-iterator/go from 1.1.9 to 1.1.11

📊 Changes

2 files changed (+7 additions, -22 deletions)

View changed files

📝 go.mod (+4 -3)
📝 go.sum (+3 -19)

📄 Description

Bumps github.com/json-iterator/go from 1.1.9 to 1.1.11.

Release notes

Sourced from github.com/json-iterator/go's releases.

bug fix

  • Fixed json iter doesn't work properly with nil RawMessage #469
  • Fixed null in number json tag string (#480)
  • Fixed errors during reading integers from chunked io.Reader #477
  • Fixed nil pointer panic when Unmarshal with a empty file #508
  • Fixed [float string]different result vs origin after call Marshal & Unmarshal #510

bug fix

  • Fix #459 map keys of custom types should serialize using MarshalText when available
  • Fix potential panic in (*stringAny).ToInt64 and (*stringAny).ToUint64(see #450)
  • Fix #449 do NOT marshal the field whose name start with underscore
  • Reuse stream buffer and remove flush in (*Stream).WriteMore(see #441 #440)
  • Fix #421 simplify the error string returned by the decoder when it meets error unmarshaling anonymous structs
  • Fix #389 #411 do NOT marshal the json.RawMessage type field whose real type is integer/float as "null" with ValidateJsonRawMessage option enabled
  • Fix #326 do Not marshal private field after calling extra.SetNamingStrategy() to register naming strategy extension
Commits

Dependabot compatibility score

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 commands and options

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 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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Finb/bark-server/pull/56 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 5/7/2021 **Status:** ✅ Merged **Merged:** 5/7/2021 **Merged by:** [@mritd](https://github.com/mritd) **Base:** `master` ← **Head:** `dependabot/go_modules/github.com/json-iterator/go-1.1.11` --- ### 📝 Commits (1) - [`7bd6d1d`](https://github.com/Finb/bark-server/commit/7bd6d1d496fe0178a0f71a374cb8733e9a398986) chore(deps): bump github.com/json-iterator/go from 1.1.9 to 1.1.11 ### 📊 Changes **2 files changed** (+7 additions, -22 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+4 -3) 📝 `go.sum` (+3 -19) </details> ### 📄 Description Bumps [github.com/json-iterator/go](https://github.com/json-iterator/go) from 1.1.9 to 1.1.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/json-iterator/go/releases">github.com/json-iterator/go's releases</a>.</em></p> <blockquote> <h2>bug fix</h2> <ul> <li>Fixed json iter doesn't work properly with nil RawMessage <a href="https://github-redirect.dependabot.com/json-iterator/go/issues/469">#469</a></li> <li>Fixed null in number json tag string (<a href="https://github-redirect.dependabot.com/json-iterator/go/issues/480">#480</a>)</li> <li>Fixed errors during reading integers from chunked io.Reader <a href="https://github-redirect.dependabot.com/json-iterator/go/issues/477">#477</a></li> <li>Fixed nil pointer panic when Unmarshal with a empty file <a href="https://github-redirect.dependabot.com/json-iterator/go/issues/508">#508</a></li> <li>Fixed [float string]different result vs origin after call Marshal &amp; Unmarshal <a href="https://github-redirect.dependabot.com/json-iterator/go/issues/510">#510</a></li> </ul> <h2>bug fix</h2> <ul> <li>Fix <a href="https://github-redirect.dependabot.com/json-iterator/go/issues/459">#459</a> map keys of custom types should serialize using <code>MarshalText</code> when available</li> <li>Fix potential panic in <code>(*stringAny).ToInt64</code> and <code>(*stringAny).ToUint64</code>(see <a href="https://github-redirect.dependabot.com/json-iterator/go/issues/450">#450</a>)</li> <li>Fix <a href="https://github-redirect.dependabot.com/json-iterator/go/issues/449">#449</a> do NOT marshal the field whose name start with underscore</li> <li>Reuse stream buffer and remove flush in <code>(*Stream).WriteMore</code>(see <a href="https://github-redirect.dependabot.com/json-iterator/go/issues/441">#441</a> <a href="https://github-redirect.dependabot.com/json-iterator/go/issues/440">#440</a>)</li> <li>Fix <a href="https://github-redirect.dependabot.com/json-iterator/go/issues/421">#421</a> simplify the error string returned by the decoder when it meets error unmarshaling anonymous structs</li> <li>Fix <a href="https://github-redirect.dependabot.com/json-iterator/go/issues/389">#389</a> <a href="https://github-redirect.dependabot.com/json-iterator/go/issues/411">#411</a> do NOT marshal the <code>json.RawMessage</code> type field whose real type is integer/float as &quot;null&quot; with <code>ValidateJsonRawMessage</code> option enabled</li> <li>Fix <a href="https://github-redirect.dependabot.com/json-iterator/go/issues/326">#326</a> do Not marshal private field after calling <code>extra.SetNamingStrategy()</code> to register naming strategy extension</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/json-iterator/go/commit/e6b9536d3649bda3e8842bb7e4fab489d79a97ea"><code>e6b9536</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/json-iterator/go/issues/513">#513</a> from AllenX2018/fix-issue-510</li> <li><a href="https://github.com/json-iterator/go/commit/a3465d79a9477031d76eae58790ac95779b2f96c"><code>a3465d7</code></a> fix issue 510</li> <li><a href="https://github.com/json-iterator/go/commit/9b79a3e192841919b764721e736ffa3e5529473a"><code>9b79a3e</code></a> fix issue 508 (<a href="https://github-redirect.dependabot.com/json-iterator/go/issues/512">#512</a>)</li> <li><a href="https://github.com/json-iterator/go/commit/1779031cdaac0978eb04873e64ef2c5f53748c29"><code>1779031</code></a> fix issue 508</li> <li><a href="https://github.com/json-iterator/go/commit/6821bec9fa5c17f697f0f2f77ac5055e41a203ac"><code>6821bec</code></a> jsoniter: Fix errors during reading integers from chunked io.Reader (<a href="https://github-redirect.dependabot.com/json-iterator/go/issues/477">#477</a>)</li> <li><a href="https://github.com/json-iterator/go/commit/9461257643af4e53139afb97f3b4b6144cf8327b"><code>9461257</code></a> fixed null in number json tag string (<a href="https://github-redirect.dependabot.com/json-iterator/go/issues/480">#480</a>)</li> <li><a href="https://github.com/json-iterator/go/commit/5bce16d299eb21bb5a80aa37151d805c37acd79d"><code>5bce16d</code></a> fix issue <a href="https://github-redirect.dependabot.com/json-iterator/go/issues/469">#469</a></li> <li><a href="https://github.com/json-iterator/go/commit/a1ca0830781e007c66b225121d2cdb3a649421f6"><code>a1ca083</code></a> update readme (<a href="https://github-redirect.dependabot.com/json-iterator/go/issues/464">#464</a>)</li> <li><a href="https://github.com/json-iterator/go/commit/cd6773e6944114ea90406b116767ec1ec1105592"><code>cd6773e</code></a> remove quotation check for key when decoding map</li> <li><a href="https://github.com/json-iterator/go/commit/55287ed53a0aca60fb6556a660240938befdf1ef"><code>55287ed</code></a> disable map_key_test temporarily</li> <li>Additional commits viewable in <a href="https://github.com/json-iterator/go/compare/v1.1.9...v1.1.11">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/json-iterator/go&package-manager=go_modules&previous-version=1.1.9&new-version=1.1.11)](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 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> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 11:56:20 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/bark-server#129
No description provided.