Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump jsonschema from 4.14.0 to 4.15.0 #9959

Merged
merged 1 commit into from
Sep 6, 2022

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 5, 2022

Bumps jsonschema from 4.14.0 to 4.15.0.

Release notes

Sourced from jsonschema's releases.

v4.15.0

What's Changed

Full Changelog: python-jsonschema/jsonschema@v4.14.0...v4.15.0

Changelog

Sourced from jsonschema's changelog.

v4.15.0

  • A specific API Reference page is now present in the documentation.
  • $ref on earlier drafts (specifically draft 7 and 6) has been "fixed" to follow the specified behavior when present alongside a sibling $id. Specifically the ID is now properly ignored, and references are resolved against whatever resolution scope was previously relevant.
Commits
  • 420fc6b Minor verbiage tweak for protocols.
  • 8ce8250 Don't show type checker functions in TypeChecker reprs.
  • 6533d32 Tweak the colorscheme for code blocks in docs.
  • 792311d Spelling...
  • d67decc Add some deprecated directives (for previous deprecations) to the docs.
  • ca96760 Make the link to Understanding JSON Schema more prominent.
  • 57b604e Remove the doc page for references.
  • 6d04fd7 Remove the incorrect Optional from FormatChecker's formats annotation.
  • fd491f9 Minor non-functional changes to FormatChecker docstrings and init.
  • a513c99 Add a note to the CHANGELOG about #988.
  • 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.14.0 to 4.15.0.
- [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.14.0...v4.15.0)

---
updated-dependencies:
- dependency-name: jsonschema
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 5, 2022
@cla-bot cla-bot bot added the cla-signed CLA Bot: community license agreement signed label Sep 5, 2022
@afabiani afabiani added this to the 4.0.1 milestone Sep 6, 2022
@afabiani afabiani merged commit b16fb58 into master Sep 6, 2022
@afabiani afabiani deleted the dependabot/pip/jsonschema-4.15.0 branch September 6, 2022 08:14
github-actions bot pushed a commit that referenced this pull request Sep 6, 2022
Bumps [jsonschema](https://github.com/python-jsonschema/jsonschema) from 4.14.0 to 4.15.0.
- [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.14.0...v4.15.0)

---
updated-dependencies:
- dependency-name: jsonschema
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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>
@github-actions
Copy link
Contributor

github-actions bot commented Sep 6, 2022

The backport to 4.x failed:

The process 'git' failed with exit code 1

To backport manually, run these commands in your terminal:

# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-4.x 4.x
# Navigate to the new working tree
cd .worktrees/backport-4.x
# Create a new branch
git switch --create backport-9959-to-4.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick b16fb58124dcd82a455c73c2a22f6ff2fde9b588
# Push it to GitHub
git push --set-upstream origin backport-9959-to-4.x
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-4.x

Then, create a pull request where the base branch is 4.x and the compare/head branch is backport-9959-to-4.x.

afabiani pushed a commit that referenced this pull request Sep 6, 2022
Bumps [jsonschema](https://github.com/python-jsonschema/jsonschema) from 4.14.0 to 4.15.0.
- [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.14.0...v4.15.0)

---
updated-dependencies:
- dependency-name: jsonschema
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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>

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
cla-signed CLA Bot: community license agreement signed dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant