Skip to content

build(deps): update jsonschema requirement from 0.28.3 to 0.30.0 #47

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 17, 2025

Updates the requirements on jsonschema to permit the latest version.

Release notes

Sourced from jsonschema's releases.

[Python] Release 0.30.0

Added

  • base_uri keyword argument that allows for specifying a base URI for all relative references in the schema.
  • Configuration options for the underlying regex engine used by pattern and patternProperties keywords.

Changed

  • Better error messages for relative $ref without base URI.
  • Update pyo3 to 0.24.

Fixed

  • Added Registry to type declarations.

Removed

  • Internal cache for regular expressions.
Changelog

Sourced from jsonschema's changelog.

[0.30.0] - 2025-04-16

Added

  • JsonType and JsonTypeSet.
  • ValidationOptions::with_base_uri that allows for specifying a base URI for all relative references in the schema.
  • Configuration options for the underlying regex engine used by pattern and patternProperties keywords.

Changed

  • Better error messages for relative $ref without base URI.

Fixed

  • CLI: Inability to load relative file $ref. #725

Removed

  • Internal cache for regular expressions.

Deprecated

  • PrimitiveType and PrimitiveTypesBitMap.

[0.29.1] - 2025-03-27

Added

  • Hash, PartialOrd, Ord and serde::Serialize for Location.
  • Make Location::join public.

[0.29.0] - 2025-02-08

Breaking Changes

  • All builder methods on ValidationOptions now take ownership of self instead of &mut self. This change enables better support for non-blocking retrieval of external resources during the process of building a validator. Update your code to chain the builder methods instead of reusing the options instance:

    // Before (0.28.x)
    let mut options = jsonschema::options();
    options.with_draft(Draft::Draft202012);
    options.with_format("custom", my_format);
    let validator = options.build(&schema)?;
    // After (0.29.0)
    let validator = jsonschema::options()
    .with_draft(Draft::Draft202012)
    .with_format("custom", my_format)

... (truncated)

Commits
  • c594c9d chore(rust): Release 0.30.0
  • f4f1d7c chore: Update pyo3 to 0.24
  • 8eff9e3 fix(cli): Path canonicalization
  • 631699c feat: Configuration options for the underlying regex engine
  • 7f1ff87 chore: Fix clippy warnings
  • a915a38 build(deps): bump crates/jsonschema-referencing/tests/suite
  • 6b9511e feat: Add base_uri
  • 057c3f1 chore: Add JsonTypeSet::all
  • c12bf70 chore: Make ext::cmp::equal public
  • bffb103 chore: Make write_escaped_str public
  • Additional commits viewable in compare view

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

Updates the requirements on [jsonschema](https://github.com/Stranger6667/jsonschema) to permit the latest version.
- [Release notes](https://github.com/Stranger6667/jsonschema/releases)
- [Changelog](https://github.com/Stranger6667/jsonschema/blob/master/CHANGELOG.md)
- [Commits](Stranger6667/jsonschema@rust-v0.28.3...rust-v0.30.0)

---
updated-dependencies:
- dependency-name: jsonschema
  dependency-version: 0.30.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Apr 17, 2025
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 rust Pull requests that update rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants