Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Nov 23, 2022

Bumps jsonschema from 4.17.0 to 4.17.1.

Release notes

Sourced from jsonschema's releases.

v4.17.1

Full Changelog: python-jsonschema/jsonschema@v4.17.0...v4.17.1

Changelog

Sourced from jsonschema's changelog.

v4.17.1

  • The error message when using unevaluatedProperties with a non-trivial schema value (i.e. something other than false) has been improved (#996).
Commits
  • 46fdb98 v4.17.1 -> CHANGELOG
  • 000dd3d Remove making believe we are ReadTheDocs in CI builds.
  • 5563044 Skip the rest of the docs builds on Windows in CI.
  • 198d1af Run more things with 3.11 in CI.
  • da35584 Suppress epub warnings for duplicated ToC entries.
  • be86aad Temporarily evade wpilibsuite/sphinxext-opengraph#87
  • 9069484 Update docs requirements.
  • 4f8f346 Un-bundle single-vocabulary meta-schemas.
  • 7830605 Emit a better error message for unevaluatedProperties with a subschema.
  • 75903d8 Merge commit '62e69b2c3be9e30c50bea2e595eb2afcd13666ec'
  • Additional commits viewable in compare view

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)

Bumps [jsonschema](https://github.com/python-jsonschema/jsonschema) from 4.17.0 to 4.17.1.
- [Release notes](https://github.com/python-jsonschema/jsonschema/releases)
- [Changelog](https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst)
- [Commits](python-jsonschema/jsonschema@v4.17.0...v4.17.1)

---
updated-dependencies:
- dependency-name: jsonschema
  dependency-type: indirect
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Nov 23, 2022
@github-actions github-actions bot merged commit df5b171 into main Nov 23, 2022
@github-actions github-actions bot deleted the dependabot/pip/jsonschema-4.17.1 branch November 23, 2022 04:20
sritchie pushed a commit that referenced this pull request Jan 8, 2024
Bumps [jsonschema](https://github.com/python-jsonschema/jsonschema) from 4.17.0 to 4.17.1.
- [Release notes](https://github.com/python-jsonschema/jsonschema/releases)
- [Changelog](https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst)
- [Commits](python-jsonschema/jsonschema@v4.17.0...v4.17.1)

---
updated-dependencies:
- dependency-name: jsonschema
  dependency-type: indirect
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
femtomc pushed a commit that referenced this pull request Apr 9, 2024
Bumps [execnet](https://github.com/pytest-dev/execnet) from 2.0.2 to
2.1.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pytest-dev/execnet/blob/master/CHANGELOG.rst">execnet's
changelog</a>.</em></p>
<blockquote>
<h2>2.1.0 (2024-04-05)</h2>
<ul>
<li>
<p><code>[#243](pytest-dev/execnet#243)
&lt;https://github.com/pytest-dev/execnet/pull/243&gt;</code>__: Added
<code>main_thread_only</code>
execmodel which is derived from the thread execmodel and only executes
<code>remote_exec</code>
calls in the main thread.</p>
<p>Callers of <code>remote_exec</code> must use the returned channel to
wait for a task to complete
before they call remote_exec again, otherwise the
<code>remote_exec</code> call will fail with a
<code>concurrent remote_exec would cause deadlock</code> error. The
main_thread_only execmodel
provides solutions for
<code>[#96](pytest-dev/execnet#96)
&lt;https://github.com/pytest-dev/execnet/issues/96&gt;</code>__ and
<code>pytest-dev/pytest-xdist#620
&lt;https://github.com/pytest-dev/pytest-xdist/issues/620&gt;</code>__
(pending a new <code>pytest-xdist</code> release).</p>
<p>Also fixed <code>init_popen_io</code> to use
<code>closefd=False</code> for shared stdin and stdout file
descriptors, preventing <code>Bad file descriptor</code> errors
triggered by test_stdouterrin_setnull.</p>
</li>
<li>
<p>The library is now typed and the typing is exposed to
type-checkers.</p>
</li>
<li>
<p>Re-exported <code>Gateway</code>, <code>Channel</code>,
<code>DumpError</code> and <code>LoadError</code> from
<code>execnet</code>. The constructors are private.</p>
</li>
<li>
<p>Fixed <code>GatewayBase.join()</code> timeout argument getting
ignored.</p>
</li>
<li>
<p>Removed support for Python 3.7.</p>
</li>
<li>
<p>Added official support for Python 3.12.</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pytest-dev/execnet/commit/64ecf67b02306b535eef81381d2bd659ab704685"><code>64ecf67</code></a>
Update CHANGELOG for 2.1.0</li>
<li><a
href="https://github.com/pytest-dev/execnet/commit/eb7f7bcc1cf96b4bff480debe89f7e4a90b0b2e4"><code>eb7f7bc</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/execnet/issues/266">#266</a>
from bluetech/up-download-artifact</li>
<li><a
href="https://github.com/pytest-dev/execnet/commit/89c99c9e367789c182cbcc33f7df461e45c2316b"><code>89c99c9</code></a>
ci: update download-artifact action to fix deploy job</li>
<li><a
href="https://github.com/pytest-dev/execnet/commit/42aeb829fa82b3695b5dbeb75ede76725b819a3a"><code>42aeb82</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/execnet/issues/263">#263</a>
from bluetech/typing-fixes</li>
<li><a
href="https://github.com/pytest-dev/execnet/commit/50359132a4581c77243054736e98d345c964f6aa"><code>5035913</code></a>
Export <code>DumpError</code>, <code>LoadError</code></li>
<li><a
href="https://github.com/pytest-dev/execnet/commit/e218d45239417343bad55239899f389eabd40245"><code>e218d45</code></a>
gateway_base: replace <code>-&gt; object</code> return types to
<code>-&gt; Any</code></li>
<li><a
href="https://github.com/pytest-dev/execnet/commit/4d7543907877538ec03acf18040969f43e3e739b"><code>4d75439</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/execnet/issues/262">#262</a>
from pytest-dev/pre-commit-ci-update-config</li>
<li><a
href="https://github.com/pytest-dev/execnet/commit/8a50839b7d4b26949f83ae27d4b4fa7be5226ec1"><code>8a50839</code></a>
[pre-commit.ci] pre-commit autoupdate</li>
<li><a
href="https://github.com/pytest-dev/execnet/commit/8d9ae1edccf786c6eb134db5b9d86c69abdff318"><code>8d9ae1e</code></a>
Merge pull request <a
href="https://redirect.github.com/pytest-dev/execnet/issues/261">#261</a>
from pytest-dev/dependabot/github_actions/hynek/build...</li>
<li><a
href="https://github.com/pytest-dev/execnet/commit/a382d2f62aaf76bf84701440ad22f5c7cd36a769"><code>a382d2f</code></a>
Update download-artifact to 4.1.4</li>
<li>Additional commits viewable in <a
href="https://github.com/pytest-dev/execnet/compare/v2.0.2...v2.1.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=execnet&package-manager=pip&previous-version=2.0.2&new-version=2.1.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>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant