SIGN IN SIGN UP

Bump json from 2.11.1 to 2.19.9 in /apps/macos-example (#4345)

Bumps [json](https://github.com/ruby/json) from 2.11.1 to 2.19.9.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/ruby/json/releases">json's
releases</a>.</em></p>
<blockquote>
<h2>v2.19.9</h2>
<ul>
<li>Fix buffer overflow that could lead to a crash when writing JSON
directly into an IO
with <code>JSON.generate(object, io)</code>. [CVE-2026-54696].</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/ruby/json/compare/v2.19.8...v2.19.9">https://github.com/ruby/json/compare/v2.19.8...v2.19.9</a></p>
<h2>v2.19.8</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix 1-byte buffer overread on EOS errors.</li>
<li>Handle invalid types passed as <code>max_nesting</code> option.</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/ruby/json/compare/v2.19.7...v2.19.8">https://github.com/ruby/json/compare/v2.19.7...v2.19.8</a></p>
<h2>v2.19.7</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix some more edge cases with out of range floats.</li>
<li>Ensure the string provided to <code>JSON.parse</code> can't be
mutated during parsing.</li>
<li>Add missing write barriers in <code>State#dup</code>.</li>
<li>Further validate generator <code>depth</code> config.</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/ruby/json/compare/v2.19.6...v2.19.7">https://github.com/ruby/json/compare/v2.19.6...v2.19.7</a></p>
<h2>v2.19.6</h2>
<h2>What's Changed</h2>
<ul>
<li>Cleanly handle overly large <code>depth</code> generator
argument.</li>
<li>Add missing write barrier in <code>ParserConfig</code>.</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/ruby/json/compare/v2.19.5...v2.19.6">https://github.com/ruby/json/compare/v2.19.5...v2.19.6</a></p>
<h2>v2.19.5</h2>
<h2>What's Changed</h2>
<ul>
<li>Cap the parser to emit a maximum of 5 deprecation warnings per
document. Emitting more is not helpful.</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/ruby/json/compare/v2.19.4...v2.19.5">https://github.com/ruby/json/compare/v2.19.4...v2.19.5</a></p>
<h2>v2.19.4</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix parsing of out of range floats (very large exponents that lead
to either <code>0.0</code> or <code>Inf</code>).</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/ruby/json/compare/v2.19.2...v2.19.4">https://github.com/ruby/json/compare/v2.19.2...v2.19.4</a></p>
<h2>v2.19.3</h2>
<ul>
<li>Fix handling of unescaped control characters preceeded by a
backslash.</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/ruby/json/compare/v2.19.2...v2.19.3">https://github.com/ruby/json/compare/v2.19.2...v2.19.3</a></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/ruby/json/blob/master/CHANGES.md">json's
changelog</a>.</em></p>
<blockquote>
<h3>2026-06-11 (2.19.9)</h3>
<ul>
<li>Fix buffer overflow that could lead to a crash when writing JSON
directly into an IO
with <code>JSON.generate(object, io)</code>. [CVE-2026-54696].</li>
</ul>
<h3>2026-06-03 (2.19.8)</h3>
<ul>
<li>Fix 1-byte buffer overread on EOS errors.</li>
<li>Handle invalid types passed as <code>max_nesting</code> option.</li>
</ul>
<h3>2026-05-28 (2.19.7)</h3>
<ul>
<li>Fix some more edge cases with out of range floats.</li>
<li>Ensure the string provided to <code>JSON.parse</code> can't be
mutated during parsing.</li>
<li>Add missing write barriers in <code>State#dup</code>.</li>
<li>Further validate generator <code>depth</code> config.</li>
</ul>
<h3>2026-05-28 (2.19.6)</h3>
<ul>
<li>Cleanly handle overly large <code>depth</code> generator
argument.</li>
<li>Add missing write barrier in <code>ParserConfig</code>.</li>
</ul>
<h3>2026-05-04 (2.19.5)</h3>
<ul>
<li>Cap the parser to emit a maximum of 5 deprecation warnings per
document. Emitting more is not helpful.</li>
</ul>
<h3>2026-04-19 (2.19.4)</h3>
<ul>
<li>Fix parsing of out of range floats (very large exponents that lead
to either <code>0.0</code> or <code>Inf</code>).</li>
</ul>
<h3>2026-03-25 (2.19.3)</h3>
<ul>
<li>Fix handling of unescaped control characters preceeded by a
backslash.</li>
</ul>
<h3>2026-03-18 (2.19.2)</h3>
<ul>
<li>Fix a format string injection vulnerability in <code>JSON.parse(doc,
allow_duplicate_key: false)</code>. <code>CVE-2026-33210</code>.</li>
</ul>
<h3>2026-03-08 (2.19.1)</h3>
<ul>
<li>Fix a compiler dependent GC bug introduced in
<code>2.18.0</code>.</li>
</ul>
<h3>2026-03-06 (2.19.0)</h3>
<ul>
<li>Fix <code>allow_blank</code> parsing option to no longer allow
invalid types (e.g. <code>load([], allow_blank: true)</code> now raise a
type error).</li>
<li>Add <code>allow_invalid_escape</code> parsing option to ignore
backslashes that aren't followed by one of the valid escape
characters.</li>
</ul>
<h3>2026-02-03 (2.18.1)</h3>
<ul>
<li>Fix a potential crash in very specific circumstance if GC triggers
during a call to <code>to_json</code></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/ruby/json/commit/2cff2678d5af54890a49da58345ac141b571f661"><code>2cff267</code></a>
Release 2.19.9</li>
<li><a
href="https://github.com/ruby/json/commit/fd6a65bd08e5f3a429c03919ebfd8dd19158f095"><code>fd6a65b</code></a>
generator.c: don't start with a stack buffer in IO case</li>
<li><a
href="https://github.com/ruby/json/commit/5233dd9b851a4924f793aec1a1658ed8b66a34c7"><code>5233dd9</code></a>
Release 2.19.8</li>
<li><a
href="https://github.com/ruby/json/commit/3f44b26cf34f37e97065ff37f5eaecac69d5f28e"><code>3f44b26</code></a>
Prevent buffer over-read when generating EOF error</li>
<li><a
href="https://github.com/ruby/json/commit/be8d068a8eb1124fdc2273e102dc986edf1140f7"><code>be8d068</code></a>
Handle invalid types passed as <code>max_nesting</code> option</li>
<li><a
href="https://github.com/ruby/json/commit/59501c07de4257714d94a2d5bd44f08fad1a4a4c"><code>59501c0</code></a>
Get rid of all_images gem</li>
<li><a
href="https://github.com/ruby/json/commit/c7a7b2be6f20e52439f4fdc5263e9b539fc6ad6c"><code>c7a7b2b</code></a>
Add a security note in README</li>
<li><a
href="https://github.com/ruby/json/commit/ab6c8f2cdbc9cfa6079f5d0679afbc407a227c6d"><code>ab6c8f2</code></a>
Release 2.19.7</li>
<li><a
href="https://github.com/ruby/json/commit/f033b9d3421c450108913d724810938e2d055e84"><code>f033b9d</code></a>
Fix some more edge cases with out of range floats</li>
<li><a
href="https://github.com/ruby/json/commit/5ca8a67f52be73f68b7cd3b1f62809e3118c9d36"><code>5ca8a67</code></a>
parser.c: Ensure the user provided string can't be mutated</li>
<li>Additional commits viewable in <a
href="https://github.com/ruby/json/compare/v2.11.1...v2.19.9">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=json&package-manager=bundler&previous-version=2.11.1&new-version=2.19.9)](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 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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/software-mansion/react-native-gesture-handler/network/alerts).

</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
D
dependabot[bot] committed
79791437fe94e7e1980f95243f0ea15ff8f289bd
Parent: 6f4d4b4
Committed by GitHub <noreply@github.com> on 8/11/2026, 2:12:32 PM