Skip to content

Commit

Permalink
⬆️ Bump jsonschema from 4.17.3 to 4.19.0 (#411)
Browse files Browse the repository at this point in the history
Bumps [jsonschema](https://github.com/python-jsonschema/jsonschema) from
4.17.3 to 4.19.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/python-jsonschema/jsonschema/releases">jsonschema's
releases</a>.</em></p>
<blockquote>
<h2>v4.19.0</h2>
<!-- raw HTML omitted -->
<ul>
<li>Importing the <code>Validator</code> protocol directly from the
package root is deprecated. Import it from
<code>jsonschema.protocols.Validator</code> instead.</li>
<li>Automatic retrieval of remote references (which is still deprecated)
now properly succeeds even if the retrieved resource does not declare
which version of JSON Schema it uses. Such resources are assumed to be
2020-12 schemas. This more closely matches the
pre-<code>referencing</code> library behavior.</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/python-jsonschema/jsonschema/compare/v4.18.6...v4.19.0">https://github.com/python-jsonschema/jsonschema/compare/v4.18.6...v4.19.0</a></p>
<h2>v4.18.6</h2>
<!-- raw HTML omitted -->
<p><strong>Full Changelog</strong>: <a
href="https://github.com/python-jsonschema/jsonschema/compare/v4.18.5...v4.18.6">https://github.com/python-jsonschema/jsonschema/compare/v4.18.5...v4.18.6</a></p>
<h2>v4.18.5</h2>
<!-- raw HTML omitted -->
<ul>
<li>Declare support for Py3.12</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/python-jsonschema/jsonschema/compare/v4.18.4...v4.18.5">https://github.com/python-jsonschema/jsonschema/compare/v4.18.4...v4.18.5</a></p>
<h2>v4.18.4</h2>
<!-- raw HTML omitted -->
<ul>
<li>Improve the hashability of wrapped referencing exceptions when they
contain hashable data.</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/python-jsonschema/jsonschema/compare/v4.18.3...v4.18.4">https://github.com/python-jsonschema/jsonschema/compare/v4.18.3...v4.18.4</a></p>
<h2>v4.18.3</h2>
<!-- raw HTML omitted -->
<ul>
<li>Properly preserve <code>applicable_validators</code> in extended
validators.
Specifically, validators extending early drafts where siblings of
<code>$ref</code> were ignored will properly ignore siblings in the
extended validator.</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/python-jsonschema/jsonschema/compare/v4.18.2...v4.18.3">https://github.com/python-jsonschema/jsonschema/compare/v4.18.2...v4.18.3</a></p>
<h2>v4.18.2</h2>
<!-- raw HTML omitted -->
<ul>
<li>Fix an additional regression with the deprecated
<code>jsonschema.RefResolver</code> and pointer resolution.</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/python-jsonschema/jsonschema/compare/v4.18.1...v4.18.2">https://github.com/python-jsonschema/jsonschema/compare/v4.18.1...v4.18.2</a></p>
<h2>v4.18.1</h2>
<!-- raw HTML omitted -->
<ul>
<li>Fix a regression with jsonschema.RefResolver based resolution when
used in combination with a custom validation dialect (via
jsonschema.validators.create).</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/python-jsonschema/jsonschema/compare/v4.18.0...v4.18.1">https://github.com/python-jsonschema/jsonschema/compare/v4.18.0...v4.18.1</a></p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst">jsonschema's
changelog</a>.</em></p>
<blockquote>
<h1>v4.19.0</h1>
<ul>
<li>Importing the <code>Validator</code> protocol directly from the
package root is deprecated.
Import it from <code>jsonschema.protocols.Validator</code> instead.</li>
<li>Automatic retrieval of remote references (which is still deprecated)
now properly succeeds even if the retrieved resource does not declare
which version of JSON Schema it uses.
Such resources are assumed to be 2020-12 schemas.
This more closely matches the pre-referencing library behavior.</li>
</ul>
<h1>v4.18.6</h1>
<ul>
<li>Set a <code>jsonschema</code> specific user agent when automatically
retrieving remote references (which is deprecated).</li>
</ul>
<h1>v4.18.5</h1>
<ul>
<li>Declare support for Py3.12</li>
</ul>
<h1>v4.18.4</h1>
<ul>
<li>Improve the hashability of wrapped referencing exceptions when they
contain hashable data.</li>
</ul>
<h1>v4.18.3</h1>
<ul>
<li>Properly preserve <code>applicable_validators</code> in extended
validators.
Specifically, validators extending early drafts where siblings of
<code>$ref</code> were ignored will properly ignore siblings in the
extended validator.</li>
</ul>
<h1>v4.18.2</h1>
<ul>
<li>Fix an additional regression with the deprecated
<code>jsonschema.RefResolver</code> and pointer resolution.</li>
</ul>
<h1>v4.18.1</h1>
<ul>
<li>Fix a regression with <code>jsonschema.RefResolver</code> based
resolution when used in combination with a custom validation dialect
(via <code>jsonschema.validators.create</code>).</li>
</ul>
<h1>v4.18.0</h1>
<p>This release majorly rehauls the way in which JSON Schema reference
resolution is configured.
It does so in a way that <em>should</em> be backwards compatible,
preserving old behavior whilst emitting deprecation warnings.</p>
<ul>
<li><code>jsonschema.RefResolver</code> is now deprecated in favor of
the new <code>referencing library
&lt;https://github.com/python-jsonschema/referencing/&gt;</code>_.
<code>referencing</code> will begin in beta, but already is more
compliant than the existing <code>$ref</code> support.
This change is a culmination of a meaningful chunk of work to make
<code>$ref</code> resolution more flexible and more correct.
Backwards compatibility <em>should</em> be preserved for existing code
which uses <code>RefResolver</code>, though doing so is again now
deprecated, and all such use cases should be doable using the new
APIs.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/python-jsonschema/jsonschema/commit/2f5ff0b14c9ec317a64aef02898f7c44e81ec607"><code>2f5ff0b</code></a>
Don't blow up if an automatically retrieved resource is missing
$schema.</li>
<li><a
href="https://github.com/python-jsonschema/jsonschema/commit/eaf2e7b4559f100955108b500eb9d6444c1735d3"><code>eaf2e7b</code></a>
Deprecate importing Validator from the package root.</li>
<li><a
href="https://github.com/python-jsonschema/jsonschema/commit/8a55721dfbed227cbcab25fbe8555aecb69cd0c3"><code>8a55721</code></a>
Merge commit 'eb56578c253ff39b20986aabf48f34193be15457'</li>
<li><a
href="https://github.com/python-jsonschema/jsonschema/commit/eb56578c253ff39b20986aabf48f34193be15457"><code>eb56578</code></a>
Squashed 'json/' changes from b069ac352..5cc9214e8</li>
<li><a
href="https://github.com/python-jsonschema/jsonschema/commit/4e999e07080a654d15e2e92757d8f07f741429b9"><code>4e999e0</code></a>
Set a library-specific user agent when automatically retrieving
$refs.</li>
<li><a
href="https://github.com/python-jsonschema/jsonschema/commit/4fdc3658207a3ca15efb72740d3b1c310098d140"><code>4fdc365</code></a>
Declare support for 3.12.</li>
<li><a
href="https://github.com/python-jsonschema/jsonschema/commit/d012f8fb958881f3522303be44e674fb77c230e8"><code>d012f8f</code></a>
Avoid a spurious DeprecationWarning in the docs build.</li>
<li><a
href="https://github.com/python-jsonschema/jsonschema/commit/b3f9d0ece6146bfd52e5de67aeb6a04563dd74e7"><code>b3f9d0e</code></a>
Make the noxfile support passing a less temporary directory for building
docs.</li>
<li><a
href="https://github.com/python-jsonschema/jsonschema/commit/a7ebc41ac92537741beb2cba70b9bb359d1fdbc6"><code>a7ebc41</code></a>
Merge pull request <a
href="https://github.com/python-jsonschema/jsonschema/issues/1147">#1147</a>
from python-jsonschema/pre-commit-ci-update-config</li>
<li><a
href="https://github.com/python-jsonschema/jsonschema/commit/0a97e181a5ca6adcce14aeea76d850bacda83bda"><code>0a97e18</code></a>
[pre-commit.ci] pre-commit autoupdate</li>
<li>Additional commits viewable in <a
href="https://github.com/python-jsonschema/jsonschema/compare/v4.17.3...v4.19.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=jsonschema&package-manager=pip&previous-version=4.17.3&new-version=4.19.0)](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>
  • Loading branch information
github-actions[bot] committed Sep 4, 2023
2 parents fd15740 + 30f987e commit 8cb0c72
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ attrs==23.1.0
# -r requirements.in
# jsonschema
# jupyter-cache
# referencing
babel==2.12.1
# via sphinx
backcall==0.2.0
Expand Down Expand Up @@ -96,8 +97,10 @@ jinja2==3.1.2
# myst-parser
# sphinx
# sphinx-autoapi
jsonschema==4.17.3
jsonschema==4.19.0
# via nbformat
jsonschema-specifications==2023.7.1
# via jsonschema
jupyter-cache==0.5.0
# via myst-nb
jupyter-client==8.3.0
Expand Down Expand Up @@ -187,8 +190,6 @@ pygments==2.15.1
# sphinx
pyproject-hooks==1.0.0
# via build
pyrsistent==0.19.3
# via jsonschema
pytest==7.4.0
# via
# -r requirements.in
Expand Down Expand Up @@ -219,12 +220,20 @@ pyzmq==25.1.0
# via
# ipykernel
# jupyter-client
referencing==0.30.2
# via
# jsonschema
# jsonschema-specifications
requests==2.31.0
# via sphinx
rich==12.6.0
# via
# check-reqs
# typer
rpds-py==0.10.0
# via
# jsonschema
# referencing
shellingham==1.5.1
# via typer
six==1.16.0
Expand Down

0 comments on commit 8cb0c72

Please sign in to comment.