diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2b52e932f2f..896eec6df68 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -35,7 +35,7 @@ updates: - package-ecosystem: "npm" # See documentation for possible values directory: "/" # Location of package manifests versioning-strategy: increase - target-branch: "cspell4" + target-branch: "cspell5" schedule: interval: "weekly" ignore: @@ -45,11 +45,3 @@ updates: versions: [">=9"] - dependency-name: "commander" versions: [">=8"] - - - package-ecosystem: "github-actions" - # Workflow files stored in the - # default location of `.github/workflows` - directory: "/" - target-branch: "cspell4" - schedule: - interval: "daily" diff --git a/.github/release-drafter-cspell5.yml b/.github/release-drafter-cspell5.yml new file mode 100644 index 00000000000..cd58b58a826 --- /dev/null +++ b/.github/release-drafter-cspell5.yml @@ -0,0 +1,103 @@ +name-template: "CSpell5 v$RESOLVED_VERSION" +tag-template: "v$RESOLVED_VERSION" +filter-by-commitish: true +commitish: cspell5 + +categories: + - title: "Features" + labels: + - "feat" + - "feature" + - "enhancement" + - title: "**BREAKING**" + labels: + - "breaking" + - title: "Fixes" + labels: + - "fix" + - "bugfix" + - "bug" + - title: "Dictionary Updates" + labels: + - "Update Dictionaries" + - title: "Documentation" + labels: + - "documentation" + - "Documentation" + - title: "Testing" + labels: + - "test" + - title: "Maintenance" + labels: + - "chore" + - "dependencies" + +change-template: | +
+ $TITLE (#$NUMBER) + + ### $TITLE (#$NUMBER) + $BODY + + --- + +
+ +change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. +version-resolver: + major: + labels: + - major + minor: + labels: + - minor + - feature + patch: + labels: + - patch + default: patch +include-labels: + - "cspell5" +exclude-labels: + - "hide-from-release" +autolabeler: + - label: "Update Dictionaries" + title: + - "/Update Dictionaries/i" + - label: "dependencies" + title: + - "/^ci: Workflow Bot.*Dependencies/i" + - label: "chore" + title: + - "/chore/i" + - "/^ci[:](?! Workflow Bot)/i" + - label: "documentation" + files: + - "/docs/**/*.md" + title: + - "/^docs?/i" + - label: "fix" + title: + - "/^fix/i" + - "/^dev:/i" + - "/^refactor/i" + - label: "feature" + title: + - "/^feat/i" + - label: "test" + title: + - "/^test/i" + - label: "breaking" + title: + - "/^fix[!]/i" + - "/^feat[!]/i" + - label: cspell5 + branch: + - "/./i" # only cspell5 commits are in this branch + +template: | + ## Changes + + $CHANGES + +# cspell:ignore autolabeler commitish diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index d80ba9919be..ce219cceb74 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,5 +1,8 @@ name-template: "v$RESOLVED_VERSION" tag-template: "v$RESOLVED_VERSION" +filter-by-commitish: true +commitish: main + categories: - title: "Features" labels: @@ -55,6 +58,7 @@ version-resolver: default: patch exclude-labels: - "hide-from-release" + - "cspell5" autolabeler: - label: "Update Dictionaries" title: @@ -86,10 +90,13 @@ autolabeler: title: - "/^fix[!]/i" - "/^feat[!]/i" + - label: cspell5 + branch: + - "/cspell5/i" template: | ## Changes $CHANGES -# cspell:ignore autolabeler +# cspell:ignore autolabeler commitish diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index a2f8d1ad11a..1eed30741c9 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -4,10 +4,12 @@ on: push: branches: - main + - cspell5 - cspell4 pull_request: branches: - main + - cspell5 - cspell4 schedule: - cron: "0 23 * * 0" diff --git a/.github/workflows/update-dependencies-cspell4.yml b/.github/workflows/cspell5-update-dependencies.yml similarity index 78% rename from .github/workflows/update-dependencies-cspell4.yml rename to .github/workflows/cspell5-update-dependencies.yml index 67d8ddb36c3..5be7ca2fce6 100644 --- a/.github/workflows/update-dependencies-cspell4.yml +++ b/.github/workflows/cspell5-update-dependencies.yml @@ -1,12 +1,13 @@ -name: CSpell 4 - Update Dependencies +name: CSpell5 - Update Dependencies Main on: push: branches: - - cspell4 + - cspell5 paths: - "**/package.json" - "**/package-lock.json" + workflow_dispatch: inputs: updateSnapshots: @@ -24,12 +25,14 @@ jobs: if: github.repository_owner == 'streetsidesoftware' runs-on: ubuntu-latest env: - NEW_BRANCH: "update-dependencies-cspell4" - REF_BRANCH: cspell4 + NEW_BRANCH: "cspell5-update-dependencies" + REF_BRANCH: cspell5 + UPDATE_SNAPSHOTS: ${{ github.event.inputs.updateSnapshots == 'yes' || github.event.inputs.updateSnapshots == 'y' }} steps: - name: Start run: | echo "${{ toJson(github.event.inputs) }}" + echo "Update Snapshots: $UPDATE_SNAPSHOTS" - name: Checkout code uses: actions/checkout@v3 with: @@ -38,6 +41,8 @@ jobs: uses: actions/setup-node@v3.2.0 with: cache: npm + - name: Setup NPM + run: npm i -g npm@8 - name: Update Root run: | npm i @@ -48,8 +53,14 @@ jobs: - name: Update packages run: | npm run update-packages + - name: Build + if: env.UPDATE_SNAPSHOTS == 'true' + run: | + npm run build - name: Update Integration Test Snapshots - if: github.event.inputs.updateSnapshots == 'yes' + if: env.UPDATE_SNAPSHOTS == 'true' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | npm run update-snapshots - name: Has changes @@ -76,7 +87,7 @@ jobs: commit-message: "ci: Workflow Bot -- Update ALL Dependencies" branch: ${{ env.NEW_BRANCH }} base: ${{ env.REF_BRANCH }} - title: "ci: Workflow Bot -- CSpell 4 - Update ALL Dependencies (${{ env.REF_BRANCH }})" + title: "ci: Workflow Bot -- Update ALL Dependencies (${{ env.REF_BRANCH }})" token: ${{ steps.generate-token.outputs.token }} body: ${{ env.git_body }} delete-branch: true diff --git a/.github/workflows/cspell5-update-dictionaries.yml b/.github/workflows/cspell5-update-dictionaries.yml new file mode 100644 index 00000000000..52ceefb21dc --- /dev/null +++ b/.github/workflows/cspell5-update-dictionaries.yml @@ -0,0 +1,121 @@ +name: CSpell5 - Update Dictionaries Main + +on: + workflow_dispatch: + schedule: + - cron: "5 7 * * *" + +permissions: + contents: read + +env: + NEW_BRANCH: "cspell5-update-dictionaries" + REF_BRANCH: cspell5 + +jobs: + check-dictionaries: + if: github.repository_owner == 'streetsidesoftware' + runs-on: ubuntu-latest + outputs: + dirty: ${{ env.git_status == 'dirty' }} + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Use Node.js + uses: actions/setup-node@v3.2.0 + with: + cache: npm + + - name: Setup NPM + run: npm i -g npm@8 + + - name: Install + run: npm install + + - name: Update Dictionaries + run: | + npm run update-dictionary-packages + + - name: Has changes + run: | + git --no-pager diff --compact-summary --exit-code && echo "git_status=clean" >> $GITHUB_ENV || echo "git_status=dirty" >> $GITHUB_ENV + git --no-pager diff --compact-summary + + - name: Echo git_status + run: echo ${{ env.git_status }} + + - name: Store Updated Package Info + # if: env.git_status == 'dirty' + uses: actions/upload-artifact@v3 + with: + name: cspell-bundled-dicts + path: | + packages/cspell-bundled-dicts/package*.json + retention-days: 1 + + update-dictionaries: + needs: check-dictionaries + if: ${{ needs.check-dictionaries.outputs.dirty == 'true' }} + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + ref: ${{ env.REF_BRANCH }} + + - name: Use Node.js + uses: actions/setup-node@v3.2.0 + with: + cache: npm + + - name: Setup NPM + run: | + npm i -g npm@8 + + - name: Restore Packages + uses: actions/download-artifact@v3 + with: + name: cspell-bundled-dicts + path: | + packages/cspell-bundled-dicts + + - name: Display structure of downloaded files + run: ls -alF + working-directory: packages/cspell-bundled-dicts + + - name: Install + run: npm install + + - name: Build + run: | + npm run build + + - name: Update Integration Test Snapshots + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + npm run update-snapshots + + - name: Gen Body + run: | + echo 'git_body<> $GITHUB_ENV + git --no-pager diff --compact-summary >> $GITHUB_ENV + echo 'DIFF' >> $GITHUB_ENV + + - uses: tibdex/github-app-token@7ce9ffdcdeb2ba82b01b51d6584a6a85872336d4 # v1.5 # cspell:ignore tibdex + id: generate-token + with: + app_id: ${{ secrets.AUTOMATION_APP_ID }} + private_key: ${{ secrets.AUTOMATION_PRIVATE_KEY }} + + - name: Create Pull Request + uses: peter-evans/create-pull-request@f094b77505fb89581e68a1163fbd2fffece39da1 # v4 + with: + commit-message: "ci: Workflow Bot -- Update Dictionaries" + branch: ${{ env.NEW_BRANCH }} + base: ${{ env.REF_BRANCH }} + title: "ci: Workflow Bot -- Update Dictionaries (${{ env.REF_BRANCH }})" + token: ${{ steps.generate-token.outputs.token }} + body: ${{ env.git_body }} + delete-branch: true diff --git a/.github/workflows/cspell4-integration-update.yml b/.github/workflows/cspell5-update-integration-snapshots.yml similarity index 78% rename from .github/workflows/cspell4-integration-update.yml rename to .github/workflows/cspell5-update-integration-snapshots.yml index fd081f8de01..76c3d637973 100644 --- a/.github/workflows/cspell4-integration-update.yml +++ b/.github/workflows/cspell5-update-integration-snapshots.yml @@ -1,20 +1,20 @@ -name: CSpell 4 - Integration Update Repositories +name: CSpell5 - Update Integration Test Repositories on: workflow_dispatch: schedule: - - cron: "0 9 * * 1" + - cron: "5 8 * * 1" # Monday at 8 UTC permissions: contents: read jobs: - update-dependencies: + update: if: github.repository_owner == 'streetsidesoftware' runs-on: ubuntu-latest env: - NEW_BRANCH: "cspell4-integration-update" - REF_BRANCH: cspell4 + NEW_BRANCH: "cspell5-update-integration-repositories" + REF_BRANCH: cspell5 steps: - name: Start run: | @@ -27,11 +27,18 @@ jobs: uses: actions/setup-node@v3.2.0 with: cache: npm + - name: Setup NPM + run: npm i -g npm@8 - name: Install run: npm install + - name: Build + run: | + npm run build - name: Update Integration Test Snapshots + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - npm run update-snapshots + npm run update-integrations-and-snapshots - name: Has changes run: | git --no-pager diff --compact-summary --exit-code && echo "git_status=clean" >> $GITHUB_ENV || echo "git_status=dirty" >> $GITHUB_ENV @@ -56,7 +63,7 @@ jobs: commit-message: "ci: Workflow Bot -- Update Integration Snapshots" branch: ${{ env.NEW_BRANCH }} base: ${{ env.REF_BRANCH }} - title: "ci: Workflow Bot -- CSpell4 - Integration Update Snapshots (${{ env.REF_BRANCH }})" + title: "ci: Workflow Bot -- Update Integration Snapshots (${{ env.REF_BRANCH }})" token: ${{ steps.generate-token.outputs.token }} body: ${{ env.git_body }} delete-branch: true diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index cca5d3ed7d0..00000000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,85 +0,0 @@ -name: Publish - -on: - push: - # Sequence of patterns matched against refs/tags - tags: - - "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 - - workflow_dispatch: - # Inputs the workflow accepts. - inputs: - ref: - description: "branch, release, or tag to publish, like v5.0.1-alpha.14" - default: main - required: true - npm_tag: - description: "Tag to add to NPM release 'latest' or 'next'" - default: next - required: true - -permissions: - contents: read - -jobs: - stub: - permissions: - contents: none - runs-on: ubuntu-latest - steps: - - run: echo "Publish Stub" - - # publish-manual: - # runs-on: ubuntu-latest - # if: github.event.inputs - # steps: - # - name: Echo context - # env: - # GITHUB_CONTEXT: ${{ toJson(github) }} - # run: echo "$GITHUB_CONTEXT" - # - name: Checkout code - # uses: actions/checkout@v2.3.4 - # with: - # ref: ${{ github.event.inputs.ref }} - # - name: Install - # run: npm install - # - name: Test - # run: npm test - # - name: Setup Git - # run: | - # git config --local user.name 'Jason Dent' - # git config --local user.email 'jason@streetsidesoftware.nl' - # - name: Publish - # run: npm run pub-lerna -- -y --dist-tag "$NPM_TAG" - # env: - # NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # NPM_TAG: ${{ github.event.inputs.npm_tag }} - - # publish-tag: - # runs-on: ubuntu-latest - # if: ${{ !github.event.inputs }} - # steps: - # - name: Checkout code - # uses: actions/checkout@v2.3.4 - # - name: Install - # run: npm install - # - name: Test - # run: npm test - # - name: Echo context - # env: - # GITHUB_CONTEXT: ${{ toJson(github) }} - # run: echo "$GITHUB_CONTEXT" - # - name: Setup Git - # run: | - # git config --global user.name 'Jason Dent' - # git config --global user.email 'jason@streetsidesoftware.nl' -# - name: Publish Main -# if: ${{ github.ref == 'refs/heads/main' }} -# run: npm run pub-lerna -- -y --dist-tag next -# env: -# NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} -# - name: Publish cspell4 -# if: ${{ github.ref == 'refs/heads/cspell4' }} -# run: npm run pub-lerna -- -y --dist-tag latest -# env: -# NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5c6ea42952f..0c1c9e51082 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,7 +35,6 @@ jobs: matrix: node-version: # List of supported node versions (latest is tested in `test-os`) - - 12.x - 14.x - 16.x - 18.x diff --git a/.github/workflows/update-dictionaries.yml b/.github/workflows/update-dictionaries.yml index d96a4f9b327..81e6667cb5c 100644 --- a/.github/workflows/update-dictionaries.yml +++ b/.github/workflows/update-dictionaries.yml @@ -1,13 +1,6 @@ name: Update Dictionaries Main on: - push: - branches: - - main - paths-ignore: - - "docs/**" - - "website/**" - workflow_dispatch: schedule: - cron: "0 7 * * *" diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml deleted file mode 100644 index 38106adb7de..00000000000 --- a/.github/workflows/version.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Version - -on: - workflow_dispatch: - inputs: - branch: - description: 'Branch to run on "main" or "cspell4"' - default: main - required: true - -permissions: - contents: read - -jobs: - version: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - ref: ${{ github.event.inputs.branch }} - - name: Install - run: npm install - # - name: Test - # run: npm test - - name: Setup Git - run: | - git config --local user.name 'Jason Dent' - git config --local user.email 'jason@streetsidesoftware.nl' - - name: Version Main - if: ${{ github.event.inputs.branch == 'main' }} - run: npm run pub-version-pre -- -y - - name: Version cspell4 - if: ${{ github.event.inputs.branch == 'cspell4' }} - run: npm run pub-version -- -y diff --git a/CHANGELOG.md b/CHANGELOG.md index 35847bb50c3..b60da55d8c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package cspell-monorepo + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package cspell-monorepo diff --git a/integration-tests/CHANGELOG.md b/integration-tests/CHANGELOG.md index 21aa9208321..ffba8d8e62d 100644 --- a/integration-tests/CHANGELOG.md +++ b/integration-tests/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package cspell-integration-tests + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package cspell-integration-tests diff --git a/integration-tests/package-lock.json b/integration-tests/package-lock.json index 144fa161824..ddda20ed17d 100644 --- a/integration-tests/package-lock.json +++ b/integration-tests/package-lock.json @@ -1,15 +1,15 @@ { "name": "cspell-integration-tests", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cspell-integration-tests", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-types": "^6.0.0-alpha.0", "@octokit/rest": "^18.12.0", "chalk": "^4.1.2", "commander": "^9.2.0", @@ -29,11 +29,11 @@ "@types/node": "^17.0.35", "@types/rimraf": "^3.0.2", "@types/shelljs": "^0.8.11", - "cspell": "^5.21.1", + "cspell": "^6.0.0-alpha.0", "jest": "^28.1.0" }, "engines": { - "node": ">=12.30" + "node": ">=14" } }, "node_modules/@ampproject/remapping": { @@ -611,9 +611,9 @@ "dev": true }, "node_modules/@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "dev": true, "dependencies": { "@cspell/dict-ada": "^2.0.0", @@ -662,18 +662,18 @@ } }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "dev": true, "engines": { "node": ">=12.13.0" } }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "engines": { "node": ">=12.13.0" } @@ -871,9 +871,9 @@ "dev": true }, "node_modules/@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==", "dev": true }, "node_modules/@cspell/dict-r": { @@ -2155,17 +2155,17 @@ } }, "node_modules/cspell": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell/-/cspell-5.21.1.tgz", - "integrity": "sha512-R5I3QwohSkhclfZSCMvTbGb9zZHyZRno4pnUtEN5cVkUXfHHg751rZwO+zUwQcG7mLGHwU6iBNs5kAgH0UxISw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell/-/cspell-6.0.0-alpha.0.tgz", + "integrity": "sha512-2O3dp/VsHAXxZ61fSTwAjiTy4QZgFDz4iyld18HnBzyObmv/YNZxFJ0Qjcf6ywHnRyxZdMFzgxWzuf5Jq0laIQ==", "dev": true, "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "chalk": "^4.1.2", "commander": "^9.2.0", - "cspell-gitignore": "^5.21.1", - "cspell-glob": "^5.21.1", - "cspell-lib": "^5.21.1", + "cspell-gitignore": "^6.0.0-alpha.0", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-lib": "^6.0.0-alpha.0", "fast-json-stable-stringify": "^2.1.0", "file-entry-cache": "^6.0.1", "fs-extra": "^10.1.0", @@ -2187,12 +2187,12 @@ } }, "node_modules/cspell-gitignore": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.21.1.tgz", - "integrity": "sha512-PFTGjUegbCsH0db6+4+xFO/U68ghXNwPDzJRuJnxkwy9XlExcwz22eDisUwyO0fG4nbLJgfQoAuAXzT8LW3MDw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.0.0-alpha.0.tgz", + "integrity": "sha512-XhaS2jzR769wBtJX+014vQ0K4fIWo6X/HHL86KUodlY3VpXdaIrOsTW5a9tMEoVnj4PFhL5blmyeHqtuQADaUw==", "dev": true, "dependencies": { - "cspell-glob": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", "find-up": "^5.0.0" }, "bin": { @@ -2203,9 +2203,9 @@ } }, "node_modules/cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dev": true, "dependencies": { "micromatch": "^4.0.5" @@ -2215,30 +2215,30 @@ } }, "node_modules/cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "dev": true, "engines": { "node": ">=12.13.0" } }, "node_modules/cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "dev": true, "dependencies": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -2254,12 +2254,12 @@ } }, "node_modules/cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dev": true, "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -5313,9 +5313,9 @@ "dev": true }, "@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "dev": true, "requires": { "@cspell/dict-ada": "^2.0.0", @@ -5361,15 +5361,15 @@ } }, "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "dev": true }, "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==" }, "@cspell/dict-ada": { "version": "2.0.0", @@ -5564,9 +5564,9 @@ "dev": true }, "@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==", "dev": true }, "@cspell/dict-r": { @@ -6632,17 +6632,17 @@ "dev": true }, "cspell": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell/-/cspell-5.21.1.tgz", - "integrity": "sha512-R5I3QwohSkhclfZSCMvTbGb9zZHyZRno4pnUtEN5cVkUXfHHg751rZwO+zUwQcG7mLGHwU6iBNs5kAgH0UxISw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell/-/cspell-6.0.0-alpha.0.tgz", + "integrity": "sha512-2O3dp/VsHAXxZ61fSTwAjiTy4QZgFDz4iyld18HnBzyObmv/YNZxFJ0Qjcf6ywHnRyxZdMFzgxWzuf5Jq0laIQ==", "dev": true, "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "chalk": "^4.1.2", "commander": "^9.2.0", - "cspell-gitignore": "^5.21.1", - "cspell-glob": "^5.21.1", - "cspell-lib": "^5.21.1", + "cspell-gitignore": "^6.0.0-alpha.0", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-lib": "^6.0.0-alpha.0", "fast-json-stable-stringify": "^2.1.0", "file-entry-cache": "^6.0.1", "fs-extra": "^10.1.0", @@ -6655,46 +6655,46 @@ } }, "cspell-gitignore": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.21.1.tgz", - "integrity": "sha512-PFTGjUegbCsH0db6+4+xFO/U68ghXNwPDzJRuJnxkwy9XlExcwz22eDisUwyO0fG4nbLJgfQoAuAXzT8LW3MDw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.0.0-alpha.0.tgz", + "integrity": "sha512-XhaS2jzR769wBtJX+014vQ0K4fIWo6X/HHL86KUodlY3VpXdaIrOsTW5a9tMEoVnj4PFhL5blmyeHqtuQADaUw==", "dev": true, "requires": { - "cspell-glob": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", "find-up": "^5.0.0" } }, "cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dev": true, "requires": { "micromatch": "^4.0.5" } }, "cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "dev": true }, "cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "dev": true, "requires": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -6707,12 +6707,12 @@ } }, "cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dev": true, "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" } diff --git a/integration-tests/package.json b/integration-tests/package.json index f96a6d7921a..fba217e94d1 100644 --- a/integration-tests/package.json +++ b/integration-tests/package.json @@ -1,13 +1,13 @@ { "name": "cspell-integration-tests", "private": true, - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Integration tests for cspell. It will execute cspell against various repositories and compare the results.", "bin": { "cspell-integration-tests": "tester.js" }, "engines": { - "node": ">=12.30" + "node": ">=14" }, "scripts": { "build": "tsc -p .", @@ -24,7 +24,7 @@ "author": "Jason Dent", "license": "MIT", "dependencies": { - "@cspell/cspell-types": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0", "@octokit/rest": "^18.12.0", "chalk": "^4.1.2", "commander": "^9.2.0", @@ -41,7 +41,7 @@ "@types/node": "^17.0.35", "@types/rimraf": "^3.0.2", "@types/shelljs": "^0.8.11", - "cspell": "^6.0.0-alpha.0", + "cspell": "^6.0.0", "jest": "^28.1.0" }, "main": "tester.js", diff --git a/integration-tests/snapshots/Azure/azure-rest-api-specs/snapshot.txt b/integration-tests/snapshots/Azure/azure-rest-api-specs/snapshot.txt index c5b51250ff7..e8fb387b6fc 100644 --- a/integration-tests/snapshots/Azure/azure-rest-api-specs/snapshot.txt +++ b/integration-tests/snapshots/Azure/azure-rest-api-specs/snapshot.txt @@ -3,7 +3,7 @@ Repository: Azure/azure-rest-api-specs Url: "https://github.com/Azure/azure-rest-api-specs.git" Args: ["--config=cSpell.json","**/*.{md,ts,js}"] Lines: - CSpell: Files checked: 1845, Issues found: 2153 in 690 files + CSpell: Files checked: 1845, Issues found: 2145 in 690 files exit code: 1 ./README.md:20:179 - Unknown word (Dataplane) -- RPs' Resource types or Dataplane API versions that represent ./README.md:30:134 - Unknown word (dataplane) -- per resource type or dataplane service version. This @@ -375,9 +375,7 @@ Lines: ./specification/servicebus/resource-manager/readme.md:41:51 - Unknown word (migrationconfigs) -- preview/2021-01-01-preview/migrationconfigs.json ./specification/servicebus/resource-manager/readme.md:42:51 - Unknown word (networksets) -- preview/2021-01-01-preview/networksets.json ./specification/servicefabric/resource-manager/readme.md:98:54 - Unknown word (managedcluster) -- preview/2020-01-01-preview/managedcluster.json -./specification/servicefabric/resource-manager/readme.md:99:54 - Unknown word (nodetype) -- preview/2020-01-01-preview/nodetype.json ./specification/servicefabric/resource-manager/readme.python.md:31:36 - Unknown word (Managedcluster) -- $['operationId'] = 'Managedcluster_List' -./specification/servicefabric/resource-manager/readme.python.md:35:36 - Unknown word (Nodetype) -- $['operationId'] = 'Nodetype_List' ./specification/servicefabricmanagedclusters/resource-manager/readme.md:177:40 - Unknown word (servicefabricmanagedclusters) -- csharp-sdks-folder)/servicefabricmanagedclusters/Microsoft.Azure.Management ./specification/servicefabricmanagedclusters/resource-manager/readme.md:78:54 - Unknown word (managedapplication) -- preview/2022-02-01-preview/managedapplication.json ./specification/servicelinker/resource-manager/readme.csharp.md:14:40 - Unknown word (servicelinker) -- csharp-sdks-folder)/servicelinker/management/Microsoft diff --git a/integration-tests/snapshots/TheAlgorithms/Python/report.yaml b/integration-tests/snapshots/TheAlgorithms/Python/report.yaml index 3466d03be57..2b2f5508b67 100644 --- a/integration-tests/snapshots/TheAlgorithms/Python/report.yaml +++ b/integration-tests/snapshots/TheAlgorithms/Python/report.yaml @@ -4,8 +4,8 @@ Url: https://github.com/TheAlgorithms/Python.git Args: ["**/*.{md,py}"] Summary: files: 1032 - filesWithIssues: 393 - issues: 2763 + filesWithIssues: 392 + issues: 2752 errors: 0 Errors: [] @@ -340,7 +340,6 @@ issues: - "data_structures/heap/binomial_heap.py:54:64 logn U elements: Guaranteed logn, amoratized 1" - "data_structures/heap/binomial_heap.py:54:70 amoratized U elements: Guaranteed logn, amoratized 1" - "data_structures/heap/binomial_heap.py:55:56 logm U size m and n: O(logn + logm)" - - "data_structures/heap/binomial_heap.py:120:38 inplace U merged heap; (merge is inplace)" - "data_structures/heap/binomial_heap.py:178:19 Neighbouring U # Neighbouring Nodes" - "data_structures/heap/binomial_heap.py:327:11 Neighbour U # Neighbour nodes" - "data_structures/linked_list/deque_doubly.py:103:8 Equeu U # DEqueu Remove Operations (At" @@ -357,7 +356,6 @@ issues: - "digital_image_processing/convert_to_negative.py:4:44 imshow U destroyAllWindows, imread, imshow, waitKey" - "digital_image_processing/edge_detection/canny.py:5:39 sobel U image_processing.filters.sobel_filter import sobel" - "digital_image_processing/edge_detection/canny.py:12:15 mgrid U x, y = np.mgrid[0 - center : k_size" - - "digital_image_processing/filters/convolve.py:30:63 vstack U pixels into a row and np.vstack all rows" - "digital_image_processing/filters/gabor_filter.py:1:25 Gaborfilter U Implementation of the Gaborfilter" - "digital_image_processing/filters/gabor_filter.py:7:5 gabor U def gabor_filter_kernel(" - "digital_image_processing/filters/gabor_filter.py:8:5 ksize U ksize: int, sigma: int, theta" @@ -922,7 +920,6 @@ issues: - "sorts/external_sort.py:85:9 unshift U def unshift(self, index):" - "sorts/gnome_sort.py:34:8 Gadeimnoprstu U ' !Gadeimnoprstu'" - "sorts/iterative_merge_sort.py:3:9 Aman U Author: Aman Gupta" - - "sorts/msd_radix_sort.py:79:5 Inplace U Inplace implementation of the" - "sorts/natural_sort.py:27:9 alphanum U def alphanum_key(key):" - "sorts/normal_distribution_quick_sort.md:13:12 numpy U >>> import numpy as np" - "sorts/normal_distribution_quick_sort.md:14:10 tempfile U >>> from tempfile import TemporaryFile" diff --git a/integration-tests/snapshots/TheAlgorithms/Python/snapshot.txt b/integration-tests/snapshots/TheAlgorithms/Python/snapshot.txt index 248771f1a6b..f71c9e0d75f 100644 --- a/integration-tests/snapshots/TheAlgorithms/Python/snapshot.txt +++ b/integration-tests/snapshots/TheAlgorithms/Python/snapshot.txt @@ -3,7 +3,7 @@ Repository: TheAlgorithms/Python Url: "https://github.com/TheAlgorithms/Python.git" Args: ["**/*.{md,py}"] Lines: - CSpell: Files checked: 1032, Issues found: 2763 in 393 files + CSpell: Files checked: 1032, Issues found: 2752 in 392 files exit code: 1 ./CONTRIBUTING.md:131:33 - Unknown word (pytest) -- doctests will be run by pytest as part of our automated ./CONTRIBUTING.md:134:14 - Unknown word (doctest) -- python3 -m doctest -v my_submission.py @@ -428,7 +428,6 @@ Lines: ./data_structures/binary_tree/wavelet_tree.py:120:5 - Unknown word (quantile) -- def quantile(node: Node | None, index ./data_structures/binary_tree/wavelet_tree.py:18:14 - Unknown word (maxx) -- self.maxx: int = -1 ./data_structures/disjoint_set/alternate_disjoint_set.py:54:26 - Unknown word (disj) -- def get_parent(self, disj_set: int) -> int: -./data_structures/heap/binomial_heap.py:120:38 - Unknown word (inplace) -- merged heap; (merge is inplace) ./data_structures/heap/binomial_heap.py:178:19 - Unknown word (Neighbouring) -- # Neighbouring Nodes ./data_structures/heap/binomial_heap.py:327:11 - Unknown word (Neighbour) -- # Neighbour nodes ./data_structures/heap/binomial_heap.py:54:64 - Unknown word (logn) -- elements: Guaranteed logn, amoratized 1 @@ -448,7 +447,6 @@ Lines: ./digital_image_processing/convert_to_negative.py:4:44 - Unknown word (imshow) -- destroyAllWindows, imread, imshow, waitKey ./digital_image_processing/edge_detection/canny.py:12:15 - Unknown word (mgrid) -- x, y = np.mgrid[0 - center : k_size ./digital_image_processing/edge_detection/canny.py:5:39 - Unknown word (sobel) -- image_processing.filters.sobel_filter import sobel -./digital_image_processing/filters/convolve.py:30:63 - Unknown word (vstack) -- pixels into a row and np.vstack all rows ./digital_image_processing/filters/gabor_filter.py:14:24 - Unknown word (Gabor) -- of Gabor function. ./digital_image_processing/filters/gabor_filter.py:1:25 - Unknown word (Gaborfilter) -- Implementation of the Gaborfilter ./digital_image_processing/filters/gabor_filter.py:7:5 - Unknown word (gabor) -- def gabor_filter_kernel( @@ -917,7 +915,6 @@ Lines: ./sorts/external_sort.py:85:9 - Unknown word (unshift) -- def unshift(self, index): ./sorts/gnome_sort.py:34:8 - Unknown word (Gadeimnoprstu) -- ' !Gadeimnoprstu' ./sorts/iterative_merge_sort.py:3:9 - Unknown word (Aman) -- Author: Aman Gupta -./sorts/msd_radix_sort.py:79:5 - Unknown word (Inplace) -- Inplace implementation of the ./sorts/natural_sort.py:27:9 - Unknown word (alphanum) -- def alphanum_key(key): ./sorts/normal_distribution_quick_sort.md:13:12 - Unknown word (numpy) -- >>> import numpy as np ./sorts/normal_distribution_quick_sort.md:14:10 - Unknown word (tempfile) -- >>> from tempfile import TemporaryFile diff --git a/integration-tests/snapshots/django/django/report.yaml b/integration-tests/snapshots/django/django/report.yaml index 6b92ccc7f5d..a71a726ed27 100644 --- a/integration-tests/snapshots/django/django/report.yaml +++ b/integration-tests/snapshots/django/django/report.yaml @@ -4,8 +4,8 @@ Url: https://github.com/django/django.git Args: ["**/*.{md,py}"] Summary: files: 2750 - filesWithIssues: 941 - issues: 8402 + filesWithIssues: 934 + issues: 8309 errors: 0 Errors: [] @@ -246,7 +246,6 @@ issues: - "django/contrib/gis/gdal/geometries.py:356:25 wkbsize U return capi.get_wkbsize(self.ptr)" - "django/contrib/gis/gdal/geometries.py:409:13 klone U klone = self.clone()" - "django/contrib/gis/gdal/geometries.py:474:10 geomgen U def _geomgen(self, gen_func, other" - - "django/contrib/gis/gdal/libgdal.py:4:20 CDLL U from ctypes import CDLL, CFUNCTYPE, c_char_p" - "django/contrib/gis/gdal/libgdal.py:67:1 lgdal U lgdal = CDLL(lib_path)" - "django/contrib/gis/gdal/libgdal.py:70:3 STDCALL U # STDCALL, while others are not" - "django/contrib/gis/gdal/libgdal.py:76:5 lwingdal U lwingdal = WinDLL(lib_path)" @@ -312,7 +311,6 @@ issues: - "django/contrib/gis/geos/geometry.py:605:45 preservesimplify U _topology(capi.geos_preservesimplify(self.ptr, tolerance" - "django/contrib/gis/geos/geometry.py:614:41 symdifference U _topology(capi.geos_symdifference(self.ptr, other.ptr" - "django/contrib/gis/geos/geometry.py:701:41 linemerge U _topology(capi.geos_linemerge(self.ptr))" - - "django/contrib/gis/geos/libgeos.py:44:47 dylib U libgeos_c.[so|so.1|dylib].)." - "django/contrib/gis/geos/libgeos.py:61:6 lgeos U _lgeos = CDLL(lib_path)" - "django/contrib/gis/geos/libgeos.py:65:23 threadsafe U # geos/prototypes/threadsafe.py." - "django/contrib/gis/geos/libgeos.py:76:1 NOTICEFUNC U NOTICEFUNC = CFUNCTYPE(None, c" @@ -345,7 +343,6 @@ issues: - "django/contrib/gis/utils/layermapping.py:428:17 prec U max_prec = model_field.max_digits" - "django/contrib/gis/utils/layermapping.py:619:33 borked U # Something borked the validation" - "django/contrib/gis/utils/layermapping.py:694:9 nfeat U nfeat = self.layer.num_feat" - - "django/contrib/gis/utils/ogrinspect.py:177:9 kwlist U kwlist = []" - "django/contrib/messages/storage/cookie.py:68:7 uwsgi's U # uwsgi's default configuration" - "django/contrib/messages/storage/cookie.py:72:23 messagesnotfinished U not_finished = \"__messagesnotfinished__\"" - "django/contrib/postgres/aggregates/statistics.py:36:32 SAMP U self.function = \"COVAR_SAMP\" if sample else \"COVAR" @@ -375,9 +372,8 @@ issues: - "django/contrib/sessions/backends/base.py:38:25 testcookie U TEST_COOKIE_NAME = \"testcookie\"" - "django/contrib/sessions/backends/file.py:129:26 WRONLY U flags = os.O_WRONLY | getattr(os, \"O_BINARY" - "django/contrib/sessions/backends/file.py:131:43 CREAT U |= os.O_EXCL | os.O_CREAT" - - "django/contrib/sitemaps/views.py:3:25 dataclass U from dataclasses import dataclass" - - "django/contrib/sitemaps/views.py:35:45 noindex U headers[\"X-Robots-Tag\"] = \"noindex, noodp, noarchive\"" - - "django/contrib/sitemaps/views.py:35:54 noodp U Robots-Tag\"] = \"noindex, noodp, noarchive\"" + - "django/contrib/sitemaps/views.py:35:45 noindex U headers[\"X-Robots-Tag\"] = \"noindex, noodp, noarchive\"" + - "django/contrib/sitemaps/views.py:35:54 noodp U Robots-Tag\"] = \"noindex, noodp, noarchive\"" - "django/contrib/sites/management.py:39:60 incrementation U instead of relying on auto-incrementation," - "django/contrib/staticfiles/handlers.py:4:6 asgiref U from asgiref.sync import sync_to" - "django/contrib/staticfiles/handlers.py:9:27 asgi U django.core.handlers.asgi import ASGIHandler" @@ -415,7 +411,6 @@ issues: - "django/core/files/locks.py:6:1 Anatoly U Anatoly Techtonik for Roundup" - "django/core/files/locks.py:6:9 Techtonik U Anatoly Techtonik for Roundup [2] (license" - "django/core/files/locks.py:25:14 filedescriptor U \"\"\"Get a filedescriptor from something which" - - "django/core/files/locks.py:42:17 wintypes U from ctypes.wintypes import BOOL, DWORD," - "django/core/files/locks.py:48:28 pyserial U -- Adapted from the pyserial project ---" - "django/core/files/locks.py:56:37 stackoverflow U inside Structure by stackoverflow:3480240 ---" - "django/core/files/locks.py:73:5 LPOVERLAPPED U LPOVERLAPPED = POINTER(OVERLAPPED" @@ -423,21 +418,17 @@ issues: - "django/core/files/move.py:86:37 CIFS U Certain filesystems (e.g. CIFS) fail to copy the file" - "django/core/files/move.py:99:24 winerror U if getattr(e, \"winerror\", 0) != 32:" - "django/core/files/storage.py:378:17 scandir U with os.scandir(path) as entries:" - - "django/core/files/temp.py:42:40 bufsize U _(self, mode=\"w+b\", bufsize=-1, suffix=\"\", prefix" - "django/core/files/utils.py:29:54 underlaying U forward file methods to an underlaying file" - "django/core/handlers/asgi.py:70:19 multiprocess U \"wsgi.multiprocess\": True," - "django/core/handlers/base.py:193:58 subthread U synchronous view, run it in a subthread." - "django/core/handlers/wsgi.py:8:35 repercent U utils.encoding import repercent_broken_unicode" - "django/core/handlers/wsgi.py:174:53 lighttpd U not every web server (lighttpd!) passes this" - "django/core/mail/__init__.py:91:5 datatuple U datatuple, fail_silently=False" - - "django/core/mail/backends/smtp.py:150:58 linesep U recipients, message.as_bytes(linesep=\"\\r\\n\")" - - "django/core/mail/message.py:19:46 punycode U encoding import force_str, punycode" - "django/core/management/__init__.py:263:39 retrigger U following line will retrigger an ImproperlyConfigured" - "django/core/management/__init__.py:286:58 COMREPLY U is passed to BASH's `COMREPLY` variable and" - "django/core/management/__init__.py:396:49 noreload U \"runserver\" and \"--noreload\" not in self.argv:" - "django/core/management/base.py:330:25 djangoprojects U '\"/home/djangoprojects/myproject\".'" - "django/core/management/color.py:9:26 termcolors U django.utils import termcolors" - - "django/core/management/color.py:39:49 HKEY U winreg.OpenKey(winreg.HKEY_CURRENT_USER, \"Console" - "django/core/management/color.py:52:13 ANSICON U or \"ANSICON\" in os.environ" - "django/core/management/commands/compilemessages.py:93:58 topdown U filenames in os.walk(\".\", topdown=True):" - "django/core/management/commands/compilemessages.py:131:17 ldir U for ldir in dirs:" @@ -445,8 +436,7 @@ issues: - "django/core/management/commands/createcachetable.py:42:23 tablenames U def handle(self, *tablenames, **options):" - "django/core/management/commands/diffsettings.py:4:28 omittable U module_to_dict(module, omittable=lambda k: k.startswith" - "django/core/management/commands/diffsettings.py:64:34 postconf U Inspired by Postfix's \"postconf -n\"." - - "django/core/management/commands/inspectdb.py:273:26 sfield U new_name = \"%sfield\" % new_name" - - "django/core/management/commands/inspectdb.py:276:20 iskeyword U if keyword.iskeyword(new_name):" + - "django/core/management/commands/inspectdb.py:273:26 sfield U new_name = \"%sfield\" % new_name" - "django/core/management/commands/makemessages.py:22:19 jslex U from django.utils.jslex import prepare_js_for" - "django/core/management/commands/makemessages.py:78:12 templatized U def is_templatized(self):" - "django/core/management/commands/makemessages.py:79:28 djangojs U if self.domain == \"djangojs\":" @@ -466,15 +456,12 @@ issues: - "django/core/management/commands/shell.py:13:10 bpython U \"bpython, if one of them is available" - "django/core/management/commands/squashmigrations.py:144:13 smigration U for smigration in migrations_to_squash" - "django/core/management/templates.py:315:16 addheaders U opener.addheaders = [(\"User-Agent\", f" - - "django/core/management/templates.py:401:65 IWUSR U st.st_mode) | stat.S_IWUSR" - - "django/core/management/utils.py:56:52 pathsep U PATH\", \"\").split(os.pathsep)" - - "django/core/management/utils.py:73:13 fext U fext = f + ext" + - "django/core/management/utils.py:73:13 fext U fext = f + ext" - "django/core/paginator.py:29:26 paginators U range generated by paginators, e.g. [1, 2, '…', 5" - "django/core/serializers/__init__.py:31:6 jsonl U \"jsonl\": \"django.core.serializers" - "django/core/serializers/base.py:2:32 unserializer U abstract serializer/unserializer base classes." - "django/core/serializers/base.py:82:9 perc U perc = count * 100 // self" - "django/core/serializers/pyyaml.py:34:22 representer U DjangoSafeDumper.add_representer(decimal.Decimal, DjangoSafeDu" - - "django/core/serializers/xml_serializer.py:7:14 expatreader U from xml.sax.expatreader import ExpatParser as" - "django/core/serializers/xml_serializer.py:14:19 xmlutils U from django.utils.xmlutils import SimplerXMLGenerator" - "django/core/serializers/xml_serializer.py:116:59 subelements U keys are rolled out as subelements" - "django/core/serializers/xml_serializer.py:399:33 Heimes U code based on Christian Heimes' defusedxml" @@ -514,11 +501,11 @@ issues: - "django/db/backends/mysql/creation.py:86:48 SIGPIPE U dump_proc to receive a SIGPIPE if the load process" - "django/db/backends/mysql/introspection.py:27:20 NEWDECIMAL U FIELD_TYPE.NEWDECIMAL: \"DecimalField\"," - "django/db/backends/mysql/introspection.py:35:20 LONGLONG U FIELD_TYPE.LONGLONG: \"BigIntegerField\"," - - "django/db/backends/mysql/introspection.py:219:23 ttype U token.ttype == sqlparse.tokens.Name" - "django/db/backends/mysql/introspection.py:312:39 colseq U non_unique, index, colseq, column, order, type" - "django/db/backends/mysql/operations.py:43:15 DAYOFWEEK U # DAYOFWEEK() returns an integer" - "django/db/backends/mysql/operations.py:54:42 YEARWEEK U the year part from the YEARWEEK function, which returns" - "django/db/backends/mysql/operations.py:72:18 MAKEDATE U \"MAKEDATE(YEAR(%s), 1) + \"" + - "django/db/backends/mysql/operations.py:287:32 timespec U return value.isoformat(timespec=\"microseconds\")" - "django/db/backends/mysql/operations.py:369:17 TIMESTAMPDIFF U return \"TIMESTAMPDIFF(MICROSECOND, %s, %s" - "django/db/backends/oracle/base.py:76:61 DJANGOTEST U integrity constraint (TEST_DJANGOTEST.SYS" - "django/db/backends/oracle/base.py:129:23 NCLOB U \"JSONField\": \"NCLOB\"," @@ -609,7 +596,6 @@ issues: - "django/db/backends/sqlite3/_functions.py:61:50 dtdelta U function(\"django_format_dtdelta\", 3, _sqlite_format" - "django/db/backends/sqlite3/_functions.py:80:57 Samp U STDDEV_SAMP\", 1, StdDevSamp)" - "django/db/backends/sqlite3/_functions.py:84:26 compileoption U sql = \"select sqlite_compileoption_used('ENABLE_MATH_FUNCTIONS" - - "django/db/backends/sqlite3/base.py:7:21 dbapi U from sqlite3 import dbapi2 as Database" - "django/db/backends/sqlite3/base.py:142:44 DECLTYPES U types\": Database.PARSE_DECLTYPES | Database.PARSE_COLNAMES" - "django/db/backends/sqlite3/base.py:142:71 COLNAMES U DECLTYPES | Database.PARSE_COLNAMES," - "django/db/backends/sqlite3/base.py:149:22 pysqlite U # default in pysqlite and it cannot be changed" @@ -663,12 +649,10 @@ issues: - "django/db/models/lookups.py:499:24 othercol U # col LIKE othercol || '%%'" - "django/db/models/lookups.py:686:7 UUIDI U class UUIDIExact(UUIDTextMixin," - "django/db/models/options.py:135:37 proxying U class this model is proxying. Note that proxy_for" - - "django/db/models/options.py:333:20 insort U bisect.insort(self.local_many_to_many" - "django/db/models/options.py:522:33 longwinded U The third lambda is a longwinded way of checking f.related" - "django/db/models/query_utils.py:21:49 somecol U converting lookups (fk__somecol). The contents" - "django/db/models/query_utils.py:96:19 subq U split_subq=False," - "django/db/models/query.py:235:17 rowfactory U rowfactory = operator.itemgetter" - - "django/db/models/query.py:310:37 inplace U self._filter_or_exclude_inplace(negate, args, kwargs" - "django/db/models/query.py:546:15 aiterator U async def aiterator(self, chunk_size=20" - "django/db/models/query.py:607:15 aaggregate U async def aaggregate(self, *args, **kwargs" - "django/db/models/query.py:623:15 acount U async def acount(self):" @@ -738,13 +722,11 @@ issues: - "django/http/request.py:209:59 domainless U (but schemeless and domainless) for the" - "django/http/request.py:658:66 codepoint U with Unicode \"unknown\" codepoint" - "django/http/request.py:659:7 ufffd U (\\ufffd)." - - "django/http/response.py:73:48 maxlinelen U Header(value, \"utf-8\", maxlinelen=sys.maxsize).encode" - "django/http/response.py:524:37 getbuffer U elif hasattr(filelike, \"getbuffer\"):" - "django/http/response.py:526:42 nbytes U filelike.getbuffer().nbytes - filelike.tell()" - "django/http/response.py:543:19 uncompressing U # uncompressing files." - "django/middleware/common.py:125:13 referer U referer = request.META.get(" - "django/middleware/common.py:125:46 REFERER U request.META.get(\"HTTP_REFERER\", \"\")" - - "django/middleware/csrf.py:433:31 dont U if getattr(request, \"_dont_enforce_csrf_checks" - "django/middleware/csrf.py:452:62 MITM U (man-in-the-middle, MITM) sends a" - "django/middleware/gzip.py:21:17 gzipping U # Avoid gzipping if we've already got" - "django/template/__init__.py:34:19 smartif U - django.template.smartif" @@ -791,11 +773,9 @@ issues: - "django/urls/conf.py:1:27 Lsconfs U Functions for use in URLsconfs.\"\"\"" - "django/urls/resolvers.py:24:39 SUBDELIMS U http import RFC3986_SUBDELIMS, escape_leading_slashes" - "django/urls/resolvers.py:670:66 submatch U arguments in match with submatch" - - "django/urls/resolvers.py:793:45 pchar U safe characters from `pchar` definition of RFC" - "django/urls/utils.py:34:9 parentmod U parentmod, submod = get_mod_func" - "django/urls/utils.py:34:20 submod U parentmod, submod = get_mod_func(mod_name" - "django/utils/archive.py:111:28 unarchived U permissions to the unarchived file." - - "django/utils/archive.py:113:26 IROTH U if mode & stat.S_IROTH:" - "django/utils/autoreload.py:97:25 tcgetattr U attr_list = termios.tcgetattr(sys.stdin)" - "django/utils/autoreload.py:100:29 SIGTTOU U if hasattr(signal, \"SIGTTOU\"):" - "django/utils/autoreload.py:104:17 tcsetattr U termios.tcsetattr(sys.stdin, termios.TCSANOW" @@ -827,8 +807,6 @@ issues: - "django/utils/encoding.py:151:66 multibyte U bytes ≥ 128 are part of multibyte" - "django/utils/encoding.py:153:2 hexdig U _hexdig = \"0123456789ABCDEFabcdef" - "django/utils/encoding.py:203:23 alphanum U # unreserved = alphanum | mark" - - "django/utils/encoding.py:213:19 Punycode U \"\"\"Return the Punycode of the given domain" - - "django/utils/encoding.py:245:37 altsep U about `os.sep` and `os.altsep` but I want to leave" - "django/utils/encoding.py:246:28 hardcoding U some flexibility for hardcoding separators." - "django/utils/feedgenerator.py:8:16 Poynter U ... title=\"Poynter E-Media Tidbits\"," - "django/utils/formats.py:275:33 CFGY U ?:^|[^%])(?:%%)*)%([CFGY])\"," @@ -1389,7 +1367,6 @@ issues: - "tests/apps/tests.py:347:42 lazyb U model_name in [\"lazya\", \"lazyb\", \"lazyb\", \"lazyc\"," - "tests/apps/tests.py:347:60 lazyc U \"lazyb\", \"lazyb\", \"lazyc\", \"lazya\"]" - "tests/async_queryset/tests.py:51:52 relatedmodels U objects.prefetch_related(\"relatedmodels\").aiterator()" - - "tests/async_queryset/tests.py:220:47 fromstring U xml.etree.ElementTree.fromstring(result)" - "tests/async_queryset/tests.py:230:53 simplemodel U FROM async_queryset_simplemodel WHERE created=%s\"" - "tests/auth_tests/models/proxy.py:12:34 proxys U permissions = ((\"display_proxys\", \"May display proxys" - "tests/auth_tests/test_auth_backends.py:178:12 Regressiontest U \"\"\"Regressiontest for #12462\"\"\"" @@ -1467,7 +1444,6 @@ issues: - "tests/auth_tests/test_validators.py:261:44 ᴮᴵᴳᴮᴵᴿᴰ U usernames = [\"joe\", \"René\", \"ᴮᴵᴳᴮᴵᴿᴰ\", \"أحمد\"]" - "tests/auth_tests/test_validators.py:261:55 أحمد U \"René\", \"ᴮᴵᴳᴮᴵᴿᴰ\", \"أحمد\"]" - "tests/auth_tests/test_validators.py:265:14 zerowidth U \"zerowidth\\u200Bspace\"," - - "tests/auth_tests/test_validators.py:265:28 Bspace U \"zerowidth\\u200Bspace\"," - "tests/auth_tests/test_validators.py:266:14 nonbreaking U \"nonbreaking\\u00A0space\"," - "tests/auth_tests/test_validators.py:268:14 trailingnewline U \"trailingnewline\\u000A\"," - "tests/auth_tests/test_views.py:279:35 anewpassword U \"new_password1\": \"anewpassword\"," @@ -1631,7 +1607,6 @@ issues: - "tests/file_storage/tests.py:720:23 pathconf U return os.pathconf(dir_to_test, \"PC_NAME" - "tests/file_storage/tests.py:836:31 longext U filename = \"short.longext\"" - "tests/file_uploads/tests.py:376:49 monkeybusiness U uploader We have to do some monkeybusiness here to construct" - - "tests/file_uploads/tests.py:378:14 pardir U # os.pardir). This similar to what" - "tests/file_uploads/tests.py:606:14 fileupload U def test_fileupload_getlist(self):" - "tests/file_uploads/tests.py:634:14 fileuploads U def test_fileuploads_closed_at_request_end" - "tests/file_uploads/tests.py:914:61 Afun U This%20is%20%2A%2A%2Afun%2A%2A%2A\"," @@ -1993,11 +1968,9 @@ issues: - "tests/i18n/patterns/tests.py:177:68 profiel U register/\", \"nl\"), \"/nl/profiel/registreren/\"" - "tests/i18n/patterns/tests.py:271:38 conta U = self.client.get(\"/conta/registre-se/\", HTTP" - "tests/i18n/patterns/tests.py:271:44 registre U self.client.get(\"/conta/registre-se/\", HTTP_ACCEPT_LANGUAGE" - - "tests/i18n/test_compilation.py:51:33 IREAD U file_en.chmod(stat.S_IREAD)" - "tests/i18n/test_compilation.py:242:14 nofuzzy U def test_nofuzzy_compiling(self):" - "tests/i18n/test_compilation.py:246:53 Ленин U ssertEqual(gettext(\"Lenin\"), \"Ленин\")" - "tests/i18n/test_compilation.py:256:53 Водка U ssertEqual(gettext(\"Vodka\"), \"Водка\")" - - "tests/i18n/test_extraction.py:73:39 curdir U prefix = \"%s%s\" % (os.curdir, os.sep)" - "tests/i18n/test_extraction.py:159:28 msgctxt U self.assertIn('msgctxt \"Special trans context" - "tests/i18n/test_extraction.py:225:40 áéíóúö U non ASCII characters: áéíóúö\"," - "tests/i18n/test_extraction.py:281:43 vidéo U join(self.test_dir, \"vidéo.txt\"), \"a\").close()" @@ -2328,7 +2301,6 @@ issues: - "tests/model_fields/test_datetimefield.py:32:9 datetim U datetim = datetime.datetime" - "tests/model_fields/test_durationfield.py:55:70 durationmodel U model\": \"model_fields.durationmodel\", '" - "tests/model_fields/test_genericipaddressfield.py:9:14 genericipaddressfield U def test_genericipaddressfield_formfield_protocol(self" - - "tests/model_fields/test_imagefield.py:113:20 notequal U def test_equal_notequal_hash(self):" - "tests/model_fields/test_integerfield.py:234:51 intput U raises_error_on_invalid_intput(self):" - "tests/model_fields/test_jsonfield.py:145:60 jsonmodel U model\": \"model_fields.jsonmodel\", \"pk\": null}]'" - "tests/model_fields/test_jsonfield.py:172:42 nullablejsonmodel U model=\"model_fields.nullablejsonmodel\">'" @@ -2835,7 +2807,6 @@ issues: - "tests/test_utils/test_testcase.py:144:30 Käfer U self.car.name = \"VW sKäfer\"" - "tests/test_utils/test_testcase.py:149:37 Coccinelle U car.name = \"Volkswagen Coccinelle\"" - "tests/test_utils/test_transactiontestcase.py:65:45 transactiontestcase U to test_utils.test_transactiontestcase.\"" - - "tests/test_utils/tests.py:353:14 maxdiff U def test_maxdiff(self):" - "tests/test_utils/tests.py:771:26 attibutes U def test_non_boolean_attibutes(self):" - "tests/test_utils/tests.py:2238:11 visualisation U A visualisation of the callback tree" - "tests/test_utils/tests.py:2350:38 defualt U class__.databases = {\"defualt\"}" @@ -2867,9 +2838,6 @@ issues: - "tests/user_commands/tests.py:108:17 cmds U cmds = find_commands(" - "tests/user_commands/tests.py:111:34 eggcommand U assertEqual(cmds, [\"eggcommand\"])" - "tests/user_commands/tests.py:414:14 outputwrapper U def test_outputwrapper_flush(self):" - - "tests/utils_tests/test_archive.py:60:23 IRWXU U mask = stat.S_IRWXU | stat.S_IRWXG | stat" - - "tests/utils_tests/test_archive.py:60:38 IRWXG U stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO" - - "tests/utils_tests/test_archive.py:60:53 IRWXO U stat.S_IRWXG | stat.S_IRWXO" - "tests/utils_tests/test_archive.py:66:44 leadpath U entry.name.startswith(\"leadpath_\")" - "tests/utils_tests/test_autoreload.py:98:30 Ceci U filename.write_text(\"Ceci n'est pas du Python" - "tests/utils_tests/test_autoreload.py:129:75 zipf U zipfile.ZIP_DEFLATED) as zipf:" diff --git a/integration-tests/snapshots/django/django/snapshot.txt b/integration-tests/snapshots/django/django/snapshot.txt index e8fb2b6ae76..943f00d4236 100644 --- a/integration-tests/snapshots/django/django/snapshot.txt +++ b/integration-tests/snapshots/django/django/snapshot.txt @@ -3,7 +3,7 @@ Repository: django/django Url: "https://github.com/django/django.git" Args: ["**/*.{md,py}"] Lines: - CSpell: Files checked: 2750, Issues found: 8402 in 941 files + CSpell: Files checked: 2750, Issues found: 8309 in 934 files exit code: 1 ./django/__init__.py:12:26 - Unknown word (urlresolvers) -- Set the thread-local urlresolvers script prefix if `set ./django/apps/config.py:217:40 - Unknown word (qualname) -- app_config_class.__qualname__, @@ -241,7 +241,6 @@ Lines: ./django/contrib/gis/gdal/geometries.py:474:10 - Unknown word (geomgen) -- def _geomgen(self, gen_func, other ./django/contrib/gis/gdal/geometries.py:7:55 - Unknown word (pythonic) -- present yet, the API is "pythonic" unlike ./django/contrib/gis/gdal/geometries.py:82:46 - Unknown word (LINEARRING) -- "type"].upper() == "LINEARRING": -./django/contrib/gis/gdal/libgdal.py:4:20 - Unknown word (CDLL) -- from ctypes import CDLL, CFUNCTYPE, c_char_p ./django/contrib/gis/gdal/libgdal.py:67:1 - Unknown word (lgdal) -- lgdal = CDLL(lib_path) ./django/contrib/gis/gdal/libgdal.py:70:3 - Unknown word (STDCALL) -- # STDCALL, while others are not ./django/contrib/gis/gdal/libgdal.py:76:5 - Unknown word (lwingdal) -- lwingdal = WinDLL(lib_path) @@ -308,7 +307,6 @@ Lines: ./django/contrib/gis/geos/geometry.py:614:41 - Unknown word (symdifference) -- _topology(capi.geos_symdifference(self.ptr, other.ptr ./django/contrib/gis/geos/geometry.py:701:41 - Unknown word (linemerge) -- _topology(capi.geos_linemerge(self.ptr)) ./django/contrib/gis/geos/libgeos.py:126:1 - Unknown word (PREPGEOM) -- PREPGEOM_PTR = POINTER(GEOSPrepGeom -./django/contrib/gis/geos/libgeos.py:44:47 - Unknown word (dylib) -- libgeos_c.[so|so.1|dylib].). ./django/contrib/gis/geos/libgeos.py:61:6 - Unknown word (lgeos) -- _lgeos = CDLL(lib_path) ./django/contrib/gis/geos/libgeos.py:65:23 - Unknown word (threadsafe) -- # geos/prototypes/threadsafe.py. ./django/contrib/gis/geos/libgeos.py:76:1 - Unknown word (NOTICEFUNC) -- NOTICEFUNC = CFUNCTYPE(None, c @@ -340,7 +338,6 @@ Lines: ./django/contrib/gis/utils/layermapping.py:428:17 - Unknown word (prec) -- max_prec = model_field.max_digits ./django/contrib/gis/utils/layermapping.py:619:33 - Unknown word (borked) -- # Something borked the validation ./django/contrib/gis/utils/layermapping.py:694:9 - Unknown word (nfeat) -- nfeat = self.layer.num_feat -./django/contrib/gis/utils/ogrinspect.py:177:9 - Unknown word (kwlist) -- kwlist = [] ./django/contrib/messages/storage/cookie.py:68:7 - Unknown word (uwsgi's) -- # uwsgi's default configuration ./django/contrib/messages/storage/cookie.py:72:23 - Unknown word (messagesnotfinished) -- not_finished = "__messagesnotfinished__" ./django/contrib/postgres/aggregates/statistics.py:36:32 - Unknown word (SAMP) -- self.function = "COVAR_SAMP" if sample else "COVAR @@ -372,7 +369,6 @@ Lines: ./django/contrib/sessions/backends/file.py:131:43 - Unknown word (CREAT) -- |= os.O_EXCL | os.O_CREAT ./django/contrib/sitemaps/views.py:35:45 - Unknown word (noindex) -- headers["X-Robots-Tag"] = "noindex, noodp, noarchive" ./django/contrib/sitemaps/views.py:35:54 - Unknown word (noodp) -- Robots-Tag"] = "noindex, noodp, noarchive" -./django/contrib/sitemaps/views.py:3:25 - Unknown word (dataclass) -- from dataclasses import dataclass ./django/contrib/sites/management.py:39:60 - Unknown word (incrementation) -- instead of relying on auto-incrementation, ./django/contrib/staticfiles/handlers.py:4:6 - Unknown word (asgiref) -- from asgiref.sync import sync_to ./django/contrib/staticfiles/handlers.py:9:27 - Unknown word (asgi) -- django.core.handlers.asgi import ASGIHandler @@ -407,7 +403,6 @@ Lines: ./django/core/checks/registry.py:42:42 - Unknown word (anothertag) -- registry.register('mytag', 'anothertag') ./django/core/checks/security/base.py:149:6 - Unknown word (xframe) -- def _xframe_middleware(): ./django/core/files/locks.py:25:14 - Unknown word (filedescriptor) -- """Get a filedescriptor from something which -./django/core/files/locks.py:42:17 - Unknown word (wintypes) -- from ctypes.wintypes import BOOL, DWORD, ./django/core/files/locks.py:48:28 - Unknown word (pyserial) -- -- Adapted from the pyserial project --- ./django/core/files/locks.py:4:43 - Unknown word (Feignberg) -- example by Jonathan Feignberg in the Python ./django/core/files/locks.py:56:37 - Unknown word (stackoverflow) -- inside Structure by stackoverflow:3480240 --- @@ -418,20 +413,16 @@ Lines: ./django/core/files/move.py:86:37 - Unknown word (CIFS) -- Certain filesystems (e.g. CIFS) fail to copy the file ./django/core/files/move.py:99:24 - Unknown word (winerror) -- if getattr(e, "winerror", 0) != 32: ./django/core/files/storage.py:378:17 - Unknown word (scandir) -- with os.scandir(path) as entries: -./django/core/files/temp.py:42:40 - Unknown word (bufsize) -- _(self, mode="w+b", bufsize=-1, suffix="", prefix ./django/core/files/utils.py:29:54 - Unknown word (underlaying) -- forward file methods to an underlaying file ./django/core/handlers/asgi.py:70:19 - Unknown word (multiprocess) -- "wsgi.multiprocess": True, ./django/core/handlers/base.py:193:58 - Unknown word (subthread) -- synchronous view, run it in a subthread. ./django/core/handlers/wsgi.py:174:53 - Unknown word (lighttpd) -- not every web server (lighttpd!) passes this ./django/core/handlers/wsgi.py:8:35 - Unknown word (repercent) -- utils.encoding import repercent_broken_unicode ./django/core/mail/__init__.py:91:5 - Unknown word (datatuple) -- datatuple, fail_silently=False -./django/core/mail/backends/smtp.py:150:58 - Unknown word (linesep) -- recipients, message.as_bytes(linesep="\r\n") -./django/core/mail/message.py:19:46 - Unknown word (punycode) -- encoding import force_str, punycode ./django/core/management/__init__.py:263:39 - Unknown word (retrigger) -- following line will retrigger an ImproperlyConfigured ./django/core/management/__init__.py:286:58 - Unknown word (COMREPLY) -- is passed to BASH's `COMREPLY` variable and ./django/core/management/__init__.py:396:49 - Unknown word (noreload) -- "runserver" and "--noreload" not in self.argv: ./django/core/management/base.py:330:25 - Unknown word (djangoprojects) -- '"/home/djangoprojects/myproject".' -./django/core/management/color.py:39:49 - Unknown word (HKEY) -- winreg.OpenKey(winreg.HKEY_CURRENT_USER, "Console ./django/core/management/color.py:52:13 - Unknown word (ANSICON) -- or "ANSICON" in os.environ ./django/core/management/color.py:9:26 - Unknown word (termcolors) -- django.utils import termcolors ./django/core/management/commands/compilemessages.py:131:17 - Unknown word (ldir) -- for ldir in dirs: @@ -441,7 +432,6 @@ Lines: ./django/core/management/commands/diffsettings.py:4:28 - Unknown word (omittable) -- module_to_dict(module, omittable=lambda k: k.startswith ./django/core/management/commands/diffsettings.py:64:34 - Unknown word (postconf) -- Inspired by Postfix's "postconf -n". ./django/core/management/commands/inspectdb.py:273:26 - Unknown word (sfield) -- new_name = "%sfield" % new_name -./django/core/management/commands/inspectdb.py:276:20 - Unknown word (iskeyword) -- if keyword.iskeyword(new_name): ./django/core/management/commands/makemessages.py:108:9 - Unknown word (xgettext) -- xgettext GNU gettext utility ./django/core/management/commands/makemessages.py:124:9 - Unknown word (postprocess) -- def postprocess_messages(self, msgs ./django/core/management/commands/makemessages.py:126:9 - Unknown word (Postprocess) -- Postprocess messages generated by @@ -461,8 +451,6 @@ Lines: ./django/core/management/commands/shell.py:13:10 - Unknown word (bpython) -- "bpython, if one of them is available ./django/core/management/commands/squashmigrations.py:144:13 - Unknown word (smigration) -- for smigration in migrations_to_squash ./django/core/management/templates.py:315:16 - Unknown word (addheaders) -- opener.addheaders = [("User-Agent", f -./django/core/management/templates.py:401:65 - Unknown word (IWUSR) -- st.st_mode) | stat.S_IWUSR -./django/core/management/utils.py:56:52 - Unknown word (pathsep) -- PATH", "").split(os.pathsep) ./django/core/management/utils.py:73:13 - Unknown word (fext) -- fext = f + ext ./django/core/paginator.py:29:26 - Unknown word (paginators) -- range generated by paginators, e.g. [1, 2, '…', 5 ./django/core/serializers/__init__.py:31:6 - Unknown word (jsonl) -- "jsonl": "django.core.serializers @@ -470,10 +458,9 @@ Lines: ./django/core/serializers/base.py:82:9 - Unknown word (perc) -- perc = count * 100 // self ./django/core/serializers/pyyaml.py:34:22 - Unknown word (representer) -- DjangoSafeDumper.add_representer(decimal.Decimal, DjangoSafeDu ./django/core/serializers/xml_serializer.py:116:59 - Unknown word (subelements) -- keys are rolled out as subelements -./django/core/serializers/xml_serializer.py:14:19 - Unknown word (xmlutils) -- from django.utils.xmlutils import SimplerXMLGenerator +./django/core/serializers/xml_serializer.py:14:19 - Unknown word (xmlutils) -- from django.utils.xmlutils import SimplerXMLGenerator ./django/core/serializers/xml_serializer.py:399:33 - Unknown word (Heimes) -- code based on Christian Heimes' defusedxml ./django/core/serializers/xml_serializer.py:399:41 - Unknown word (defusedxml) -- on Christian Heimes' defusedxml -./django/core/serializers/xml_serializer.py:7:14 - Unknown word (expatreader) -- from xml.sax.expatreader import ExpatParser as ./django/core/servers/basehttp.py:212:18 - Unknown word (requestline) -- self.raw_requestline = self.rfile.readline ./django/core/servers/basehttp.py:226:43 - Unknown word (backpointer) -- request_handler = self # backpointer for logging & connection ./django/core/servers/basehttp.py:31:50 - Unknown word (projectname) -- application`` object in ``projectname/wsgi.py``. @@ -507,10 +494,10 @@ Lines: ./django/db/backends/mysql/base.py:56:29 - Unknown word (reraises) -- exception instances and reraises them with the correct ./django/db/backends/mysql/creation.py:67:14 - Unknown word (mysqldump) -- "mysqldump", ./django/db/backends/mysql/creation.py:86:48 - Unknown word (SIGPIPE) -- dump_proc to receive a SIGPIPE if the load process -./django/db/backends/mysql/introspection.py:219:23 - Unknown word (ttype) -- token.ttype == sqlparse.tokens.Name ./django/db/backends/mysql/introspection.py:27:20 - Unknown word (NEWDECIMAL) -- FIELD_TYPE.NEWDECIMAL: "DecimalField", ./django/db/backends/mysql/introspection.py:312:39 - Unknown word (colseq) -- non_unique, index, colseq, column, order, type ./django/db/backends/mysql/introspection.py:35:20 - Unknown word (LONGLONG) -- FIELD_TYPE.LONGLONG: "BigIntegerField", +./django/db/backends/mysql/operations.py:287:32 - Unknown word (timespec) -- return value.isoformat(timespec="microseconds") ./django/db/backends/mysql/operations.py:369:17 - Unknown word (TIMESTAMPDIFF) -- return "TIMESTAMPDIFF(MICROSECOND, %s, %s ./django/db/backends/mysql/operations.py:43:15 - Unknown word (DAYOFWEEK) -- # DAYOFWEEK() returns an integer ./django/db/backends/mysql/operations.py:54:42 - Unknown word (YEARWEEK) -- the year part from the YEARWEEK function, which returns @@ -610,7 +597,6 @@ Lines: ./django/db/backends/sqlite3/base.py:244:21 - Unknown word (rowid) -- rowid, ./django/db/backends/sqlite3/base.py:343:8 - Unknown word (QMARK) -- FORMAT_QMARK_REGEX = _lazy_re_compile ./django/db/backends/sqlite3/base.py:348:66 - Unknown word (qmark) -- but pysqlite2 uses "qmark" style. -./django/db/backends/sqlite3/base.py:7:21 - Unknown word (dbapi) -- from sqlite3 import dbapi2 as Database ./django/db/backends/sqlite3/creation.py:105:13 - Unknown word (ondisk) -- ondisk_db = sqlite3.connect ./django/db/backends/sqlite3/creation.py:22:26 - Unknown word (memorydb) -- return "file:memorydb_%s?mode=memory&cache ./django/db/backends/sqlite3/features.py:49:16 - Unknown word (nocase) -- "ci": "nocase", @@ -658,7 +644,6 @@ Lines: ./django/db/models/lookups.py:499:24 - Unknown word (othercol) -- # col LIKE othercol || '%%' ./django/db/models/lookups.py:686:7 - Unknown word (UUIDI) -- class UUIDIExact(UUIDTextMixin, ./django/db/models/options.py:135:37 - Unknown word (proxying) -- class this model is proxying. Note that proxy_for -./django/db/models/options.py:333:20 - Unknown word (insort) -- bisect.insort(self.local_many_to_many ./django/db/models/options.py:522:33 - Unknown word (longwinded) -- The third lambda is a longwinded way of checking f.related ./django/db/models/query.py:1018:15 - Unknown word (aearliest) -- async def aearliest(self, *fields): ./django/db/models/query.py:1030:15 - Unknown word (alatest) -- async def alatest(self, *fields): @@ -668,7 +653,6 @@ Lines: ./django/db/models/query.py:1227:15 - Unknown word (acontains) -- async def acontains(self, obj): ./django/db/models/query.py:1242:15 - Unknown word (aexplain) -- async def aexplain(self, *, format=None ./django/db/models/query.py:235:17 - Unknown word (rowfactory) -- rowfactory = operator.itemgetter -./django/db/models/query.py:310:37 - Unknown word (inplace) -- self._filter_or_exclude_inplace(negate, args, kwargs ./django/db/models/query.py:546:15 - Unknown word (aiterator) -- async def aiterator(self, chunk_size=20 ./django/db/models/query.py:607:15 - Unknown word (aaggregate) -- async def aaggregate(self, *args, **kwargs ./django/db/models/query.py:623:15 - Unknown word (acount) -- async def acount(self): @@ -736,10 +720,8 @@ Lines: ./django/http/response.py:524:37 - Unknown word (getbuffer) -- elif hasattr(filelike, "getbuffer"): ./django/http/response.py:526:42 - Unknown word (nbytes) -- filelike.getbuffer().nbytes - filelike.tell() ./django/http/response.py:543:19 - Unknown word (uncompressing) -- # uncompressing files. -./django/http/response.py:73:48 - Unknown word (maxlinelen) -- Header(value, "utf-8", maxlinelen=sys.maxsize).encode ./django/middleware/common.py:125:13 - Unknown word (referer) -- referer = request.META.get( ./django/middleware/common.py:125:46 - Unknown word (REFERER) -- request.META.get("HTTP_REFERER", "") -./django/middleware/csrf.py:433:31 - Unknown word (dont) -- if getattr(request, "_dont_enforce_csrf_checks ./django/middleware/csrf.py:452:62 - Unknown word (MITM) -- (man-in-the-middle, MITM) sends a ./django/middleware/gzip.py:21:17 - Unknown word (gzipping) -- # Avoid gzipping if we've already got ./django/template/__init__.py:34:19 - Unknown word (smartif) -- - django.template.smartif @@ -786,11 +768,9 @@ Lines: ./django/urls/conf.py:1:27 - Unknown word (Lsconfs) -- Functions for use in URLsconfs.""" ./django/urls/resolvers.py:24:39 - Unknown word (SUBDELIMS) -- http import RFC3986_SUBDELIMS, escape_leading_slashes ./django/urls/resolvers.py:670:66 - Unknown word (submatch) -- arguments in match with submatch -./django/urls/resolvers.py:793:45 - Unknown word (pchar) -- safe characters from `pchar` definition of RFC ./django/urls/utils.py:34:20 - Unknown word (submod) -- parentmod, submod = get_mod_func(mod_name ./django/urls/utils.py:34:9 - Unknown word (parentmod) -- parentmod, submod = get_mod_func ./django/utils/archive.py:111:28 - Unknown word (unarchived) -- permissions to the unarchived file. -./django/utils/archive.py:113:26 - Unknown word (IROTH) -- if mode & stat.S_IROTH: ./django/utils/autoreload.py:100:29 - Unknown word (SIGTTOU) -- if hasattr(signal, "SIGTTOU"): ./django/utils/autoreload.py:104:17 - Unknown word (tcsetattr) -- termios.tcsetattr(sys.stdin, termios.TCSANOW ./django/utils/autoreload.py:104:46 - Unknown word (TCSANOW) -- tcsetattr(sys.stdin, termios.TCSANOW, attr_list) @@ -822,8 +802,6 @@ Lines: ./django/utils/encoding.py:151:66 - Unknown word (multibyte) -- bytes ≥ 128 are part of multibyte ./django/utils/encoding.py:153:2 - Unknown word (hexdig) -- _hexdig = "0123456789ABCDEFabcdef ./django/utils/encoding.py:203:23 - Unknown word (alphanum) -- # unreserved = alphanum | mark -./django/utils/encoding.py:213:19 - Unknown word (Punycode) -- """Return the Punycode of the given domain -./django/utils/encoding.py:245:37 - Unknown word (altsep) -- about `os.sep` and `os.altsep` but I want to leave ./django/utils/encoding.py:246:28 - Unknown word (hardcoding) -- some flexibility for hardcoding separators. ./django/utils/feedgenerator.py:8:16 - Unknown word (Poynter) -- ... title="Poynter E-Media Tidbits", ./django/utils/formats.py:275:33 - Unknown word (CFGY) -- ?:^|[^%])(?:%%)*)%([CFGY])", @@ -1383,7 +1361,6 @@ Lines: ./tests/apps/tests.py:347:33 - Unknown word (lazya) -- for model_name in ["lazya", "lazyb", "lazyb", ./tests/apps/tests.py:347:42 - Unknown word (lazyb) -- model_name in ["lazya", "lazyb", "lazyb", "lazyc", ./tests/apps/tests.py:347:60 - Unknown word (lazyc) -- "lazyb", "lazyb", "lazyc", "lazya"] -./tests/async_queryset/tests.py:220:47 - Unknown word (fromstring) -- xml.etree.ElementTree.fromstring(result) ./tests/async_queryset/tests.py:230:53 - Unknown word (simplemodel) -- FROM async_queryset_simplemodel WHERE created=%s" ./tests/async_queryset/tests.py:51:52 - Unknown word (relatedmodels) -- objects.prefetch_related("relatedmodels").aiterator() ./tests/auth_tests/models/proxy.py:12:34 - Unknown word (proxys) -- permissions = (("display_proxys", "May display proxys @@ -1462,7 +1439,6 @@ Lines: ./tests/auth_tests/test_validators.py:261:44 - Unknown word (ᴮᴵᴳᴮᴵᴿᴰ) -- usernames = ["joe", "René", "ᴮᴵᴳᴮᴵᴿᴰ", "أحمد"] ./tests/auth_tests/test_validators.py:261:55 - Unknown word (أحمد) -- "René", "ᴮᴵᴳᴮᴵᴿᴰ", "أحمد"] ./tests/auth_tests/test_validators.py:265:14 - Unknown word (zerowidth) -- "zerowidth\u200Bspace", -./tests/auth_tests/test_validators.py:265:28 - Unknown word (Bspace) -- "zerowidth\u200Bspace", ./tests/auth_tests/test_validators.py:266:14 - Unknown word (nonbreaking) -- "nonbreaking\u00A0space", ./tests/auth_tests/test_validators.py:268:14 - Unknown word (trailingnewline) -- "trailingnewline\u000A", ./tests/auth_tests/test_views.py:1534:29 - Unknown word (shouldnotchange) -- data["password"] = "shouldnotchange" @@ -1626,7 +1602,6 @@ Lines: ./tests/file_storage/tests.py:720:23 - Unknown word (pathconf) -- return os.pathconf(dir_to_test, "PC_NAME ./tests/file_storage/tests.py:836:31 - Unknown word (longext) -- filename = "short.longext" ./tests/file_uploads/tests.py:376:49 - Unknown word (monkeybusiness) -- uploader We have to do some monkeybusiness here to construct -./tests/file_uploads/tests.py:378:14 - Unknown word (pardir) -- # os.pardir). This similar to what ./tests/file_uploads/tests.py:606:14 - Unknown word (fileupload) -- def test_fileupload_getlist(self): ./tests/file_uploads/tests.py:634:14 - Unknown word (fileuploads) -- def test_fileuploads_closed_at_request_end ./tests/file_uploads/tests.py:914:61 - Unknown word (Afun) -- This%20is%20%2A%2A%2Afun%2A%2A%2A", @@ -1991,7 +1966,6 @@ Lines: ./tests/i18n/test_compilation.py:242:14 - Unknown word (nofuzzy) -- def test_nofuzzy_compiling(self): ./tests/i18n/test_compilation.py:246:53 - Unknown word (Ленин) -- ssertEqual(gettext("Lenin"), "Ленин") ./tests/i18n/test_compilation.py:256:53 - Unknown word (Водка) -- ssertEqual(gettext("Vodka"), "Водка") -./tests/i18n/test_compilation.py:51:33 - Unknown word (IREAD) -- file_en.chmod(stat.S_IREAD) ./tests/i18n/test_extraction.py:159:28 - Unknown word (msgctxt) -- self.assertIn('msgctxt "Special trans context ./tests/i18n/test_extraction.py:225:40 - Unknown word (áéíóúö) -- non ASCII characters: áéíóúö", ./tests/i18n/test_extraction.py:281:43 - Unknown word (vidéo) -- join(self.test_dir, "vidéo.txt"), "a").close() @@ -2003,7 +1977,6 @@ Lines: ./tests/i18n/test_extraction.py:498:17 - Unknown word (somefile) -- "#: somefile.py:8\n" ./tests/i18n/test_extraction.py:521:27 - Unknown word (okkkk) -- self.assertMsgId("okkkk", po_contents) ./tests/i18n/test_extraction.py:638:57 - Unknown word (djtpl) -- "es"], extensions=["djtpl"], verbosity=0 -./tests/i18n/test_extraction.py:73:39 - Unknown word (curdir) -- prefix = "%s%s" % (os.curdir, os.sep) ./tests/i18n/test_percents.py:102:31 - Unknown word (littérale) -- expected = "Pour cent littérale % avec un symbole au ./tests/i18n/test_percents.py:122:58 - Unknown word (Elle) -- render(Context({})), "Elle est de 100%") ./tests/i18n/test_percents.py:137:17 - Unknown word (dirait) -- "On dirait un spec str fmt %s mais @@ -2323,7 +2296,6 @@ Lines: ./tests/model_fields/test_datetimefield.py:32:9 - Unknown word (datetim) -- datetim = datetime.datetime ./tests/model_fields/test_durationfield.py:55:70 - Unknown word (durationmodel) -- model": "model_fields.durationmodel", ' ./tests/model_fields/test_genericipaddressfield.py:9:14 - Unknown word (genericipaddressfield) -- def test_genericipaddressfield_formfield_protocol(self -./tests/model_fields/test_imagefield.py:113:20 - Unknown word (notequal) -- def test_equal_notequal_hash(self): ./tests/model_fields/test_integerfield.py:234:51 - Unknown word (intput) -- raises_error_on_invalid_intput(self): ./tests/model_fields/test_jsonfield.py:145:60 - Unknown word (jsonmodel) -- model": "model_fields.jsonmodel", "pk": null}]' ./tests/model_fields/test_jsonfield.py:172:42 - Unknown word (nullablejsonmodel) -- model="model_fields.nullablejsonmodel">' @@ -2832,7 +2804,6 @@ Lines: ./tests/test_utils/test_transactiontestcase.py:65:45 - Unknown word (transactiontestcase) -- to test_utils.test_transactiontestcase." ./tests/test_utils/tests.py:2238:11 - Unknown word (visualisation) -- A visualisation of the callback tree ./tests/test_utils/tests.py:2350:38 - Unknown word (defualt) -- class__.databases = {"defualt"} -./tests/test_utils/tests.py:353:14 - Unknown word (maxdiff) -- def test_maxdiff(self): ./tests/test_utils/tests.py:771:26 - Unknown word (attibutes) -- def test_non_boolean_attibutes(self): ./tests/transactions/tests.py:42:56 - Unknown word (Tintin) -- objects.create(first_name="Tintin") ./tests/update/tests.py:192:44 - Unknown word (datapoint) -- value=Max(Col(update_datapoint, update.DataPoint.value @@ -2862,9 +2833,6 @@ Lines: ./tests/user_commands/tests.py:108:17 - Unknown word (cmds) -- cmds = find_commands( ./tests/user_commands/tests.py:111:34 - Unknown word (eggcommand) -- assertEqual(cmds, ["eggcommand"]) ./tests/user_commands/tests.py:414:14 - Unknown word (outputwrapper) -- def test_outputwrapper_flush(self): -./tests/utils_tests/test_archive.py:60:23 - Unknown word (IRWXU) -- mask = stat.S_IRWXU | stat.S_IRWXG | stat -./tests/utils_tests/test_archive.py:60:38 - Unknown word (IRWXG) -- stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO -./tests/utils_tests/test_archive.py:60:53 - Unknown word (IRWXO) -- stat.S_IRWXG | stat.S_IRWXO ./tests/utils_tests/test_archive.py:66:44 - Unknown word (leadpath) -- entry.name.startswith("leadpath_") ./tests/utils_tests/test_autoreload.py:129:75 - Unknown word (zipf) -- zipfile.ZIP_DEFLATED) as zipf: ./tests/utils_tests/test_autoreload.py:222:32 - Unknown word (Werror) -- [sys.executable, "-Werror", __file__, "runserver diff --git a/integration-tests/snapshots/pycontribs/jira/report.yaml b/integration-tests/snapshots/pycontribs/jira/report.yaml index a237860249c..a6e6a37cb50 100644 --- a/integration-tests/snapshots/pycontribs/jira/report.yaml +++ b/integration-tests/snapshots/pycontribs/jira/report.yaml @@ -5,7 +5,7 @@ Args: ["**/*.*"] Summary: files: 75 filesWithIssues: 39 - issues: 484 + issues: 483 errors: 0 Errors: [] @@ -139,7 +139,6 @@ issues: - "jira/client.py:3821:61 stoptheworld U if background else \"stoptheworld\"" - "jira/client.py:3855:60 runbackup U rest/backup/1/export/runbackup\"" - "jira/client.py:3877:52 getprogress U url + \"/rest/obm/1.0/getprogress?_=%i\" % epoch_time" - - "jira/client.py:3890:30 fromstring U root = etree.fromstring(r.text)" - "jira/client.py:3907:9 perc U perc_search = re.search(r" - "jira/client.py:3921:35 webdav U self.server_url + \"/webdav/backupmanager/\" + remote" - "jira/client.py:3921:42 backupmanager U server_url + \"/webdav/backupmanager/\" + remote_file" diff --git a/integration-tests/snapshots/pycontribs/jira/snapshot.txt b/integration-tests/snapshots/pycontribs/jira/snapshot.txt index 2b0a509de00..8a925cf8b0d 100644 --- a/integration-tests/snapshots/pycontribs/jira/snapshot.txt +++ b/integration-tests/snapshots/pycontribs/jira/snapshot.txt @@ -3,7 +3,7 @@ Repository: pycontribs/jira Url: "https://github.com/pycontribs/jira.git" Args: ["**/*.*"] Lines: - CSpell: Files checked: 75, Issues found: 484 in 39 files + CSpell: Files checked: 75, Issues found: 483 in 39 files exit code: 1 ./AUTHORS.rst:3:21 - Unknown word (Contribs) -- Development Team (PyContribs) ./AUTHORS.rst:5:7 - Unknown word (Speakmon) -- - Ben Speakmon =12.13.0" } }, "node_modules/@cspell/cspell-tools": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-tools/-/cspell-tools-5.21.1.tgz", - "integrity": "sha512-wMZfjx/tHUvrl8ZIHG0dc7Y9uLR94fFSqjn/HT3SLuQ0bQplRze2Q0sMKzZyEx1V9K6lOfBoODuKtZNLvQPtWA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-tools/-/cspell-tools-6.0.0-alpha.0.tgz", + "integrity": "sha512-mJrjgSi3iEJcV+sYEP/a79sIGX2xXaCqY9T1SXsHZbEvvY3dMcVmdVQHtsMiZKnGjAPBRE6yjvmdfG5Tm+bbRw==", "dev": true, "dependencies": { "commander": "^9.2.0", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1", "glob": "^8.0.3", - "hunspell-reader": "^5.21.1" + "hunspell-reader": "^6.0.0-alpha.0" }, "bin": { "cspell-tools-cli": "bin.js" @@ -67,21 +67,21 @@ } }, "node_modules/cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "dev": true, "engines": { "node": ">=12.13.0" } }, "node_modules/cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dev": true, "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -144,9 +144,9 @@ "dev": true }, "node_modules/hunspell-reader": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-5.21.1.tgz", - "integrity": "sha512-ZcuwILSQs0nE/W0yIqIUjWpzWSOeUc8n2HeZ7ZZe6Spr/TkP48/lFhRwWOFVHEurKTviYJG2RVYEzxk8Z9nuGQ==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-6.0.0-alpha.0.tgz", + "integrity": "sha512-sLN7bH+BjdTnEMh27he2A+Um+d90g/QGPAZqYvqidoc+p4koaBqjZJKRnpmvcEKsK6Xubi7SqLlyowXloBWPMQ==", "dev": true, "dependencies": { "commander": "^9.2.0", @@ -246,24 +246,24 @@ }, "dependencies": { "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "dev": true }, "@cspell/cspell-tools": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-tools/-/cspell-tools-5.21.1.tgz", - "integrity": "sha512-wMZfjx/tHUvrl8ZIHG0dc7Y9uLR94fFSqjn/HT3SLuQ0bQplRze2Q0sMKzZyEx1V9K6lOfBoODuKtZNLvQPtWA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-tools/-/cspell-tools-6.0.0-alpha.0.tgz", + "integrity": "sha512-mJrjgSi3iEJcV+sYEP/a79sIGX2xXaCqY9T1SXsHZbEvvY3dMcVmdVQHtsMiZKnGjAPBRE6yjvmdfG5Tm+bbRw==", "dev": true, "requires": { "commander": "^9.2.0", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1", "glob": "^8.0.3", - "hunspell-reader": "^5.21.1" + "hunspell-reader": "^6.0.0-alpha.0" } }, "balanced-match": { @@ -288,18 +288,18 @@ "dev": true }, "cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "dev": true }, "cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dev": true, "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" } @@ -347,9 +347,9 @@ "dev": true }, "hunspell-reader": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-5.21.1.tgz", - "integrity": "sha512-ZcuwILSQs0nE/W0yIqIUjWpzWSOeUc8n2HeZ7ZZe6Spr/TkP48/lFhRwWOFVHEurKTviYJG2RVYEzxk8Z9nuGQ==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-6.0.0-alpha.0.tgz", + "integrity": "sha512-sLN7bH+BjdTnEMh27he2A+Um+d90g/QGPAZqYvqidoc+p4koaBqjZJKRnpmvcEKsK6Xubi7SqLlyowXloBWPMQ==", "dev": true, "requires": { "commander": "^9.2.0", diff --git a/packages/Samples/package.json b/packages/Samples/package.json index e4ceb170cef..c04748d1155 100644 --- a/packages/Samples/package.json +++ b/packages/Samples/package.json @@ -1,6 +1,6 @@ { "name": "cspell-tools-samples", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Sample files used during unit tests", "private": true, "scripts": { @@ -11,6 +11,6 @@ "author": "", "license": "MIT", "devDependencies": { - "@cspell/cspell-tools": "^6.0.0-alpha.0" + "@cspell/cspell-tools": "^6.0.0" } } diff --git a/packages/cspell-bundled-dicts/CHANGELOG.md b/packages/cspell-bundled-dicts/CHANGELOG.md index dc2dd9e537e..aff9b4273bc 100644 --- a/packages/cspell-bundled-dicts/CHANGELOG.md +++ b/packages/cspell-bundled-dicts/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package @cspell/cspell-bundled-dicts + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package @cspell/cspell-bundled-dicts diff --git a/packages/cspell-bundled-dicts/package-lock.json b/packages/cspell-bundled-dicts/package-lock.json index 7009e0875d5..949402dcc5d 100644 --- a/packages/cspell-bundled-dicts/package-lock.json +++ b/packages/cspell-bundled-dicts/package-lock.json @@ -1,12 +1,12 @@ { "name": "@cspell/cspell-bundled-dicts", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@cspell/cspell-bundled-dicts", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { "@cspell/dict-ada": "^2.0.0", @@ -40,7 +40,7 @@ "@cspell/dict-php": "^2.0.0", "@cspell/dict-powershell": "^2.0.0", "@cspell/dict-public-licenses": "^1.0.4", - "@cspell/dict-python": "^3.0.4", + "@cspell/dict-python": "^3.0.5", "@cspell/dict-r": "^1.0.2", "@cspell/dict-ruby": "^2.0.1", "@cspell/dict-rust": "^2.0.0", @@ -51,35 +51,35 @@ "@cspell/dict-vue": "^2.0.2" }, "devDependencies": { - "@cspell/cspell-tools": "^5.21.1", - "@cspell/cspell-types": "^5.21.1" + "@cspell/cspell-tools": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "dev": true, "engines": { "node": ">=12.13.0" } }, "node_modules/@cspell/cspell-tools": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-tools/-/cspell-tools-5.21.1.tgz", - "integrity": "sha512-wMZfjx/tHUvrl8ZIHG0dc7Y9uLR94fFSqjn/HT3SLuQ0bQplRze2Q0sMKzZyEx1V9K6lOfBoODuKtZNLvQPtWA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-tools/-/cspell-tools-6.0.0-alpha.0.tgz", + "integrity": "sha512-mJrjgSi3iEJcV+sYEP/a79sIGX2xXaCqY9T1SXsHZbEvvY3dMcVmdVQHtsMiZKnGjAPBRE6yjvmdfG5Tm+bbRw==", "dev": true, "dependencies": { "commander": "^9.2.0", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1", "glob": "^8.0.3", - "hunspell-reader": "^5.21.1" + "hunspell-reader": "^6.0.0-alpha.0" }, "bin": { "cspell-tools-cli": "bin.js" @@ -89,9 +89,9 @@ } }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "dev": true, "engines": { "node": ">=12.13.0" @@ -253,9 +253,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "node_modules/@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "node_modules/@cspell/dict-r": { "version": "1.0.2", @@ -322,21 +322,21 @@ } }, "node_modules/cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "dev": true, "engines": { "node": ">=12.13.0" } }, "node_modules/cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dev": true, "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -399,9 +399,9 @@ "dev": true }, "node_modules/hunspell-reader": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-5.21.1.tgz", - "integrity": "sha512-ZcuwILSQs0nE/W0yIqIUjWpzWSOeUc8n2HeZ7ZZe6Spr/TkP48/lFhRwWOFVHEurKTviYJG2RVYEzxk8Z9nuGQ==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-6.0.0-alpha.0.tgz", + "integrity": "sha512-sLN7bH+BjdTnEMh27he2A+Um+d90g/QGPAZqYvqidoc+p4koaBqjZJKRnpmvcEKsK6Xubi7SqLlyowXloBWPMQ==", "dev": true, "dependencies": { "commander": "^9.2.0", @@ -501,30 +501,30 @@ }, "dependencies": { "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "dev": true }, "@cspell/cspell-tools": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-tools/-/cspell-tools-5.21.1.tgz", - "integrity": "sha512-wMZfjx/tHUvrl8ZIHG0dc7Y9uLR94fFSqjn/HT3SLuQ0bQplRze2Q0sMKzZyEx1V9K6lOfBoODuKtZNLvQPtWA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-tools/-/cspell-tools-6.0.0-alpha.0.tgz", + "integrity": "sha512-mJrjgSi3iEJcV+sYEP/a79sIGX2xXaCqY9T1SXsHZbEvvY3dMcVmdVQHtsMiZKnGjAPBRE6yjvmdfG5Tm+bbRw==", "dev": true, "requires": { "commander": "^9.2.0", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1", "glob": "^8.0.3", - "hunspell-reader": "^5.21.1" + "hunspell-reader": "^6.0.0-alpha.0" } }, "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "dev": true }, "@cspell/dict-ada": { @@ -683,9 +683,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "@cspell/dict-r": { "version": "1.0.2", @@ -749,18 +749,18 @@ "dev": true }, "cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "dev": true }, "cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dev": true, "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" } @@ -808,9 +808,9 @@ "dev": true }, "hunspell-reader": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-5.21.1.tgz", - "integrity": "sha512-ZcuwILSQs0nE/W0yIqIUjWpzWSOeUc8n2HeZ7ZZe6Spr/TkP48/lFhRwWOFVHEurKTviYJG2RVYEzxk8Z9nuGQ==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-6.0.0-alpha.0.tgz", + "integrity": "sha512-sLN7bH+BjdTnEMh27he2A+Um+d90g/QGPAZqYvqidoc+p4koaBqjZJKRnpmvcEKsK6Xubi7SqLlyowXloBWPMQ==", "dev": true, "requires": { "commander": "^9.2.0", diff --git a/packages/cspell-bundled-dicts/package.json b/packages/cspell-bundled-dicts/package.json index d3957713660..a5a8d57d072 100644 --- a/packages/cspell-bundled-dicts/package.json +++ b/packages/cspell-bundled-dicts/package.json @@ -1,6 +1,6 @@ { "name": "@cspell/cspell-bundled-dicts", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Dictionaries bundled with cspell", "publishConfig": { "access": "public" @@ -74,7 +74,7 @@ "@cspell/dict-php": "^2.0.0", "@cspell/dict-powershell": "^2.0.0", "@cspell/dict-public-licenses": "^1.0.4", - "@cspell/dict-python": "^3.0.4", + "@cspell/dict-python": "^3.0.5", "@cspell/dict-r": "^1.0.2", "@cspell/dict-ruby": "^2.0.1", "@cspell/dict-rust": "^2.0.0", @@ -85,10 +85,10 @@ "@cspell/dict-vue": "^2.0.2" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { - "@cspell/cspell-tools": "^6.0.0-alpha.0", - "@cspell/cspell-types": "^6.0.0-alpha.0" + "@cspell/cspell-tools": "^6.0.0", + "@cspell/cspell-types": "^6.0.0" } } diff --git a/packages/cspell-config/CHANGELOG.md b/packages/cspell-config/CHANGELOG.md index 4173b67ac5b..1dd783af5b2 100644 --- a/packages/cspell-config/CHANGELOG.md +++ b/packages/cspell-config/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package cspell-config + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package cspell-config diff --git a/packages/cspell-config/package-lock.json b/packages/cspell-config/package-lock.json index 406e7c089af..ff821a54d80 100644 --- a/packages/cspell-config/package-lock.json +++ b/packages/cspell-config/package-lock.json @@ -1,15 +1,15 @@ { "name": "cspell-config", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cspell-config", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-types": "^6.0.0-alpha.0", "comment-json": "^4.2.2", "vscode-uri": "^3.0.3", "yaml": "^1.10.2" @@ -20,7 +20,7 @@ "rimraf": "^3.0.2" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } }, "node_modules/@ampproject/remapping": { @@ -580,9 +580,9 @@ "dev": true }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "engines": { "node": ">=12.13.0" } @@ -3867,9 +3867,9 @@ "dev": true }, "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==" }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", diff --git a/packages/cspell-config/package.json b/packages/cspell-config/package.json index 65ecc58a824..4c3571e35a8 100644 --- a/packages/cspell-config/package.json +++ b/packages/cspell-config/package.json @@ -1,6 +1,6 @@ { "name": "cspell-config", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "CSpell config library", "private": true, "keywords": [ @@ -40,10 +40,10 @@ "url": "https://github.com/streetsidesoftware/cspell/labels/cspell-config" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "dependencies": { - "@cspell/cspell-types": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0", "comment-json": "^4.2.2", "vscode-uri": "^3.0.3", "yaml": "^1.10.2" diff --git a/packages/cspell-dynamic-loader/CHANGELOG.md b/packages/cspell-dynamic-loader/CHANGELOG.md index 2732492d192..acfbbf71352 100644 --- a/packages/cspell-dynamic-loader/CHANGELOG.md +++ b/packages/cspell-dynamic-loader/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package @cspell/cspell-dynamic-loader + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package @cspell/cspell-dynamic-loader diff --git a/packages/cspell-dynamic-loader/package-lock.json b/packages/cspell-dynamic-loader/package-lock.json index a06f6702f36..e243b9039fa 100644 --- a/packages/cspell-dynamic-loader/package-lock.json +++ b/packages/cspell-dynamic-loader/package-lock.json @@ -1,29 +1,25 @@ { "name": "@cspell/cspell-dynamic-loader", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@cspell/cspell-dynamic-loader", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { + "cspell": "^6.0.0-alpha.0", + "cspell-lib": "^6.0.0-alpha.0", "import-fresh": "^3.3.0" }, "devDependencies": { - "cspell": "^5.21.1", - "cspell-lib": "^5.21.1", "jest": "^28.1.0", "rimraf": "^3.0.2", "typescript": "^4.6.4" }, "engines": { - "node": ">=12.13.0" - }, - "peerDependencies": { - "cspell": "^5.8.2", - "cspell-lib": "^5.8.2" + "node": ">=14" } }, "node_modules/@ampproject/remapping": { @@ -43,7 +39,6 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", - "dev": true, "dependencies": { "@babel/highlight": "^7.16.7" }, @@ -259,7 +254,6 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", - "dev": true, "engines": { "node": ">=6.9.0" } @@ -291,7 +285,6 @@ "version": "7.17.12", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.12.tgz", "integrity": "sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==", - "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.16.7", "chalk": "^2.0.0", @@ -305,7 +298,6 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, "dependencies": { "color-convert": "^1.9.0" }, @@ -317,7 +309,6 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -331,7 +322,6 @@ "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, "dependencies": { "color-name": "1.1.3" } @@ -339,14 +329,12 @@ "node_modules/@babel/highlight/node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, "node_modules/@babel/highlight/node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true, "engines": { "node": ">=0.8.0" } @@ -355,7 +343,6 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true, "engines": { "node": ">=4" } @@ -364,7 +351,6 @@ "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, "dependencies": { "has-flag": "^3.0.0" }, @@ -601,10 +587,9 @@ "dev": true }, "node_modules/@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", - "dev": true, + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "dependencies": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -652,19 +637,17 @@ } }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", - "dev": true, + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "engines": { "node": ">=12.13.0" } }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", - "dev": true, + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "engines": { "node": ">=12.13.0" } @@ -672,242 +655,202 @@ "node_modules/@cspell/dict-ada": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-2.0.0.tgz", - "integrity": "sha512-4gfJEYXVwz6IN2LBaT6QoUV4pqaR35i0z0u9O684vLuVczvNJIHa4vNaSEFBr9d6xxncUyqstgP9P73ajJjh9A==", - "dev": true + "integrity": "sha512-4gfJEYXVwz6IN2LBaT6QoUV4pqaR35i0z0u9O684vLuVczvNJIHa4vNaSEFBr9d6xxncUyqstgP9P73ajJjh9A==" }, "node_modules/@cspell/dict-aws": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-2.0.0.tgz", - "integrity": "sha512-NKz7pDZ7pwj/b33i3f4WLpC1rOOUMmENwYgftxU+giU2YBeKM2wZbMTSEIzsrel56r0UlQYmdIVlP/B4nnVaoQ==", - "dev": true + "integrity": "sha512-NKz7pDZ7pwj/b33i3f4WLpC1rOOUMmENwYgftxU+giU2YBeKM2wZbMTSEIzsrel56r0UlQYmdIVlP/B4nnVaoQ==" }, "node_modules/@cspell/dict-bash": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-2.0.2.tgz", - "integrity": "sha512-ASIgI/LmV2TYrD4mtk+gm4XmUSTRomOyRt7NDWyBpEww/AeawC2O2NH6FosyUT6dUU3GaXt2wgJRN7R78n1SGg==", - "dev": true + "integrity": "sha512-ASIgI/LmV2TYrD4mtk+gm4XmUSTRomOyRt7NDWyBpEww/AeawC2O2NH6FosyUT6dUU3GaXt2wgJRN7R78n1SGg==" }, "node_modules/@cspell/dict-companies": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-2.0.4.tgz", - "integrity": "sha512-nLNVddo+iu4q/Mu03nkVTMnSPxBkoLyZ0MgpHJZWCqxVATbBkzoZNNNjsTkJhvkbrUIWydf8YW4U4wYY+kyh7Q==", - "dev": true + "integrity": "sha512-nLNVddo+iu4q/Mu03nkVTMnSPxBkoLyZ0MgpHJZWCqxVATbBkzoZNNNjsTkJhvkbrUIWydf8YW4U4wYY+kyh7Q==" }, "node_modules/@cspell/dict-cpp": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-3.1.0.tgz", - "integrity": "sha512-lav99zUQ+iPq6dkQRnTN0+KE9th0UG6Nwl34afyEGJ8CN5Dcq/RJjCVvOkLw6vPvs505xrvQcZW1huftQK8WVg==", - "dev": true + "integrity": "sha512-lav99zUQ+iPq6dkQRnTN0+KE9th0UG6Nwl34afyEGJ8CN5Dcq/RJjCVvOkLw6vPvs505xrvQcZW1huftQK8WVg==" }, "node_modules/@cspell/dict-cryptocurrencies": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-2.0.0.tgz", - "integrity": "sha512-nREysmmfOp7L2YCRAUufQahwD5/Punzb5AZ6eyg4zUamdRWHgBFphb5/9h2flt1vgdUfhc6hZcML21Ci7iXjaA==", - "dev": true + "integrity": "sha512-nREysmmfOp7L2YCRAUufQahwD5/Punzb5AZ6eyg4zUamdRWHgBFphb5/9h2flt1vgdUfhc6hZcML21Ci7iXjaA==" }, "node_modules/@cspell/dict-csharp": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-3.0.1.tgz", - "integrity": "sha512-xkfQu03F388w4sdVQSSjrVMkxAxpTYB2yW7nw0XYtTjl3L/jBgvTr/j1BTjdFbQhdNf10Lg0Ak1kXOjmHodVqA==", - "dev": true + "integrity": "sha512-xkfQu03F388w4sdVQSSjrVMkxAxpTYB2yW7nw0XYtTjl3L/jBgvTr/j1BTjdFbQhdNf10Lg0Ak1kXOjmHodVqA==" }, "node_modules/@cspell/dict-css": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-2.0.0.tgz", - "integrity": "sha512-MrFyswFHnPh4H0u6IlV4eHy+ZCUrrHzeL161LyTOqCvaKpbZavMgNYXzZqTF9xafO0iLgwKrl+Gkclu1KVBg0Q==", - "dev": true + "integrity": "sha512-MrFyswFHnPh4H0u6IlV4eHy+ZCUrrHzeL161LyTOqCvaKpbZavMgNYXzZqTF9xafO0iLgwKrl+Gkclu1KVBg0Q==" }, "node_modules/@cspell/dict-dart": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-1.1.0.tgz", - "integrity": "sha512-bBqZINm+RVjMgUrAhRzv/xx3jc3dkIqO0higPbsK+63IAtMNY3EiQnEO4eapbU+qAhyvICY9hZQZXy5Ux4p+Pw==", - "dev": true + "integrity": "sha512-bBqZINm+RVjMgUrAhRzv/xx3jc3dkIqO0higPbsK+63IAtMNY3EiQnEO4eapbU+qAhyvICY9hZQZXy5Ux4p+Pw==" }, "node_modules/@cspell/dict-django": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-2.0.0.tgz", - "integrity": "sha512-GkJdJv6cmzrKcmq2/oxTXjKF5uv71r4eTqnFmgPbNBW1t+G4VYpzOf0QrVQrhx2RC4DdW5XfcTf+iS0FxHOTmw==", - "dev": true + "integrity": "sha512-GkJdJv6cmzrKcmq2/oxTXjKF5uv71r4eTqnFmgPbNBW1t+G4VYpzOf0QrVQrhx2RC4DdW5XfcTf+iS0FxHOTmw==" }, "node_modules/@cspell/dict-dotnet": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-2.0.1.tgz", - "integrity": "sha512-b1n4crJRW0WZVf9Gp/52j/tDtjYiZ3N81fIyfqPlBrjsh/5AivfA697DYwQ2mr8ngNX7RsqRtYNQjealA1rEnQ==", - "dev": true + "integrity": "sha512-b1n4crJRW0WZVf9Gp/52j/tDtjYiZ3N81fIyfqPlBrjsh/5AivfA697DYwQ2mr8ngNX7RsqRtYNQjealA1rEnQ==" }, "node_modules/@cspell/dict-elixir": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-2.0.1.tgz", - "integrity": "sha512-eTTTxZt1FqGkM780yFDxsGHvTbWqvlK8YISSccK8FyrB6ULW+uflQlNS5AnWg3uWKC48b7pQott+odYCsPJ+Ow==", - "dev": true + "integrity": "sha512-eTTTxZt1FqGkM780yFDxsGHvTbWqvlK8YISSccK8FyrB6ULW+uflQlNS5AnWg3uWKC48b7pQott+odYCsPJ+Ow==" }, "node_modules/@cspell/dict-en_us": { "version": "2.2.5", "resolved": "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-2.2.5.tgz", - "integrity": "sha512-gRHem02ZY83AQUTYBxtiVNmtM6gWFCJKumRoAKLj7vWYelmNLcCBsMA3BOOOJ7cZNKCI04lDEdh0u2f2akKZtQ==", - "dev": true + "integrity": "sha512-gRHem02ZY83AQUTYBxtiVNmtM6gWFCJKumRoAKLj7vWYelmNLcCBsMA3BOOOJ7cZNKCI04lDEdh0u2f2akKZtQ==" }, "node_modules/@cspell/dict-en-gb": { "version": "1.1.33", "resolved": "https://registry.npmjs.org/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz", - "integrity": "sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==", - "dev": true + "integrity": "sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==" }, "node_modules/@cspell/dict-filetypes": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-2.0.1.tgz", - "integrity": "sha512-bQ7K3U/3hKO2lpQjObf0veNP/n50qk5CVezSwApMBckf/sAVvDTR1RGAvYdr+vdQnkdQrk6wYmhbshXi0sLDVg==", - "dev": true + "integrity": "sha512-bQ7K3U/3hKO2lpQjObf0veNP/n50qk5CVezSwApMBckf/sAVvDTR1RGAvYdr+vdQnkdQrk6wYmhbshXi0sLDVg==" }, "node_modules/@cspell/dict-fonts": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-2.0.0.tgz", - "integrity": "sha512-AgkTalphfDPtKFPYmEExDcj8rRCh86xlOSXco8tehOEkYVYbksOk9XH0YVH34RFpy93YBd2nnVGLgyGVwagcPw==", - "dev": true + "integrity": "sha512-AgkTalphfDPtKFPYmEExDcj8rRCh86xlOSXco8tehOEkYVYbksOk9XH0YVH34RFpy93YBd2nnVGLgyGVwagcPw==" }, "node_modules/@cspell/dict-fullstack": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-2.0.5.tgz", - "integrity": "sha512-jnLnHZ4HcCFNUfN+q7m0CUDtISNKat0Jahe1GgnAdEwzcozqKBhlGAjV7mQWPtKpqfJU61JakDnrxzqefAfZHw==", - "dev": true + "integrity": "sha512-jnLnHZ4HcCFNUfN+q7m0CUDtISNKat0Jahe1GgnAdEwzcozqKBhlGAjV7mQWPtKpqfJU61JakDnrxzqefAfZHw==" }, "node_modules/@cspell/dict-git": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-git/-/dict-git-1.0.1.tgz", - "integrity": "sha512-Rk+eTof/9inF11lvxmkCRK+gODatA3qai8kSASv6OG/JfPvpj7fTHErx/rdgPw/LOTDUafnoTjTYmj7B2MOQXg==", - "dev": true + "integrity": "sha512-Rk+eTof/9inF11lvxmkCRK+gODatA3qai8kSASv6OG/JfPvpj7fTHErx/rdgPw/LOTDUafnoTjTYmj7B2MOQXg==" }, "node_modules/@cspell/dict-golang": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-3.0.1.tgz", - "integrity": "sha512-0KNfXTbxHW2l8iVjxeOf+KFv9Qrw3z5cyKnkuYJWlBTSB5KcUBfeKCb4fsds26VdANqiy6U91b4gDx5kNEmBjQ==", - "dev": true + "integrity": "sha512-0KNfXTbxHW2l8iVjxeOf+KFv9Qrw3z5cyKnkuYJWlBTSB5KcUBfeKCb4fsds26VdANqiy6U91b4gDx5kNEmBjQ==" }, "node_modules/@cspell/dict-haskell": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-2.0.0.tgz", - "integrity": "sha512-cjX1Br+gSWqtcmJD/IMHz1UoP3pUaKIIKy/JfhEs7ANtRt6hhfEKe9dl2kQzDkkKt4pXol+YgdYxL/sVc/nLgQ==", - "dev": true + "integrity": "sha512-cjX1Br+gSWqtcmJD/IMHz1UoP3pUaKIIKy/JfhEs7ANtRt6hhfEKe9dl2kQzDkkKt4pXol+YgdYxL/sVc/nLgQ==" }, "node_modules/@cspell/dict-html": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-3.0.1.tgz", - "integrity": "sha512-sbuFd+nSjgbrGf5eYwSddFhm1eLLePKWyH6Zn8Zb0OODrBK5e4vGn1/scI/MOH5a2IvNs8W9wp84uMBFJcQZtw==", - "dev": true + "integrity": "sha512-sbuFd+nSjgbrGf5eYwSddFhm1eLLePKWyH6Zn8Zb0OODrBK5e4vGn1/scI/MOH5a2IvNs8W9wp84uMBFJcQZtw==" }, "node_modules/@cspell/dict-html-symbol-entities": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-3.0.0.tgz", - "integrity": "sha512-04K7cPTcbYXmHICfiob4gZA1yaj4hpfM+Nl5WIJ1EAZsSGHdqmGEF28GuCjyQ8ZeKiJAsPt/vXuLBbjxkHqZyQ==", - "dev": true + "integrity": "sha512-04K7cPTcbYXmHICfiob4gZA1yaj4hpfM+Nl5WIJ1EAZsSGHdqmGEF28GuCjyQ8ZeKiJAsPt/vXuLBbjxkHqZyQ==" }, "node_modules/@cspell/dict-java": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-2.0.0.tgz", - "integrity": "sha512-9f5LDATlAiXRGqxLxgqbOLlQxuMW2zcN7tBgxwtN+4u90vM03ZUOR/gKIuDV/y0ZuAiWBIjA73cjk8DJ13Q1eA==", - "dev": true + "integrity": "sha512-9f5LDATlAiXRGqxLxgqbOLlQxuMW2zcN7tBgxwtN+4u90vM03ZUOR/gKIuDV/y0ZuAiWBIjA73cjk8DJ13Q1eA==" }, "node_modules/@cspell/dict-latex": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-2.0.3.tgz", - "integrity": "sha512-shNEP20yLLzZ3iURg7241uUKO5vKvoPcd311uiMch0L0qoiC057aV9nawjQIDIgQQZvYT04Mem8N45/jnqg9cA==", - "dev": true + "integrity": "sha512-shNEP20yLLzZ3iURg7241uUKO5vKvoPcd311uiMch0L0qoiC057aV9nawjQIDIgQQZvYT04Mem8N45/jnqg9cA==" }, "node_modules/@cspell/dict-lorem-ipsum": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-2.0.0.tgz", - "integrity": "sha512-jKogAKtqvgPMleL6usyj3rZ0m8sVUR6drrD+wMnWSfdx1BmUyTsYiuh/mPEfLAebaYHELWSLQG3rDZRvV9Riqg==", - "dev": true + "integrity": "sha512-jKogAKtqvgPMleL6usyj3rZ0m8sVUR6drrD+wMnWSfdx1BmUyTsYiuh/mPEfLAebaYHELWSLQG3rDZRvV9Riqg==" }, "node_modules/@cspell/dict-lua": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-2.0.0.tgz", - "integrity": "sha512-7WUEBEspSKtsq104WdIys1+DLqAxpJPzw74Py1TuE3fI5GvlzeSZkRFP2ya54GB2lCO4C3mq4M8EnitpibVDfw==", - "dev": true + "integrity": "sha512-7WUEBEspSKtsq104WdIys1+DLqAxpJPzw74Py1TuE3fI5GvlzeSZkRFP2ya54GB2lCO4C3mq4M8EnitpibVDfw==" }, "node_modules/@cspell/dict-node": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-2.0.1.tgz", - "integrity": "sha512-ztBWzhvI+YaMehICSJ65cohhjQqoztxf9vrS3YckOiVGBFvUMaFVNdX9klQkvrLcS/O4+2PzoGeIEkmf99amLA==", - "dev": true + "integrity": "sha512-ztBWzhvI+YaMehICSJ65cohhjQqoztxf9vrS3YckOiVGBFvUMaFVNdX9klQkvrLcS/O4+2PzoGeIEkmf99amLA==" }, "node_modules/@cspell/dict-npm": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-2.0.3.tgz", - "integrity": "sha512-K/rnVhmHkR3jfdo7o8P2NDKyMcpVe9pUBiFDY1y2C0YqZXIxCz1f5hObm/hxyO+Vbn5VLU3TKU5fZ5z3LspXOg==", - "dev": true + "integrity": "sha512-K/rnVhmHkR3jfdo7o8P2NDKyMcpVe9pUBiFDY1y2C0YqZXIxCz1f5hObm/hxyO+Vbn5VLU3TKU5fZ5z3LspXOg==" }, "node_modules/@cspell/dict-php": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-2.0.0.tgz", - "integrity": "sha512-29WgU77eTO985LvMHwPi1pcpfopfCWfTdffDyqya0JIfOSaFUrlYKzGPkE4mRxcz2G3hXsaM0SRvBNdIRwEdUg==", - "dev": true + "integrity": "sha512-29WgU77eTO985LvMHwPi1pcpfopfCWfTdffDyqya0JIfOSaFUrlYKzGPkE4mRxcz2G3hXsaM0SRvBNdIRwEdUg==" }, "node_modules/@cspell/dict-powershell": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-2.0.0.tgz", - "integrity": "sha512-6uvEhLiGmG3u9TFkM1TYcky6aL9Yk7Sk3KJwoTYBaQJY2KqrprgyQtW6yxIw9oU52VRHlq3KKvSAA9Q26+SIkQ==", - "dev": true + "integrity": "sha512-6uvEhLiGmG3u9TFkM1TYcky6aL9Yk7Sk3KJwoTYBaQJY2KqrprgyQtW6yxIw9oU52VRHlq3KKvSAA9Q26+SIkQ==" }, "node_modules/@cspell/dict-public-licenses": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-1.0.4.tgz", - "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==", - "dev": true + "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "node_modules/@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==", - "dev": true + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "node_modules/@cspell/dict-r": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@cspell/dict-r/-/dict-r-1.0.2.tgz", - "integrity": "sha512-Rp3d4sgD6izW9TW5yVI3D//3HTl9oOGBuzTvXRdoHksVPRvzIu2liVhj8MnQ3XIRe5Kc6IhLBAm6izuV2BpGwQ==", - "dev": true + "integrity": "sha512-Rp3d4sgD6izW9TW5yVI3D//3HTl9oOGBuzTvXRdoHksVPRvzIu2liVhj8MnQ3XIRe5Kc6IhLBAm6izuV2BpGwQ==" }, "node_modules/@cspell/dict-ruby": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-2.0.1.tgz", - "integrity": "sha512-qGqhYfFeoBOashv/l0Kj5o4ilyvfq0s+t+r32juPOkOnbHz+hzxnJo2tMMg/L/UdjVV7Y8ovg4LDBC/seVrMYQ==", - "dev": true + "integrity": "sha512-qGqhYfFeoBOashv/l0Kj5o4ilyvfq0s+t+r32juPOkOnbHz+hzxnJo2tMMg/L/UdjVV7Y8ovg4LDBC/seVrMYQ==" }, "node_modules/@cspell/dict-rust": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-2.0.0.tgz", - "integrity": "sha512-EWlQivTKXMU3TTcq/Pi6KPKTQADknasQ700UrxRPzxhwQ4sKVZ88GDu6VZJlsbFUz8Vko289KS6wjiox/7WpmQ==", - "dev": true + "integrity": "sha512-EWlQivTKXMU3TTcq/Pi6KPKTQADknasQ700UrxRPzxhwQ4sKVZ88GDu6VZJlsbFUz8Vko289KS6wjiox/7WpmQ==" }, "node_modules/@cspell/dict-scala": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-2.0.0.tgz", - "integrity": "sha512-MUwA2YKpqaQOSR4V1/CVGRNk8Ii5kf6I8Ch+4/BhRZRQXuwWbi21rDRYWPqdQWps7VNzAbbMA+PQDWsD5YY38g==", - "dev": true + "integrity": "sha512-MUwA2YKpqaQOSR4V1/CVGRNk8Ii5kf6I8Ch+4/BhRZRQXuwWbi21rDRYWPqdQWps7VNzAbbMA+PQDWsD5YY38g==" }, "node_modules/@cspell/dict-software-terms": { "version": "2.1.7", "resolved": "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-2.1.7.tgz", - "integrity": "sha512-2FW5MlbazmWPFHzMh2xKYFcYnX+E5MdOPRrfYkbVXvWecA0466l54V+op2zlh1CbngMk4eY7AY3qahfWv6gDHA==", - "dev": true + "integrity": "sha512-2FW5MlbazmWPFHzMh2xKYFcYnX+E5MdOPRrfYkbVXvWecA0466l54V+op2zlh1CbngMk4eY7AY3qahfWv6gDHA==" }, "node_modules/@cspell/dict-swift": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@cspell/dict-swift/-/dict-swift-1.0.2.tgz", - "integrity": "sha512-IrMcRO7AYB2qU5cj4ttZyEbd04DRNOG6Iha106qGGmn4P096m+Y7lOnSLJx/rZbD/cAT3Z/7i465Lr1J93j7yg==", - "dev": true + "integrity": "sha512-IrMcRO7AYB2qU5cj4ttZyEbd04DRNOG6Iha106qGGmn4P096m+Y7lOnSLJx/rZbD/cAT3Z/7i465Lr1J93j7yg==" }, "node_modules/@cspell/dict-typescript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-2.0.0.tgz", - "integrity": "sha512-WFBahxsnD2y4Os14tE5Zxh31Ggn4DzGOAu3UoxYl1lLLxaszx4RH7LmAeFuznySboiaBeRBbpfJOjQA796O6VQ==", - "dev": true + "integrity": "sha512-WFBahxsnD2y4Os14tE5Zxh31Ggn4DzGOAu3UoxYl1lLLxaszx4RH7LmAeFuznySboiaBeRBbpfJOjQA796O6VQ==" }, "node_modules/@cspell/dict-vue": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/@cspell/dict-vue/-/dict-vue-2.0.2.tgz", - "integrity": "sha512-/MB0RS0Gn01s4pgmjy0FvsLfr3RRMrRphEuvTRserNcM8XVtoIVAtrjig/Gg0DPwDrN8Clm0L1j7iQay6S8D0g==", - "dev": true + "integrity": "sha512-/MB0RS0Gn01s4pgmjy0FvsLfr3RRMrRphEuvTRserNcM8XVtoIVAtrjig/Gg0DPwDrN8Clm0L1j7iQay6S8D0g==" }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", @@ -1473,8 +1416,7 @@ "node_modules/@types/parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", - "dev": true + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" }, "node_modules/@types/prettier": { "version": "2.6.1", @@ -1522,7 +1464,6 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, "engines": { "node": ">=8" } @@ -1531,7 +1472,6 @@ "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, "dependencies": { "color-convert": "^2.0.1" }, @@ -1567,8 +1507,7 @@ "node_modules/array-timsort": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/array-timsort/-/array-timsort-1.0.3.tgz", - "integrity": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==", - "dev": true + "integrity": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==" }, "node_modules/babel-jest": { "version": "28.1.0", @@ -1664,14 +1603,12 @@ "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, "dependencies": { "balanced-match": "^1.0.0" } @@ -1680,7 +1617,6 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, "dependencies": { "fill-range": "^7.0.1" }, @@ -1769,7 +1705,6 @@ "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -1806,7 +1741,6 @@ "version": "4.1.2", "resolved": "https://registry.npmjs.org/clear-module/-/clear-module-4.1.2.tgz", "integrity": "sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==", - "dev": true, "dependencies": { "parent-module": "^2.0.0", "resolve-from": "^5.0.0" @@ -1849,7 +1783,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, "dependencies": { "color-name": "~1.1.4" }, @@ -1860,14 +1793,12 @@ "node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "node_modules/commander": { "version": "9.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-9.2.0.tgz", "integrity": "sha512-e2i4wANQiSXgnrBlIatyHtP1odfUp0BbV5Y5nEGbxtIrStkEOAAzCUirvLBNXHLr7kwLvJl6V+4V3XV9x7Wd9w==", - "dev": true, "engines": { "node": "^12.20.0 || >=14" } @@ -1876,7 +1807,6 @@ "version": "4.2.2", "resolved": "https://registry.npmjs.org/comment-json/-/comment-json-4.2.2.tgz", "integrity": "sha512-H8T+kl3nZesZu41zO2oNXIJWojNeK3mHxCLrsBNu6feksBXsgb+PtYz5daP5P86A0F3sz3840KVYehr04enISQ==", - "dev": true, "dependencies": { "array-timsort": "^1.0.3", "core-util-is": "^1.0.3", @@ -1891,14 +1821,12 @@ "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "node_modules/configstore": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", - "dev": true, "dependencies": { "dot-prop": "^5.2.0", "graceful-fs": "^4.1.2", @@ -1923,14 +1851,12 @@ "node_modules/core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" }, "node_modules/cosmiconfig": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", - "dev": true, "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -1960,23 +1886,21 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", - "dev": true, "engines": { "node": ">=8" } }, "node_modules/cspell": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell/-/cspell-5.21.1.tgz", - "integrity": "sha512-R5I3QwohSkhclfZSCMvTbGb9zZHyZRno4pnUtEN5cVkUXfHHg751rZwO+zUwQcG7mLGHwU6iBNs5kAgH0UxISw==", - "dev": true, + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell/-/cspell-6.0.0-alpha.0.tgz", + "integrity": "sha512-2O3dp/VsHAXxZ61fSTwAjiTy4QZgFDz4iyld18HnBzyObmv/YNZxFJ0Qjcf6ywHnRyxZdMFzgxWzuf5Jq0laIQ==", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "chalk": "^4.1.2", "commander": "^9.2.0", - "cspell-gitignore": "^5.21.1", - "cspell-glob": "^5.21.1", - "cspell-lib": "^5.21.1", + "cspell-gitignore": "^6.0.0-alpha.0", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-lib": "^6.0.0-alpha.0", "fast-json-stable-stringify": "^2.1.0", "file-entry-cache": "^6.0.1", "fs-extra": "^10.1.0", @@ -1998,12 +1922,11 @@ } }, "node_modules/cspell-gitignore": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.21.1.tgz", - "integrity": "sha512-PFTGjUegbCsH0db6+4+xFO/U68ghXNwPDzJRuJnxkwy9XlExcwz22eDisUwyO0fG4nbLJgfQoAuAXzT8LW3MDw==", - "dev": true, + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.0.0-alpha.0.tgz", + "integrity": "sha512-XhaS2jzR769wBtJX+014vQ0K4fIWo6X/HHL86KUodlY3VpXdaIrOsTW5a9tMEoVnj4PFhL5blmyeHqtuQADaUw==", "dependencies": { - "cspell-glob": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", "find-up": "^5.0.0" }, "bin": { @@ -2014,10 +1937,9 @@ } }, "node_modules/cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", - "dev": true, + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dependencies": { "micromatch": "^4.0.5" }, @@ -2026,30 +1948,28 @@ } }, "node_modules/cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", - "dev": true, + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "engines": { "node": ">=12.13.0" } }, "node_modules/cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", - "dev": true, + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "dependencies": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -2065,12 +1985,11 @@ } }, "node_modules/cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", - "dev": true, + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -2132,7 +2051,6 @@ "version": "5.3.0", "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", - "dev": true, "dependencies": { "is-obj": "^2.0.0" }, @@ -2168,7 +2086,6 @@ "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, "dependencies": { "is-arrayish": "^0.2.1" } @@ -2195,7 +2112,6 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" @@ -2255,14 +2171,12 @@ "node_modules/fast-equals": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-3.0.2.tgz", - "integrity": "sha512-iY0fAmW7fzxHp22VCRLpOgWbsWsF+DJWi1jhc8w+VGlJUiS+KcGZV2A8t+Q9oTQwhG3L1W8Lu/oe3ZyOPdhZjw==", - "dev": true + "integrity": "sha512-iY0fAmW7fzxHp22VCRLpOgWbsWsF+DJWi1jhc8w+VGlJUiS+KcGZV2A8t+Q9oTQwhG3L1W8Lu/oe3ZyOPdhZjw==" }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" }, "node_modules/fb-watchman": { "version": "2.0.1", @@ -2277,7 +2191,6 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, "dependencies": { "flat-cache": "^3.0.4" }, @@ -2289,7 +2202,6 @@ "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, "dependencies": { "to-regex-range": "^5.0.1" }, @@ -2301,7 +2213,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" @@ -2317,7 +2228,6 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "dev": true, "dependencies": { "flatted": "^3.1.0", "rimraf": "^3.0.2" @@ -2329,14 +2239,12 @@ "node_modules/flatted": { "version": "3.2.5", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz", - "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==", - "dev": true + "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==" }, "node_modules/fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -2349,8 +2257,7 @@ "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "node_modules/fsevents": { "version": "2.3.2", @@ -2376,7 +2283,6 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/gensequence/-/gensequence-3.1.1.tgz", "integrity": "sha512-ys3h0hiteRwmY6BsvSttPmkhC0vEQHPJduANBRtH/dlDPZ0UBIb/dXy80IcckXyuQ6LKg+PloRqvGER9IS7F7g==", - "dev": true, "engines": { "node": ">=10.0.0" } @@ -2412,7 +2318,6 @@ "version": "8.0.0", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", - "dev": true, "engines": { "node": ">=10" }, @@ -2436,7 +2341,6 @@ "version": "8.0.3", "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", - "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -2455,7 +2359,6 @@ "version": "0.1.1", "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", - "dev": true, "dependencies": { "ini": "^1.3.4" }, @@ -2475,8 +2378,7 @@ "node_modules/graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" }, "node_modules/has": { "version": "1.0.3", @@ -2494,7 +2396,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, "engines": { "node": ">=8" } @@ -2503,7 +2404,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/has-own-prop/-/has-own-prop-2.0.0.tgz", "integrity": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==", - "dev": true, "engines": { "node": ">=8" } @@ -2580,7 +2480,6 @@ "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true, "engines": { "node": ">=0.8.19" } @@ -2589,7 +2488,6 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -2598,20 +2496,17 @@ "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "node_modules/ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" }, "node_modules/is-core-module": { "version": "2.9.0", @@ -2647,7 +2542,6 @@ "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, "engines": { "node": ">=0.12.0" } @@ -2656,7 +2550,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true, "engines": { "node": ">=8" } @@ -2676,8 +2569,7 @@ "node_modules/is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", - "dev": true + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" }, "node_modules/isexe": { "version": "2.0.0", @@ -3401,8 +3293,7 @@ "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "node_modules/js-yaml": { "version": "3.14.1", @@ -3432,8 +3323,7 @@ "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, "node_modules/json5": { "version": "2.2.1", @@ -3451,7 +3341,6 @@ "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, "dependencies": { "universalify": "^2.0.0" }, @@ -3480,14 +3369,12 @@ "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "node_modules/locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, "dependencies": { "p-locate": "^5.0.0" }, @@ -3502,7 +3389,6 @@ "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, "dependencies": { "yallist": "^4.0.0" }, @@ -3514,7 +3400,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, "dependencies": { "semver": "^6.0.0" }, @@ -3529,7 +3414,6 @@ "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, "bin": { "semver": "bin/semver.js" } @@ -3553,7 +3437,6 @@ "version": "4.0.5", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, "dependencies": { "braces": "^3.0.2", "picomatch": "^2.3.1" @@ -3575,7 +3458,6 @@ "version": "5.1.0", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", - "dev": true, "dependencies": { "brace-expansion": "^2.0.1" }, @@ -3632,7 +3514,6 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, "dependencies": { "wrappy": "1" } @@ -3656,7 +3537,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, "dependencies": { "yocto-queue": "^0.1.0" }, @@ -3671,7 +3551,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, "dependencies": { "p-limit": "^3.0.2" }, @@ -3695,7 +3574,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-2.0.0.tgz", "integrity": "sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==", - "dev": true, "dependencies": { "callsites": "^3.1.0" }, @@ -3707,7 +3585,6 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -3725,7 +3602,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, "engines": { "node": ">=8" } @@ -3734,7 +3610,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true, "engines": { "node": ">=0.10.0" } @@ -3758,7 +3633,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, "engines": { "node": ">=8" } @@ -3773,7 +3647,6 @@ "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, "engines": { "node": ">=8.6" }, @@ -3904,7 +3777,6 @@ "version": "1.6.1", "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "dev": true, "engines": { "node": ">=0.10" } @@ -3951,7 +3823,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, "engines": { "node": ">=8" } @@ -3960,7 +3831,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/resolve-global/-/resolve-global-1.0.0.tgz", "integrity": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==", - "dev": true, "dependencies": { "global-dirs": "^0.1.1" }, @@ -3981,7 +3851,6 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, "dependencies": { "glob": "^7.1.3" }, @@ -3996,7 +3865,6 @@ "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -4006,7 +3874,6 @@ "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -4026,7 +3893,6 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, "dependencies": { "brace-expansion": "^1.1.7" }, @@ -4044,7 +3910,6 @@ "version": "7.3.7", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dev": true, "dependencies": { "lru-cache": "^6.0.0" }, @@ -4079,8 +3944,7 @@ "node_modules/signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" }, "node_modules/sisteransi": { "version": "1.0.5", @@ -4165,7 +4029,6 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, "dependencies": { "ansi-regex": "^5.0.1" }, @@ -4207,7 +4070,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, "dependencies": { "has-flag": "^4.0.0" }, @@ -4337,7 +4199,6 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, "dependencies": { "is-number": "^7.0.0" }, @@ -4370,7 +4231,6 @@ "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dev": true, "dependencies": { "is-typedarray": "^1.0.0" } @@ -4392,7 +4252,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", - "dev": true, "dependencies": { "crypto-random-string": "^2.0.0" }, @@ -4404,7 +4263,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, "engines": { "node": ">= 10.0.0" } @@ -4426,14 +4284,12 @@ "node_modules/vscode-languageserver-textdocument": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.4.tgz", - "integrity": "sha512-/xhqXP/2A2RSs+J8JNXpiiNVvvNM0oTosNVmQnunlKvq9o4mupHOBAnnzH0lwIPKazXKvAKsVp1kr+H/K4lgoQ==", - "dev": true + "integrity": "sha512-/xhqXP/2A2RSs+J8JNXpiiNVvvNM0oTosNVmQnunlKvq9o4mupHOBAnnzH0lwIPKazXKvAKsVp1kr+H/K4lgoQ==" }, "node_modules/vscode-uri": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.3.tgz", - "integrity": "sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA==", - "dev": true + "integrity": "sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA==" }, "node_modules/walker": { "version": "1.0.8", @@ -4479,14 +4335,12 @@ "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "node_modules/write-file-atomic": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "dev": true, "dependencies": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", @@ -4498,7 +4352,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", - "dev": true, "engines": { "node": ">=8" } @@ -4515,14 +4368,12 @@ "node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, "node_modules/yaml": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true, "engines": { "node": ">= 6" } @@ -4558,7 +4409,6 @@ "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, "engines": { "node": ">=10" }, @@ -4582,7 +4432,6 @@ "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz", "integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==", - "dev": true, "requires": { "@babel/highlight": "^7.16.7" } @@ -4748,8 +4597,7 @@ "@babel/helper-validator-identifier": { "version": "7.16.7", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz", - "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==", - "dev": true + "integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==" }, "@babel/helper-validator-option": { "version": "7.16.7", @@ -4772,7 +4620,6 @@ "version": "7.17.12", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.12.tgz", "integrity": "sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==", - "dev": true, "requires": { "@babel/helper-validator-identifier": "^7.16.7", "chalk": "^2.0.0", @@ -4783,7 +4630,6 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, "requires": { "color-convert": "^1.9.0" } @@ -4792,7 +4638,6 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, "requires": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -4803,7 +4648,6 @@ "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, "requires": { "color-name": "1.1.3" } @@ -4811,26 +4655,22 @@ "color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" }, "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, "requires": { "has-flag": "^3.0.0" } @@ -5006,10 +4846,9 @@ "dev": true }, "@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", - "dev": true, + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "requires": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -5054,256 +4893,214 @@ } }, "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", - "dev": true + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==" }, "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", - "dev": true + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==" }, "@cspell/dict-ada": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-ada/-/dict-ada-2.0.0.tgz", - "integrity": "sha512-4gfJEYXVwz6IN2LBaT6QoUV4pqaR35i0z0u9O684vLuVczvNJIHa4vNaSEFBr9d6xxncUyqstgP9P73ajJjh9A==", - "dev": true + "integrity": "sha512-4gfJEYXVwz6IN2LBaT6QoUV4pqaR35i0z0u9O684vLuVczvNJIHa4vNaSEFBr9d6xxncUyqstgP9P73ajJjh9A==" }, "@cspell/dict-aws": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-aws/-/dict-aws-2.0.0.tgz", - "integrity": "sha512-NKz7pDZ7pwj/b33i3f4WLpC1rOOUMmENwYgftxU+giU2YBeKM2wZbMTSEIzsrel56r0UlQYmdIVlP/B4nnVaoQ==", - "dev": true + "integrity": "sha512-NKz7pDZ7pwj/b33i3f4WLpC1rOOUMmENwYgftxU+giU2YBeKM2wZbMTSEIzsrel56r0UlQYmdIVlP/B4nnVaoQ==" }, "@cspell/dict-bash": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/@cspell/dict-bash/-/dict-bash-2.0.2.tgz", - "integrity": "sha512-ASIgI/LmV2TYrD4mtk+gm4XmUSTRomOyRt7NDWyBpEww/AeawC2O2NH6FosyUT6dUU3GaXt2wgJRN7R78n1SGg==", - "dev": true + "integrity": "sha512-ASIgI/LmV2TYrD4mtk+gm4XmUSTRomOyRt7NDWyBpEww/AeawC2O2NH6FosyUT6dUU3GaXt2wgJRN7R78n1SGg==" }, "@cspell/dict-companies": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-2.0.4.tgz", - "integrity": "sha512-nLNVddo+iu4q/Mu03nkVTMnSPxBkoLyZ0MgpHJZWCqxVATbBkzoZNNNjsTkJhvkbrUIWydf8YW4U4wYY+kyh7Q==", - "dev": true + "integrity": "sha512-nLNVddo+iu4q/Mu03nkVTMnSPxBkoLyZ0MgpHJZWCqxVATbBkzoZNNNjsTkJhvkbrUIWydf8YW4U4wYY+kyh7Q==" }, "@cspell/dict-cpp": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@cspell/dict-cpp/-/dict-cpp-3.1.0.tgz", - "integrity": "sha512-lav99zUQ+iPq6dkQRnTN0+KE9th0UG6Nwl34afyEGJ8CN5Dcq/RJjCVvOkLw6vPvs505xrvQcZW1huftQK8WVg==", - "dev": true + "integrity": "sha512-lav99zUQ+iPq6dkQRnTN0+KE9th0UG6Nwl34afyEGJ8CN5Dcq/RJjCVvOkLw6vPvs505xrvQcZW1huftQK8WVg==" }, "@cspell/dict-cryptocurrencies": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-cryptocurrencies/-/dict-cryptocurrencies-2.0.0.tgz", - "integrity": "sha512-nREysmmfOp7L2YCRAUufQahwD5/Punzb5AZ6eyg4zUamdRWHgBFphb5/9h2flt1vgdUfhc6hZcML21Ci7iXjaA==", - "dev": true + "integrity": "sha512-nREysmmfOp7L2YCRAUufQahwD5/Punzb5AZ6eyg4zUamdRWHgBFphb5/9h2flt1vgdUfhc6hZcML21Ci7iXjaA==" }, "@cspell/dict-csharp": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-csharp/-/dict-csharp-3.0.1.tgz", - "integrity": "sha512-xkfQu03F388w4sdVQSSjrVMkxAxpTYB2yW7nw0XYtTjl3L/jBgvTr/j1BTjdFbQhdNf10Lg0Ak1kXOjmHodVqA==", - "dev": true + "integrity": "sha512-xkfQu03F388w4sdVQSSjrVMkxAxpTYB2yW7nw0XYtTjl3L/jBgvTr/j1BTjdFbQhdNf10Lg0Ak1kXOjmHodVqA==" }, "@cspell/dict-css": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-2.0.0.tgz", - "integrity": "sha512-MrFyswFHnPh4H0u6IlV4eHy+ZCUrrHzeL161LyTOqCvaKpbZavMgNYXzZqTF9xafO0iLgwKrl+Gkclu1KVBg0Q==", - "dev": true + "integrity": "sha512-MrFyswFHnPh4H0u6IlV4eHy+ZCUrrHzeL161LyTOqCvaKpbZavMgNYXzZqTF9xafO0iLgwKrl+Gkclu1KVBg0Q==" }, "@cspell/dict-dart": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@cspell/dict-dart/-/dict-dart-1.1.0.tgz", - "integrity": "sha512-bBqZINm+RVjMgUrAhRzv/xx3jc3dkIqO0higPbsK+63IAtMNY3EiQnEO4eapbU+qAhyvICY9hZQZXy5Ux4p+Pw==", - "dev": true + "integrity": "sha512-bBqZINm+RVjMgUrAhRzv/xx3jc3dkIqO0higPbsK+63IAtMNY3EiQnEO4eapbU+qAhyvICY9hZQZXy5Ux4p+Pw==" }, "@cspell/dict-django": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-django/-/dict-django-2.0.0.tgz", - "integrity": "sha512-GkJdJv6cmzrKcmq2/oxTXjKF5uv71r4eTqnFmgPbNBW1t+G4VYpzOf0QrVQrhx2RC4DdW5XfcTf+iS0FxHOTmw==", - "dev": true + "integrity": "sha512-GkJdJv6cmzrKcmq2/oxTXjKF5uv71r4eTqnFmgPbNBW1t+G4VYpzOf0QrVQrhx2RC4DdW5XfcTf+iS0FxHOTmw==" }, "@cspell/dict-dotnet": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-dotnet/-/dict-dotnet-2.0.1.tgz", - "integrity": "sha512-b1n4crJRW0WZVf9Gp/52j/tDtjYiZ3N81fIyfqPlBrjsh/5AivfA697DYwQ2mr8ngNX7RsqRtYNQjealA1rEnQ==", - "dev": true + "integrity": "sha512-b1n4crJRW0WZVf9Gp/52j/tDtjYiZ3N81fIyfqPlBrjsh/5AivfA697DYwQ2mr8ngNX7RsqRtYNQjealA1rEnQ==" }, "@cspell/dict-elixir": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-elixir/-/dict-elixir-2.0.1.tgz", - "integrity": "sha512-eTTTxZt1FqGkM780yFDxsGHvTbWqvlK8YISSccK8FyrB6ULW+uflQlNS5AnWg3uWKC48b7pQott+odYCsPJ+Ow==", - "dev": true + "integrity": "sha512-eTTTxZt1FqGkM780yFDxsGHvTbWqvlK8YISSccK8FyrB6ULW+uflQlNS5AnWg3uWKC48b7pQott+odYCsPJ+Ow==" }, "@cspell/dict-en_us": { "version": "2.2.5", "resolved": "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-2.2.5.tgz", - "integrity": "sha512-gRHem02ZY83AQUTYBxtiVNmtM6gWFCJKumRoAKLj7vWYelmNLcCBsMA3BOOOJ7cZNKCI04lDEdh0u2f2akKZtQ==", - "dev": true + "integrity": "sha512-gRHem02ZY83AQUTYBxtiVNmtM6gWFCJKumRoAKLj7vWYelmNLcCBsMA3BOOOJ7cZNKCI04lDEdh0u2f2akKZtQ==" }, "@cspell/dict-en-gb": { "version": "1.1.33", "resolved": "https://registry.npmjs.org/@cspell/dict-en-gb/-/dict-en-gb-1.1.33.tgz", - "integrity": "sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==", - "dev": true + "integrity": "sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==" }, "@cspell/dict-filetypes": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-filetypes/-/dict-filetypes-2.0.1.tgz", - "integrity": "sha512-bQ7K3U/3hKO2lpQjObf0veNP/n50qk5CVezSwApMBckf/sAVvDTR1RGAvYdr+vdQnkdQrk6wYmhbshXi0sLDVg==", - "dev": true + "integrity": "sha512-bQ7K3U/3hKO2lpQjObf0veNP/n50qk5CVezSwApMBckf/sAVvDTR1RGAvYdr+vdQnkdQrk6wYmhbshXi0sLDVg==" }, "@cspell/dict-fonts": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-fonts/-/dict-fonts-2.0.0.tgz", - "integrity": "sha512-AgkTalphfDPtKFPYmEExDcj8rRCh86xlOSXco8tehOEkYVYbksOk9XH0YVH34RFpy93YBd2nnVGLgyGVwagcPw==", - "dev": true + "integrity": "sha512-AgkTalphfDPtKFPYmEExDcj8rRCh86xlOSXco8tehOEkYVYbksOk9XH0YVH34RFpy93YBd2nnVGLgyGVwagcPw==" }, "@cspell/dict-fullstack": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-2.0.5.tgz", - "integrity": "sha512-jnLnHZ4HcCFNUfN+q7m0CUDtISNKat0Jahe1GgnAdEwzcozqKBhlGAjV7mQWPtKpqfJU61JakDnrxzqefAfZHw==", - "dev": true + "integrity": "sha512-jnLnHZ4HcCFNUfN+q7m0CUDtISNKat0Jahe1GgnAdEwzcozqKBhlGAjV7mQWPtKpqfJU61JakDnrxzqefAfZHw==" }, "@cspell/dict-git": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-git/-/dict-git-1.0.1.tgz", - "integrity": "sha512-Rk+eTof/9inF11lvxmkCRK+gODatA3qai8kSASv6OG/JfPvpj7fTHErx/rdgPw/LOTDUafnoTjTYmj7B2MOQXg==", - "dev": true + "integrity": "sha512-Rk+eTof/9inF11lvxmkCRK+gODatA3qai8kSASv6OG/JfPvpj7fTHErx/rdgPw/LOTDUafnoTjTYmj7B2MOQXg==" }, "@cspell/dict-golang": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-golang/-/dict-golang-3.0.1.tgz", - "integrity": "sha512-0KNfXTbxHW2l8iVjxeOf+KFv9Qrw3z5cyKnkuYJWlBTSB5KcUBfeKCb4fsds26VdANqiy6U91b4gDx5kNEmBjQ==", - "dev": true + "integrity": "sha512-0KNfXTbxHW2l8iVjxeOf+KFv9Qrw3z5cyKnkuYJWlBTSB5KcUBfeKCb4fsds26VdANqiy6U91b4gDx5kNEmBjQ==" }, "@cspell/dict-haskell": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-haskell/-/dict-haskell-2.0.0.tgz", - "integrity": "sha512-cjX1Br+gSWqtcmJD/IMHz1UoP3pUaKIIKy/JfhEs7ANtRt6hhfEKe9dl2kQzDkkKt4pXol+YgdYxL/sVc/nLgQ==", - "dev": true + "integrity": "sha512-cjX1Br+gSWqtcmJD/IMHz1UoP3pUaKIIKy/JfhEs7ANtRt6hhfEKe9dl2kQzDkkKt4pXol+YgdYxL/sVc/nLgQ==" }, "@cspell/dict-html": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-html/-/dict-html-3.0.1.tgz", - "integrity": "sha512-sbuFd+nSjgbrGf5eYwSddFhm1eLLePKWyH6Zn8Zb0OODrBK5e4vGn1/scI/MOH5a2IvNs8W9wp84uMBFJcQZtw==", - "dev": true + "integrity": "sha512-sbuFd+nSjgbrGf5eYwSddFhm1eLLePKWyH6Zn8Zb0OODrBK5e4vGn1/scI/MOH5a2IvNs8W9wp84uMBFJcQZtw==" }, "@cspell/dict-html-symbol-entities": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-html-symbol-entities/-/dict-html-symbol-entities-3.0.0.tgz", - "integrity": "sha512-04K7cPTcbYXmHICfiob4gZA1yaj4hpfM+Nl5WIJ1EAZsSGHdqmGEF28GuCjyQ8ZeKiJAsPt/vXuLBbjxkHqZyQ==", - "dev": true + "integrity": "sha512-04K7cPTcbYXmHICfiob4gZA1yaj4hpfM+Nl5WIJ1EAZsSGHdqmGEF28GuCjyQ8ZeKiJAsPt/vXuLBbjxkHqZyQ==" }, "@cspell/dict-java": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-2.0.0.tgz", - "integrity": "sha512-9f5LDATlAiXRGqxLxgqbOLlQxuMW2zcN7tBgxwtN+4u90vM03ZUOR/gKIuDV/y0ZuAiWBIjA73cjk8DJ13Q1eA==", - "dev": true + "integrity": "sha512-9f5LDATlAiXRGqxLxgqbOLlQxuMW2zcN7tBgxwtN+4u90vM03ZUOR/gKIuDV/y0ZuAiWBIjA73cjk8DJ13Q1eA==" }, "@cspell/dict-latex": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-2.0.3.tgz", - "integrity": "sha512-shNEP20yLLzZ3iURg7241uUKO5vKvoPcd311uiMch0L0qoiC057aV9nawjQIDIgQQZvYT04Mem8N45/jnqg9cA==", - "dev": true + "integrity": "sha512-shNEP20yLLzZ3iURg7241uUKO5vKvoPcd311uiMch0L0qoiC057aV9nawjQIDIgQQZvYT04Mem8N45/jnqg9cA==" }, "@cspell/dict-lorem-ipsum": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-lorem-ipsum/-/dict-lorem-ipsum-2.0.0.tgz", - "integrity": "sha512-jKogAKtqvgPMleL6usyj3rZ0m8sVUR6drrD+wMnWSfdx1BmUyTsYiuh/mPEfLAebaYHELWSLQG3rDZRvV9Riqg==", - "dev": true + "integrity": "sha512-jKogAKtqvgPMleL6usyj3rZ0m8sVUR6drrD+wMnWSfdx1BmUyTsYiuh/mPEfLAebaYHELWSLQG3rDZRvV9Riqg==" }, "@cspell/dict-lua": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-2.0.0.tgz", - "integrity": "sha512-7WUEBEspSKtsq104WdIys1+DLqAxpJPzw74Py1TuE3fI5GvlzeSZkRFP2ya54GB2lCO4C3mq4M8EnitpibVDfw==", - "dev": true + "integrity": "sha512-7WUEBEspSKtsq104WdIys1+DLqAxpJPzw74Py1TuE3fI5GvlzeSZkRFP2ya54GB2lCO4C3mq4M8EnitpibVDfw==" }, "@cspell/dict-node": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-node/-/dict-node-2.0.1.tgz", - "integrity": "sha512-ztBWzhvI+YaMehICSJ65cohhjQqoztxf9vrS3YckOiVGBFvUMaFVNdX9klQkvrLcS/O4+2PzoGeIEkmf99amLA==", - "dev": true + "integrity": "sha512-ztBWzhvI+YaMehICSJ65cohhjQqoztxf9vrS3YckOiVGBFvUMaFVNdX9klQkvrLcS/O4+2PzoGeIEkmf99amLA==" }, "@cspell/dict-npm": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-2.0.3.tgz", - "integrity": "sha512-K/rnVhmHkR3jfdo7o8P2NDKyMcpVe9pUBiFDY1y2C0YqZXIxCz1f5hObm/hxyO+Vbn5VLU3TKU5fZ5z3LspXOg==", - "dev": true + "integrity": "sha512-K/rnVhmHkR3jfdo7o8P2NDKyMcpVe9pUBiFDY1y2C0YqZXIxCz1f5hObm/hxyO+Vbn5VLU3TKU5fZ5z3LspXOg==" }, "@cspell/dict-php": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-php/-/dict-php-2.0.0.tgz", - "integrity": "sha512-29WgU77eTO985LvMHwPi1pcpfopfCWfTdffDyqya0JIfOSaFUrlYKzGPkE4mRxcz2G3hXsaM0SRvBNdIRwEdUg==", - "dev": true + "integrity": "sha512-29WgU77eTO985LvMHwPi1pcpfopfCWfTdffDyqya0JIfOSaFUrlYKzGPkE4mRxcz2G3hXsaM0SRvBNdIRwEdUg==" }, "@cspell/dict-powershell": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-2.0.0.tgz", - "integrity": "sha512-6uvEhLiGmG3u9TFkM1TYcky6aL9Yk7Sk3KJwoTYBaQJY2KqrprgyQtW6yxIw9oU52VRHlq3KKvSAA9Q26+SIkQ==", - "dev": true + "integrity": "sha512-6uvEhLiGmG3u9TFkM1TYcky6aL9Yk7Sk3KJwoTYBaQJY2KqrprgyQtW6yxIw9oU52VRHlq3KKvSAA9Q26+SIkQ==" }, "@cspell/dict-public-licenses": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/@cspell/dict-public-licenses/-/dict-public-licenses-1.0.4.tgz", - "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==", - "dev": true + "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==", - "dev": true + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "@cspell/dict-r": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@cspell/dict-r/-/dict-r-1.0.2.tgz", - "integrity": "sha512-Rp3d4sgD6izW9TW5yVI3D//3HTl9oOGBuzTvXRdoHksVPRvzIu2liVhj8MnQ3XIRe5Kc6IhLBAm6izuV2BpGwQ==", - "dev": true + "integrity": "sha512-Rp3d4sgD6izW9TW5yVI3D//3HTl9oOGBuzTvXRdoHksVPRvzIu2liVhj8MnQ3XIRe5Kc6IhLBAm6izuV2BpGwQ==" }, "@cspell/dict-ruby": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-2.0.1.tgz", - "integrity": "sha512-qGqhYfFeoBOashv/l0Kj5o4ilyvfq0s+t+r32juPOkOnbHz+hzxnJo2tMMg/L/UdjVV7Y8ovg4LDBC/seVrMYQ==", - "dev": true + "integrity": "sha512-qGqhYfFeoBOashv/l0Kj5o4ilyvfq0s+t+r32juPOkOnbHz+hzxnJo2tMMg/L/UdjVV7Y8ovg4LDBC/seVrMYQ==" }, "@cspell/dict-rust": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-2.0.0.tgz", - "integrity": "sha512-EWlQivTKXMU3TTcq/Pi6KPKTQADknasQ700UrxRPzxhwQ4sKVZ88GDu6VZJlsbFUz8Vko289KS6wjiox/7WpmQ==", - "dev": true + "integrity": "sha512-EWlQivTKXMU3TTcq/Pi6KPKTQADknasQ700UrxRPzxhwQ4sKVZ88GDu6VZJlsbFUz8Vko289KS6wjiox/7WpmQ==" }, "@cspell/dict-scala": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-2.0.0.tgz", - "integrity": "sha512-MUwA2YKpqaQOSR4V1/CVGRNk8Ii5kf6I8Ch+4/BhRZRQXuwWbi21rDRYWPqdQWps7VNzAbbMA+PQDWsD5YY38g==", - "dev": true + "integrity": "sha512-MUwA2YKpqaQOSR4V1/CVGRNk8Ii5kf6I8Ch+4/BhRZRQXuwWbi21rDRYWPqdQWps7VNzAbbMA+PQDWsD5YY38g==" }, "@cspell/dict-software-terms": { "version": "2.1.7", "resolved": "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-2.1.7.tgz", - "integrity": "sha512-2FW5MlbazmWPFHzMh2xKYFcYnX+E5MdOPRrfYkbVXvWecA0466l54V+op2zlh1CbngMk4eY7AY3qahfWv6gDHA==", - "dev": true + "integrity": "sha512-2FW5MlbazmWPFHzMh2xKYFcYnX+E5MdOPRrfYkbVXvWecA0466l54V+op2zlh1CbngMk4eY7AY3qahfWv6gDHA==" }, "@cspell/dict-swift": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@cspell/dict-swift/-/dict-swift-1.0.2.tgz", - "integrity": "sha512-IrMcRO7AYB2qU5cj4ttZyEbd04DRNOG6Iha106qGGmn4P096m+Y7lOnSLJx/rZbD/cAT3Z/7i465Lr1J93j7yg==", - "dev": true + "integrity": "sha512-IrMcRO7AYB2qU5cj4ttZyEbd04DRNOG6Iha106qGGmn4P096m+Y7lOnSLJx/rZbD/cAT3Z/7i465Lr1J93j7yg==" }, "@cspell/dict-typescript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-2.0.0.tgz", - "integrity": "sha512-WFBahxsnD2y4Os14tE5Zxh31Ggn4DzGOAu3UoxYl1lLLxaszx4RH7LmAeFuznySboiaBeRBbpfJOjQA796O6VQ==", - "dev": true + "integrity": "sha512-WFBahxsnD2y4Os14tE5Zxh31Ggn4DzGOAu3UoxYl1lLLxaszx4RH7LmAeFuznySboiaBeRBbpfJOjQA796O6VQ==" }, "@cspell/dict-vue": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/@cspell/dict-vue/-/dict-vue-2.0.2.tgz", - "integrity": "sha512-/MB0RS0Gn01s4pgmjy0FvsLfr3RRMrRphEuvTRserNcM8XVtoIVAtrjig/Gg0DPwDrN8Clm0L1j7iQay6S8D0g==", - "dev": true + "integrity": "sha512-/MB0RS0Gn01s4pgmjy0FvsLfr3RRMrRphEuvTRserNcM8XVtoIVAtrjig/Gg0DPwDrN8Clm0L1j7iQay6S8D0g==" }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", @@ -5775,8 +5572,7 @@ "@types/parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", - "dev": true + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" }, "@types/prettier": { "version": "2.6.1", @@ -5817,14 +5613,12 @@ "ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, "requires": { "color-convert": "^2.0.1" } @@ -5851,8 +5645,7 @@ "array-timsort": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/array-timsort/-/array-timsort-1.0.3.tgz", - "integrity": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==", - "dev": true + "integrity": "sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==" }, "babel-jest": { "version": "28.1.0", @@ -5927,14 +5720,12 @@ "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, "requires": { "balanced-match": "^1.0.0" } @@ -5943,7 +5734,6 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, "requires": { "fill-range": "^7.0.1" } @@ -5997,7 +5787,6 @@ "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -6025,7 +5814,6 @@ "version": "4.1.2", "resolved": "https://registry.npmjs.org/clear-module/-/clear-module-4.1.2.tgz", "integrity": "sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==", - "dev": true, "requires": { "parent-module": "^2.0.0", "resolve-from": "^5.0.0" @@ -6058,7 +5846,6 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, "requires": { "color-name": "~1.1.4" } @@ -6066,20 +5853,17 @@ "color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" }, "commander": { "version": "9.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-9.2.0.tgz", - "integrity": "sha512-e2i4wANQiSXgnrBlIatyHtP1odfUp0BbV5Y5nEGbxtIrStkEOAAzCUirvLBNXHLr7kwLvJl6V+4V3XV9x7Wd9w==", - "dev": true + "integrity": "sha512-e2i4wANQiSXgnrBlIatyHtP1odfUp0BbV5Y5nEGbxtIrStkEOAAzCUirvLBNXHLr7kwLvJl6V+4V3XV9x7Wd9w==" }, "comment-json": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/comment-json/-/comment-json-4.2.2.tgz", "integrity": "sha512-H8T+kl3nZesZu41zO2oNXIJWojNeK3mHxCLrsBNu6feksBXsgb+PtYz5daP5P86A0F3sz3840KVYehr04enISQ==", - "dev": true, "requires": { "array-timsort": "^1.0.3", "core-util-is": "^1.0.3", @@ -6091,14 +5875,12 @@ "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "configstore": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", - "dev": true, "requires": { "dot-prop": "^5.2.0", "graceful-fs": "^4.1.2", @@ -6120,14 +5902,12 @@ "core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" }, "cosmiconfig": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", - "dev": true, "requires": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -6150,21 +5930,19 @@ "crypto-random-string": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", - "dev": true + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" }, "cspell": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell/-/cspell-5.21.1.tgz", - "integrity": "sha512-R5I3QwohSkhclfZSCMvTbGb9zZHyZRno4pnUtEN5cVkUXfHHg751rZwO+zUwQcG7mLGHwU6iBNs5kAgH0UxISw==", - "dev": true, + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell/-/cspell-6.0.0-alpha.0.tgz", + "integrity": "sha512-2O3dp/VsHAXxZ61fSTwAjiTy4QZgFDz4iyld18HnBzyObmv/YNZxFJ0Qjcf6ywHnRyxZdMFzgxWzuf5Jq0laIQ==", "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "chalk": "^4.1.2", "commander": "^9.2.0", - "cspell-gitignore": "^5.21.1", - "cspell-glob": "^5.21.1", - "cspell-lib": "^5.21.1", + "cspell-gitignore": "^6.0.0-alpha.0", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-lib": "^6.0.0-alpha.0", "fast-json-stable-stringify": "^2.1.0", "file-entry-cache": "^6.0.1", "fs-extra": "^10.1.0", @@ -6177,46 +5955,42 @@ } }, "cspell-gitignore": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.21.1.tgz", - "integrity": "sha512-PFTGjUegbCsH0db6+4+xFO/U68ghXNwPDzJRuJnxkwy9XlExcwz22eDisUwyO0fG4nbLJgfQoAuAXzT8LW3MDw==", - "dev": true, + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.0.0-alpha.0.tgz", + "integrity": "sha512-XhaS2jzR769wBtJX+014vQ0K4fIWo6X/HHL86KUodlY3VpXdaIrOsTW5a9tMEoVnj4PFhL5blmyeHqtuQADaUw==", "requires": { - "cspell-glob": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", "find-up": "^5.0.0" } }, "cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", - "dev": true, + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "requires": { "micromatch": "^4.0.5" } }, "cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", - "dev": true + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==" }, "cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", - "dev": true, + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "requires": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -6229,12 +6003,11 @@ } }, "cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", - "dev": true, + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" } @@ -6276,7 +6049,6 @@ "version": "5.3.0", "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", - "dev": true, "requires": { "is-obj": "^2.0.0" } @@ -6303,7 +6075,6 @@ "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, "requires": { "is-arrayish": "^0.2.1" } @@ -6323,8 +6094,7 @@ "esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" }, "execa": { "version": "5.1.1", @@ -6365,14 +6135,12 @@ "fast-equals": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-3.0.2.tgz", - "integrity": "sha512-iY0fAmW7fzxHp22VCRLpOgWbsWsF+DJWi1jhc8w+VGlJUiS+KcGZV2A8t+Q9oTQwhG3L1W8Lu/oe3ZyOPdhZjw==", - "dev": true + "integrity": "sha512-iY0fAmW7fzxHp22VCRLpOgWbsWsF+DJWi1jhc8w+VGlJUiS+KcGZV2A8t+Q9oTQwhG3L1W8Lu/oe3ZyOPdhZjw==" }, "fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" }, "fb-watchman": { "version": "2.0.1", @@ -6387,7 +6155,6 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "dev": true, "requires": { "flat-cache": "^3.0.4" } @@ -6396,7 +6163,6 @@ "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dev": true, "requires": { "to-regex-range": "^5.0.1" } @@ -6405,7 +6171,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, "requires": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" @@ -6415,7 +6180,6 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "dev": true, "requires": { "flatted": "^3.1.0", "rimraf": "^3.0.2" @@ -6424,14 +6188,12 @@ "flatted": { "version": "3.2.5", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz", - "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==", - "dev": true + "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==" }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -6441,8 +6203,7 @@ "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "fsevents": { "version": "2.3.2", @@ -6460,8 +6221,7 @@ "gensequence": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/gensequence/-/gensequence-3.1.1.tgz", - "integrity": "sha512-ys3h0hiteRwmY6BsvSttPmkhC0vEQHPJduANBRtH/dlDPZ0UBIb/dXy80IcckXyuQ6LKg+PloRqvGER9IS7F7g==", - "dev": true + "integrity": "sha512-ys3h0hiteRwmY6BsvSttPmkhC0vEQHPJduANBRtH/dlDPZ0UBIb/dXy80IcckXyuQ6LKg+PloRqvGER9IS7F7g==" }, "gensync": { "version": "1.0.0-beta.2", @@ -6484,8 +6244,7 @@ "get-stdin": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", - "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", - "dev": true + "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==" }, "get-stream": { "version": "6.0.1", @@ -6497,7 +6256,6 @@ "version": "8.0.3", "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", - "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -6510,7 +6268,6 @@ "version": "0.1.1", "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", - "dev": true, "requires": { "ini": "^1.3.4" } @@ -6524,8 +6281,7 @@ "graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" }, "has": { "version": "1.0.3", @@ -6539,14 +6295,12 @@ "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, "has-own-prop": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/has-own-prop/-/has-own-prop-2.0.0.tgz", - "integrity": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==", - "dev": true + "integrity": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==" }, "html-escaper": { "version": "2.0.2", @@ -6597,14 +6351,12 @@ "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, "requires": { "once": "^1.3.0", "wrappy": "1" @@ -6613,20 +6365,17 @@ "inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" }, "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" }, "is-core-module": { "version": "2.9.0", @@ -6652,14 +6401,12 @@ "is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" }, "is-obj": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" }, "is-stream": { "version": "2.0.1", @@ -6670,8 +6417,7 @@ "is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", - "dev": true + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" }, "isexe": { "version": "2.0.0", @@ -7236,8 +6982,7 @@ "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "js-yaml": { "version": "3.14.1", @@ -7258,8 +7003,7 @@ "json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, "json5": { "version": "2.2.1", @@ -7271,7 +7015,6 @@ "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, "requires": { "graceful-fs": "^4.1.6", "universalify": "^2.0.0" @@ -7292,14 +7035,12 @@ "lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, "requires": { "p-locate": "^5.0.0" } @@ -7308,7 +7049,6 @@ "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, "requires": { "yallist": "^4.0.0" } @@ -7317,7 +7057,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, "requires": { "semver": "^6.0.0" }, @@ -7325,8 +7064,7 @@ "semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" } } }, @@ -7349,7 +7087,6 @@ "version": "4.0.5", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, "requires": { "braces": "^3.0.2", "picomatch": "^2.3.1" @@ -7365,7 +7102,6 @@ "version": "5.1.0", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", - "dev": true, "requires": { "brace-expansion": "^2.0.1" } @@ -7413,7 +7149,6 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, "requires": { "wrappy": "1" } @@ -7431,7 +7166,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, "requires": { "yocto-queue": "^0.1.0" } @@ -7440,7 +7174,6 @@ "version": "5.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, "requires": { "p-limit": "^3.0.2" } @@ -7455,7 +7188,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-2.0.0.tgz", "integrity": "sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==", - "dev": true, "requires": { "callsites": "^3.1.0" } @@ -7464,7 +7196,6 @@ "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, "requires": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -7475,14 +7206,12 @@ "path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" }, "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" }, "path-key": { "version": "3.1.1", @@ -7499,8 +7228,7 @@ "path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" }, "picocolors": { "version": "1.0.0", @@ -7511,8 +7239,7 @@ "picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" }, "pirates": { "version": "4.0.5", @@ -7607,8 +7334,7 @@ "repeat-string": { "version": "1.6.1", "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "dev": true + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" }, "require-directory": { "version": "2.1.1", @@ -7639,14 +7365,12 @@ "resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" }, "resolve-global": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/resolve-global/-/resolve-global-1.0.0.tgz", "integrity": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==", - "dev": true, "requires": { "global-dirs": "^0.1.1" } @@ -7661,7 +7385,6 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, "requires": { "glob": "^7.1.3" }, @@ -7670,7 +7393,6 @@ "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -7680,7 +7402,6 @@ "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -7694,7 +7415,6 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, "requires": { "brace-expansion": "^1.1.7" } @@ -7711,7 +7431,6 @@ "version": "7.3.7", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dev": true, "requires": { "lru-cache": "^6.0.0" } @@ -7734,8 +7453,7 @@ "signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" }, "sisteransi": { "version": "1.0.5", @@ -7805,7 +7523,6 @@ "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, "requires": { "ansi-regex": "^5.0.1" } @@ -7832,7 +7549,6 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, "requires": { "has-flag": "^4.0.0" } @@ -7931,7 +7647,6 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, "requires": { "is-number": "^7.0.0" } @@ -7952,7 +7667,6 @@ "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dev": true, "requires": { "is-typedarray": "^1.0.0" } @@ -7967,7 +7681,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", - "dev": true, "requires": { "crypto-random-string": "^2.0.0" } @@ -7975,8 +7688,7 @@ "universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" }, "v8-to-istanbul": { "version": "9.0.0", @@ -7992,14 +7704,12 @@ "vscode-languageserver-textdocument": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.4.tgz", - "integrity": "sha512-/xhqXP/2A2RSs+J8JNXpiiNVvvNM0oTosNVmQnunlKvq9o4mupHOBAnnzH0lwIPKazXKvAKsVp1kr+H/K4lgoQ==", - "dev": true + "integrity": "sha512-/xhqXP/2A2RSs+J8JNXpiiNVvvNM0oTosNVmQnunlKvq9o4mupHOBAnnzH0lwIPKazXKvAKsVp1kr+H/K4lgoQ==" }, "vscode-uri": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.3.tgz", - "integrity": "sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA==", - "dev": true + "integrity": "sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA==" }, "walker": { "version": "1.0.8", @@ -8033,14 +7743,12 @@ "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "write-file-atomic": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "dev": true, "requires": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", @@ -8051,8 +7759,7 @@ "xdg-basedir": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", - "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", - "dev": true + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==" }, "y18n": { "version": "5.0.8", @@ -8063,14 +7770,12 @@ "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, "yaml": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" }, "yargs": { "version": "17.5.1", @@ -8096,8 +7801,7 @@ "yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" } } } diff --git a/packages/cspell-dynamic-loader/package.json b/packages/cspell-dynamic-loader/package.json index d13fc5c645b..134c5ddaae5 100644 --- a/packages/cspell-dynamic-loader/package.json +++ b/packages/cspell-dynamic-loader/package.json @@ -4,7 +4,7 @@ "publishConfig": { "access": "public" }, - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Load cspell or cspell-lib on demand", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -38,18 +38,14 @@ "author": "Jason Dent", "license": "MIT", "engines": { - "node": ">=12.13.0" - }, - "peerDependencies": { - "cspell": "^5.8.2", - "cspell-lib": "^5.8.2" + "node": ">=14" }, "dependencies": { + "cspell": "^6.0.0", + "cspell-lib": "^6.0.0", "import-fresh": "^3.3.0" }, "devDependencies": { - "cspell": "^6.0.0-alpha.0", - "cspell-lib": "^6.0.0-alpha.0", "jest": "^28.1.0", "rimraf": "^3.0.2", "typescript": "^4.6.4" diff --git a/packages/cspell-eslint-plugin/CHANGELOG.md b/packages/cspell-eslint-plugin/CHANGELOG.md index e6e81f914b3..1c44af63616 100644 --- a/packages/cspell-eslint-plugin/CHANGELOG.md +++ b/packages/cspell-eslint-plugin/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package @cspell/eslint-plugin + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package @cspell/eslint-plugin diff --git a/packages/cspell-eslint-plugin/package-lock.json b/packages/cspell-eslint-plugin/package-lock.json index d63779762e1..608d6237a6a 100644 --- a/packages/cspell-eslint-plugin/package-lock.json +++ b/packages/cspell-eslint-plugin/package-lock.json @@ -1,15 +1,15 @@ { "name": "@cspell/eslint-plugin", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@cspell/eslint-plugin", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "cspell-lib": "^5.21.1" + "cspell-lib": "^6.0.0-alpha.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^22.0.0", @@ -22,7 +22,7 @@ "@typescript-eslint/parser": "^5.25.0", "@typescript-eslint/types": "^5.25.0", "@typescript-eslint/typescript-estree": "^5.25.0", - "eslint": "^8.15.0", + "eslint": "^8.16.0", "mocha": "^10.0.0", "rimraf": "^3.0.2", "rollup": "^2.74.1", @@ -30,7 +30,7 @@ "ts-json-schema-generator": "^1.0.0" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } }, "node_modules/@babel/code-frame": { @@ -130,9 +130,9 @@ } }, "node_modules/@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "dependencies": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -180,17 +180,17 @@ } }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "engines": { "node": ">=12.13.0" } }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "engines": { "node": ">=12.13.0" } @@ -351,9 +351,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "node_modules/@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "node_modules/@cspell/dict-r": { "version": "1.0.2", @@ -396,15 +396,15 @@ "integrity": "sha512-/MB0RS0Gn01s4pgmjy0FvsLfr3RRMrRphEuvTRserNcM8XVtoIVAtrjig/Gg0DPwDrN8Clm0L1j7iQay6S8D0g==" }, "node_modules/@eslint/eslintrc": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.3.tgz", - "integrity": "sha512-uGo44hIwoLGNyduRpjdEpovcbMdd+Nv7amtmJxnKmI8xj6yd5LncmSwDa5NgX/41lIFJtkjD6YdVfgEzPfJ5UA==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.0.tgz", + "integrity": "sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==", "dev": true, "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^9.3.2", - "globals": "^13.9.0", + "globals": "^13.15.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", @@ -1090,9 +1090,9 @@ } }, "node_modules/cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dependencies": { "micromatch": "^4.0.5" }, @@ -1101,28 +1101,28 @@ } }, "node_modules/cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "engines": { "node": ">=12.13.0" } }, "node_modules/cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "dependencies": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -1138,11 +1138,11 @@ } }, "node_modules/cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -1274,12 +1274,12 @@ } }, "node_modules/eslint": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz", - "integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==", + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.16.0.tgz", + "integrity": "sha512-MBndsoXY/PeVTDJeWsYj7kLZ5hQpJOfMYLsF6LicLHQWbRDG19lK5jOix4DPl8yY4SUFcE3txy86OzFLWT+yoA==", "dev": true, "dependencies": { - "@eslint/eslintrc": "^1.2.3", + "@eslint/eslintrc": "^1.3.0", "@humanwhocodes/config-array": "^0.9.2", "ajv": "^6.10.0", "chalk": "^4.0.0", @@ -1297,7 +1297,7 @@ "file-entry-cache": "^6.0.1", "functional-red-black-tree": "^1.0.1", "glob-parent": "^6.0.1", - "globals": "^13.6.0", + "globals": "^13.15.0", "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", @@ -3187,9 +3187,9 @@ } }, "@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "requires": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -3234,14 +3234,14 @@ } }, "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==" }, "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==" }, "@cspell/dict-ada": { "version": "2.0.0", @@ -3399,9 +3399,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "@cspell/dict-r": { "version": "1.0.2", @@ -3444,15 +3444,15 @@ "integrity": "sha512-/MB0RS0Gn01s4pgmjy0FvsLfr3RRMrRphEuvTRserNcM8XVtoIVAtrjig/Gg0DPwDrN8Clm0L1j7iQay6S8D0g==" }, "@eslint/eslintrc": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.3.tgz", - "integrity": "sha512-uGo44hIwoLGNyduRpjdEpovcbMdd+Nv7amtmJxnKmI8xj6yd5LncmSwDa5NgX/41lIFJtkjD6YdVfgEzPfJ5UA==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.0.tgz", + "integrity": "sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==", "dev": true, "requires": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^9.3.2", - "globals": "^13.9.0", + "globals": "^13.15.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", @@ -3952,33 +3952,33 @@ "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" }, "cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "requires": { "micromatch": "^4.0.5" } }, "cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==" }, "cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "requires": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -3991,11 +3991,11 @@ } }, "cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" } @@ -4086,12 +4086,12 @@ "dev": true }, "eslint": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz", - "integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==", + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.16.0.tgz", + "integrity": "sha512-MBndsoXY/PeVTDJeWsYj7kLZ5hQpJOfMYLsF6LicLHQWbRDG19lK5jOix4DPl8yY4SUFcE3txy86OzFLWT+yoA==", "dev": true, "requires": { - "@eslint/eslintrc": "^1.2.3", + "@eslint/eslintrc": "^1.3.0", "@humanwhocodes/config-array": "^0.9.2", "ajv": "^6.10.0", "chalk": "^4.0.0", @@ -4109,7 +4109,7 @@ "file-entry-cache": "^6.0.1", "functional-red-black-tree": "^1.0.1", "glob-parent": "^6.0.1", - "globals": "^13.6.0", + "globals": "^13.15.0", "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", diff --git a/packages/cspell-eslint-plugin/package.json b/packages/cspell-eslint-plugin/package.json index 73c1d5ff31c..8c0642b56b0 100644 --- a/packages/cspell-eslint-plugin/package.json +++ b/packages/cspell-eslint-plugin/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "[WIP] CSpell ESLint plugin", "keywords": [ "cspell", @@ -51,7 +51,7 @@ "url": "https://github.com/streetsidesoftware/cspell/labels/cspell-gitignore" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { "@rollup/plugin-commonjs": "^22.0.0", @@ -64,7 +64,7 @@ "@typescript-eslint/parser": "^5.25.0", "@typescript-eslint/types": "^5.25.0", "@typescript-eslint/typescript-estree": "^5.25.0", - "eslint": "^8.15.0", + "eslint": "^8.16.0", "mocha": "^10.0.0", "rimraf": "^3.0.2", "rollup": "^2.74.1", @@ -72,6 +72,6 @@ "ts-json-schema-generator": "^1.0.0" }, "dependencies": { - "cspell-lib": "^6.0.0-alpha.0" + "cspell-lib": "^6.0.0" } } diff --git a/packages/cspell-gitignore/CHANGELOG.md b/packages/cspell-gitignore/CHANGELOG.md index b899d3fd17f..39edbe6432a 100644 --- a/packages/cspell-gitignore/CHANGELOG.md +++ b/packages/cspell-gitignore/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package cspell-gitignore + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package cspell-gitignore diff --git a/packages/cspell-gitignore/package-lock.json b/packages/cspell-gitignore/package-lock.json index 79c97d6c0f4..c4a66fd9cc6 100644 --- a/packages/cspell-gitignore/package-lock.json +++ b/packages/cspell-gitignore/package-lock.json @@ -1,15 +1,15 @@ { "name": "cspell-gitignore", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cspell-gitignore", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "cspell-glob": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", "find-up": "^5.0.0" }, "bin": { @@ -21,7 +21,7 @@ "rimraf": "^3.0.2" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } }, "node_modules/@ampproject/remapping": { @@ -1482,9 +1482,9 @@ } }, "node_modules/cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dependencies": { "micromatch": "^4.0.5" }, @@ -4653,9 +4653,9 @@ } }, "cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "requires": { "micromatch": "^4.0.5" } diff --git a/packages/cspell-gitignore/package.json b/packages/cspell-gitignore/package.json index 40fd917bc4e..78254d493f0 100644 --- a/packages/cspell-gitignore/package.json +++ b/packages/cspell-gitignore/package.json @@ -1,6 +1,6 @@ { "name": "cspell-gitignore", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Gitignore Glob matcher for cspell", "keywords": [ "cspell", @@ -44,10 +44,10 @@ "url": "https://github.com/streetsidesoftware/cspell/labels/cspell-gitignore" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "dependencies": { - "cspell-glob": "^6.0.0-alpha.0", + "cspell-glob": "^6.0.0", "find-up": "^5.0.0" }, "devDependencies": { diff --git a/packages/cspell-glob/CHANGELOG.md b/packages/cspell-glob/CHANGELOG.md index 38c1564ea87..4d8bf9546cb 100644 --- a/packages/cspell-glob/CHANGELOG.md +++ b/packages/cspell-glob/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package cspell-glob + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package cspell-glob diff --git a/packages/cspell-glob/package-lock.json b/packages/cspell-glob/package-lock.json index f6aedae0c05..c8dea151e15 100644 --- a/packages/cspell-glob/package-lock.json +++ b/packages/cspell-glob/package-lock.json @@ -1,12 +1,12 @@ { "name": "cspell-glob", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cspell-glob", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { "micromatch": "^4.0.5" @@ -18,7 +18,7 @@ "rimraf": "^3.0.2" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } }, "node_modules/@ampproject/remapping": { diff --git a/packages/cspell-glob/package.json b/packages/cspell-glob/package.json index f8448379cbe..43ac7ddaf37 100644 --- a/packages/cspell-glob/package.json +++ b/packages/cspell-glob/package.json @@ -1,6 +1,6 @@ { "name": "cspell-glob", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Glob matcher for cspell", "keywords": [ "cspell", @@ -39,7 +39,7 @@ "url": "https://github.com/streetsidesoftware/cspell/labels/cspell-glob" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "dependencies": { "micromatch": "^4.0.5" diff --git a/packages/cspell-grammar/CHANGELOG.md b/packages/cspell-grammar/CHANGELOG.md index 77897ab3a31..1e7769e14d4 100644 --- a/packages/cspell-grammar/CHANGELOG.md +++ b/packages/cspell-grammar/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package cspell-grammar + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package cspell-grammar diff --git a/packages/cspell-grammar/package-lock.json b/packages/cspell-grammar/package-lock.json index ad9f6b7aab2..416483aa5f3 100644 --- a/packages/cspell-grammar/package-lock.json +++ b/packages/cspell-grammar/package-lock.json @@ -1,15 +1,15 @@ { "name": "cspell-grammar", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cspell-grammar", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1" + "@cspell/cspell-pipe": "^6.0.0-alpha.0" }, "bin": { "cspell-grammar": "bin.js" @@ -20,7 +20,7 @@ "rimraf": "^3.0.2" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } }, "node_modules/@ampproject/remapping": { @@ -580,9 +580,9 @@ "dev": true }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "engines": { "node": ">=12.13.0" } @@ -3814,9 +3814,9 @@ "dev": true }, "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==" }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", diff --git a/packages/cspell-grammar/package.json b/packages/cspell-grammar/package.json index a9a63654f08..f1491e677e3 100644 --- a/packages/cspell-grammar/package.json +++ b/packages/cspell-grammar/package.json @@ -1,6 +1,6 @@ { "name": "cspell-grammar", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "private": true, "description": "Grammar parsing support for cspell", "keywords": [ @@ -44,7 +44,7 @@ "url": "https://github.com/streetsidesoftware/cspell/labels/cspell-grammar" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { "@types/node": "^17.0.35", @@ -52,6 +52,6 @@ "rimraf": "^3.0.2" }, "dependencies": { - "@cspell/cspell-pipe": "^6.0.0-alpha.0" + "@cspell/cspell-pipe": "^6.0.0" } } diff --git a/packages/cspell-io/CHANGELOG.md b/packages/cspell-io/CHANGELOG.md index 14baeaec26d..b6bb1736fc3 100644 --- a/packages/cspell-io/CHANGELOG.md +++ b/packages/cspell-io/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package cspell-io + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package cspell-io diff --git a/packages/cspell-io/package-lock.json b/packages/cspell-io/package-lock.json index 8605b331b01..0cb47b0294d 100644 --- a/packages/cspell-io/package-lock.json +++ b/packages/cspell-io/package-lock.json @@ -1,12 +1,12 @@ { "name": "cspell-io", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cspell-io", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "devDependencies": { "@types/fs-extra": "^9.0.13", @@ -17,7 +17,7 @@ "rimraf": "^3.0.2" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } }, "node_modules/@ampproject/remapping": { diff --git a/packages/cspell-io/package.json b/packages/cspell-io/package.json index fe2e95c52d0..cd0a3a25edd 100644 --- a/packages/cspell-io/package.json +++ b/packages/cspell-io/package.json @@ -1,6 +1,6 @@ { "name": "cspell-io", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "A library of useful I/O functions used across various cspell tools.", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -35,7 +35,7 @@ }, "homepage": "https://github.com/streetsidesoftware/cspell#readme", "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { "@types/fs-extra": "^9.0.13", diff --git a/packages/cspell-json-reporter/CHANGELOG.md b/packages/cspell-json-reporter/CHANGELOG.md index 946943e2fea..e6cf0d2d20b 100644 --- a/packages/cspell-json-reporter/CHANGELOG.md +++ b/packages/cspell-json-reporter/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package @cspell/cspell-json-reporter + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package @cspell/cspell-json-reporter diff --git a/packages/cspell-json-reporter/package-lock.json b/packages/cspell-json-reporter/package-lock.json index 09cb7c30ac0..2295e49783e 100644 --- a/packages/cspell-json-reporter/package-lock.json +++ b/packages/cspell-json-reporter/package-lock.json @@ -1,28 +1,28 @@ { "name": "@cspell/cspell-json-reporter", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@cspell/cspell-json-reporter", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-types": "^6.0.0-alpha.0", "mkdirp": "^1.0.4" }, "devDependencies": { "@types/mkdirp": "^1.0.2" }, "engines": { - "node": ">=12.30.0" + "node": ">=14" } }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "engines": { "node": ">=12.13.0" } @@ -56,9 +56,9 @@ }, "dependencies": { "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==" }, "@types/mkdirp": { "version": "1.0.2", diff --git a/packages/cspell-json-reporter/package.json b/packages/cspell-json-reporter/package.json index 7de05a28479..85730c582fd 100644 --- a/packages/cspell-json-reporter/package.json +++ b/packages/cspell-json-reporter/package.json @@ -1,6 +1,6 @@ { "name": "@cspell/cspell-json-reporter", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "JSON reporter for CSpell", "author": "Jason Dent", "license": "MIT", @@ -38,13 +38,13 @@ "update-snapshot": "jest --updateSnapshot" }, "dependencies": { - "@cspell/cspell-types": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0", "mkdirp": "^1.0.4" }, "devDependencies": { "@types/mkdirp": "^1.0.2" }, "engines": { - "node": ">=12.30.0" + "node": ">=14" } } diff --git a/packages/cspell-lib/CHANGELOG.md b/packages/cspell-lib/CHANGELOG.md index 2d6d78391a1..dbf5d7f5769 100644 --- a/packages/cspell-lib/CHANGELOG.md +++ b/packages/cspell-lib/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package cspell-lib + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package cspell-lib diff --git a/packages/cspell-lib/package-lock.json b/packages/cspell-lib/package-lock.json index f391076056c..071b3b3fa7c 100644 --- a/packages/cspell-lib/package-lock.json +++ b/packages/cspell-lib/package-lock.json @@ -1,24 +1,24 @@ { "name": "cspell-lib", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cspell-lib", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -51,7 +51,7 @@ "ts-jest": "^28.0.2" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } }, "node_modules/@ampproject/remapping": { @@ -601,9 +601,9 @@ "dev": true }, "node_modules/@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "dependencies": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -661,22 +661,22 @@ "integrity": "sha512-sbuFd+nSjgbrGf5eYwSddFhm1eLLePKWyH6Zn8Zb0OODrBK5e4vGn1/scI/MOH5a2IvNs8W9wp84uMBFJcQZtw==" }, "node_modules/@cspell/cspell-bundled-dicts/node_modules/@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "engines": { "node": ">=12.13.0" } }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "engines": { "node": ">=12.13.0" } @@ -1996,9 +1996,9 @@ "dev": true }, "node_modules/cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dependencies": { "micromatch": "^4.0.5" }, @@ -2007,19 +2007,19 @@ } }, "node_modules/cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "engines": { "node": ">=12.13.0" } }, "node_modules/cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -5213,9 +5213,9 @@ "dev": true }, "@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "requires": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -5270,21 +5270,21 @@ "integrity": "sha512-sbuFd+nSjgbrGf5eYwSddFhm1eLLePKWyH6Zn8Zb0OODrBK5e4vGn1/scI/MOH5a2IvNs8W9wp84uMBFJcQZtw==" }, "@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" } } }, "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==" }, "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==" }, "@cspell/dict-ada": { "version": "2.0.0", @@ -6391,24 +6391,24 @@ } }, "cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "requires": { "micromatch": "^4.0.5" } }, "cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==" }, "cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" } diff --git a/packages/cspell-lib/package.json b/packages/cspell-lib/package.json index 1a006f09302..90e8b240cd3 100644 --- a/packages/cspell-lib/package.json +++ b/packages/cspell-lib/package.json @@ -1,6 +1,6 @@ { "name": "cspell-lib", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "A library of useful functions used across various cspell tools.", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -48,16 +48,16 @@ }, "homepage": "https://github.com/streetsidesoftware/cspell#readme", "dependencies": { - "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", - "@cspell/cspell-pipe": "^6.0.0-alpha.0", - "@cspell/cspell-types": "^6.0.0-alpha.0", + "@cspell/cspell-bundled-dicts": "^6.0.0", + "@cspell/cspell-pipe": "^6.0.0", + "@cspell/cspell-types": "^6.0.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^6.0.0-alpha.0", - "cspell-io": "^6.0.0-alpha.0", - "cspell-trie-lib": "^6.0.0-alpha.0", + "cspell-glob": "^6.0.0", + "cspell-io": "^6.0.0", + "cspell-trie-lib": "^6.0.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -69,7 +69,7 @@ "vscode-uri": "^3.0.3" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { "@cspell/dict-cpp": "^3.1.0", diff --git a/packages/cspell-pipe/CHANGELOG.md b/packages/cspell-pipe/CHANGELOG.md index 9a017fbac77..22661c6a9b8 100644 --- a/packages/cspell-pipe/CHANGELOG.md +++ b/packages/cspell-pipe/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package @cspell/cspell-pipe + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package @cspell/cspell-pipe diff --git a/packages/cspell-pipe/package-lock.json b/packages/cspell-pipe/package-lock.json index 4645abedf55..4ef8e17ce00 100644 --- a/packages/cspell-pipe/package-lock.json +++ b/packages/cspell-pipe/package-lock.json @@ -1,12 +1,12 @@ { "name": "@cspell/cspell-pipe", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@cspell/cspell-pipe", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "devDependencies": { "@types/node": "^17.0.35", @@ -14,7 +14,7 @@ "rimraf": "^3.0.2" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } }, "node_modules/@ampproject/remapping": { diff --git a/packages/cspell-pipe/package.json b/packages/cspell-pipe/package.json index 7e1e7da6bef..75d22759051 100644 --- a/packages/cspell-pipe/package.json +++ b/packages/cspell-pipe/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Library to make working with Iterators/AsyncIterators easier.", "keywords": [ "cspell", @@ -90,7 +90,7 @@ "url": "https://github.com/streetsidesoftware/cspell/labels/cspell-gitignore" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { "@types/node": "^17.0.35", diff --git a/packages/cspell-tools/CHANGELOG.md b/packages/cspell-tools/CHANGELOG.md index 048dde3a247..65a452fb441 100644 --- a/packages/cspell-tools/CHANGELOG.md +++ b/packages/cspell-tools/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package @cspell/cspell-tools + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package @cspell/cspell-tools diff --git a/packages/cspell-tools/package-lock.json b/packages/cspell-tools/package-lock.json index 1b54e9bb18b..bbbfa5ede21 100644 --- a/packages/cspell-tools/package-lock.json +++ b/packages/cspell-tools/package-lock.json @@ -1,21 +1,21 @@ { "name": "@cspell/cspell-tools", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@cspell/cspell-tools", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { "commander": "^9.2.0", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1", "glob": "^8.0.3", - "hunspell-reader": "^5.21.1" + "hunspell-reader": "^6.0.0-alpha.0" }, "bin": { "cspell-tools-cli": "bin.js" @@ -33,7 +33,7 @@ "shelljs": "^0.8.5" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } }, "node_modules/@ampproject/remapping": { @@ -593,9 +593,9 @@ "dev": true }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "engines": { "node": ">=12.13.0" } @@ -1586,19 +1586,19 @@ } }, "node_modules/cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "engines": { "node": ">=12.13.0" } }, "node_modules/cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -2034,9 +2034,9 @@ } }, "node_modules/hunspell-reader": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-5.21.1.tgz", - "integrity": "sha512-ZcuwILSQs0nE/W0yIqIUjWpzWSOeUc8n2HeZ7ZZe6Spr/TkP48/lFhRwWOFVHEurKTviYJG2RVYEzxk8Z9nuGQ==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-6.0.0-alpha.0.tgz", + "integrity": "sha512-sLN7bH+BjdTnEMh27he2A+Um+d90g/QGPAZqYvqidoc+p4koaBqjZJKRnpmvcEKsK6Xubi7SqLlyowXloBWPMQ==", "dependencies": { "commander": "^9.2.0", "fs-extra": "^10.1.0", @@ -4715,9 +4715,9 @@ "dev": true }, "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==" }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", @@ -5522,16 +5522,16 @@ } }, "cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==" }, "cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" } @@ -5848,9 +5848,9 @@ "dev": true }, "hunspell-reader": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-5.21.1.tgz", - "integrity": "sha512-ZcuwILSQs0nE/W0yIqIUjWpzWSOeUc8n2HeZ7ZZe6Spr/TkP48/lFhRwWOFVHEurKTviYJG2RVYEzxk8Z9nuGQ==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-6.0.0-alpha.0.tgz", + "integrity": "sha512-sLN7bH+BjdTnEMh27he2A+Um+d90g/QGPAZqYvqidoc+p4koaBqjZJKRnpmvcEKsK6Xubi7SqLlyowXloBWPMQ==", "requires": { "commander": "^9.2.0", "fs-extra": "^10.1.0", diff --git a/packages/cspell-tools/package.json b/packages/cspell-tools/package.json index 98c12153374..3f072963f3b 100644 --- a/packages/cspell-tools/package.json +++ b/packages/cspell-tools/package.json @@ -1,6 +1,6 @@ { "name": "@cspell/cspell-tools", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Tools to assist with the development of cSpell", "typings": "dist/index.d.ts", "publishConfig": { @@ -46,15 +46,15 @@ "homepage": "https://github.com/streetsidesoftware/cspell#readme", "dependencies": { "commander": "^9.2.0", - "cspell-io": "^6.0.0-alpha.0", - "cspell-trie-lib": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0", + "cspell-trie-lib": "^6.0.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1", "glob": "^8.0.3", - "hunspell-reader": "^6.0.0-alpha.0" + "hunspell-reader": "^6.0.0" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { "@types/fs-extra": "^9.0.13", diff --git a/packages/cspell-trie-lib/CHANGELOG.md b/packages/cspell-trie-lib/CHANGELOG.md index 931bff0026f..d0f65df9b82 100644 --- a/packages/cspell-trie-lib/CHANGELOG.md +++ b/packages/cspell-trie-lib/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package cspell-trie-lib + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package cspell-trie-lib diff --git a/packages/cspell-trie-lib/package-lock.json b/packages/cspell-trie-lib/package-lock.json index 9d2e78fbb35..4c12148801e 100644 --- a/packages/cspell-trie-lib/package-lock.json +++ b/packages/cspell-trie-lib/package-lock.json @@ -1,20 +1,20 @@ { "name": "cspell-trie-lib", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cspell-trie-lib", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, "devDependencies": { - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-types": "^6.0.0-alpha.0", "@cspell/dict-en_us": "^2.2.5", "@cspell/dict-es-es": "^2.2.0", "@types/fs-extra": "^9.0.13", @@ -23,7 +23,7 @@ "rimraf": "^3.0.2" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } }, "node_modules/@ampproject/remapping": { @@ -583,17 +583,17 @@ "dev": true }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "engines": { "node": ">=12.13.0" } }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "dev": true, "engines": { "node": ">=12.13.0" @@ -3886,14 +3886,14 @@ "dev": true }, "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==" }, "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "dev": true }, "@cspell/dict-en_us": { diff --git a/packages/cspell-trie-lib/package.json b/packages/cspell-trie-lib/package.json index 08ceea260d2..7168b5322a9 100644 --- a/packages/cspell-trie-lib/package.json +++ b/packages/cspell-trie-lib/package.json @@ -1,6 +1,6 @@ { "name": "cspell-trie-lib", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Trie Data Structure to support cspell.", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -37,15 +37,15 @@ }, "homepage": "https://github.com/streetsidesoftware/cspell#readme", "dependencies": { - "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { - "@cspell/cspell-types": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0", "@cspell/dict-en_us": "^2.2.5", "@cspell/dict-es-es": "^2.2.0", "@types/fs-extra": "^9.0.13", diff --git a/packages/cspell-trie/CHANGELOG.md b/packages/cspell-trie/CHANGELOG.md index 4102548ebd4..75866a97a88 100644 --- a/packages/cspell-trie/CHANGELOG.md +++ b/packages/cspell-trie/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package cspell-trie + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package cspell-trie diff --git a/packages/cspell-trie/package-lock.json b/packages/cspell-trie/package-lock.json index c178848ae7b..3368db91ad3 100644 --- a/packages/cspell-trie/package-lock.json +++ b/packages/cspell-trie/package-lock.json @@ -1,16 +1,16 @@ { "name": "cspell-trie", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cspell-trie", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { "commander": "^9.2.0", - "cspell-trie-lib": "^5.21.1", + "cspell-trie-lib": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -24,7 +24,7 @@ "rimraf": "^3.0.2" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } }, "node_modules/@ampproject/remapping": { @@ -584,9 +584,9 @@ "dev": true }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "engines": { "node": ">=12.13.0" } @@ -1459,11 +1459,11 @@ } }, "node_modules/cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -3887,9 +3887,9 @@ "dev": true }, "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==" }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", @@ -4590,11 +4590,11 @@ } }, "cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" } diff --git a/packages/cspell-trie/package.json b/packages/cspell-trie/package.json index 1aa51d4d5f2..91b8a06d406 100644 --- a/packages/cspell-trie/package.json +++ b/packages/cspell-trie/package.json @@ -1,6 +1,6 @@ { "name": "cspell-trie", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Trie Data Structure reader for cspell", "bin": { "cspell-trie": "bin.js" @@ -41,12 +41,12 @@ "homepage": "https://github.com/streetsidesoftware/cspell#readme", "dependencies": { "commander": "^9.2.0", - "cspell-trie-lib": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { "@types/fs-extra": "^9.0.13", diff --git a/packages/cspell-trie2-lib/CHANGELOG.md b/packages/cspell-trie2-lib/CHANGELOG.md index 2d06b16f817..7c41b071dcd 100644 --- a/packages/cspell-trie2-lib/CHANGELOG.md +++ b/packages/cspell-trie2-lib/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package cspell-trie2-lib + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package cspell-trie2-lib diff --git a/packages/cspell-trie2-lib/package-lock.json b/packages/cspell-trie2-lib/package-lock.json index 6d406554f57..116fd59b961 100644 --- a/packages/cspell-trie2-lib/package-lock.json +++ b/packages/cspell-trie2-lib/package-lock.json @@ -1,19 +1,19 @@ { "name": "cspell-trie2-lib", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cspell-trie2-lib", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "devDependencies": { "jest": "^28.1.0", "rimraf": "^3.0.2" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } }, "node_modules/@ampproject/remapping": { diff --git a/packages/cspell-trie2-lib/package.json b/packages/cspell-trie2-lib/package.json index a3314cd82a7..ed90c806101 100644 --- a/packages/cspell-trie2-lib/package.json +++ b/packages/cspell-trie2-lib/package.json @@ -1,6 +1,6 @@ { "name": "cspell-trie2-lib", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Trie Data Structure to support cspell.", "private": true, "main": "dist/index.js", @@ -37,7 +37,7 @@ }, "homepage": "https://github.com/streetsidesoftware/cspell#readme", "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { "jest": "^28.1.0", diff --git a/packages/cspell-types/CHANGELOG.md b/packages/cspell-types/CHANGELOG.md index 0e73d12b11e..913b61012ed 100644 --- a/packages/cspell-types/CHANGELOG.md +++ b/packages/cspell-types/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package @cspell/cspell-types + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package @cspell/cspell-types diff --git a/packages/cspell-types/package-lock.json b/packages/cspell-types/package-lock.json index 3dfd555ba6c..a9ef9e12650 100644 --- a/packages/cspell-types/package-lock.json +++ b/packages/cspell-types/package-lock.json @@ -1,12 +1,12 @@ { "name": "@cspell/cspell-types", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@cspell/cspell-types", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "devDependencies": { "ajv-cli": "^5.0.0", @@ -18,7 +18,7 @@ "typescript": "^4.6.4" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } }, "node_modules/@ampproject/remapping": { diff --git a/packages/cspell-types/package.json b/packages/cspell-types/package.json index ee900ebfe39..e471868646b 100644 --- a/packages/cspell-types/package.json +++ b/packages/cspell-types/package.json @@ -3,7 +3,7 @@ "publishConfig": { "access": "public" }, - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Types for cspell and cspell-lib", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -46,7 +46,7 @@ "author": "Jason Dent", "license": "MIT", "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { "ajv-cli": "^5.0.0", diff --git a/packages/cspell/CHANGELOG.md b/packages/cspell/CHANGELOG.md index a2937299f3a..03b4f1e8b24 100644 --- a/packages/cspell/CHANGELOG.md +++ b/packages/cspell/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package cspell + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package cspell diff --git a/packages/cspell/package-lock.json b/packages/cspell/package-lock.json index 6de197e440e..d5c58d3c279 100644 --- a/packages/cspell/package-lock.json +++ b/packages/cspell/package-lock.json @@ -1,20 +1,20 @@ { "name": "cspell", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cspell", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "chalk": "^4.1.2", "commander": "^9.2.0", - "cspell-gitignore": "^5.21.1", - "cspell-glob": "^5.21.1", - "cspell-lib": "^5.21.1", + "cspell-gitignore": "^6.0.0-alpha.0", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-lib": "^6.0.0-alpha.0", "fast-json-stable-stringify": "^2.1.0", "file-entry-cache": "^6.0.1", "fs-extra": "^10.1.0", @@ -29,8 +29,8 @@ "cspell": "bin.js" }, "devDependencies": { - "@cspell/cspell-json-reporter": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-json-reporter": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "@types/file-entry-cache": "^5.0.2", "@types/fs-extra": "^9.0.13", "@types/glob": "^7.2.0", @@ -46,7 +46,7 @@ "rollup-plugin-dts": "^4.2.1" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "funding": { "url": "https://github.com/streetsidesoftware/cspell?sponsor=1" @@ -617,9 +617,9 @@ "dev": true }, "node_modules/@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "dependencies": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -667,12 +667,12 @@ } }, "node_modules/@cspell/cspell-json-reporter": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-5.21.1.tgz", - "integrity": "sha512-AsXPkXs/U3y486tAxn9BkgbDaiLjN0eLzQf+QQAz8xjEDmozcVL0Ggb7LHwQ1LgmEkUe4QtyJ9PwWKVhHkH2Ug==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-6.0.0-alpha.0.tgz", + "integrity": "sha512-MqV47ZNHpO+pK8NZ2eIgZSqX9Ot7Ucd3KXFhEFfZ4bp6gsO2yJ9JsYHrsZET1FKSHVl2mkDQYPHQ2bu+IRA0bw==", "dev": true, "dependencies": { - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-types": "^6.0.0-alpha.0", "mkdirp": "^1.0.4" }, "engines": { @@ -680,17 +680,17 @@ } }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "engines": { "node": ">=12.13.0" } }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "engines": { "node": ">=12.13.0" } @@ -851,9 +851,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "node_modules/@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "node_modules/@cspell/dict-r": { "version": "1.0.2", @@ -1995,11 +1995,11 @@ } }, "node_modules/cspell-gitignore": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.21.1.tgz", - "integrity": "sha512-PFTGjUegbCsH0db6+4+xFO/U68ghXNwPDzJRuJnxkwy9XlExcwz22eDisUwyO0fG4nbLJgfQoAuAXzT8LW3MDw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.0.0-alpha.0.tgz", + "integrity": "sha512-XhaS2jzR769wBtJX+014vQ0K4fIWo6X/HHL86KUodlY3VpXdaIrOsTW5a9tMEoVnj4PFhL5blmyeHqtuQADaUw==", "dependencies": { - "cspell-glob": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", "find-up": "^5.0.0" }, "bin": { @@ -2010,9 +2010,9 @@ } }, "node_modules/cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dependencies": { "micromatch": "^4.0.5" }, @@ -2021,28 +2021,28 @@ } }, "node_modules/cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "engines": { "node": ">=12.13.0" } }, "node_modules/cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "dependencies": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -2058,11 +2058,11 @@ } }, "node_modules/cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -4987,9 +4987,9 @@ "dev": true }, "@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "requires": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -5034,24 +5034,24 @@ } }, "@cspell/cspell-json-reporter": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-5.21.1.tgz", - "integrity": "sha512-AsXPkXs/U3y486tAxn9BkgbDaiLjN0eLzQf+QQAz8xjEDmozcVL0Ggb7LHwQ1LgmEkUe4QtyJ9PwWKVhHkH2Ug==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-json-reporter/-/cspell-json-reporter-6.0.0-alpha.0.tgz", + "integrity": "sha512-MqV47ZNHpO+pK8NZ2eIgZSqX9Ot7Ucd3KXFhEFfZ4bp6gsO2yJ9JsYHrsZET1FKSHVl2mkDQYPHQ2bu+IRA0bw==", "dev": true, "requires": { - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-types": "^6.0.0-alpha.0", "mkdirp": "^1.0.4" } }, "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==" }, "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==" }, "@cspell/dict-ada": { "version": "2.0.0", @@ -5209,9 +5209,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "@cspell/dict-r": { "version": "1.0.2", @@ -6145,42 +6145,42 @@ "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" }, "cspell-gitignore": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.21.1.tgz", - "integrity": "sha512-PFTGjUegbCsH0db6+4+xFO/U68ghXNwPDzJRuJnxkwy9XlExcwz22eDisUwyO0fG4nbLJgfQoAuAXzT8LW3MDw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.0.0-alpha.0.tgz", + "integrity": "sha512-XhaS2jzR769wBtJX+014vQ0K4fIWo6X/HHL86KUodlY3VpXdaIrOsTW5a9tMEoVnj4PFhL5blmyeHqtuQADaUw==", "requires": { - "cspell-glob": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", "find-up": "^5.0.0" } }, "cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "requires": { "micromatch": "^4.0.5" } }, "cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==" }, "cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "requires": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -6193,11 +6193,11 @@ } }, "cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" } diff --git a/packages/cspell/package.json b/packages/cspell/package.json index 8d2a5074c9c..184efb14ffb 100644 --- a/packages/cspell/package.json +++ b/packages/cspell/package.json @@ -1,6 +1,6 @@ { "name": "cspell", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "A Spelling Checker for Code!", "funding": "https://github.com/streetsidesoftware/cspell?sponsor=1", "main": "dist/index.js", @@ -70,12 +70,12 @@ }, "homepage": "https://streetsidesoftware.github.io/cspell/", "dependencies": { - "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0", "chalk": "^4.1.2", "commander": "^9.2.0", - "cspell-gitignore": "^6.0.0-alpha.0", - "cspell-glob": "^6.0.0-alpha.0", - "cspell-lib": "^6.0.0-alpha.0", + "cspell-gitignore": "^6.0.0", + "cspell-glob": "^6.0.0", + "cspell-lib": "^6.0.0", "fast-json-stable-stringify": "^2.1.0", "file-entry-cache": "^6.0.1", "fs-extra": "^10.1.0", @@ -87,11 +87,11 @@ "vscode-uri": "^3.0.3" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" }, "devDependencies": { - "@cspell/cspell-json-reporter": "^6.0.0-alpha.0", - "@cspell/cspell-types": "^6.0.0-alpha.0", + "@cspell/cspell-json-reporter": "^6.0.0", + "@cspell/cspell-types": "^6.0.0", "@types/file-entry-cache": "^5.0.2", "@types/fs-extra": "^9.0.13", "@types/glob": "^7.2.0", diff --git a/packages/hunspell-reader/CHANGELOG.md b/packages/hunspell-reader/CHANGELOG.md index 729aed35bbb..5e1f359a07e 100644 --- a/packages/hunspell-reader/CHANGELOG.md +++ b/packages/hunspell-reader/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/Jason-Rev/hunspell-reader/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package hunspell-reader + + + + + # [6.0.0-alpha.0](https://github.com/Jason-Rev/hunspell-reader/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package hunspell-reader diff --git a/packages/hunspell-reader/package-lock.json b/packages/hunspell-reader/package-lock.json index 491c49674f0..b534c251b87 100644 --- a/packages/hunspell-reader/package-lock.json +++ b/packages/hunspell-reader/package-lock.json @@ -1,12 +1,12 @@ { "name": "hunspell-reader", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "hunspell-reader", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { "commander": "^9.2.0", @@ -27,7 +27,7 @@ "typescript": "^4.6.4" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } }, "node_modules/@ampproject/remapping": { diff --git a/packages/hunspell-reader/package.json b/packages/hunspell-reader/package.json index d913940884c..fabcb1d16b8 100644 --- a/packages/hunspell-reader/package.json +++ b/packages/hunspell-reader/package.json @@ -1,6 +1,6 @@ { "name": "hunspell-reader", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "A library for reading Hunspell Dictionary Files", "bin": "bin.js", "main": "dist/index.js", @@ -53,6 +53,6 @@ "iconv-lite": "^0.6.3" }, "engines": { - "node": ">=12.13.0" + "node": ">=14" } } diff --git a/rfc/rfc-0001 suggestions/CHANGELOG.md b/rfc/rfc-0001 suggestions/CHANGELOG.md index 07e0d8702e4..8597e901614 100644 --- a/rfc/rfc-0001 suggestions/CHANGELOG.md +++ b/rfc/rfc-0001 suggestions/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package rfc-0001-suggestions + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package rfc-0001-suggestions diff --git a/rfc/rfc-0001 suggestions/package-lock.json b/rfc/rfc-0001 suggestions/package-lock.json index 715d2b7240b..4f4b5bbb4dc 100644 --- a/rfc/rfc-0001 suggestions/package-lock.json +++ b/rfc/rfc-0001 suggestions/package-lock.json @@ -1,21 +1,21 @@ { "name": "rfc-0001-suggestions", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "rfc-0001-suggestions", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "@cspell/cspell-types": "^5.21.1" + "@cspell/cspell-types": "^6.0.0-alpha.0" } }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "engines": { "node": ">=12.13.0" } @@ -23,9 +23,9 @@ }, "dependencies": { "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==" } } } diff --git a/rfc/rfc-0001 suggestions/package.json b/rfc/rfc-0001 suggestions/package.json index 99fcaaa9117..886492dcbef 100644 --- a/rfc/rfc-0001 suggestions/package.json +++ b/rfc/rfc-0001 suggestions/package.json @@ -1,6 +1,6 @@ { "name": "rfc-0001-suggestions", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Possible ways to support suggestion lists", "private": true, "scripts": { @@ -11,6 +11,6 @@ "author": "", "license": "MIT", "dependencies": { - "@cspell/cspell-types": "^6.0.0-alpha.0" + "@cspell/cspell-types": "^6.0.0" } } diff --git a/test-packages/cspell-cli/CHANGELOG.md b/test-packages/cspell-cli/CHANGELOG.md index 4d1498f23da..4b5f2d6e850 100644 --- a/test-packages/cspell-cli/CHANGELOG.md +++ b/test-packages/cspell-cli/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell-cli/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package cspell-cli + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell-cli/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package cspell-cli diff --git a/test-packages/cspell-cli/package-lock.json b/test-packages/cspell-cli/package-lock.json index 8c0e01d4673..95ed6ceaeb0 100644 --- a/test-packages/cspell-cli/package-lock.json +++ b/test-packages/cspell-cli/package-lock.json @@ -1,15 +1,15 @@ { "name": "cspell-cli", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cspell-cli", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "cspell": "^5.21.1" + "cspell": "^6.0.0-alpha.0" }, "bin": { "cspell-cli": "index.js" @@ -104,9 +104,9 @@ } }, "node_modules/@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "dependencies": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -154,17 +154,17 @@ } }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "engines": { "node": ">=12.13.0" } }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "engines": { "node": ">=12.13.0" } @@ -325,9 +325,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "node_modules/@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "node_modules/@cspell/dict-r": { "version": "1.0.2", @@ -552,16 +552,16 @@ } }, "node_modules/cspell": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell/-/cspell-5.21.1.tgz", - "integrity": "sha512-R5I3QwohSkhclfZSCMvTbGb9zZHyZRno4pnUtEN5cVkUXfHHg751rZwO+zUwQcG7mLGHwU6iBNs5kAgH0UxISw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell/-/cspell-6.0.0-alpha.0.tgz", + "integrity": "sha512-2O3dp/VsHAXxZ61fSTwAjiTy4QZgFDz4iyld18HnBzyObmv/YNZxFJ0Qjcf6ywHnRyxZdMFzgxWzuf5Jq0laIQ==", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "chalk": "^4.1.2", "commander": "^9.2.0", - "cspell-gitignore": "^5.21.1", - "cspell-glob": "^5.21.1", - "cspell-lib": "^5.21.1", + "cspell-gitignore": "^6.0.0-alpha.0", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-lib": "^6.0.0-alpha.0", "fast-json-stable-stringify": "^2.1.0", "file-entry-cache": "^6.0.1", "fs-extra": "^10.1.0", @@ -583,11 +583,11 @@ } }, "node_modules/cspell-gitignore": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.21.1.tgz", - "integrity": "sha512-PFTGjUegbCsH0db6+4+xFO/U68ghXNwPDzJRuJnxkwy9XlExcwz22eDisUwyO0fG4nbLJgfQoAuAXzT8LW3MDw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.0.0-alpha.0.tgz", + "integrity": "sha512-XhaS2jzR769wBtJX+014vQ0K4fIWo6X/HHL86KUodlY3VpXdaIrOsTW5a9tMEoVnj4PFhL5blmyeHqtuQADaUw==", "dependencies": { - "cspell-glob": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", "find-up": "^5.0.0" }, "bin": { @@ -598,9 +598,9 @@ } }, "node_modules/cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dependencies": { "micromatch": "^4.0.5" }, @@ -609,28 +609,28 @@ } }, "node_modules/cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "engines": { "node": ">=12.13.0" } }, "node_modules/cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "dependencies": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -646,11 +646,11 @@ } }, "node_modules/cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -1419,9 +1419,9 @@ } }, "@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "requires": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -1466,14 +1466,14 @@ } }, "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==" }, "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==" }, "@cspell/dict-ada": { "version": "2.0.0", @@ -1631,9 +1631,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "@cspell/dict-r": { "version": "1.0.2", @@ -1813,16 +1813,16 @@ "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" }, "cspell": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell/-/cspell-5.21.1.tgz", - "integrity": "sha512-R5I3QwohSkhclfZSCMvTbGb9zZHyZRno4pnUtEN5cVkUXfHHg751rZwO+zUwQcG7mLGHwU6iBNs5kAgH0UxISw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell/-/cspell-6.0.0-alpha.0.tgz", + "integrity": "sha512-2O3dp/VsHAXxZ61fSTwAjiTy4QZgFDz4iyld18HnBzyObmv/YNZxFJ0Qjcf6ywHnRyxZdMFzgxWzuf5Jq0laIQ==", "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "chalk": "^4.1.2", "commander": "^9.2.0", - "cspell-gitignore": "^5.21.1", - "cspell-glob": "^5.21.1", - "cspell-lib": "^5.21.1", + "cspell-gitignore": "^6.0.0-alpha.0", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-lib": "^6.0.0-alpha.0", "fast-json-stable-stringify": "^2.1.0", "file-entry-cache": "^6.0.1", "fs-extra": "^10.1.0", @@ -1835,42 +1835,42 @@ } }, "cspell-gitignore": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.21.1.tgz", - "integrity": "sha512-PFTGjUegbCsH0db6+4+xFO/U68ghXNwPDzJRuJnxkwy9XlExcwz22eDisUwyO0fG4nbLJgfQoAuAXzT8LW3MDw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.0.0-alpha.0.tgz", + "integrity": "sha512-XhaS2jzR769wBtJX+014vQ0K4fIWo6X/HHL86KUodlY3VpXdaIrOsTW5a9tMEoVnj4PFhL5blmyeHqtuQADaUw==", "requires": { - "cspell-glob": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", "find-up": "^5.0.0" } }, "cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "requires": { "micromatch": "^4.0.5" } }, "cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==" }, "cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "requires": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -1883,11 +1883,11 @@ } }, "cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" } diff --git a/test-packages/cspell-cli/package.json b/test-packages/cspell-cli/package.json index 0a6fcff507e..00e1450d6f8 100644 --- a/test-packages/cspell-cli/package.json +++ b/test-packages/cspell-cli/package.json @@ -1,6 +1,6 @@ { "name": "cspell-cli", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "cli for cspell", "private": "true", "main": "index.js", @@ -24,6 +24,6 @@ }, "homepage": "https://github.com/streetsidesoftware/cspell-cli#readme", "dependencies": { - "cspell": "^6.0.0-alpha.0" + "cspell": "^6.0.0" } } diff --git a/test-packages/test-cspell-eslint-plugin/CHANGELOG.md b/test-packages/test-cspell-eslint-plugin/CHANGELOG.md index ef7d7540a1f..7be55d53200 100644 --- a/test-packages/test-cspell-eslint-plugin/CHANGELOG.md +++ b/test-packages/test-cspell-eslint-plugin/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package test-cspell-eslint-plugin + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package test-cspell-eslint-plugin diff --git a/test-packages/test-cspell-eslint-plugin/package-lock.json b/test-packages/test-cspell-eslint-plugin/package-lock.json index c8a9ff4585b..625da39b4c9 100644 --- a/test-packages/test-cspell-eslint-plugin/package-lock.json +++ b/test-packages/test-cspell-eslint-plugin/package-lock.json @@ -1,18 +1,18 @@ { "name": "test-cspell-eslint-plugin", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "test-cspell-eslint-plugin", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "devDependencies": { - "@cspell/eslint-plugin": "^5.21.1", + "@cspell/eslint-plugin": "^6.0.0-alpha.0", "@typescript-eslint/eslint-plugin": "^5.25.0", "@typescript-eslint/parser": "^5.25.0", - "eslint": "^8.15.0", + "eslint": "^8.16.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jest": "^26.2.2", @@ -23,7 +23,7 @@ "typescript": "^4.6.4" }, "engines": { - "node": ">=12" + "node": ">=14" } }, "node_modules/@babel/code-frame": { @@ -133,9 +133,9 @@ } }, "node_modules/@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "dev": true, "dependencies": { "@cspell/dict-ada": "^2.0.0", @@ -184,18 +184,18 @@ } }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "dev": true, "engines": { "node": ">=12.13.0" } }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "dev": true, "engines": { "node": ">=12.13.0" @@ -388,9 +388,9 @@ "dev": true }, "node_modules/@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==", "dev": true }, "node_modules/@cspell/dict-r": { @@ -442,27 +442,27 @@ "dev": true }, "node_modules/@cspell/eslint-plugin": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/eslint-plugin/-/eslint-plugin-5.21.1.tgz", - "integrity": "sha512-BTclfPM5WlBEu8KLVXsRdYuP1XLubB4qvryaG8G7ym3hc+fPUJKCSAH9RAjQPO2jZZcnXqkdTqyP2v330ncdXQ==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/eslint-plugin/-/eslint-plugin-6.0.0-alpha.0.tgz", + "integrity": "sha512-mwqh5CKXMLB7w4kPwghHGvSGK4xUqKPp3aq90X3SDXuO2MSAY8xx8JrgOU2j4nlNAgDTXYaChEWPFnUlKZng3Q==", "dev": true, "dependencies": { - "cspell-lib": "^5.21.1" + "cspell-lib": "^6.0.0-alpha.0" }, "engines": { "node": ">=12.13.0" } }, "node_modules/@eslint/eslintrc": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.3.tgz", - "integrity": "sha512-uGo44hIwoLGNyduRpjdEpovcbMdd+Nv7amtmJxnKmI8xj6yd5LncmSwDa5NgX/41lIFJtkjD6YdVfgEzPfJ5UA==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.0.tgz", + "integrity": "sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==", "dev": true, "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^9.3.2", - "globals": "^13.9.0", + "globals": "^13.15.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", @@ -1034,9 +1034,9 @@ } }, "node_modules/cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dev": true, "dependencies": { "micromatch": "^4.0.5" @@ -1046,30 +1046,30 @@ } }, "node_modules/cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "dev": true, "engines": { "node": ">=12.13.0" } }, "node_modules/cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "dev": true, "dependencies": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -1085,12 +1085,12 @@ } }, "node_modules/cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dev": true, "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -1258,12 +1258,12 @@ } }, "node_modules/eslint": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz", - "integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==", + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.16.0.tgz", + "integrity": "sha512-MBndsoXY/PeVTDJeWsYj7kLZ5hQpJOfMYLsF6LicLHQWbRDG19lK5jOix4DPl8yY4SUFcE3txy86OzFLWT+yoA==", "dev": true, "dependencies": { - "@eslint/eslintrc": "^1.2.3", + "@eslint/eslintrc": "^1.3.0", "@humanwhocodes/config-array": "^0.9.2", "ajv": "^6.10.0", "chalk": "^4.0.0", @@ -1281,7 +1281,7 @@ "file-entry-cache": "^6.0.1", "functional-red-black-tree": "^1.0.1", "glob-parent": "^6.0.1", - "globals": "^13.6.0", + "globals": "^13.15.0", "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", @@ -3554,9 +3554,9 @@ } }, "@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "dev": true, "requires": { "@cspell/dict-ada": "^2.0.0", @@ -3602,15 +3602,15 @@ } }, "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "dev": true }, "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "dev": true }, "@cspell/dict-ada": { @@ -3800,9 +3800,9 @@ "dev": true }, "@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==", "dev": true }, "@cspell/dict-r": { @@ -3854,24 +3854,24 @@ "dev": true }, "@cspell/eslint-plugin": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/eslint-plugin/-/eslint-plugin-5.21.1.tgz", - "integrity": "sha512-BTclfPM5WlBEu8KLVXsRdYuP1XLubB4qvryaG8G7ym3hc+fPUJKCSAH9RAjQPO2jZZcnXqkdTqyP2v330ncdXQ==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/eslint-plugin/-/eslint-plugin-6.0.0-alpha.0.tgz", + "integrity": "sha512-mwqh5CKXMLB7w4kPwghHGvSGK4xUqKPp3aq90X3SDXuO2MSAY8xx8JrgOU2j4nlNAgDTXYaChEWPFnUlKZng3Q==", "dev": true, "requires": { - "cspell-lib": "^5.21.1" + "cspell-lib": "^6.0.0-alpha.0" } }, "@eslint/eslintrc": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.3.tgz", - "integrity": "sha512-uGo44hIwoLGNyduRpjdEpovcbMdd+Nv7amtmJxnKmI8xj6yd5LncmSwDa5NgX/41lIFJtkjD6YdVfgEzPfJ5UA==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.0.tgz", + "integrity": "sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==", "dev": true, "requires": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^9.3.2", - "globals": "^13.9.0", + "globals": "^13.15.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", @@ -4264,36 +4264,36 @@ "dev": true }, "cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dev": true, "requires": { "micromatch": "^4.0.5" } }, "cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "dev": true }, "cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "dev": true, "requires": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -4306,12 +4306,12 @@ } }, "cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dev": true, "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" } @@ -4435,12 +4435,12 @@ "dev": true }, "eslint": { - "version": "8.15.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.15.0.tgz", - "integrity": "sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==", + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.16.0.tgz", + "integrity": "sha512-MBndsoXY/PeVTDJeWsYj7kLZ5hQpJOfMYLsF6LicLHQWbRDG19lK5jOix4DPl8yY4SUFcE3txy86OzFLWT+yoA==", "dev": true, "requires": { - "@eslint/eslintrc": "^1.2.3", + "@eslint/eslintrc": "^1.3.0", "@humanwhocodes/config-array": "^0.9.2", "ajv": "^6.10.0", "chalk": "^4.0.0", @@ -4458,7 +4458,7 @@ "file-entry-cache": "^6.0.1", "functional-red-black-tree": "^1.0.1", "glob-parent": "^6.0.1", - "globals": "^13.6.0", + "globals": "^13.15.0", "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", diff --git a/test-packages/test-cspell-eslint-plugin/package.json b/test-packages/test-cspell-eslint-plugin/package.json index bb040916c4d..0bfbcd58023 100644 --- a/test-packages/test-cspell-eslint-plugin/package.json +++ b/test-packages/test-cspell-eslint-plugin/package.json @@ -1,6 +1,6 @@ { "name": "test-cspell-eslint-plugin", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Pure testing package for @cspell/eslint-plugin-cspell.", "private": true, "scripts": { @@ -8,17 +8,17 @@ "test": "npm run eslint" }, "engines": { - "node": ">=12" + "node": ">=14" }, "author": "", "license": "MIT", "main": "index.js", "keywords": [], "devDependencies": { - "@cspell/eslint-plugin": "^6.0.0-alpha.0", + "@cspell/eslint-plugin": "^6.0.0", "@typescript-eslint/eslint-plugin": "^5.25.0", "@typescript-eslint/parser": "^5.25.0", - "eslint": "^8.15.0", + "eslint": "^8.16.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jest": "^26.2.2", diff --git a/test-packages/test-cspell-glob/CHANGELOG.md b/test-packages/test-cspell-glob/CHANGELOG.md index 339c140a462..5ea71968f0b 100644 --- a/test-packages/test-cspell-glob/CHANGELOG.md +++ b/test-packages/test-cspell-glob/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package test-cspell-glob + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package test-cspell-glob diff --git a/test-packages/test-cspell-glob/package-lock.json b/test-packages/test-cspell-glob/package-lock.json index 2ab090903a4..16bc17eb4fe 100644 --- a/test-packages/test-cspell-glob/package-lock.json +++ b/test-packages/test-cspell-glob/package-lock.json @@ -1,15 +1,15 @@ { "name": "test-cspell-glob", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "test-cspell-glob", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "cspell-glob": "^5.21.1" + "cspell-glob": "^6.0.0-alpha.0" } }, "node_modules/braces": { @@ -24,9 +24,9 @@ } }, "node_modules/cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dependencies": { "micromatch": "^4.0.5" }, @@ -98,9 +98,9 @@ } }, "cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "requires": { "micromatch": "^4.0.5" } diff --git a/test-packages/test-cspell-glob/package.json b/test-packages/test-cspell-glob/package.json index a94e6cea3b5..1b98e2c57dd 100644 --- a/test-packages/test-cspell-glob/package.json +++ b/test-packages/test-cspell-glob/package.json @@ -1,6 +1,6 @@ { "name": "test-cspell-glob", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Pure testing package for cspell-io. It purpose is to verify cspell-io dependencies.", "private": true, "scripts": { @@ -14,7 +14,7 @@ "author": "", "license": "MIT", "dependencies": { - "cspell-glob": "^6.0.0-alpha.0" + "cspell-glob": "^6.0.0" }, "main": "index.js", "keywords": [] diff --git a/test-packages/test-cspell-io/CHANGELOG.md b/test-packages/test-cspell-io/CHANGELOG.md index 5400ee7cd24..2b612f7c86d 100644 --- a/test-packages/test-cspell-io/CHANGELOG.md +++ b/test-packages/test-cspell-io/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package test-cspell-io + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package test-cspell-io diff --git a/test-packages/test-cspell-io/package-lock.json b/test-packages/test-cspell-io/package-lock.json index 8db8331bcb5..bcddd14c703 100644 --- a/test-packages/test-cspell-io/package-lock.json +++ b/test-packages/test-cspell-io/package-lock.json @@ -1,21 +1,21 @@ { "name": "test-cspell-io", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "test-cspell-io", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "cspell-io": "^5.21.1" + "cspell-io": "^6.0.0-alpha.0" } }, "node_modules/cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "engines": { "node": ">=12.13.0" } @@ -23,9 +23,9 @@ }, "dependencies": { "cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==" } } } diff --git a/test-packages/test-cspell-io/package.json b/test-packages/test-cspell-io/package.json index 4cc37fb2c92..c828b0bcbaa 100644 --- a/test-packages/test-cspell-io/package.json +++ b/test-packages/test-cspell-io/package.json @@ -1,6 +1,6 @@ { "name": "test-cspell-io", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Pure testing package for cspell-io. It purpose is to verify cspell-io dependencies.", "private": true, "scripts": { @@ -14,7 +14,7 @@ "author": "", "license": "MIT", "dependencies": { - "cspell-io": "^6.0.0-alpha.0" + "cspell-io": "^6.0.0" }, "main": "index.js", "keywords": [] diff --git a/test-packages/test-cspell-lib-webpack/CHANGELOG.md b/test-packages/test-cspell-lib-webpack/CHANGELOG.md index 74f513e4514..96d13f5f491 100644 --- a/test-packages/test-cspell-lib-webpack/CHANGELOG.md +++ b/test-packages/test-cspell-lib-webpack/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package test-cspell-lib-webpack + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package test-cspell-lib-webpack diff --git a/test-packages/test-cspell-lib-webpack/package-lock.json b/test-packages/test-cspell-lib-webpack/package-lock.json index 1178b556b07..537020fe7ce 100644 --- a/test-packages/test-cspell-lib-webpack/package-lock.json +++ b/test-packages/test-cspell-lib-webpack/package-lock.json @@ -1,19 +1,19 @@ { "name": "test-cspell-lib-webpack", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "test-cspell-lib-webpack", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "@cspell/cspell-bundled-dicts": "^5.21.1" + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0" }, "devDependencies": { - "@cspell/cspell-types": "^5.21.1", - "cspell-lib": "^5.21.1", + "@cspell/cspell-types": "^6.0.0-alpha.0", + "cspell-lib": "^6.0.0-alpha.0", "jest": "^28.1.0", "ts-loader": "^9.3.0", "typescript": "^4.6.4", @@ -578,9 +578,9 @@ "dev": true }, "node_modules/@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "dependencies": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -628,18 +628,18 @@ } }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "dev": true, "engines": { "node": ">=12.13.0" } }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "dev": true, "engines": { "node": ">=12.13.0" @@ -801,9 +801,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "node_modules/@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "node_modules/@cspell/dict-r": { "version": "1.0.2", @@ -2169,9 +2169,9 @@ } }, "node_modules/cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dev": true, "dependencies": { "micromatch": "^4.0.5" @@ -2181,30 +2181,30 @@ } }, "node_modules/cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "dev": true, "engines": { "node": ">=12.13.0" } }, "node_modules/cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "dev": true, "dependencies": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -2220,12 +2220,12 @@ } }, "node_modules/cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dev": true, "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -5516,9 +5516,9 @@ "dev": true }, "@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "requires": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -5563,15 +5563,15 @@ } }, "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "dev": true }, "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "dev": true }, "@cspell/dict-ada": { @@ -5730,9 +5730,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "@cspell/dict-r": { "version": "1.0.2", @@ -6864,36 +6864,36 @@ "dev": true }, "cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dev": true, "requires": { "micromatch": "^4.0.5" } }, "cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "dev": true }, "cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "dev": true, "requires": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -6906,12 +6906,12 @@ } }, "cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dev": true, "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" } diff --git a/test-packages/test-cspell-lib-webpack/package.json b/test-packages/test-cspell-lib-webpack/package.json index d0bebf6f449..fd02564f329 100644 --- a/test-packages/test-cspell-lib-webpack/package.json +++ b/test-packages/test-cspell-lib-webpack/package.json @@ -1,6 +1,6 @@ { "name": "test-cspell-lib-webpack", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Pure testing package for cspell-lib", "private": true, "scripts": { @@ -14,13 +14,13 @@ "author": "", "license": "MIT", "dependencies": { - "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0" + "@cspell/cspell-bundled-dicts": "^6.0.0" }, "main": "index.js", "keywords": [], "devDependencies": { - "@cspell/cspell-types": "^6.0.0-alpha.0", - "cspell-lib": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0", + "cspell-lib": "^6.0.0", "jest": "^28.1.0", "ts-loader": "^9.3.0", "typescript": "^4.6.4", diff --git a/test-packages/test-cspell-lib/CHANGELOG.md b/test-packages/test-cspell-lib/CHANGELOG.md index 79e95b30f20..d420c4045f6 100644 --- a/test-packages/test-cspell-lib/CHANGELOG.md +++ b/test-packages/test-cspell-lib/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package test-cspell-lib + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package test-cspell-lib diff --git a/test-packages/test-cspell-lib/package-lock.json b/test-packages/test-cspell-lib/package-lock.json index 87726bfbba6..570975b77bc 100644 --- a/test-packages/test-cspell-lib/package-lock.json +++ b/test-packages/test-cspell-lib/package-lock.json @@ -1,18 +1,18 @@ { "name": "test-cspell-lib", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "test-cspell-lib", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "cspell-lib": "^5.21.1" + "cspell-lib": "^6.0.0-alpha.0" }, "engines": { - "node": ">=14.0.0" + "node": ">=14" } }, "node_modules/@babel/code-frame": { @@ -48,9 +48,9 @@ } }, "node_modules/@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "dependencies": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -98,17 +98,17 @@ } }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "engines": { "node": ">=12.13.0" } }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "engines": { "node": ">=12.13.0" } @@ -269,9 +269,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "node_modules/@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "node_modules/@cspell/dict-r": { "version": "1.0.2", @@ -454,9 +454,9 @@ } }, "node_modules/cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dependencies": { "micromatch": "^4.0.5" }, @@ -465,28 +465,28 @@ } }, "node_modules/cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "engines": { "node": ">=12.13.0" } }, "node_modules/cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "dependencies": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -502,11 +502,11 @@ } }, "node_modules/cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -1022,9 +1022,9 @@ } }, "@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "requires": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -1069,14 +1069,14 @@ } }, "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==" }, "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==" }, "@cspell/dict-ada": { "version": "2.0.0", @@ -1234,9 +1234,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "@cspell/dict-r": { "version": "1.0.2", @@ -1389,33 +1389,33 @@ "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" }, "cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "requires": { "micromatch": "^4.0.5" } }, "cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==" }, "cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "requires": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -1428,11 +1428,11 @@ } }, "cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" } diff --git a/test-packages/test-cspell-lib/package.json b/test-packages/test-cspell-lib/package.json index 2360fbda797..4349d9685f9 100644 --- a/test-packages/test-cspell-lib/package.json +++ b/test-packages/test-cspell-lib/package.json @@ -1,6 +1,6 @@ { "name": "test-cspell-lib", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Pure testing package for cspell-io. It purpose is to verify cspell-io dependencies.", "private": true, "scripts": { @@ -14,11 +14,11 @@ "author": "", "license": "MIT", "dependencies": { - "cspell-lib": "^6.0.0-alpha.0" + "cspell-lib": "^6.0.0" }, "main": "index.js", "engines": { - "node": ">=14.0.0" + "node": ">=14" }, "keywords": [] } diff --git a/test-packages/test-cspell-tools/CHANGELOG.md b/test-packages/test-cspell-tools/CHANGELOG.md index b49b7188ae0..9a50e19bc57 100644 --- a/test-packages/test-cspell-tools/CHANGELOG.md +++ b/test-packages/test-cspell-tools/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package test-cspell-tools + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package test-cspell-tools diff --git a/test-packages/test-cspell-tools/package-lock.json b/test-packages/test-cspell-tools/package-lock.json index 8ae109f26de..ff87431acf2 100644 --- a/test-packages/test-cspell-tools/package-lock.json +++ b/test-packages/test-cspell-tools/package-lock.json @@ -1,16 +1,16 @@ { "name": "test-cspell-tools", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "test-cspell-tools", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "@cspell/cspell-tools": "^5.21.1", - "cspell": "^5.21.1" + "@cspell/cspell-tools": "^6.0.0-alpha.0", + "cspell": "^6.0.0-alpha.0" } }, "node_modules/@babel/code-frame": { @@ -102,9 +102,9 @@ } }, "node_modules/@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "dependencies": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -152,25 +152,25 @@ } }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "engines": { "node": ">=12.13.0" } }, "node_modules/@cspell/cspell-tools": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-tools/-/cspell-tools-5.21.1.tgz", - "integrity": "sha512-wMZfjx/tHUvrl8ZIHG0dc7Y9uLR94fFSqjn/HT3SLuQ0bQplRze2Q0sMKzZyEx1V9K6lOfBoODuKtZNLvQPtWA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-tools/-/cspell-tools-6.0.0-alpha.0.tgz", + "integrity": "sha512-mJrjgSi3iEJcV+sYEP/a79sIGX2xXaCqY9T1SXsHZbEvvY3dMcVmdVQHtsMiZKnGjAPBRE6yjvmdfG5Tm+bbRw==", "dependencies": { "commander": "^9.2.0", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1", "glob": "^8.0.3", - "hunspell-reader": "^5.21.1" + "hunspell-reader": "^6.0.0-alpha.0" }, "bin": { "cspell-tools-cli": "bin.js" @@ -180,9 +180,9 @@ } }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "engines": { "node": ">=12.13.0" } @@ -343,9 +343,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "node_modules/@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "node_modules/@cspell/dict-r": { "version": "1.0.2", @@ -570,16 +570,16 @@ } }, "node_modules/cspell": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell/-/cspell-5.21.1.tgz", - "integrity": "sha512-R5I3QwohSkhclfZSCMvTbGb9zZHyZRno4pnUtEN5cVkUXfHHg751rZwO+zUwQcG7mLGHwU6iBNs5kAgH0UxISw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell/-/cspell-6.0.0-alpha.0.tgz", + "integrity": "sha512-2O3dp/VsHAXxZ61fSTwAjiTy4QZgFDz4iyld18HnBzyObmv/YNZxFJ0Qjcf6ywHnRyxZdMFzgxWzuf5Jq0laIQ==", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "chalk": "^4.1.2", "commander": "^9.2.0", - "cspell-gitignore": "^5.21.1", - "cspell-glob": "^5.21.1", - "cspell-lib": "^5.21.1", + "cspell-gitignore": "^6.0.0-alpha.0", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-lib": "^6.0.0-alpha.0", "fast-json-stable-stringify": "^2.1.0", "file-entry-cache": "^6.0.1", "fs-extra": "^10.1.0", @@ -601,11 +601,11 @@ } }, "node_modules/cspell-gitignore": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.21.1.tgz", - "integrity": "sha512-PFTGjUegbCsH0db6+4+xFO/U68ghXNwPDzJRuJnxkwy9XlExcwz22eDisUwyO0fG4nbLJgfQoAuAXzT8LW3MDw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.0.0-alpha.0.tgz", + "integrity": "sha512-XhaS2jzR769wBtJX+014vQ0K4fIWo6X/HHL86KUodlY3VpXdaIrOsTW5a9tMEoVnj4PFhL5blmyeHqtuQADaUw==", "dependencies": { - "cspell-glob": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", "find-up": "^5.0.0" }, "bin": { @@ -616,9 +616,9 @@ } }, "node_modules/cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dependencies": { "micromatch": "^4.0.5" }, @@ -627,28 +627,28 @@ } }, "node_modules/cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "engines": { "node": ">=12.13.0" } }, "node_modules/cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "dependencies": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -664,11 +664,11 @@ } }, "node_modules/cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -867,9 +867,9 @@ } }, "node_modules/hunspell-reader": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-5.21.1.tgz", - "integrity": "sha512-ZcuwILSQs0nE/W0yIqIUjWpzWSOeUc8n2HeZ7ZZe6Spr/TkP48/lFhRwWOFVHEurKTviYJG2RVYEzxk8Z9nuGQ==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-6.0.0-alpha.0.tgz", + "integrity": "sha512-sLN7bH+BjdTnEMh27he2A+Um+d90g/QGPAZqYvqidoc+p4koaBqjZJKRnpmvcEKsK6Xubi7SqLlyowXloBWPMQ==", "dependencies": { "commander": "^9.2.0", "fs-extra": "^10.1.0", @@ -1470,9 +1470,9 @@ } }, "@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "requires": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -1517,28 +1517,28 @@ } }, "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==" }, "@cspell/cspell-tools": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-tools/-/cspell-tools-5.21.1.tgz", - "integrity": "sha512-wMZfjx/tHUvrl8ZIHG0dc7Y9uLR94fFSqjn/HT3SLuQ0bQplRze2Q0sMKzZyEx1V9K6lOfBoODuKtZNLvQPtWA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-tools/-/cspell-tools-6.0.0-alpha.0.tgz", + "integrity": "sha512-mJrjgSi3iEJcV+sYEP/a79sIGX2xXaCqY9T1SXsHZbEvvY3dMcVmdVQHtsMiZKnGjAPBRE6yjvmdfG5Tm+bbRw==", "requires": { "commander": "^9.2.0", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1", "glob": "^8.0.3", - "hunspell-reader": "^5.21.1" + "hunspell-reader": "^6.0.0-alpha.0" } }, "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==" }, "@cspell/dict-ada": { "version": "2.0.0", @@ -1696,9 +1696,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "@cspell/dict-r": { "version": "1.0.2", @@ -1878,16 +1878,16 @@ "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" }, "cspell": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell/-/cspell-5.21.1.tgz", - "integrity": "sha512-R5I3QwohSkhclfZSCMvTbGb9zZHyZRno4pnUtEN5cVkUXfHHg751rZwO+zUwQcG7mLGHwU6iBNs5kAgH0UxISw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell/-/cspell-6.0.0-alpha.0.tgz", + "integrity": "sha512-2O3dp/VsHAXxZ61fSTwAjiTy4QZgFDz4iyld18HnBzyObmv/YNZxFJ0Qjcf6ywHnRyxZdMFzgxWzuf5Jq0laIQ==", "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "chalk": "^4.1.2", "commander": "^9.2.0", - "cspell-gitignore": "^5.21.1", - "cspell-glob": "^5.21.1", - "cspell-lib": "^5.21.1", + "cspell-gitignore": "^6.0.0-alpha.0", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-lib": "^6.0.0-alpha.0", "fast-json-stable-stringify": "^2.1.0", "file-entry-cache": "^6.0.1", "fs-extra": "^10.1.0", @@ -1900,42 +1900,42 @@ } }, "cspell-gitignore": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.21.1.tgz", - "integrity": "sha512-PFTGjUegbCsH0db6+4+xFO/U68ghXNwPDzJRuJnxkwy9XlExcwz22eDisUwyO0fG4nbLJgfQoAuAXzT8LW3MDw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.0.0-alpha.0.tgz", + "integrity": "sha512-XhaS2jzR769wBtJX+014vQ0K4fIWo6X/HHL86KUodlY3VpXdaIrOsTW5a9tMEoVnj4PFhL5blmyeHqtuQADaUw==", "requires": { - "cspell-glob": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", "find-up": "^5.0.0" } }, "cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "requires": { "micromatch": "^4.0.5" } }, "cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==" }, "cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "requires": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -1948,11 +1948,11 @@ } }, "cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" } @@ -2093,9 +2093,9 @@ "integrity": "sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==" }, "hunspell-reader": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-5.21.1.tgz", - "integrity": "sha512-ZcuwILSQs0nE/W0yIqIUjWpzWSOeUc8n2HeZ7ZZe6Spr/TkP48/lFhRwWOFVHEurKTviYJG2RVYEzxk8Z9nuGQ==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/hunspell-reader/-/hunspell-reader-6.0.0-alpha.0.tgz", + "integrity": "sha512-sLN7bH+BjdTnEMh27he2A+Um+d90g/QGPAZqYvqidoc+p4koaBqjZJKRnpmvcEKsK6Xubi7SqLlyowXloBWPMQ==", "requires": { "commander": "^9.2.0", "fs-extra": "^10.1.0", diff --git a/test-packages/test-cspell-tools/package.json b/test-packages/test-cspell-tools/package.json index 20cb56458a6..fd630b0119f 100644 --- a/test-packages/test-cspell-tools/package.json +++ b/test-packages/test-cspell-tools/package.json @@ -1,6 +1,6 @@ { "name": "test-cspell-tools", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Pure testing package for @cspell/cspell-tools.", "private": true, "scripts": { @@ -18,8 +18,8 @@ "author": "", "license": "MIT", "dependencies": { - "@cspell/cspell-tools": "^6.0.0-alpha.0", - "cspell": "^6.0.0-alpha.0" + "@cspell/cspell-tools": "^6.0.0", + "cspell": "^6.0.0" }, "main": "index.js", "keywords": [] diff --git a/test-packages/test-cspell/CHANGELOG.md b/test-packages/test-cspell/CHANGELOG.md index acd7413efce..933e0973cdf 100644 --- a/test-packages/test-cspell/CHANGELOG.md +++ b/test-packages/test-cspell/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package test-cspell + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package test-cspell diff --git a/test-packages/test-cspell/package-lock.json b/test-packages/test-cspell/package-lock.json index 27148b383ea..a2fc52005b7 100644 --- a/test-packages/test-cspell/package-lock.json +++ b/test-packages/test-cspell/package-lock.json @@ -1,16 +1,16 @@ { "name": "test-cspell", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "test-cspell", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT", "dependencies": { - "@cspell/cspell-types": "^5.21.1", - "cspell": "^5.21.1" + "@cspell/cspell-types": "^6.0.0-alpha.0", + "cspell": "^6.0.0-alpha.0" } }, "node_modules/@babel/code-frame": { @@ -102,9 +102,9 @@ } }, "node_modules/@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "dependencies": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -152,17 +152,17 @@ } }, "node_modules/@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==", "engines": { "node": ">=12.13.0" } }, "node_modules/@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==", "engines": { "node": ">=12.13.0" } @@ -323,9 +323,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "node_modules/@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "node_modules/@cspell/dict-r": { "version": "1.0.2", @@ -550,16 +550,16 @@ } }, "node_modules/cspell": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell/-/cspell-5.21.1.tgz", - "integrity": "sha512-R5I3QwohSkhclfZSCMvTbGb9zZHyZRno4pnUtEN5cVkUXfHHg751rZwO+zUwQcG7mLGHwU6iBNs5kAgH0UxISw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell/-/cspell-6.0.0-alpha.0.tgz", + "integrity": "sha512-2O3dp/VsHAXxZ61fSTwAjiTy4QZgFDz4iyld18HnBzyObmv/YNZxFJ0Qjcf6ywHnRyxZdMFzgxWzuf5Jq0laIQ==", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "chalk": "^4.1.2", "commander": "^9.2.0", - "cspell-gitignore": "^5.21.1", - "cspell-glob": "^5.21.1", - "cspell-lib": "^5.21.1", + "cspell-gitignore": "^6.0.0-alpha.0", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-lib": "^6.0.0-alpha.0", "fast-json-stable-stringify": "^2.1.0", "file-entry-cache": "^6.0.1", "fs-extra": "^10.1.0", @@ -581,11 +581,11 @@ } }, "node_modules/cspell-gitignore": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.21.1.tgz", - "integrity": "sha512-PFTGjUegbCsH0db6+4+xFO/U68ghXNwPDzJRuJnxkwy9XlExcwz22eDisUwyO0fG4nbLJgfQoAuAXzT8LW3MDw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.0.0-alpha.0.tgz", + "integrity": "sha512-XhaS2jzR769wBtJX+014vQ0K4fIWo6X/HHL86KUodlY3VpXdaIrOsTW5a9tMEoVnj4PFhL5blmyeHqtuQADaUw==", "dependencies": { - "cspell-glob": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", "find-up": "^5.0.0" }, "bin": { @@ -596,9 +596,9 @@ } }, "node_modules/cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "dependencies": { "micromatch": "^4.0.5" }, @@ -607,28 +607,28 @@ } }, "node_modules/cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==", "engines": { "node": ">=12.13.0" } }, "node_modules/cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "dependencies": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -644,11 +644,11 @@ } }, "node_modules/cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "dependencies": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" }, @@ -1417,9 +1417,9 @@ } }, "@cspell/cspell-bundled-dicts": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-5.21.1.tgz", - "integrity": "sha512-onjtf+0RyIWzD9QRk6J8GnmebPQES/jKXi78n86KXmZcN8S8+CdYLu4heZQw1B264/0ny6H1i7IpFD6AoWINYA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.0.0-alpha.0.tgz", + "integrity": "sha512-JAtCVhHOT2iisvt1M/2/6wv+QwV5v/TA73ci+yTGzT20P4QpunBY54amTihCYG1FZ6PlwOGD28s4hC6hwjC0ag==", "requires": { "@cspell/dict-ada": "^2.0.0", "@cspell/dict-aws": "^2.0.0", @@ -1464,14 +1464,14 @@ } }, "@cspell/cspell-pipe": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-5.21.1.tgz", - "integrity": "sha512-lld5NfLLOY6ChoU7gfbukzuOoaHhDocgj0fiNu39ayBs2Jb+7/nx6Ge0EMIa1AO51RwTS91NatWMsBxmt/hOlA==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.0.0-alpha.0.tgz", + "integrity": "sha512-63PgwASLChSGB0fPMOo4sMEGT3nPkC7ekaQbJOIFNoa2BJjssaEmfx0geczOPWQHXFsXqOl/Wj+3NbUVKfJVwQ==" }, "@cspell/cspell-types": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-5.21.1.tgz", - "integrity": "sha512-riib25imkr8+eAgzlpnAEshhYnxFuqDHprOhE2aYKjY7UBXdqD+a0ry3F21TffA+cX3ilQMyJ7P0jwHH4xn5vg==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.0.0-alpha.0.tgz", + "integrity": "sha512-tO3CAbfE4qhL0O1QtHbZYQ0bjH8GP9dXp2AiL8doMbQcgAlX6QBV2CvH5wXuOHTkFt4pRCQK53VSQFH37GhVoA==" }, "@cspell/dict-ada": { "version": "2.0.0", @@ -1629,9 +1629,9 @@ "integrity": "sha512-h4xULfVEDUeWyvp1OO19pcGDqWcBEQ7WGMp3QBHyYpjsamlzsyYYjCRSY2ZvpM7wruDmywSRFmRHJ/+uNFT7nA==" }, "@cspell/dict-python": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.4.tgz", - "integrity": "sha512-tQvHR7/Qccwqp3HybrfFvcc5a8Gp2kQ6aWn7o/hRUw47BmaX1njhThUHZJYm252Vss7OsiPKlHYBmF1mnpsiyw==" + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@cspell/dict-python/-/dict-python-3.0.5.tgz", + "integrity": "sha512-0BRxUndYQ2Iom9ZpN5DjUdF2E5fodw1Th/7rlhxxy45fYXUZmfXDvYoaQaymfHP0ZQhH56MCuOUNa/YMcYJtww==" }, "@cspell/dict-r": { "version": "1.0.2", @@ -1811,16 +1811,16 @@ "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" }, "cspell": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell/-/cspell-5.21.1.tgz", - "integrity": "sha512-R5I3QwohSkhclfZSCMvTbGb9zZHyZRno4pnUtEN5cVkUXfHHg751rZwO+zUwQcG7mLGHwU6iBNs5kAgH0UxISw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell/-/cspell-6.0.0-alpha.0.tgz", + "integrity": "sha512-2O3dp/VsHAXxZ61fSTwAjiTy4QZgFDz4iyld18HnBzyObmv/YNZxFJ0Qjcf6ywHnRyxZdMFzgxWzuf5Jq0laIQ==", "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "chalk": "^4.1.2", "commander": "^9.2.0", - "cspell-gitignore": "^5.21.1", - "cspell-glob": "^5.21.1", - "cspell-lib": "^5.21.1", + "cspell-gitignore": "^6.0.0-alpha.0", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-lib": "^6.0.0-alpha.0", "fast-json-stable-stringify": "^2.1.0", "file-entry-cache": "^6.0.1", "fs-extra": "^10.1.0", @@ -1833,42 +1833,42 @@ } }, "cspell-gitignore": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-5.21.1.tgz", - "integrity": "sha512-PFTGjUegbCsH0db6+4+xFO/U68ghXNwPDzJRuJnxkwy9XlExcwz22eDisUwyO0fG4nbLJgfQoAuAXzT8LW3MDw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.0.0-alpha.0.tgz", + "integrity": "sha512-XhaS2jzR769wBtJX+014vQ0K4fIWo6X/HHL86KUodlY3VpXdaIrOsTW5a9tMEoVnj4PFhL5blmyeHqtuQADaUw==", "requires": { - "cspell-glob": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", "find-up": "^5.0.0" } }, "cspell-glob": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-5.21.1.tgz", - "integrity": "sha512-899cZOCZqB+EKmSV8Ie4ifWflrJ3noRhyCVVRg5Qn00obEFGfF4ZKwsPM3MbBHMvaaUF6oNt+SQPl4qyvCMsZg==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.0.0-alpha.0.tgz", + "integrity": "sha512-qaXhSDtSs090YolvUlzjqbm3LTejKv6dwS9eX751wapBxpGwVRZK7/JHIBZmolacGGo7DGqfulX0u1NKceyA5w==", "requires": { "micromatch": "^4.0.5" } }, "cspell-io": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-5.21.1.tgz", - "integrity": "sha512-hFd3KX00XjvsAqD3rzrOB3kRohnYhZKsqJupQAefSyxaakV5umtnGKJDviQ9IbDXbIIxuaFtMcnNJFG71uVeMw==" + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-io/-/cspell-io-6.0.0-alpha.0.tgz", + "integrity": "sha512-OeOaY4A/vB9hLidpwvX4z7/kX7b/RsSRR/KifOgP45kwdGkq9qxmBk98x5wkNcoFlhe7IItsfQs7q+KGBzuWJA==" }, "cspell-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-5.21.1.tgz", - "integrity": "sha512-SGGcbAB7GYIrevGtapXo1qpj+Q2gEGw0yNI5KTCG+X5zC3Au28rXQj2dXwd66+xrln2dzcZOQofUhLRq8NsmwA==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-lI1U6XjbAvOlkF83rkObKBU5po9E6eTwIrT0ekQfR9x3d+kzXevBg7YcL2NTIiWzrWBVWOanS+5qGtnQLeFMiA==", "requires": { - "@cspell/cspell-bundled-dicts": "^5.21.1", - "@cspell/cspell-pipe": "^5.21.1", - "@cspell/cspell-types": "^5.21.1", + "@cspell/cspell-bundled-dicts": "^6.0.0-alpha.0", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", + "@cspell/cspell-types": "^6.0.0-alpha.0", "clear-module": "^4.1.2", "comment-json": "^4.2.2", "configstore": "^5.0.1", "cosmiconfig": "^7.0.1", - "cspell-glob": "^5.21.1", - "cspell-io": "^5.21.1", - "cspell-trie-lib": "^5.21.1", + "cspell-glob": "^6.0.0-alpha.0", + "cspell-io": "^6.0.0-alpha.0", + "cspell-trie-lib": "^6.0.0-alpha.0", "fast-equals": "^3.0.2", "find-up": "^5.0.0", "fs-extra": "^10.1.0", @@ -1881,11 +1881,11 @@ } }, "cspell-trie-lib": { - "version": "5.21.1", - "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-5.21.1.tgz", - "integrity": "sha512-osML1bqwXzUZrKogaAcwlh1pt0IWe/VBAIRgldwHlXcQFA/2dibEvfe9lnX3lbGqQRDI9WhuVXp4xmD70R7JSw==", + "version": "6.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.0.0-alpha.0.tgz", + "integrity": "sha512-mG42Z06YjsymdbBSD2cWJE2wx55cLVhKc57Li+Om2qPpBPnMLQYQz5qoflY00jM4WOPM1Wi+rLIikPtHOSseJg==", "requires": { - "@cspell/cspell-pipe": "^5.21.1", + "@cspell/cspell-pipe": "^6.0.0-alpha.0", "fs-extra": "^10.1.0", "gensequence": "^3.1.1" } diff --git a/test-packages/test-cspell/package.json b/test-packages/test-cspell/package.json index 7ccee1c4142..33336d9f974 100644 --- a/test-packages/test-cspell/package.json +++ b/test-packages/test-cspell/package.json @@ -1,6 +1,6 @@ { "name": "test-cspell", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Pure testing package for cspell-io. It purpose is to verify cspell-io dependencies.", "private": true, "scripts": { @@ -14,8 +14,8 @@ "author": "", "license": "MIT", "dependencies": { - "@cspell/cspell-types": "^6.0.0-alpha.0", - "cspell": "^6.0.0-alpha.0" + "@cspell/cspell-types": "^6.0.0", + "cspell": "^6.0.0" }, "main": "index.js", "keywords": [] diff --git a/test-packages/yarn2/CHANGELOG.md b/test-packages/yarn2/CHANGELOG.md index 79c9d9f7e55..385aabd7ce8 100644 --- a/test-packages/yarn2/CHANGELOG.md +++ b/test-packages/yarn2/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [6.0.0](https://github.com/streetsidesoftware/cspell/compare/v6.0.0-alpha.0...v6.0.0) (2022-05-21) + +**Note:** Version bump only for package test-yarn2 + + + + + # [6.0.0-alpha.0](https://github.com/streetsidesoftware/cspell/compare/v5.21.1...v6.0.0-alpha.0) (2022-05-20) **Note:** Version bump only for package test-yarn2 diff --git a/test-packages/yarn2/package-lock.json b/test-packages/yarn2/package-lock.json index 2c9f2b2d87d..ec4e796be19 100644 --- a/test-packages/yarn2/package-lock.json +++ b/test-packages/yarn2/package-lock.json @@ -1,12 +1,12 @@ { "name": "test-yarn2", - "version": "6.0.0-alpha.0", + "version": "6.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "test-yarn2", - "version": "5.21.1", + "version": "6.0.0-alpha.0", "license": "MIT" } } diff --git a/test-packages/yarn2/package.json b/test-packages/yarn2/package.json index fb157215f11..9bd8870c5df 100644 --- a/test-packages/yarn2/package.json +++ b/test-packages/yarn2/package.json @@ -1,7 +1,7 @@ { "name": "test-yarn2", "private": true, - "version": "6.0.0-alpha.0", + "version": "6.0.0", "description": "Tests for dictionaries included by a Yarn 2 repository", "main": "index.js", "scripts": { diff --git a/website/package-lock.json b/website/package-lock.json index b853717bdab..9aa93f1a84f 100644 --- a/website/package-lock.json +++ b/website/package-lock.json @@ -4335,17 +4335,18 @@ } }, "node_modules/cheerio": { - "version": "1.0.0-rc.10", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.10.tgz", - "integrity": "sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==", - "dependencies": { - "cheerio-select": "^1.5.0", - "dom-serializer": "^1.3.2", - "domhandler": "^4.2.0", - "htmlparser2": "^6.1.0", - "parse5": "^6.0.1", - "parse5-htmlparser2-tree-adapter": "^6.0.1", - "tslib": "^2.2.0" + "version": "1.0.0-rc.11", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.11.tgz", + "integrity": "sha512-bQwNaDIBKID5ts/DsdhxrjqFXYfLw4ste+wMKqWA8DyKcS4qwsPP4Bk8ZNaTJjvpiX/qW3BT4sU7d6Bh5i+dag==", + "dependencies": { + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "htmlparser2": "^8.0.1", + "parse5": "^7.0.0", + "parse5-htmlparser2-tree-adapter": "^7.0.0", + "tslib": "^2.4.0" }, "engines": { "node": ">= 6" @@ -4355,15 +4356,16 @@ } }, "node_modules/cheerio-select": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.6.0.tgz", - "integrity": "sha512-eq0GdBvxVFbqWgmCm7M3XGs1I8oLy/nExUnh6oLqmBditPO9AqQJrkslDpMun/hZ0yyTs8L0m85OHp4ho6Qm9g==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", + "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", "dependencies": { - "css-select": "^4.3.0", - "css-what": "^6.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.3.1", - "domutils": "^2.8.0" + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" }, "funding": { "url": "https://github.com/sponsors/fb55" @@ -5029,14 +5031,14 @@ } }, "node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", "dependencies": { "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", "nth-check": "^2.0.1" }, "funding": { @@ -5078,11 +5080,11 @@ } }, "node_modules/cssnano": { - "version": "5.1.8", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.8.tgz", - "integrity": "sha512-5lma/yQlK+6eOHSUqNAS11b4/fbiuasoxmCHoVYxSg6lQsyX7bGGIqiLi4o3Pe2CrUTrgcD2udW7JIgzC2806g==", + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.9.tgz", + "integrity": "sha512-hctQHIIeDrfMjq0bQhoVmRVaSeNNOGxkvkKVOcKpJzLr09wlRrZWH4GaYudp0aszpW8wJeaO5/yBmID9n7DNCg==", "dependencies": { - "cssnano-preset-default": "^5.2.8", + "cssnano-preset-default": "^5.2.9", "lilconfig": "^2.0.3", "yaml": "^1.10.2" }, @@ -5098,12 +5100,12 @@ } }, "node_modules/cssnano-preset-advanced": { - "version": "5.3.4", - "resolved": "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-5.3.4.tgz", - "integrity": "sha512-mZovba9FGPmwGPgeMAE/ChrgmluEFyxQzkGZbBUcDYKfhI263BPV2NSiCyqdy8wSmVYEgyRi8TxiPwI4ZO/yGQ==", + "version": "5.3.5", + "resolved": "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-5.3.5.tgz", + "integrity": "sha512-KgrfLQaTBB4bov/Xsi0+y5iGM5gg5QChP1PTMJ9t7U6p9geKHYcPS9AC6gmfwurm0GKxhTRafDx55E8FKHX8eg==", "dependencies": { "autoprefixer": "^10.3.7", - "cssnano-preset-default": "^5.2.8", + "cssnano-preset-default": "^5.2.9", "postcss-discard-unused": "^5.1.0", "postcss-merge-idents": "^5.1.1", "postcss-reduce-idents": "^5.2.0", @@ -5117,9 +5119,9 @@ } }, "node_modules/cssnano-preset-default": { - "version": "5.2.8", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.8.tgz", - "integrity": "sha512-6xQXUhTAPupvib3KC0Gl0d1jIwGFcJyuWQiMcA6grprGdmIzt1cxG5z78VuZu6DRRS6qin6ETkQsH6ixxb/SQw==", + "version": "5.2.9", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.9.tgz", + "integrity": "sha512-/4qcQcAfFEg+gnXE5NxKmYJ9JcT+8S5SDuJCLYMDN8sM/ymZ+lgLXq5+ohx/7V2brUCkgW2OaoCzOdAN0zvhGw==", "dependencies": { "css-declaration-sorter": "^6.2.2", "cssnano-utils": "^3.1.0", @@ -5130,7 +5132,7 @@ "postcss-discard-duplicates": "^5.1.0", "postcss-discard-empty": "^5.1.1", "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.4", + "postcss-merge-longhand": "^5.1.5", "postcss-merge-rules": "^5.1.1", "postcss-minify-font-values": "^5.1.0", "postcss-minify-gradients": "^5.1.1", @@ -5416,22 +5418,25 @@ } }, "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, "node_modules/dom-serializer/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.0.tgz", + "integrity": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==", + "engines": { + "node": ">=0.12" + }, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } @@ -5448,11 +5453,11 @@ ] }, "node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dependencies": { - "domelementtype": "^2.2.0" + "domelementtype": "^2.3.0" }, "engines": { "node": ">= 4" @@ -5462,13 +5467,13 @@ } }, "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", + "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.1" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" @@ -6697,6 +6702,11 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/hast-util-raw/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, "node_modules/hast-util-to-parse5": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-6.0.0.tgz", @@ -6872,9 +6882,9 @@ } }, "node_modules/htmlparser2": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", - "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.1.tgz", + "integrity": "sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==", "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { @@ -6883,16 +6893,19 @@ } ], "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", - "domutils": "^2.5.2", - "entities": "^2.0.0" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "entities": "^4.3.0" } }, "node_modules/htmlparser2/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.0.tgz", + "integrity": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==", + "engines": { + "node": ">=0.12" + }, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } @@ -8489,16 +8502,37 @@ "integrity": "sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==" }, "node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.0.0.tgz", + "integrity": "sha512-y/t8IXSPWTuRZqXc0ajH/UwDj4mnqLEbSttNbThcFhGrZuOyoyvNBO85PBp2jQa55wY9d07PBNjsK8ZP3K5U6g==", + "dependencies": { + "entities": "^4.3.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } }, "node_modules/parse5-htmlparser2-tree-adapter": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", - "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz", + "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==", "dependencies": { - "parse5": "^6.0.1" + "domhandler": "^5.0.2", + "parse5": "^7.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5/node_modules/entities": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.0.tgz", + "integrity": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/parseurl": { @@ -8810,9 +8844,9 @@ } }, "node_modules/postcss-merge-longhand": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.4.tgz", - "integrity": "sha512-hbqRRqYfmXoGpzYKeW0/NCZhvNyQIlQeWVSao5iKWdyx7skLvCfQFGIUsP9NUs3dSbPac2IC4Go85/zG+7MlmA==", + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.5.tgz", + "integrity": "sha512-NOG1grw9wIO+60arKa2YYsrbgvP6tp+jqc7+ZD5/MalIw234ooH2C6KlR6FEn4yle7GqZoBxSK1mLBE9KPur6w==", "dependencies": { "postcss-value-parser": "^4.2.0", "stylehacks": "^5.1.0" @@ -10204,6 +10238,87 @@ "strip-ansi": "^6.0.1" } }, + "node_modules/renderkid/node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/renderkid/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, "node_modules/repeat-string": { "version": "1.6.1", "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", @@ -11123,6 +11238,69 @@ "node": ">= 10" } }, + "node_modules/svgo/node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/svgo/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/svgo/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/svgo/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/svgo/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, "node_modules/tapable": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", @@ -15980,29 +16158,31 @@ "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==" }, "cheerio": { - "version": "1.0.0-rc.10", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.10.tgz", - "integrity": "sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==", - "requires": { - "cheerio-select": "^1.5.0", - "dom-serializer": "^1.3.2", - "domhandler": "^4.2.0", - "htmlparser2": "^6.1.0", - "parse5": "^6.0.1", - "parse5-htmlparser2-tree-adapter": "^6.0.1", - "tslib": "^2.2.0" + "version": "1.0.0-rc.11", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.11.tgz", + "integrity": "sha512-bQwNaDIBKID5ts/DsdhxrjqFXYfLw4ste+wMKqWA8DyKcS4qwsPP4Bk8ZNaTJjvpiX/qW3BT4sU7d6Bh5i+dag==", + "requires": { + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "htmlparser2": "^8.0.1", + "parse5": "^7.0.0", + "parse5-htmlparser2-tree-adapter": "^7.0.0", + "tslib": "^2.4.0" } }, "cheerio-select": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.6.0.tgz", - "integrity": "sha512-eq0GdBvxVFbqWgmCm7M3XGs1I8oLy/nExUnh6oLqmBditPO9AqQJrkslDpMun/hZ0yyTs8L0m85OHp4ho6Qm9g==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", + "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", "requires": { - "css-select": "^4.3.0", - "css-what": "^6.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.3.1", - "domutils": "^2.8.0" + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" } }, "chokidar": { @@ -16469,14 +16649,14 @@ } }, "css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", "requires": { "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", "nth-check": "^2.0.1" } }, @@ -16500,22 +16680,22 @@ "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" }, "cssnano": { - "version": "5.1.8", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.8.tgz", - "integrity": "sha512-5lma/yQlK+6eOHSUqNAS11b4/fbiuasoxmCHoVYxSg6lQsyX7bGGIqiLi4o3Pe2CrUTrgcD2udW7JIgzC2806g==", + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.9.tgz", + "integrity": "sha512-hctQHIIeDrfMjq0bQhoVmRVaSeNNOGxkvkKVOcKpJzLr09wlRrZWH4GaYudp0aszpW8wJeaO5/yBmID9n7DNCg==", "requires": { - "cssnano-preset-default": "^5.2.8", + "cssnano-preset-default": "^5.2.9", "lilconfig": "^2.0.3", "yaml": "^1.10.2" } }, "cssnano-preset-advanced": { - "version": "5.3.4", - "resolved": "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-5.3.4.tgz", - "integrity": "sha512-mZovba9FGPmwGPgeMAE/ChrgmluEFyxQzkGZbBUcDYKfhI263BPV2NSiCyqdy8wSmVYEgyRi8TxiPwI4ZO/yGQ==", + "version": "5.3.5", + "resolved": "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-5.3.5.tgz", + "integrity": "sha512-KgrfLQaTBB4bov/Xsi0+y5iGM5gg5QChP1PTMJ9t7U6p9geKHYcPS9AC6gmfwurm0GKxhTRafDx55E8FKHX8eg==", "requires": { "autoprefixer": "^10.3.7", - "cssnano-preset-default": "^5.2.8", + "cssnano-preset-default": "^5.2.9", "postcss-discard-unused": "^5.1.0", "postcss-merge-idents": "^5.1.1", "postcss-reduce-idents": "^5.2.0", @@ -16523,9 +16703,9 @@ } }, "cssnano-preset-default": { - "version": "5.2.8", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.8.tgz", - "integrity": "sha512-6xQXUhTAPupvib3KC0Gl0d1jIwGFcJyuWQiMcA6grprGdmIzt1cxG5z78VuZu6DRRS6qin6ETkQsH6ixxb/SQw==", + "version": "5.2.9", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.9.tgz", + "integrity": "sha512-/4qcQcAfFEg+gnXE5NxKmYJ9JcT+8S5SDuJCLYMDN8sM/ymZ+lgLXq5+ohx/7V2brUCkgW2OaoCzOdAN0zvhGw==", "requires": { "css-declaration-sorter": "^6.2.2", "cssnano-utils": "^3.1.0", @@ -16536,7 +16716,7 @@ "postcss-discard-duplicates": "^5.1.0", "postcss-discard-empty": "^5.1.1", "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.4", + "postcss-merge-longhand": "^5.1.5", "postcss-merge-rules": "^5.1.1", "postcss-minify-font-values": "^5.1.0", "postcss-minify-gradients": "^5.1.1", @@ -16746,19 +16926,19 @@ } }, "dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" }, "dependencies": { "entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.0.tgz", + "integrity": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" } } }, @@ -16768,21 +16948,21 @@ "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" }, "domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "requires": { - "domelementtype": "^2.2.0" + "domelementtype": "^2.3.0" } }, "domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", + "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.1" } }, "dot-case": { @@ -17684,6 +17864,13 @@ "web-namespaces": "^1.0.0", "xtend": "^4.0.0", "zwitch": "^1.0.0" + }, + "dependencies": { + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + } } }, "hast-util-to-parse5": { @@ -17825,20 +18012,20 @@ } }, "htmlparser2": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", - "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.1.tgz", + "integrity": "sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==", "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", - "domutils": "^2.5.2", - "entities": "^2.0.0" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "entities": "^4.3.0" }, "dependencies": { "entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.0.tgz", + "integrity": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" } } }, @@ -18970,16 +19157,27 @@ "integrity": "sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==" }, "parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.0.0.tgz", + "integrity": "sha512-y/t8IXSPWTuRZqXc0ajH/UwDj4mnqLEbSttNbThcFhGrZuOyoyvNBO85PBp2jQa55wY9d07PBNjsK8ZP3K5U6g==", + "requires": { + "entities": "^4.3.0" + }, + "dependencies": { + "entities": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.3.0.tgz", + "integrity": "sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==" + } + } }, "parse5-htmlparser2-tree-adapter": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", - "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz", + "integrity": "sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==", "requires": { - "parse5": "^6.0.1" + "domhandler": "^5.0.2", + "parse5": "^7.0.0" } }, "parseurl": { @@ -19183,9 +19381,9 @@ } }, "postcss-merge-longhand": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.4.tgz", - "integrity": "sha512-hbqRRqYfmXoGpzYKeW0/NCZhvNyQIlQeWVSao5iKWdyx7skLvCfQFGIUsP9NUs3dSbPac2IC4Go85/zG+7MlmA==", + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.5.tgz", + "integrity": "sha512-NOG1grw9wIO+60arKa2YYsrbgvP6tp+jqc7+ZD5/MalIw234ooH2C6KlR6FEn4yle7GqZoBxSK1mLBE9KPur6w==", "requires": { "postcss-value-parser": "^4.2.0", "stylehacks": "^5.1.0" @@ -20184,6 +20382,64 @@ "htmlparser2": "^6.1.0", "lodash": "^4.17.21", "strip-ansi": "^6.0.1" + }, + "dependencies": { + "css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + } + }, + "dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + } } }, "repeat-string": { @@ -20871,6 +21127,51 @@ "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + }, + "css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + } + }, + "dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" } } },