diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index c4e39078edd..cbbd9959e93 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -12,7 +12,7 @@ runs: with: load-cache: 'false' cache-suffix: ${{ inputs.cache-suffix }} - - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 + - uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4 id: nx-cache with: path: .nx/cache diff --git a/.github/actions/cdn-checks/action.yml b/.github/actions/cdn-checks/action.yml index 1f704a6eafc..766207f879a 100644 --- a/.github/actions/cdn-checks/action.yml +++ b/.github/actions/cdn-checks/action.yml @@ -3,7 +3,7 @@ description: 'Runs CDN checks' runs: using: composite steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup with: cache-suffix: 'cdn' diff --git a/.github/actions/e2e-quantic-setup/action.yml b/.github/actions/e2e-quantic-setup/action.yml index 86e7966690d..47031668d83 100644 --- a/.github/actions/e2e-quantic-setup/action.yml +++ b/.github/actions/e2e-quantic-setup/action.yml @@ -24,7 +24,7 @@ runs: SFDX_AUTH_JWT_KEY_FILE: server.key SFDX_AUTH_JWT_USERNAME: rdaccess@coveo.com SFDX_AUTH_JWT_INSTANCE_URL: https://login.salesforce.com - - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 + - uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4 with: path: packages/quantic/cypress/plugins/config key: quantic-cypress-config-${{ github.sha }} diff --git a/.github/actions/e2e-quantic/action.yml b/.github/actions/e2e-quantic/action.yml index 9f64c831455..2ea9c8fa1eb 100644 --- a/.github/actions/e2e-quantic/action.yml +++ b/.github/actions/e2e-quantic/action.yml @@ -11,7 +11,7 @@ inputs: runs: using: composite steps: - - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 + - uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4 with: path: packages/quantic/cypress/plugins/config key: quantic-cypress-config-${{ github.sha }} diff --git a/.github/actions/publish-pr-review-site/action.yml b/.github/actions/publish-pr-review-site/action.yml index 0cd3f8b7ce0..ed56de5315d 100644 --- a/.github/actions/publish-pr-review-site/action.yml +++ b/.github/actions/publish-pr-review-site/action.yml @@ -11,7 +11,7 @@ inputs: runs: using: composite steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: repository: coveo/ui-kit-prs path: prs diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 9d5b3fec10d..87d84e54d03 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -12,7 +12,7 @@ inputs: runs: using: composite steps: - - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 + - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: registry-url: 'https://registry.npmjs.org' node-version-file: '.nvmrc' @@ -22,23 +22,23 @@ runs: - name: Install npm run: npm i -g npm@10 shell: bash - - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 + - uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4 id: npm-cache with: path: | **/node_modules/ !.nx/cache/ key: npm-${{ hashFiles('package-lock.json', 'patches/*') }} - - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 + - uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4 with: path: packages/quantic/force-app/main/default/staticresources key: quantic-${{ hashFiles('package-lock.json') }}}} - - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 + - uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4 with: path: ~/.cache/Cypress key: cy-${{ hashFiles('package-lock.json') }} - if: inputs.load-cache == 'true' - uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 + uses: actions/cache/restore@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4 id: nx-cache with: path: .nx/cache diff --git a/.github/workflows/create-quantic-package.yml b/.github/workflows/create-quantic-package.yml index a40559d6f2d..3bb5e418e10 100644 --- a/.github/workflows/create-quantic-package.yml +++ b/.github/workflows/create-quantic-package.yml @@ -22,14 +22,14 @@ jobs: egress-policy: audit - name: Check Out Repository - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: Create cache file run: | mkdir check-SHA echo ${{ github.sha }} > github-sha.txt - name: Check SHA id: check_sha - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 + uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4 with: path: check-SHA key: check-SHA-${{ github.sha }} diff --git a/.github/workflows/delete-pr-artifact-on-merge.yml b/.github/workflows/delete-pr-artifact-on-merge.yml index 0743471c7c2..db04cb6f47a 100644 --- a/.github/workflows/delete-pr-artifact-on-merge.yml +++ b/.github/workflows/delete-pr-artifact-on-merge.yml @@ -12,7 +12,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/publish-pr-review-site with: token: ${{ secrets.GH_PUBLISH_TOKEN }} diff --git a/.github/workflows/e2e-quantic.yml b/.github/workflows/e2e-quantic.yml index 026d358ae32..ce697f83489 100644 --- a/.github/workflows/e2e-quantic.yml +++ b/.github/workflows/e2e-quantic.yml @@ -15,7 +15,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/setup-sfdx - uses: ./.github/actions/e2e-quantic-setup @@ -42,7 +42,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/e2e-quantic with: @@ -57,7 +57,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/setup-sfdx - run: npx --no-install ts-node packages/quantic/scripts/build/delete-org.ts diff --git a/.github/workflows/masterbot.yml b/.github/workflows/masterbot.yml index a37a10fbd1a..0e25760b666 100644 --- a/.github/workflows/masterbot.yml +++ b/.github/workflows/masterbot.yml @@ -21,10 +21,10 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: fetch-depth: 0 - - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 + - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: registry-url: 'https://registry.npmjs.org' node-version-file: '.nvmrc' diff --git a/.github/workflows/prbot.yml b/.github/workflows/prbot.yml index 8ed227f1b5a..a8df172650a 100644 --- a/.github/workflows/prbot.yml +++ b/.github/workflows/prbot.yml @@ -18,10 +18,10 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: fetch-depth: 0 - - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4 + - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: node-version-file: '.nvmrc' - run: npm ci @@ -35,7 +35,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/build - uses: ./.github/actions/commit-generated-files build-cdn: @@ -49,7 +49,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/build with: cache-suffix: 'cdn' @@ -66,7 +66,7 @@ jobs: egress-policy: audit - name: Setup for CDN checks - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup with: cache-suffix: 'cdn' @@ -84,7 +84,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - run: npm run lint:check unit-test: @@ -97,7 +97,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - run: npm test package-compatibility: @@ -110,7 +110,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - run: npm run package-compatibility e2e-atomic-csp-test: @@ -123,7 +123,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/e2e-atomic-csp prepare-playwright-atomic: @@ -142,7 +142,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: fetch-depth: 0 - uses: ./.github/actions/setup @@ -178,7 +178,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - run: npm run build - uses: ./.github/actions/playwright-atomic @@ -199,14 +199,14 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - run: npm run build - uses: ./.github/actions/merge-playwright-reports - name: Generate a token if: ${{ always() && github.event_name == 'pull_request'}} id: generate-token - uses: actions/create-github-app-token@31c86eb3b33c9b601a1f60f98dcbfd1d70f379b4 # v1 + uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1 with: app-id: ${{ secrets.GH_APP_ID }} private-key: ${{ secrets.GH_APP_PRIVATE_KEY }} @@ -293,7 +293,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/e2e-atomic with: @@ -310,7 +310,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/e2e-atomic-screenshots e2e-atomic-react-test: @@ -323,7 +323,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/e2e-atomic-react e2e-atomic-react-nextjs-test: @@ -336,7 +336,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/e2e-atomic-next e2e-iife-test: @@ -349,7 +349,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 # TODO: KIT-3537 - https://coveord.atlassian.net/browse/KIT-3538 # - uses: ./.github/actions/setup # - uses: ./.github/actions/e2e-iife @@ -363,7 +363,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/e2e-atomic-angular e2e-atomic-vuejs-test: @@ -376,7 +376,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/e2e-vuejs e2e-atomic-stencil-test: @@ -389,7 +389,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/e2e-stencil playwright-atomic-hosted-page-test: @@ -402,7 +402,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - run: npm run build - uses: ./.github/actions/playwright-atomic-hosted-pages @@ -416,7 +416,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - run: npm run build - uses: ./.github/actions/playwright-headless-ssr-commerce @@ -430,7 +430,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/e2e-atomic-insight-panel e2e-headless-ssr-test-app-dev: @@ -443,7 +443,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/e2e-headless-ssr-app-dev e2e-headless-ssr-test-app-prod: @@ -456,7 +456,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/e2e-headless-ssr-app-prod e2e-headless-ssr-test-pages-dev: @@ -469,7 +469,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/e2e-headless-ssr-pages-dev e2e-headless-ssr-test-pages-prod: @@ -482,7 +482,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - uses: ./.github/actions/setup - uses: ./.github/actions/e2e-headless-ssr-pages-prod should-e2e-quantic: @@ -497,7 +497,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: fetch-depth: 0 - uses: ./.github/actions/setup diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1590b404664..386e3485792 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: fetch-depth: 0 - uses: ./.github/actions/setup @@ -64,7 +64,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: ref: 'release/v3' - uses: ./.github/actions/setup @@ -80,7 +80,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: ref: 'release/v3' - uses: ./.github/actions/setup @@ -102,7 +102,7 @@ jobs: with: egress-policy: audit - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: ref: 'release/v3' - uses: ./.github/actions/setup diff --git a/package.json b/package.json index 160b7373bad..b91cdf16903 100644 --- a/package.json +++ b/package.json @@ -28,18 +28,18 @@ "release:phase4": "nx run-many --targets=release:phase4 --all" }, "devDependencies": { - "@actions/core": "1.10.1", + "@actions/core": "1.11.1", "@actions/github": "6.0.0", - "@commitlint/config-conventional": "19.2.2", - "@commitlint/lint": "19.2.2", - "@commitlint/load": "19.2.0", + "@commitlint/config-conventional": "19.5.0", + "@commitlint/lint": "19.5.0", + "@commitlint/load": "19.5.0", "@coveo/release": "1.0.0", - "@cspell/dict-fr-fr": "2.2.2", - "@cspell/eslint-plugin": "8.12.1", - "@nx/js": "19.5.3", - "@nx/storybook": "19.5.3", - "@nx/vite": "19.5.3", - "@nx/web": "19.5.3", + "@cspell/dict-fr-fr": "2.2.5", + "@cspell/eslint-plugin": "8.16.0", + "@nx/js": "19.8.11", + "@nx/storybook": "19.8.11", + "@nx/vite": "19.8.11", + "@nx/web": "19.8.11", "@octokit/rest": "20.1.1", "@rollup/plugin-typescript": "11.1.6", "@storybook/addon-essentials": "8.1.11", @@ -50,24 +50,24 @@ "@storybook/testing-library": "^0.2.2", "@storybook/web-components-vite": "8.1.11", "@swc-node/register": "~1.10.0", - "@swc/core": "~1.7.0", + "@swc/core": "~1.9.0", "@swc/helpers": "~0.5.2", "@trivago/prettier-plugin-sort-imports": "4.3.0", "@tsconfig/node20": "20.1.4", "@types/execa": "^2.0.0", - "@types/jest": "29.5.12", - "@types/node": "20.14.12", - "@typescript-eslint/eslint-plugin": "7.17.0", - "@typescript-eslint/parser": "7.17.0", + "@types/jest": "29.5.14", + "@types/node": "20.17.6", + "@typescript-eslint/eslint-plugin": "7.18.0", + "@typescript-eslint/parser": "7.18.0", "@whitespace/storybook-addon-html": "6.1.1", - "aws-sdk": "2.1664.0", - "commitizen": "4.3.0", + "aws-sdk": "2.1692.0", + "commitizen": "4.3.1", "concurrently": "8.2.2", "cross-fetch": "4.0.0", - "cspell": "8.12.1", + "cspell": "8.16.0", "cz-conventional-changelog": "3.3.0", "detect-indent": "7.0.1", - "esbuild": "0.23.1", + "esbuild": "0.24.0", "esbuild-plugin-alias": "0.2.1", "esbuild-plugin-umd-wrapper": "2.0.3", "eslint": "8.57.0", @@ -78,21 +78,21 @@ "exponential-backoff": "^3.1.0", "glob": "^10.2.6", "gts": "5.3.1", - "husky": "9.1.2", - "lint-staged": "15.2.7", + "husky": "9.1.6", + "lint-staged": "15.2.10", "lit": "^2.6.1", "nx": "19.0.4", "patch-package": "8.0.0", "prettier": "3.3.3", - "prettier-plugin-tailwindcss": "0.6.5", - "publint": "0.2.11", + "prettier-plugin-tailwindcss": "0.6.8", + "publint": "0.2.12", "react-syntax-highlighter": "15.5.0", - "rimraf": "5.0.9", + "rimraf": "5.0.10", "semver": "7.6.3", "ts-node": "10.9.2", "tslib": "^2.3.0", - "typescript": "5.4.5", - "vite": "~5.3.0" + "typescript": "5.6.3", + "vite": "~5.4.0" }, "overrides": { "@coveo/release": { @@ -141,5 +141,5 @@ "dependencies": { "upgrade": "1.1.0" }, - "packageManager": "npm@10.8.2" + "packageManager": "npm@10.9.0" } diff --git a/packages/atomic-angular/package.json b/packages/atomic-angular/package.json index 5dd9e7c7514..1ad2806849c 100644 --- a/packages/atomic-angular/package.json +++ b/packages/atomic-angular/package.json @@ -31,9 +31,9 @@ "@angular/cli": "17.3.9", "@angular/compiler-cli": "17.3.12", "@coveo/headless": "3.10.0", - "@types/node": "20.14.12", - "jasmine-core": "5.2.0", - "karma": "6.4.3", + "@types/node": "20.17.6", + "jasmine-core": "5.4.0", + "karma": "6.4.4", "karma-chrome-launcher": "3.2.0", "karma-coverage": "2.2.1", "karma-jasmine": "5.1.0", diff --git a/packages/atomic-angular/projects/atomic-angular/package.json b/packages/atomic-angular/projects/atomic-angular/package.json index 2e47ee690d3..4fae920ff9b 100644 --- a/packages/atomic-angular/projects/atomic-angular/package.json +++ b/packages/atomic-angular/projects/atomic-angular/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@coveo/atomic": "3.11.1", - "tslib": "2.6.3" + "tslib": "2.8.1" }, "engines": { "node": "^20.9.0 || ^22.11.0" diff --git a/packages/atomic-hosted-page/package.json b/packages/atomic-hosted-page/package.json index 777fe8d736e..4841da4637b 100644 --- a/packages/atomic-hosted-page/package.json +++ b/packages/atomic-hosted-page/package.json @@ -36,8 +36,8 @@ }, "devDependencies": { "@coveo/release": "1.0.0", - "@playwright/test": "1.45.3", - "@types/node": "20.14.12" + "@playwright/test": "1.48.2", + "@types/node": "20.17.6" }, "engines": { "node": "^20.9.0 || ^22.11.0" diff --git a/packages/atomic-react/package.json b/packages/atomic-react/package.json index aac9cc375a0..77e846378a5 100644 --- a/packages/atomic-react/package.json +++ b/packages/atomic-react/package.json @@ -38,10 +38,10 @@ "@rollup/plugin-node-resolve": "^15.0.0", "@rollup/plugin-terser": "0.4.4", "@rollup/plugin-typescript": "^11.0.0", - "@types/node": "20.14.12", + "@types/node": "20.17.6", "@types/react": "18.3.3", "@types/react-dom": "18.3.0", - "fix-esm-import-path": "1.10.0", + "fix-esm-import-path": "1.10.1", "ncp": "2.0.0", "react": "18.3.1", "react-dom": "18.3.1", diff --git a/packages/atomic/package.json b/packages/atomic/package.json index b6665ec6453..8165c5c98c9 100644 --- a/packages/atomic/package.json +++ b/packages/atomic/package.json @@ -70,29 +70,29 @@ "@popperjs/core": "^2.11.6", "@salesforce-ux/design-system": "^2.16.1", "@stencil/store": "2.0.16", - "dayjs": "1.11.12", - "dompurify": "3.1.6", + "dayjs": "1.11.13", + "dompurify": "3.2.0", "escape-html": "1.0.3", - "focus-visible": "5.2.0", - "i18next": "23.12.2", - "i18next-http-backend": "2.5.2", + "focus-visible": "5.2.1", + "i18next": "23.16.5", + "i18next-http-backend": "2.6.2", "marked": "12.0.2", "stencil-inline-svg": "1.1.0", "ts-debounce": "^4.0.0" }, "devDependencies": { - "@axe-core/playwright": "4.9.1", - "@babel/core": "7.24.9", + "@axe-core/playwright": "4.10.1", + "@babel/core": "7.26.0", "@coveo/atomic-storybook-utils": "file:./storybookUtils", "@coveo/release": "1.0.0", "@custom-elements-manifest/analyzer": "0.10.3", "@fullhuman/postcss-purgecss": "6.0.0", - "@nx/js": "19.5.3", - "@nx/storybook": "19.5.3", - "@nx/vite": "19.5.3", - "@nx/web": "19.5.3", - "@playwright/test": "1.45.3", - "@rollup/plugin-alias": "5.1.0", + "@nx/js": "19.8.11", + "@nx/storybook": "19.8.11", + "@nx/vite": "19.8.11", + "@nx/web": "19.8.11", + "@playwright/test": "1.48.2", + "@rollup/plugin-alias": "5.1.1", "@rollup/plugin-replace": "5.0.7", "@stencil-community/postcss": "2.2.0", "@stencil/angular-output-target": "0.8.4", @@ -112,22 +112,22 @@ "@storybook/web-components": "8.1.11", "@storybook/web-components-vite": "8.1.11", "@swc-node/register": "~1.10.0", - "@swc/core": "~1.7.0", + "@swc/core": "~1.9.0", "@swc/helpers": "~0.5.2", "@types/core-js": "2.5.8", "@types/dompurify": "3.0.5", "@types/escape-html": "1.0.4", "@types/jest": "29.5.12", - "@types/lodash": "4.17.7", - "@types/node": "20.14.12", + "@types/lodash": "4.17.13", + "@types/node": "20.17.6", "@types/postcss-import": "14.0.3", "@types/puppeteer": "7.0.4", "@whitespace/storybook-addon-html": "6.1.1", - "autoprefixer": "10.4.19", - "axe-core": "4.9.1", - "cypress": "13.13.1", + "autoprefixer": "10.4.20", + "axe-core": "4.10.2", + "cypress": "13.15.2", "cypress-axe": "1.5.0", - "cypress-repeat": "2.3.5", + "cypress-repeat": "2.3.7", "cypress-split": "1.5.0", "html-loader-jest": "0.2.1", "jest": "29.7.0", @@ -135,7 +135,7 @@ "jest-environment-node": "29.7.0", "jest-localstorage-mock": "2.4.26", "lit": "3.1.3", - "lit-html": "3.1.4", + "lit-html": "3.2.1", "local-web-server": "5.4.0", "lodash": "4.17.21", "natural-orderby": "4.0.0", @@ -145,17 +145,17 @@ "postcss-map": "0.11.0", "postcss-mixins": "10.0.1", "postcss-nested": "6.2.0", - "puppeteer": "22.14.0", + "puppeteer": "22.15.0", "react": "18.3.1", - "rollup": "4.24.0", + "rollup": "4.27.2", "rollup-plugin-html": "0.2.1", - "shadow-dom-testing-library": "1.11.2", + "shadow-dom-testing-library": "1.11.3", "storybook": "8.1.2", - "tailwindcss": "3.4.7", + "tailwindcss": "3.4.15", "ts-node": "10.9.2", "tslib": "^2.3.0", - "typescript": "5.5.4", - "vite": "5.3.5", + "typescript": "5.6.3", + "vite": "5.4.11", "vite-plugin-cem": "0.8.1", "wait-on": "7.2.0" }, diff --git a/packages/auth/package.json b/packages/auth/package.json index a68206dd6c2..7b2fa1b7a9c 100644 --- a/packages/auth/package.json +++ b/packages/auth/package.json @@ -42,10 +42,10 @@ "homepage": "https://github.com/coveo/ui-kit/packages/auth#readme", "devDependencies": { "@coveo/release": "1.0.0", - "rimraf": "5.0.9", - "vite": "5.3.5", + "rimraf": "5.0.10", + "vite": "5.4.11", "jest": "29.7.0", - "ts-jest": "29.2.3" + "ts-jest": "29.2.5" }, "engines": { "node": "^20.9.0 || ^22.11.0" diff --git a/packages/bueno/package.json b/packages/bueno/package.json index 6b87cb0c130..8927eccc1bc 100644 --- a/packages/bueno/package.json +++ b/packages/bueno/package.json @@ -32,7 +32,7 @@ "devDependencies": { "@coveo/release": "1.0.0", "jest": "29.7.0", - "ts-jest": "29.2.3" + "ts-jest": "29.2.5" }, "engines": { "node": "^20.9.0 || ^22.11.0" diff --git a/packages/headless-react/package.json b/packages/headless-react/package.json index dec49867f34..dcf39948f90 100644 --- a/packages/headless-react/package.json +++ b/packages/headless-react/package.json @@ -39,13 +39,13 @@ "devDependencies": { "@coveo/release": "1.0.0", "@testing-library/react": "14.3.1", - "@typescript-eslint/eslint-plugin": "7.17.0", + "@typescript-eslint/eslint-plugin": "7.18.0", "eslint-plugin-react": "7.35.0", - "eslint-plugin-testing-library": "6.2.2", + "eslint-plugin-testing-library": "6.4.0", "gts": "5.3.1", - "publint": "0.2.9", - "rimraf": "5.0.9", - "typescript": "5.4.5", + "publint": "0.2.12", + "rimraf": "5.0.10", + "typescript": "5.6.3", "vitest": "2.1.1" }, "peerDependencies": { diff --git a/packages/headless/doc-parser/package.json b/packages/headless/doc-parser/package.json index 2cd2b80d94b..a514c81e13a 100644 --- a/packages/headless/doc-parser/package.json +++ b/packages/headless/doc-parser/package.json @@ -1,7 +1,7 @@ { "type": "commonjs", "dependencies": { - "@microsoft/api-extractor-model": "7.29.3", + "@microsoft/api-extractor-model": "7.29.8", "@microsoft/tsdoc": "0.15.0" } } diff --git a/packages/headless/package.json b/packages/headless/package.json index ddcadbde29d..078da97ecfe 100644 --- a/packages/headless/package.json +++ b/packages/headless/package.json @@ -157,13 +157,13 @@ }, "dependencies": { "@coveo/bueno": "1.0.6", - "@coveo/relay": "0.7.10", - "@coveo/relay-event-types": "12.0.1", + "@coveo/relay": "0.8.1", + "@coveo/relay-event-types": "12.4.0", "@microsoft/fetch-event-source": "2.0.1", "@reduxjs/toolkit": "2.2.7", - "abortcontroller-polyfill": "1.7.5", + "abortcontroller-polyfill": "1.7.6", "coveo.analytics": "2.30.42", - "dayjs": "1.11.12", + "dayjs": "1.11.13", "exponential-backoff": "3.1.0", "fast-equals": "5.0.1", "navigator.sendbeacon": "0.0.20", @@ -174,11 +174,11 @@ }, "devDependencies": { "@coveo/release": "1.0.0", - "@microsoft/api-extractor": "7.47.3", - "@microsoft/api-extractor-model": "7.29.3", + "@microsoft/api-extractor": "7.47.11", + "@microsoft/api-extractor-model": "7.29.8", "@microsoft/tsdoc": "0.15.0", "esbuild-plugin-alias-path": "2.0.2", - "eslint-plugin-canonical": "4.18.0", + "eslint-plugin-canonical": "4.18.1", "execa": "8.0.1", "install": "0.13.0", "ts-node": "10.9.2", diff --git a/packages/quantic/package.json b/packages/quantic/package.json index d0f2018a809..89a7aa58080 100644 --- a/packages/quantic/package.json +++ b/packages/quantic/package.json @@ -48,7 +48,7 @@ "dependencies": { "@coveo/bueno": "1.0.6", "@coveo/headless": "3.10.0", - "dompurify": "3.1.6", + "dompurify": "3.2.0", "marked": "12.0.2", "fs-extra": "11.2.0" }, @@ -56,36 +56,36 @@ "node": "^20.9.0 || ^22.11.0" }, "devDependencies": { - "@babel/cli": "7.25.6", - "@babel/plugin-transform-async-to-generator": "7.24.7", + "@babel/cli": "7.25.9", + "@babel/plugin-transform-async-to-generator": "7.25.9", "@ckeditor/jsdoc-plugins": "39.9.1", - "@coveo/relay-event-types": "12.0.1", + "@coveo/relay-event-types": "12.4.0", "@coveo/release": "1.0.0", "@lwc/compiler": "5.3.0", "@lwc/eslint-plugin-lwc": "1.8.2", "@octokit/graphql": "8.1.1", "@octokit/graphql-schema": "15.25.0", - "@playwright/test": "1.48.1", + "@playwright/test": "1.48.2", "@salesforce/eslint-config-lwc": "3.6.0", "@salesforce/eslint-plugin-lightning": "1.0.0", "@salesforce/sfdx-lwc-jest": "5.1.0", - "@types/node": "20.14.12", + "@types/node": "20.17.6", "@types/strip-color": "0.1.2", "@types/wait-on": "5.3.4", "chalk": "4.1.2", "change-case": "4.1.2", - "cypress": "13.13.1", + "cypress": "13.15.2", "cypress-real-events": "1.13.0", - "cypress-repeat": "2.3.5", + "cypress-repeat": "2.3.7", "dotenv": "16.4.5", - "eslint-plugin-jest": "28.6.0", + "eslint-plugin-jest": "28.9.0", "jest": "29.7.0", "jest-junit": "16.0.0", - "jsdoc": "4.0.3", + "jsdoc": "4.0.4", "jsdoc-tsimport-plugin": "1.0.5", "mkdirp": "^3.0.0", "ncp": "2.0.0", - "prettier-plugin-apex": "2.1.4", + "prettier-plugin-apex": "2.2.2", "strip-color": "0.1.0", "ts-node": "10.9.2", "wait-on": "7.2.0", diff --git a/packages/samples/angular/package.json b/packages/samples/angular/package.json index fe2a4fff047..90891427b09 100644 --- a/packages/samples/angular/package.json +++ b/packages/samples/angular/package.json @@ -21,20 +21,20 @@ "@angular/router": "17.3.12", "@coveo/atomic-angular": "3.2.6", "rxjs": "7.8.1", - "tslib": "2.6.3", - "zone.js": "0.14.8" + "tslib": "2.8.1", + "zone.js": "0.15.0" }, "devDependencies": { "@angular-devkit/build-angular": "17.3.9", "@angular/cli": "17.3.9", "@angular/compiler-cli": "17.3.12", - "@types/node": "20.14.12", + "@types/node": "20.17.6", "@typescript-eslint/eslint-plugin": "^7.0.0", - "cypress": "13.13.1", - "cypress-repeat": "2.3.5", + "cypress": "13.15.2", + "cypress-repeat": "2.3.7", "gts": "5.3.1", "jest": "29.7.0", "ncp": "2.0.0", - "typescript": "5.4.5" + "typescript": "5.6.3" } } diff --git a/packages/samples/atomic-next/package.json b/packages/samples/atomic-next/package.json index 09b68b511e0..40bd951119b 100644 --- a/packages/samples/atomic-next/package.json +++ b/packages/samples/atomic-next/package.json @@ -7,18 +7,18 @@ "@coveo/atomic": "3.11.1", "@coveo/atomic-react": "3.2.6", "@coveo/headless": "3.10.0", - "next": "14.2.5", + "next": "14.2.18", "react": "18.3.1", "react-dom": "18.3.1" }, "devDependencies": { - "@types/node": "20.14.12", + "@types/node": "20.17.6", "@types/react": "18.3.3", "@types/react-dom": "18.3.0", - "cypress": "13.13.1", - "cypress-repeat": "2.3.5", + "cypress": "13.15.2", + "cypress-repeat": "2.3.7", "ncp": "2.0.0", - "typescript": "5.4.5" + "typescript": "5.6.3" }, "scripts": { "build": "nx build", diff --git a/packages/samples/atomic-react/package.json b/packages/samples/atomic-react/package.json index 9774383f05b..8f77f75fd5a 100644 --- a/packages/samples/atomic-react/package.json +++ b/packages/samples/atomic-react/package.json @@ -14,18 +14,18 @@ "@types/react": "18.3.3", "@types/react-dom": "18.3.0", "@typescript-eslint/eslint-plugin": "^7.0.0", - "css-loader": "7.1.0", - "cypress": "13.13.1", - "cypress-repeat": "2.3.5", + "css-loader": "6.11.0", + "cypress": "13.15.2", + "cypress-repeat": "2.3.7", "eslint-plugin-react": "7.35.0", "gts": "5.3.1", "ncp": "2.0.0", "style-loader": "4.0.0", "ts-loader": "9.5.1", - "typescript": "5.4.5", + "typescript": "5.6.3", "webpack": "^5.83.1", "webpack-cli": "5.1.4", - "webpack-dev-server": "5.0.4" + "webpack-dev-server": "5.1.0" }, "scripts": { "build": "nx build", diff --git a/packages/samples/headless-commerce-react/package.json b/packages/samples/headless-commerce-react/package.json index 39b0ee72c35..8fcc8fd6f93 100644 --- a/packages/samples/headless-commerce-react/package.json +++ b/packages/samples/headless-commerce-react/package.json @@ -28,12 +28,12 @@ ] }, "devDependencies": { - "@playwright/test": "1.47.2", - "@testing-library/jest-dom": "6.5.0", + "@playwright/test": "1.48.2", + "@testing-library/jest-dom": "6.6.3", "@testing-library/react": "16.0.0", "@vitejs/plugin-react": "4.3.1", "local-web-server": "5.4.0", - "vite": "5.4.2", + "vite": "5.4.11", "vite-plugin-static-copy": "1.0.6", "vitest": "2.0.5" } diff --git a/packages/samples/headless-react/package.json b/packages/samples/headless-react/package.json index aea01fce854..d5a6052e34a 100644 --- a/packages/samples/headless-react/package.json +++ b/packages/samples/headless-react/package.json @@ -10,23 +10,23 @@ "dependencies": { "@coveo/auth": "2.0.4", "@coveo/headless": "3.10.0", - "@testing-library/jest-dom": "6.4.8", + "@testing-library/jest-dom": "6.6.3", "@testing-library/react": "14.3.1", "@testing-library/user-event": "14.5.2", "@types/escape-html": "1.0.4", "@types/express": "4.17.21", - "@types/node": "20.14.12", + "@types/node": "20.17.6", "@types/react": "18.3.3", "@types/react-dom": "18.3.0", "@types/react-router-dom": "5.3.3", - "dayjs": "1.11.12", + "dayjs": "1.11.13", "escape-html": "1.0.3", - "express": "4.20.0", - "filesize": "10.1.4", + "express": "4.21.1", + "filesize": "10.1.6", "react": "18.3.1", "react-dom": "18.3.1", "react-router-dom": "6.26.0", - "typescript": "5.4.5", + "typescript": "5.6.3", "web-vitals": "3.5.2" }, "scripts": { @@ -50,13 +50,13 @@ ] }, "devDependencies": { - "@typescript-eslint/eslint-plugin": "8.7.0", + "@typescript-eslint/eslint-plugin": "7.18.0", "@vitejs/plugin-react": "4.3.2", - "cypress": "13.13.1", - "cypress-repeat": "2.3.5", + "cypress": "13.15.2", + "cypress-repeat": "2.3.7", "gts": "5.3.1", "patch-package": "6.4.7", - "vite": "5.4.8", + "vite": "5.4.11", "vitest": "2.1.1" } } diff --git a/packages/samples/headless-ssr-commerce/package.json b/packages/samples/headless-ssr-commerce/package.json index ab8dacbbf82..0871c1f386a 100644 --- a/packages/samples/headless-ssr-commerce/package.json +++ b/packages/samples/headless-ssr-commerce/package.json @@ -12,17 +12,17 @@ }, "dependencies": { "@coveo/headless-react": "2.1.2", - "next": "14.2.5", + "next": "14.2.18", "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { - "@types/node": "20.14.12", + "@types/node": "20.17.6", "@types/react": "18.3.3", "@types/react-dom": "18.3.0", "eslint": "8.57", - "eslint-config-next": "14.2.5", + "eslint-config-next": "14.2.18", "jsdom": "25.0.1", - "typescript": "5.4.5" + "typescript": "5.6.3" } } diff --git a/packages/samples/headless-ssr/app-router/package.json b/packages/samples/headless-ssr/app-router/package.json index d50bf2cfa3f..f526cac3dc8 100644 --- a/packages/samples/headless-ssr/app-router/package.json +++ b/packages/samples/headless-ssr/app-router/package.json @@ -14,16 +14,16 @@ }, "dependencies": { "@coveo/headless-ssr-samples-common": "0.0.0", - "next": "14.2.5", + "next": "14.2.18", "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { - "@types/node": "20.14.12", + "@types/node": "20.17.6", "@types/react": "^18.2.0", "@types/react-dom": "^18.2.0", "eslint": "8.57.0", - "eslint-config-next": "14.2.5", - "typescript": "5.4.5" + "eslint-config-next": "14.2.18", + "typescript": "5.6.3" } } diff --git a/packages/samples/headless-ssr/package.json b/packages/samples/headless-ssr/package.json index 07c0f370e0f..86e61fab15e 100644 --- a/packages/samples/headless-ssr/package.json +++ b/packages/samples/headless-ssr/package.json @@ -10,19 +10,19 @@ "dependencies": { "@coveo/headless-react": "2.1.2", "@coveo/headless": "3.10.0", - "next": "14.2.5", + "next": "14.2.18", "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { - "@types/node": "20.14.12", + "@types/node": "20.17.6", "@types/react": "18.3.3", "@types/react-dom": "18.3.0", "eslint": "8.57.0", "eslint-config-react-app": "7.0.1", - "typescript": "5.4.5", - "cypress": "13.13.1", - "cypress-repeat": "2.3.5", + "typescript": "5.6.3", + "cypress": "13.15.2", + "cypress-repeat": "2.3.7", "cypress-web-vitals": "4.1.2" } } diff --git a/packages/samples/headless-ssr/pages-router/package.json b/packages/samples/headless-ssr/pages-router/package.json index 186a214049d..5c70df30d97 100644 --- a/packages/samples/headless-ssr/pages-router/package.json +++ b/packages/samples/headless-ssr/pages-router/package.json @@ -14,16 +14,16 @@ }, "dependencies": { "@coveo/headless-ssr-samples-common": "0.0.0", - "next": "14.2.5", + "next": "14.2.18", "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { - "@types/node": "20.14.12", + "@types/node": "20.17.6", "@types/react": "^18.2.0", "@types/react-dom": "^18.2.0", "eslint": "8.57.0", - "eslint-config-next": "14.2.5", - "typescript": "5.4.5" + "eslint-config-next": "14.2.18", + "typescript": "5.6.3" } } diff --git a/packages/samples/iife/package.json b/packages/samples/iife/package.json index d7b45445eca..b977165694c 100644 --- a/packages/samples/iife/package.json +++ b/packages/samples/iife/package.json @@ -11,7 +11,7 @@ "e2e": "cypress run --browser chrome" }, "dependencies": { - "@babel/standalone": "7.25.0", + "@babel/standalone": "7.26.2", "@coveo/atomic": "3.11.1", "@coveo/atomic-hosted-page": "1.0.14", "@coveo/atomic-react": "3.2.6", @@ -20,11 +20,11 @@ "react-dom": "18.3.1" }, "devDependencies": { - "cypress": "13.13.1", - "cypress-repeat": "2.3.5", + "cypress": "13.15.2", + "cypress-repeat": "2.3.7", "ncp": "2.0.0", "resolve": "1.22.8", - "rimraf": "5.0.9", - "serve": "14.2.3" + "rimraf": "5.0.10", + "serve": "14.2.4" } } diff --git a/packages/samples/stencil/package.json b/packages/samples/stencil/package.json index 08925ea4c9e..05115d0487c 100644 --- a/packages/samples/stencil/package.json +++ b/packages/samples/stencil/package.json @@ -16,8 +16,8 @@ }, "devDependencies": { "@typescript-eslint/eslint-plugin": "^7.0.0", - "cypress": "13.13.1", - "cypress-repeat": "2.3.5", + "cypress": "13.15.2", + "cypress-repeat": "2.3.7", "gts": "5.3.1", "rollup-plugin-html": "0.2.1" } diff --git a/packages/samples/vuejs/package.json b/packages/samples/vuejs/package.json index 4be0b74e271..3a46c2d503b 100644 --- a/packages/samples/vuejs/package.json +++ b/packages/samples/vuejs/package.json @@ -17,11 +17,11 @@ }, "devDependencies": { "@vitejs/plugin-vue": "^5.0.3", - "typescript": "5.4.5", + "typescript": "5.6.3", "vite": "^5.1.0", "vue-tsc": "^2.0.0", - "cypress": "13.13.1", - "cypress-repeat": "2.3.5", + "cypress": "13.15.2", + "cypress-repeat": "2.3.7", "ncp": "2.0.0" } } diff --git a/utils/release/package.json b/utils/release/package.json index 29bf18ab877..98233097536 100644 --- a/utils/release/package.json +++ b/utils/release/package.json @@ -5,9 +5,9 @@ "version": "1.0.0", "type": "module", "dependencies": { - "@coveo/semantic-monorepo-tools": "2.5.0", + "@coveo/semantic-monorepo-tools": "2.5.4", "@npmcli/arborist": "7.5.4", - "@octokit/auth-app": "6.1.1", + "@octokit/auth-app": "6.1.3", "async-retry": "1.3.3", "conventional-changelog-conventionalcommits": "8.0.0", "dependency-graph": "1.0.0", @@ -16,10 +16,10 @@ "ts-dedent": "2.2.0" }, "devDependencies": { - "@types/async-retry": "1.4.8", + "@types/async-retry": "1.4.9", "@types/conventional-changelog-writer": "^4.0.2", - "@types/npmcli__arborist": "5.6.9", - "typescript": "5.4.5" + "@types/npmcli__arborist": "5.6.11", + "typescript": "5.6.3" }, "scripts": { "promote-npm-prod": "./promote-npm-tag-to-latest.mjs",