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/jsonschema
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.18.0
Choose a base ref
...
head repository: python-jsonschema/jsonschema
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.18.1
Choose a head ref
  • 7 commits
  • 9 files changed
  • 2 contributors

Commits on Jul 6, 2023

  1. Minor grammar fix.

    Julian committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    e30b48e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7046da1 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2023

  1. Don't use nox.session.create_tmp.

    It's basically a footgun, in that it:
    
        * doesn't create a pseudorandom temporary directory, it just gives you
          the path 'tmp/'
        * thereby then doesn't create separate directories if you call it multiple
          times
        * mutates the global (shell) environment state by setting TMPDIR to this
          'new' directory so other processes can now 'accidentally' end up
          sticking things in it
    
    (In particular I was really confused how/why non-distribution files were being
    plopped into my python -m build's outdir, but it was because TMPDIR was
    sticking around)
    Julian committed Jul 9, 2023
    Configuration menu
    Copy the full SHA
    4817d36 View commit details
    Browse the repository at this point in the history
  2. Twewak the build noxenv again.

    Hopefully slightly more resilient for Windows.
    Julian committed Jul 9, 2023
    Configuration menu
    Copy the full SHA
    273d4dd View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2023

  1. [pre-commit.ci] pre-commit autoupdate

    updates:
    - [github.com/astral-sh/ruff-pre-commit: v0.0.276 → v0.0.277](astral-sh/ruff-pre-commit@v0.0.276...v0.0.277)
    - [github.com/pre-commit/mirrors-prettier: v3.0.0-alpha.9-for-vscode → v3.0.0](pre-commit/mirrors-prettier@v3.0.0-alpha.9-for-vscode...v3.0.0)
    pre-commit-ci[bot] authored Jul 10, 2023
    Configuration menu
    Copy the full SHA
    6edfe24 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2023

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

    …config
    
    [pre-commit.ci] pre-commit autoupdate
    Julian authored Jul 11, 2023
    Configuration menu
    Copy the full SHA
    56d57e7 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2023

  1. Fix a regression with RefResolver-based resolution in newly created d…

    …rafts
    
    We need a bit more state management to serve `RefResolver` until it's
    fully removed :/
    
    (The handler here is simply to avoid needing to hit some remote
    reference.)
    
    Refs: #1061 (comment)
    Julian committed Jul 12, 2023
    Configuration menu
    Copy the full SHA
    90ea779 View commit details
    Browse the repository at this point in the history
Loading