Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: python-jsonschema/check-jsonschema
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.34.1
Choose a base ref
...
head repository: python-jsonschema/check-jsonschema
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.35.0
Choose a head ref
  • 18 commits
  • 46 files changed
  • 7 contributors

Commits on Nov 3, 2025

  1. Bump actions/download-artifact from 5 to 6 (#615)

    Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 6.
    - [Release notes](https://github.com/actions/download-artifact/releases)
    - [Commits](actions/download-artifact@v5...v6)
    
    ---
    updated-dependencies:
    - dependency-name: actions/download-artifact
      dependency-version: '6'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Nov 3, 2025
    Configuration menu
    Copy the full SHA
    86afc00 View commit details
    Browse the repository at this point in the history
  2. [vendor-schemas] automated update (#613)

    Co-authored-by: sirosen <[email protected]>
    github-actions[bot] and sirosen authored Nov 3, 2025
    Configuration menu
    Copy the full SHA
    c57b690 View commit details
    Browse the repository at this point in the history
  3. [pre-commit.ci] pre-commit autoupdate (#612)

    updates:
    - [github.com/python-jsonschema/check-jsonschema: 0.34.0 → 0.34.1](0.34.0...0.34.1)
    - [github.com/PyCQA/isort: 6.1.0 → 7.0.0](PyCQA/isort@6.1.0...7.0.0)
    - [github.com/asottile/pyupgrade: v3.20.0 → v3.21.0](asottile/pyupgrade@v3.20.0...v3.21.0)
    
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    pre-commit-ci[bot] authored Nov 3, 2025
    Configuration menu
    Copy the full SHA
    580c59a View commit details
    Browse the repository at this point in the history
  4. Bump actions/upload-artifact from 4 to 5 (#614)

    Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5.
    - [Release notes](https://github.com/actions/upload-artifact/releases)
    - [Commits](actions/upload-artifact@v4...v5)
    
    ---
    updated-dependencies:
    - dependency-name: actions/upload-artifact
      dependency-version: '5'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Nov 3, 2025
    Configuration menu
    Copy the full SHA
    c4a6418 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2025

  1. Configuration menu
    Copy the full SHA
    cf0eddb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0d26bce View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    aac7bdd View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2025

  1. Merge pull request #616 from edgarrmondragon/citation.cff

    Add `CITATION.cff` schema and pre-commit hook
    sirosen authored Nov 10, 2025
    Configuration menu
    Copy the full SHA
    bc4345f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ff0ab3c View commit details
    Browse the repository at this point in the history
  3. [pre-commit.ci] pre-commit autoupdate

    updates:
    - [github.com/psf/black-pre-commit-mirror: 25.9.0 → 25.11.0](psf/black-pre-commit-mirror@25.9.0...25.11.0)
    - [github.com/asottile/pyupgrade: v3.21.0 → v3.21.1](asottile/pyupgrade@v3.21.0...v3.21.1)
    pre-commit-ci[bot] authored Nov 10, 2025
    Configuration menu
    Copy the full SHA
    b6c6732 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #617 from edgarrmondragon/py314

    Add official support for Python 3.14
    sirosen authored Nov 10, 2025
    Configuration menu
    Copy the full SHA
    1727129 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2025

  1. Merge pull request #619 from python-jsonschema/pre-commit-ci-update-c…

    …onfig
    
    [pre-commit.ci] pre-commit autoupdate
    sirosen authored Nov 12, 2025
    Configuration menu
    Copy the full SHA
    1f3e128 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9823d98 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #618 from python-jsonschema/vendor-schemas-auto

    Update vendored schemas
    sirosen authored Nov 12, 2025
    Configuration menu
    Copy the full SHA
    7eb53ab View commit details
    Browse the repository at this point in the history
  4. Refactor error formatting, show parse error cause

    - Move error formatting into a dedicated module
    - Add a new 'minimal' output mode to describe how we show detail on a
      parse error -- and in theory, other well-known errors
      - Unlike the previous behavior, the 'minimal' format includes
        presentation of the `__cause__`
    
    As a result, the output on a parse error will now include a one-line
    presentation of the underlying error.
    
    Ancillary things:
    
    - Fix type annotations for the new interface: use `Literal`s
    - Fix type annotations caused by `__cause__` handling (use
      `BaseException`)
    - Fix some changelog formatting
    
    resolves #581
    sirosen committed Nov 12, 2025
    Configuration menu
    Copy the full SHA
    39e8a67 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2280a40 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #620 from sirosen/show-stringified-parse-errors

    Refactor error formatting, show parse error cause
    sirosen authored Nov 12, 2025
    Configuration menu
    Copy the full SHA
    a3a86ef View commit details
    Browse the repository at this point in the history
  7. Bump version for release

    sirosen committed Nov 12, 2025
    Configuration menu
    Copy the full SHA
    b32b291 View commit details
    Browse the repository at this point in the history
Loading