-
Notifications
You must be signed in to change notification settings - Fork 56
Comparing changes
Open a pull request
base repository: python-jsonschema/check-jsonschema
base: 0.22.0
head repository: python-jsonschema/check-jsonschema
compare: 0.23.1
- 20 commits
- 34 files changed
- 5 contributors
Commits on Mar 9, 2023
-
Configuration menu - View commit details
-
Copy full SHA for be43012 - Browse repository at this point
Copy the full SHA be43012View commit details
Commits on Mar 14, 2023
-
[pre-commit.ci] pre-commit autoupdate (#246)
updates: - [github.com/python-jsonschema/check-jsonschema: 0.21.0 → 0.22.0](0.21.0...0.22.0) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 1d1a317 - Browse repository at this point
Copy the full SHA 1d1a317View commit details
Commits on Apr 3, 2023
-
Bump responses from 0.22.0 to 0.23.1 (#249)
Bumps [responses](https://github.com/getsentry/responses) from 0.22.0 to 0.23.1. - [Release notes](https://github.com/getsentry/responses/releases) - [Changelog](https://github.com/getsentry/responses/blob/master/CHANGES) - [Commits](getsentry/responses@0.22.0...0.23.1) --- updated-dependencies: - dependency-name: responses dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 84d85a3 - Browse repository at this point
Copy the full SHA 84d85a3View commit details
Commits on Apr 4, 2023
-
Bump furo from 2022.12.07 to 2023.3.27 (#248)
Bumps [furo](https://github.com/pradyunsg/furo) from 2022.12.07 to 2023.3.27. - [Release notes](https://github.com/pradyunsg/furo/releases) - [Changelog](https://github.com/pradyunsg/furo/blob/main/docs/changelog.md) - [Commits](pradyunsg/furo@2022.12.07...2023.03.27) --- updated-dependencies: - dependency-name: furo dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for d321cbe - Browse repository at this point
Copy the full SHA d321cbeView commit details -
[pre-commit.ci] pre-commit autoupdate (#250)
updates: - [github.com/psf/black: 23.1.0 → 23.3.0](psf/black@23.1.0...23.3.0) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 52e56fd - Browse repository at this point
Copy the full SHA 52e56fdView commit details
Commits on Apr 11, 2023
-
Bump peter-evans/create-pull-request from 4 to 5 (#252)
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 4 to 5. - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@v4...v5) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 142dc62 - Browse repository at this point
Copy the full SHA 142dc62View commit details -
[vendor-schemas] automated update (#245)
Co-authored-by: sirosen <sirosen@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 3a719d7 - Browse repository at this point
Copy the full SHA 3a719d7View commit details
Commits on May 1, 2023
-
Update sphinx requirement from <7 to <8 (#256)
Updates the requirements on [sphinx](https://github.com/sphinx-doc/sphinx) to permit the latest version. - [Release notes](https://github.com/sphinx-doc/sphinx/releases) - [Changelog](https://github.com/sphinx-doc/sphinx/blob/master/CHANGES) - [Commits](sphinx-doc/sphinx@v0.1.61611...v7.0.0) --- updated-dependencies: - dependency-name: sphinx dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 9dfc937 - Browse repository at this point
Copy the full SHA 9dfc937View commit details -
[pre-commit.ci] pre-commit autoupdate (#257)
updates: - [github.com/asottile/pyupgrade: v3.3.1 → v3.3.2](asottile/pyupgrade@v3.3.1...v3.3.2) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 919b148 - Browse repository at this point
Copy the full SHA 919b148View commit details
Commits on May 3, 2023
-
[vendor-schemas] automated update (#253)
Co-authored-by: sirosen <sirosen@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for fa33d37 - Browse repository at this point
Copy the full SHA fa33d37View commit details -
Configuration menu - View commit details
-
Copy full SHA for 539f4d9 - Browse repository at this point
Copy the full SHA 539f4d9View commit details
Commits on May 4, 2023
-
Add new
--disable-formatsflag to replace--disable-format(#261)* Implement specific format disabling '--disable-formats' disables any given format string, and can be passed multiple times. '--disable-format' is deprecated. '--disable-formats "*"' can be used to disable all formats -- and in the implementation, it has slightly different behavior from disabling the full list of known formats. * Document `--disable-formats` Docs for the new option, a changelog entry, and a minor fix to some helptext. * Refactor CLI component into multiple modules Minor refactor, no new or changed code -- just renames. * --disable-formats support for comma delimited args - Convert to a custom metavar and a nicely printed list in the helptext - Use a new CommaDelimitedList type to capture comma delimited args, then join the results to keep the tuple of strings type which is desired. Add new test cases for this. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Improve doc of --disable-formats --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 95f98c7 - Browse repository at this point
Copy the full SHA 95f98c7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0adea54 - Browse repository at this point
Copy the full SHA 0adea54View commit details -
Configuration menu - View commit details
-
Copy full SHA for 241789d - Browse repository at this point
Copy the full SHA 241789dView commit details -
Exclude bot authors from autogenerated release notes.
Configuration menu - View commit details
-
Copy full SHA for 5395bf5 - Browse repository at this point
Copy the full SHA 5395bf5View commit details
Commits on May 9, 2023
-
[pre-commit.ci] pre-commit autoupdate (#265)
updates: - [github.com/python-jsonschema/check-jsonschema: 0.22.0 → 0.23.0](0.22.0...0.23.0) - [github.com/asottile/pyupgrade: v3.3.2 → v3.4.0](asottile/pyupgrade@v3.3.2...v3.4.0) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 23d7837 - Browse repository at this point
Copy the full SHA 23d7837View commit details
Commits on May 21, 2023
-
[vendor-schemas] automated update (#263)
Co-authored-by: sirosen <sirosen@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 24ee7c2 - Browse repository at this point
Copy the full SHA 24ee7c2View commit details
Commits on May 30, 2023
-
[vendor-schemas] automated update (#267)
Co-authored-by: sirosen <sirosen@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 3e2fb87 - Browse repository at this point
Copy the full SHA 3e2fb87View commit details -
Allow reusable workflows in custom schema
The github-workflows-require-timeout schema now uses oneOf to select between normal jobs and reusable workflow call jobs. Normal jobs are the ones which must have timeout-minutes, since reusable workflow calls cannot set timeout-minutes.
Configuration menu - View commit details
-
Copy full SHA for fae0241 - Browse repository at this point
Copy the full SHA fae0241View commit details -
Configuration menu - View commit details
-
Copy full SHA for fd9dcbe - Browse repository at this point
Copy the full SHA fd9dcbeView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 0.22.0...0.23.1