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: ota-meshi/eslint-plugin-json-schema-validator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.49
Choose a base ref
...
head repository: ota-meshi/eslint-plugin-json-schema-validator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.0
Choose a head ref
  • 5 commits
  • 4 files changed
  • 3 contributors

Commits on Nov 5, 2021

  1. Copy the full SHA
    ced40ed View commit details
  2. Copy the full SHA
    a28e2b6 View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2591387 View commit details
  4. Update dependency jsonc-eslint-parser to v2 (#104)

    Co-authored-by: Renovate Bot <bot@renovateapp.com>
    renovate[bot] and renovate-bot authored Nov 5, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    16284d2 View commit details
  5. 2.0.0

    ota-meshi committed Nov 5, 2021
    Copy the full SHA
    688fb01 View commit details
Showing with 14 additions and 10 deletions.
  1. +4 −4 .github/workflows/NodeCI.yml
  2. +1 −1 README.md
  3. +2 −1 docs/user-guide/README.md
  4. +7 −4 package.json
8 changes: 4 additions & 4 deletions .github/workflows/NodeCI.yml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [12.x, 14.x, 16.x, 17.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
@@ -39,10 +39,10 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 8.10.x
node-version: 14.x
- name: Install Target Packages
run: |+
npm i -D eslint@6 mocha@7
npm i -D eslint@6
npx rimraf node_modules
npm install
- name: Test
@@ -53,7 +53,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 10.13.x
node-version: 14.x
- name: Install Target Packages
run: |+
npm i -D eslint@7
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ npm install --save-dev eslint eslint-plugin-jsonc eslint-plugin-json-schema-vali
> **Requirements**
>
> - ESLint v6.0.0 and above
> - Node.js v8.10.0 and above
> - Node.js v12.22.x, v14.17.x, v16.x and above
<!--DOCS_IGNORE_END-->

3 changes: 2 additions & 1 deletion docs/user-guide/README.md
Original file line number Diff line number Diff line change
@@ -7,8 +7,9 @@ npm install --save-dev eslint eslint-plugin-json-schema-validator
```

::: tip Requirements

- ESLint v6.0.0 and above
- Node.js v8.10.0 and above
- Node.js v12.22.x, v14.17.x, v16.x and above
:::

## :book: Usage
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "eslint-plugin-json-schema-validator",
"version": "1.2.49",
"version": "2.0.0",
"description": "ESLint plugin that validates data using JSON Schema Validator.",
"main": "lib/index.js",
"files": [
"lib",
"schemastore"
],
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"scripts": {
"prebuild": "npm run -s clean",
"build": "npm run build:ts",
@@ -56,7 +59,7 @@
"debug": "^4.3.1",
"eslint-utils": "^3.0.0",
"json-schema-migrate": "^2.0.0",
"jsonc-eslint-parser": "^1.0.0",
"jsonc-eslint-parser": "^2.0.0",
"minimatch": "^3.0.4",
"toml-eslint-parser": "^0.2.1",
"tunnel-agent": "^0.6.0",
@@ -82,7 +85,7 @@
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^4.0.0",
"eslint-plugin-json-schema-validator": "^1.0.0",
"eslint-plugin-jsonc": "^1.0.0",
"eslint-plugin-jsonc": "^2.0.0",
"eslint-plugin-markdown": "^2.0.0-0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
@@ -93,7 +96,7 @@
"eslint4b": "^7.3.1",
"espree": "^9.0.0",
"mocha": "^9.0.0",
"monaco-editor": "^0.29.0",
"monaco-editor": "^0.30.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"raw-loader": "^4.0.1",