diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index c7717c65b08..578260256ab 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -38,7 +38,7 @@ runs: # JavaScript for monorepo and tooling - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version-file: .nvmrc cache: yarn @@ -50,7 +50,7 @@ runs: # Csharp - name: Install dotnet if: ${{ inputs.language == 'csharp' }} - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: ${{ inputs.version }} @@ -69,7 +69,7 @@ runs: # Golang - name: Install golang if: ${{ inputs.language == 'go' }} - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: cache-dependency-path: clients/algoliasearch-client-go/go.sum go-version: ${{ inputs.version }} @@ -144,7 +144,7 @@ runs: shell: bash run: pipx install poetry==2 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 if: ${{ inputs.language == 'python' }} with: python-version: ${{ inputs.version }} diff --git a/.github/workflows/issue.yml b/.github/workflows/issue.yml index 172c4400793..1c5a5339293 100644 --- a/.github/workflows/issue.yml +++ b/.github/workflows/issue.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create ticket - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const action = context.payload.action; diff --git a/.github/workflows/pr-title.yml b/.github/workflows/pr-title.yml index 5ca5bbb117a..a68ba482d1f 100644 --- a/.github/workflows/pr-title.yml +++ b/.github/workflows/pr-title.yml @@ -14,6 +14,6 @@ jobs: fetch-depth: 0 - name: Pull Request title rules - uses: Slashgear/action-check-pr-title@v4.3.0 + uses: Slashgear/action-check-pr-title@v5.0.1 with: regexp: '^(docs|chore|snippets|guides)|((?:feat|fix|docs|style|refactor|perf|test|build|ci|chore|revert)\((?:clients|generators|playground|csharp|dart|go|java|javascript|kotlin|php|python|ruby|scala|swift|cts|specs|scripts|ci|templates|deps)\)): .+' diff --git a/clients/algoliasearch-client-csharp/.github/workflows/issue.yml b/clients/algoliasearch-client-csharp/.github/workflows/issue.yml index 172c4400793..1c5a5339293 100644 --- a/clients/algoliasearch-client-csharp/.github/workflows/issue.yml +++ b/clients/algoliasearch-client-csharp/.github/workflows/issue.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create ticket - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const action = context.payload.action; diff --git a/clients/algoliasearch-client-csharp/.github/workflows/release.yml b/clients/algoliasearch-client-csharp/.github/workflows/release.yml index b94afb87ceb..711e44f0983 100644 --- a/clients/algoliasearch-client-csharp/.github/workflows/release.yml +++ b/clients/algoliasearch-client-csharp/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: global-json-file: global.json diff --git a/clients/algoliasearch-client-dart/.github/workflows/issue.yml b/clients/algoliasearch-client-dart/.github/workflows/issue.yml index 172c4400793..1c5a5339293 100644 --- a/clients/algoliasearch-client-dart/.github/workflows/issue.yml +++ b/clients/algoliasearch-client-dart/.github/workflows/issue.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create ticket - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const action = context.payload.action; diff --git a/clients/algoliasearch-client-go/.github/workflows/issue.yml b/clients/algoliasearch-client-go/.github/workflows/issue.yml index 172c4400793..1c5a5339293 100644 --- a/clients/algoliasearch-client-go/.github/workflows/issue.yml +++ b/clients/algoliasearch-client-go/.github/workflows/issue.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create ticket - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const action = context.payload.action; diff --git a/clients/algoliasearch-client-java/.github/workflows/issue.yml b/clients/algoliasearch-client-java/.github/workflows/issue.yml index 172c4400793..1c5a5339293 100644 --- a/clients/algoliasearch-client-java/.github/workflows/issue.yml +++ b/clients/algoliasearch-client-java/.github/workflows/issue.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create ticket - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const action = context.payload.action; diff --git a/clients/algoliasearch-client-javascript/.github/workflows/issue.yml b/clients/algoliasearch-client-javascript/.github/workflows/issue.yml index 172c4400793..1c5a5339293 100644 --- a/clients/algoliasearch-client-javascript/.github/workflows/issue.yml +++ b/clients/algoliasearch-client-javascript/.github/workflows/issue.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create ticket - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const action = context.payload.action; diff --git a/clients/algoliasearch-client-javascript/.github/workflows/release.yml b/clients/algoliasearch-client-javascript/.github/workflows/release.yml index 3a566c333a7..b3f7e6961d2 100644 --- a/clients/algoliasearch-client-javascript/.github/workflows/release.yml +++ b/clients/algoliasearch-client-javascript/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: fetch-depth: 0 - name: Install Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version-file: .nvmrc cache: yarn diff --git a/clients/algoliasearch-client-javascript/package.json b/clients/algoliasearch-client-javascript/package.json index 226008b43b2..42dbad29b8c 100644 --- a/clients/algoliasearch-client-javascript/package.json +++ b/clients/algoliasearch-client-javascript/package.json @@ -15,7 +15,7 @@ "test:bundle": "lerna run test:bundle --verbose --include-dependencies" }, "devDependencies": { - "@types/node": "22.18.0", + "@types/node": "22.18.1", "bundlewatch": "0.4.1", "execa": "9.6.0", "lerna": "8.2.3", diff --git a/clients/algoliasearch-client-javascript/packages/abtesting/package.json b/clients/algoliasearch-client-javascript/packages/abtesting/package.json index ba343056acc..0501ca02dd1 100644 --- a/clients/algoliasearch-client-javascript/packages/abtesting/package.json +++ b/clients/algoliasearch-client-javascript/packages/abtesting/package.json @@ -56,7 +56,7 @@ }, "devDependencies": { "@arethetypeswrong/cli": "0.18.2", - "@types/node": "22.18.0", + "@types/node": "22.18.1", "publint": "0.3.12", "rollup": "4.41.0", "tsup": "8.5.0", diff --git a/clients/algoliasearch-client-javascript/packages/advanced-personalization/package.json b/clients/algoliasearch-client-javascript/packages/advanced-personalization/package.json index aca5da1a452..43710a55d83 100644 --- a/clients/algoliasearch-client-javascript/packages/advanced-personalization/package.json +++ b/clients/algoliasearch-client-javascript/packages/advanced-personalization/package.json @@ -56,7 +56,7 @@ }, "devDependencies": { "@arethetypeswrong/cli": "0.18.2", - "@types/node": "22.18.0", + "@types/node": "22.18.1", "publint": "0.3.12", "rollup": "4.41.0", "tsup": "8.5.0", diff --git a/clients/algoliasearch-client-javascript/packages/client-common/package.json b/clients/algoliasearch-client-javascript/packages/client-common/package.json index da3c0310b6f..f8308af673d 100644 --- a/clients/algoliasearch-client-javascript/packages/client-common/package.json +++ b/clients/algoliasearch-client-javascript/packages/client-common/package.json @@ -36,7 +36,7 @@ }, "devDependencies": { "@arethetypeswrong/cli": "0.18.2", - "@types/node": "22.18.0", + "@types/node": "22.18.1", "jsdom": "26.1.0", "publint": "0.3.12", "ts-node": "10.9.2", diff --git a/clients/algoliasearch-client-javascript/packages/client-composition/package.json b/clients/algoliasearch-client-javascript/packages/client-composition/package.json index 60b509d36ba..fed217f7d19 100644 --- a/clients/algoliasearch-client-javascript/packages/client-composition/package.json +++ b/clients/algoliasearch-client-javascript/packages/client-composition/package.json @@ -56,7 +56,7 @@ }, "devDependencies": { "@arethetypeswrong/cli": "0.18.2", - "@types/node": "22.18.0", + "@types/node": "22.18.1", "publint": "0.3.12", "rollup": "4.41.0", "tsup": "8.5.0", diff --git a/clients/algoliasearch-client-javascript/packages/composition/package.json b/clients/algoliasearch-client-javascript/packages/composition/package.json index 31a019ed848..419890542c6 100644 --- a/clients/algoliasearch-client-javascript/packages/composition/package.json +++ b/clients/algoliasearch-client-javascript/packages/composition/package.json @@ -56,7 +56,7 @@ }, "devDependencies": { "@arethetypeswrong/cli": "0.18.2", - "@types/node": "22.18.0", + "@types/node": "22.18.1", "publint": "0.3.12", "rollup": "4.41.0", "tsup": "8.5.0", diff --git a/clients/algoliasearch-client-javascript/packages/logger-console/package.json b/clients/algoliasearch-client-javascript/packages/logger-console/package.json index 0b903c0229f..53e1729ded8 100644 --- a/clients/algoliasearch-client-javascript/packages/logger-console/package.json +++ b/clients/algoliasearch-client-javascript/packages/logger-console/package.json @@ -36,7 +36,7 @@ }, "devDependencies": { "@arethetypeswrong/cli": "0.18.2", - "@types/node": "22.18.0", + "@types/node": "22.18.1", "jsdom": "26.1.0", "publint": "0.3.12", "ts-node": "10.9.2", diff --git a/clients/algoliasearch-client-javascript/packages/requester-browser-xhr/package.json b/clients/algoliasearch-client-javascript/packages/requester-browser-xhr/package.json index 7ec1a651b31..fc6a8917c65 100644 --- a/clients/algoliasearch-client-javascript/packages/requester-browser-xhr/package.json +++ b/clients/algoliasearch-client-javascript/packages/requester-browser-xhr/package.json @@ -36,7 +36,7 @@ }, "devDependencies": { "@arethetypeswrong/cli": "0.18.2", - "@types/node": "22.18.0", + "@types/node": "22.18.1", "jsdom": "26.1.0", "publint": "0.3.12", "tsup": "8.5.0", diff --git a/clients/algoliasearch-client-javascript/packages/requester-fetch/package.json b/clients/algoliasearch-client-javascript/packages/requester-fetch/package.json index dbd4b2ae42c..d471a100ecd 100644 --- a/clients/algoliasearch-client-javascript/packages/requester-fetch/package.json +++ b/clients/algoliasearch-client-javascript/packages/requester-fetch/package.json @@ -52,7 +52,7 @@ }, "devDependencies": { "@arethetypeswrong/cli": "0.18.2", - "@types/node": "22.18.0", + "@types/node": "22.18.1", "cross-fetch": "4.1.0", "nock": "14.0.10", "publint": "0.3.12", diff --git a/clients/algoliasearch-client-javascript/packages/requester-node-http/package.json b/clients/algoliasearch-client-javascript/packages/requester-node-http/package.json index 4510a31c362..5933d32ef45 100644 --- a/clients/algoliasearch-client-javascript/packages/requester-node-http/package.json +++ b/clients/algoliasearch-client-javascript/packages/requester-node-http/package.json @@ -39,7 +39,7 @@ }, "devDependencies": { "@arethetypeswrong/cli": "0.18.2", - "@types/node": "22.18.0", + "@types/node": "22.18.1", "nock": "14.0.10", "publint": "0.3.12", "tsup": "8.5.0", diff --git a/clients/algoliasearch-client-javascript/packages/requester-testing/package.json b/clients/algoliasearch-client-javascript/packages/requester-testing/package.json index f2f972d4408..3b8ebc2a9b1 100644 --- a/clients/algoliasearch-client-javascript/packages/requester-testing/package.json +++ b/clients/algoliasearch-client-javascript/packages/requester-testing/package.json @@ -50,7 +50,7 @@ }, "devDependencies": { "@arethetypeswrong/cli": "0.18.2", - "@types/node": "22.18.0", + "@types/node": "22.18.1", "publint": "0.3.12", "tsup": "8.5.0", "typescript": "5.9.2" diff --git a/clients/algoliasearch-client-javascript/yarn.lock b/clients/algoliasearch-client-javascript/yarn.lock index f73ade742b9..f0ad4acd8c4 100644 --- a/clients/algoliasearch-client-javascript/yarn.lock +++ b/clients/algoliasearch-client-javascript/yarn.lock @@ -14,7 +14,7 @@ __metadata: "@algolia/requester-fetch": "npm:5.37.0" "@algolia/requester-node-http": "npm:5.37.0" "@arethetypeswrong/cli": "npm:0.18.2" - "@types/node": "npm:22.18.0" + "@types/node": "npm:22.18.1" publint: "npm:0.3.12" rollup: "npm:4.41.0" tsup: "npm:8.5.0" @@ -31,7 +31,7 @@ __metadata: "@algolia/requester-fetch": "npm:5.37.0" "@algolia/requester-node-http": "npm:5.37.0" "@arethetypeswrong/cli": "npm:0.18.2" - "@types/node": "npm:22.18.0" + "@types/node": "npm:22.18.1" publint: "npm:0.3.12" rollup: "npm:4.41.0" tsup: "npm:8.5.0" @@ -78,7 +78,7 @@ __metadata: resolution: "@algolia/client-common@workspace:packages/client-common" dependencies: "@arethetypeswrong/cli": "npm:0.18.2" - "@types/node": "npm:22.18.0" + "@types/node": "npm:22.18.1" jsdom: "npm:26.1.0" publint: "npm:0.3.12" ts-node: "npm:10.9.2" @@ -97,7 +97,7 @@ __metadata: "@algolia/requester-fetch": "npm:5.37.0" "@algolia/requester-node-http": "npm:5.37.0" "@arethetypeswrong/cli": "npm:0.18.2" - "@types/node": "npm:22.18.0" + "@types/node": "npm:22.18.1" publint: "npm:0.3.12" rollup: "npm:4.41.0" tsup: "npm:8.5.0" @@ -182,7 +182,7 @@ __metadata: "@algolia/requester-fetch": "npm:5.37.0" "@algolia/requester-node-http": "npm:5.37.0" "@arethetypeswrong/cli": "npm:0.18.2" - "@types/node": "npm:22.18.0" + "@types/node": "npm:22.18.1" publint: "npm:0.3.12" rollup: "npm:4.41.0" tsup: "npm:8.5.0" @@ -213,7 +213,7 @@ __metadata: dependencies: "@algolia/client-common": "npm:5.37.0" "@arethetypeswrong/cli": "npm:0.18.2" - "@types/node": "npm:22.18.0" + "@types/node": "npm:22.18.1" jsdom: "npm:26.1.0" publint: "npm:0.3.12" ts-node: "npm:10.9.2" @@ -263,7 +263,7 @@ __metadata: dependencies: "@algolia/client-common": "npm:5.37.0" "@arethetypeswrong/cli": "npm:0.18.2" - "@types/node": "npm:22.18.0" + "@types/node": "npm:22.18.1" jsdom: "npm:26.1.0" publint: "npm:0.3.12" tsup: "npm:8.5.0" @@ -279,7 +279,7 @@ __metadata: dependencies: "@algolia/client-common": "npm:5.37.0" "@arethetypeswrong/cli": "npm:0.18.2" - "@types/node": "npm:22.18.0" + "@types/node": "npm:22.18.1" cross-fetch: "npm:4.1.0" nock: "npm:14.0.10" publint: "npm:0.3.12" @@ -295,7 +295,7 @@ __metadata: dependencies: "@algolia/client-common": "npm:5.37.0" "@arethetypeswrong/cli": "npm:0.18.2" - "@types/node": "npm:22.18.0" + "@types/node": "npm:22.18.1" nock: "npm:14.0.10" publint: "npm:0.3.12" tsup: "npm:8.5.0" @@ -313,7 +313,7 @@ __metadata: "@algolia/requester-fetch": "npm:5.37.0" "@algolia/requester-node-http": "npm:5.37.0" "@arethetypeswrong/cli": "npm:0.18.2" - "@types/node": "npm:22.18.0" + "@types/node": "npm:22.18.1" publint: "npm:0.3.12" tsup: "npm:8.5.0" typescript: "npm:5.9.2" @@ -2303,6 +2303,15 @@ __metadata: languageName: node linkType: hard +"@types/node@npm:22.18.1": + version: 22.18.1 + resolution: "@types/node@npm:22.18.1" + dependencies: + undici-types: "npm:~6.21.0" + checksum: 10/da67f3c3fa4107fbca704e7a71fee36c27f3b6f44af1c466cd5c71eab76a9ffcd6a16f3b97d1e757b9763f1fa1085eebb60cb648c272e36794aca7305b2a15d9 + languageName: node + linkType: hard + "@types/normalize-package-data@npm:^2.4.0": version: 2.4.4 resolution: "@types/normalize-package-data@npm:2.4.4" @@ -2509,7 +2518,7 @@ __metadata: version: 0.0.0-use.local resolution: "algoliasearch-client-javascript@workspace:." dependencies: - "@types/node": "npm:22.18.0" + "@types/node": "npm:22.18.1" bundlewatch: "npm:0.4.1" execa: "npm:9.6.0" lerna: "npm:8.2.3" diff --git a/clients/algoliasearch-client-kotlin/.github/workflows/issue.yml b/clients/algoliasearch-client-kotlin/.github/workflows/issue.yml index 172c4400793..1c5a5339293 100644 --- a/clients/algoliasearch-client-kotlin/.github/workflows/issue.yml +++ b/clients/algoliasearch-client-kotlin/.github/workflows/issue.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create ticket - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const action = context.payload.action; diff --git a/clients/algoliasearch-client-php/.github/workflows/issue.yml b/clients/algoliasearch-client-php/.github/workflows/issue.yml index 172c4400793..1c5a5339293 100644 --- a/clients/algoliasearch-client-php/.github/workflows/issue.yml +++ b/clients/algoliasearch-client-php/.github/workflows/issue.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create ticket - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const action = context.payload.action; diff --git a/clients/algoliasearch-client-python/.github/workflows/issue.yml b/clients/algoliasearch-client-python/.github/workflows/issue.yml index 172c4400793..1c5a5339293 100644 --- a/clients/algoliasearch-client-python/.github/workflows/issue.yml +++ b/clients/algoliasearch-client-python/.github/workflows/issue.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create ticket - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const action = context.payload.action; diff --git a/clients/algoliasearch-client-python/.github/workflows/release.yml b/clients/algoliasearch-client-python/.github/workflows/release.yml index 12cbc3ea10d..2e3cd296ff0 100644 --- a/clients/algoliasearch-client-python/.github/workflows/release.yml +++ b/clients/algoliasearch-client-python/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: 3.13.7 diff --git a/clients/algoliasearch-client-ruby/.github/workflows/issue.yml b/clients/algoliasearch-client-ruby/.github/workflows/issue.yml index 172c4400793..1c5a5339293 100644 --- a/clients/algoliasearch-client-ruby/.github/workflows/issue.yml +++ b/clients/algoliasearch-client-ruby/.github/workflows/issue.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create ticket - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const action = context.payload.action; diff --git a/clients/algoliasearch-client-scala/.github/workflows/issue.yml b/clients/algoliasearch-client-scala/.github/workflows/issue.yml index 172c4400793..1c5a5339293 100644 --- a/clients/algoliasearch-client-scala/.github/workflows/issue.yml +++ b/clients/algoliasearch-client-scala/.github/workflows/issue.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create ticket - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const action = context.payload.action; diff --git a/clients/algoliasearch-client-swift/.github/workflows/issue.yml b/clients/algoliasearch-client-swift/.github/workflows/issue.yml index 172c4400793..1c5a5339293 100644 --- a/clients/algoliasearch-client-swift/.github/workflows/issue.yml +++ b/clients/algoliasearch-client-swift/.github/workflows/issue.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create ticket - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const action = context.payload.action; diff --git a/docs/guides/csharp/.config/dotnet-tools.json b/docs/guides/csharp/.config/dotnet-tools.json index 2f90d5f9dca..48e7a97b5ec 100644 --- a/docs/guides/csharp/.config/dotnet-tools.json +++ b/docs/guides/csharp/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "csharpier": { - "version": "1.1.1", + "version": "1.1.2", "commands": [ "csharpier" ] diff --git a/docs/snippets/csharp/.config/dotnet-tools.json b/docs/snippets/csharp/.config/dotnet-tools.json index 2f90d5f9dca..48e7a97b5ec 100644 --- a/docs/snippets/csharp/.config/dotnet-tools.json +++ b/docs/snippets/csharp/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "csharpier": { - "version": "1.1.1", + "version": "1.1.2", "commands": [ "csharpier" ] diff --git a/package.json b/package.json index b9143d48211..2e297ef6c19 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "eslint-plugin-json": "4.0.1", "eslint-plugin-yml": "1.18.0", "husky": "9.1.7", - "lint-staged": "16.1.5", + "lint-staged": "16.1.6", "oxlint": "1.14.0", "prettier": "3.6.2", "prettier-plugin-java": "2.7.4", diff --git a/playground/go/go.mod b/playground/go/go.mod index 31d4d035acb..66a66078729 100644 --- a/playground/go/go.mod +++ b/playground/go/go.mod @@ -1,6 +1,6 @@ module playground -go 1.23.0 +go 1.21.11 toolchain go1.24.1 diff --git a/playground/java/build.gradle b/playground/java/build.gradle index b1accc09bdc..786565d8863 100644 --- a/playground/java/build.gradle +++ b/playground/java/build.gradle @@ -9,7 +9,7 @@ repositories { dependencies { implementation 'io.github.cdimascio:dotenv-java:3.0.1' - implementation 'com.algolia:algoliasearch:4.24.0' + implementation 'com.algolia:algoliasearch:4.25.0' } group = 'com.algolia' diff --git a/playground/javascript/browser/package.json b/playground/javascript/browser/package.json index d453843941b..39cfef90f0b 100644 --- a/playground/javascript/browser/package.json +++ b/playground/javascript/browser/package.json @@ -17,17 +17,17 @@ "react-instantsearch": "^7.15.3" }, "devDependencies": { - "@eslint/js": "9.34.0", + "@eslint/js": "9.35.0", "@types/react": "19.1.12", "@types/react-dom": "19.1.9", "@vitejs/plugin-react-swc": "3.11.0", - "eslint": "9.34.0", + "eslint": "9.35.0", "eslint-plugin-react-hooks": "5.2.0", "eslint-plugin-react-refresh": "0.4.20", "globals": "16.1.0", "typescript": "5.9.2", "typescript-eslint": "8.33.0", - "vite": "7.1.3" + "vite": "7.1.4" }, "packageManager": "yarn@4.9.4" } diff --git a/scripts/package.json b/scripts/package.json index 0f0c65c94d9..c2f826ec8ce 100644 --- a/scripts/package.json +++ b/scripts/package.json @@ -28,8 +28,8 @@ "@types/folder-hash": "4.0.4", "@types/fs-extra": "11.0.4", "@types/js-yaml": "4.0.9", - "@types/node": "22.18.0", - "@types/semver": "7.7.0", + "@types/node": "22.18.1", + "@types/semver": "7.7.1", "@types/spinnies": "0.5.3", "chai": "6.0.1", "chalk": "5.6.0", @@ -42,7 +42,7 @@ "fs-extra": "11.3.1", "httpsnippet": "3.0.1", "js-yaml": "4.1.0", - "knip": "5.63.0", + "knip": "5.63.1", "micromatch": "4.0.8", "semver": "7.7.2", "spinnies": "0.5.1", diff --git a/templates/javascript/clients/package.mustache b/templates/javascript/clients/package.mustache index 797fdb29994..237157f588b 100644 --- a/templates/javascript/clients/package.mustache +++ b/templates/javascript/clients/package.mustache @@ -132,13 +132,13 @@ "devDependencies": { {{#isAlgoliasearchClient}} "@algolia/requester-testing": "{{utilsPackageVersion}}", - "@cloudflare/vitest-pool-workers": "0.8.68", + "@cloudflare/vitest-pool-workers": "0.8.70", "@cloudflare/workers-types": "4.20250428.0", "jsdom": "26.1.0", "vitest": "3.2.4", {{/isAlgoliasearchClient}} "@arethetypeswrong/cli": "0.18.2", - "@types/node": "22.18.0", + "@types/node": "22.18.1", "publint": "0.3.12", "rollup": "4.41.0", "tsup": "8.5.0", diff --git a/templates/javascript/tests/package.mustache b/templates/javascript/tests/package.mustache index 295ba62ebe7..19fbed149ce 100644 --- a/templates/javascript/tests/package.mustache +++ b/templates/javascript/tests/package.mustache @@ -12,7 +12,7 @@ "@algolia/requester-testing": "link:../../../clients/algoliasearch-client-javascript/packages/requester-testing" }, "devDependencies": { - "@types/node": "22.18.0", + "@types/node": "22.18.1", "typescript": "5.9.2", "vitest": "3.2.4" } diff --git a/tests/output/go/go.mod b/tests/output/go/go.mod index 63c8b73d09b..ba20b483708 100644 --- a/tests/output/go/go.mod +++ b/tests/output/go/go.mod @@ -1,6 +1,6 @@ module gotests -go 1.22 +go 1.21.11 toolchain go1.23.7 @@ -9,7 +9,7 @@ replace github.com/algolia/algoliasearch-client-go/v4 => ../../../clients/algoli require ( github.com/algolia/algoliasearch-client-go/v4 v4.0.0 github.com/joho/godotenv v1.5.1 - github.com/kinbiko/jsonassert v1.2.0 + github.com/kinbiko/jsonassert v1.1.0 github.com/stretchr/testify v1.11.1 ) diff --git a/tests/output/go/go.sum b/tests/output/go/go.sum index bd01ef63877..c6162c25139 100644 --- a/tests/output/go/go.sum +++ b/tests/output/go/go.sum @@ -2,8 +2,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4= -github.com/kinbiko/jsonassert v1.2.0 h1:+/JthIVXdIrThrOtSN9ry0mNtWKXMWuvxR0nU7gQ+tI= -github.com/kinbiko/jsonassert v1.2.0/go.mod h1:pCc3uudOt+lVAbkji9O0uw8MSVt4s+1ZJ0y8Ux2F1Og= +github.com/kinbiko/jsonassert v1.1.0 h1:AakKgkRFsuzE1FNLYrcxTI7ga5YYcbujOUbSf8l+WmU= +github.com/kinbiko/jsonassert v1.1.0/go.mod h1:QRwBwiAsrcJpjw+L+Q4WS8psLxuUY+HylVZS/4j74TM= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= diff --git a/yarn.lock b/yarn.lock index b4120af971e..a830fc3592a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -96,7 +96,7 @@ __metadata: eslint-plugin-json: "npm:4.0.1" eslint-plugin-yml: "npm:1.18.0" husky: "npm:9.1.7" - lint-staged: "npm:16.1.5" + lint-staged: "npm:16.1.6" oxlint: "npm:1.14.0" prettier: "npm:3.6.2" prettier-plugin-java: "npm:2.7.4" @@ -881,6 +881,17 @@ __metadata: languageName: node linkType: hard +"@eslint-community/eslint-utils@npm:^4.8.0": + version: 4.8.0 + resolution: "@eslint-community/eslint-utils@npm:4.8.0" + dependencies: + eslint-visitor-keys: "npm:^3.4.3" + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + checksum: 10/d5d51162513c05cc5f055482f97336e813706a12d45cfc6c372c1802da7d30e31204eeb8c0ab9de0abc0fe1a3477c14711c3e43f3d58cedb8ade5d953576fa91 + languageName: node + linkType: hard + "@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.12.1, @eslint-community/regexpp@npm:^4.6.1": version: 4.12.1 resolution: "@eslint-community/regexpp@npm:4.12.1" @@ -956,10 +967,10 @@ __metadata: languageName: node linkType: hard -"@eslint/js@npm:9.34.0": - version: 9.34.0 - resolution: "@eslint/js@npm:9.34.0" - checksum: 10/3bbe8423e2d11e0eeb70a79f5cd25b89a8920cade36e479e4288d1e01043b48a0d737f46d8e5dc91c53afad5bc0edc882cc5a5a024ac1ac31b0b7b4d4a9f16c0 +"@eslint/js@npm:9.35.0": + version: 9.35.0 + resolution: "@eslint/js@npm:9.35.0" + checksum: 10/a8764d0592ebe9a4804f8c0dafa7f49dbcdb38cabf30dd50587a3cfa51d898b90a3a0b93975d549f47debdd96b3e21da95081935f74213e45ec8c25f11f2ba1e languageName: node linkType: hard @@ -2432,12 +2443,12 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:22.18.0": - version: 22.18.0 - resolution: "@types/node@npm:22.18.0" +"@types/node@npm:22.18.1": + version: 22.18.1 + resolution: "@types/node@npm:22.18.1" dependencies: undici-types: "npm:~6.21.0" - checksum: 10/c4e4cdac52aae71e120fb4a02a08f774366e8bd6654de9376fb1113fb66cfa2706176b72f188069cdecdb40e5cdde2befa031dc720a0cc0b1e349af9e38492ad + checksum: 10/da67f3c3fa4107fbca704e7a71fee36c27f3b6f44af1c466cd5c71eab76a9ffcd6a16f3b97d1e757b9763f1fa1085eebb60cb648c272e36794aca7305b2a15d9 languageName: node linkType: hard @@ -2473,10 +2484,10 @@ __metadata: languageName: node linkType: hard -"@types/semver@npm:7.7.0": - version: 7.7.0 - resolution: "@types/semver@npm:7.7.0" - checksum: 10/ee4514c6c852b1c38f951239db02f9edeea39f5310fad9396a00b51efa2a2d96b3dfca1ae84c88181ea5b7157c57d32d7ef94edacee36fbf975546396b85ba5b +"@types/semver@npm:7.7.1": + version: 7.7.1 + resolution: "@types/semver@npm:7.7.1" + checksum: 10/8f09e7e6ca3ded67d78ba7a8f7535c8d9cf8ced83c52e7f3ac3c281fe8c689c3fe475d199d94390dc04fc681d51f2358b430bb7b2e21c62de24f2bee2c719068 languageName: node linkType: hard @@ -3398,7 +3409,7 @@ __metadata: languageName: node linkType: hard -"chalk@npm:5.6.0": +"chalk@npm:5.6.0, chalk@npm:^5.6.0": version: 5.6.0 resolution: "chalk@npm:5.6.0" checksum: 10/f0e0646a72adbd0f6e73441d3872d7f2f40ba98052924f08a30c10634ec6b1e2cd19cc3c40cc21081dad640e2a1a2749030418571690b89bd7782babf7f89866 @@ -3416,13 +3427,6 @@ __metadata: languageName: node linkType: hard -"chalk@npm:^5.5.0": - version: 5.5.0 - resolution: "chalk@npm:5.5.0" - checksum: 10/19f6905b47b628541976a534e2f39c3779f7f9276ff9693cb8f7cdb3e3e09ee5dee16e0c3768632fbb41c2a1f1653ee0041ea7730428b804068945eb0bab09c4 - languageName: node - linkType: hard - "chardet@npm:^2.1.0": version: 2.1.0 resolution: "chardet@npm:2.1.0" @@ -4481,17 +4485,17 @@ __metadata: languageName: node linkType: hard -"eslint@npm:9.34.0": - version: 9.34.0 - resolution: "eslint@npm:9.34.0" +"eslint@npm:9.35.0": + version: 9.35.0 + resolution: "eslint@npm:9.35.0" dependencies: - "@eslint-community/eslint-utils": "npm:^4.2.0" + "@eslint-community/eslint-utils": "npm:^4.8.0" "@eslint-community/regexpp": "npm:^4.12.1" "@eslint/config-array": "npm:^0.21.0" "@eslint/config-helpers": "npm:^0.3.1" "@eslint/core": "npm:^0.15.2" "@eslint/eslintrc": "npm:^3.3.1" - "@eslint/js": "npm:9.34.0" + "@eslint/js": "npm:9.35.0" "@eslint/plugin-kit": "npm:^0.3.5" "@humanfs/node": "npm:^0.16.6" "@humanwhocodes/module-importer": "npm:^1.0.1" @@ -4527,7 +4531,7 @@ __metadata: optional: true bin: eslint: bin/eslint.js - checksum: 10/edcd2e055521784cc941d26ea326fe488f749f6d9c18b5c10ea7ed779a502d3d6906b0cc49f68d208416f7b2cb82a21cb96d3031c2e02457f03dbf0c5be0992c + checksum: 10/238155639343d53bac639319ba92895083cbd15826081ac51204b29d64fbb52cebf0d355f11f57f146d2b15c4f2e1d85e3df0b0ac7ec0e2ef5e759c99dcab75e languageName: node linkType: hard @@ -5796,12 +5800,12 @@ __metadata: version: 0.0.0-use.local resolution: "javascript-playground-browser@workspace:playground/javascript/browser" dependencies: - "@eslint/js": "npm:9.34.0" + "@eslint/js": "npm:9.35.0" "@types/react": "npm:19.1.12" "@types/react-dom": "npm:19.1.9" "@vitejs/plugin-react-swc": "npm:3.11.0" algoliasearch: "link:../../../clients/algoliasearch-client-javascript/packages/algoliasearch" - eslint: "npm:9.34.0" + eslint: "npm:9.35.0" eslint-plugin-react-hooks: "npm:5.2.0" eslint-plugin-react-refresh: "npm:0.4.20" globals: "npm:16.1.0" @@ -5811,7 +5815,7 @@ __metadata: react-instantsearch: "npm:^7.15.3" typescript: "npm:5.9.2" typescript-eslint: "npm:8.33.0" - vite: "npm:7.1.3" + vite: "npm:7.1.4" languageName: unknown linkType: soft @@ -5978,9 +5982,9 @@ __metadata: languageName: node linkType: hard -"knip@npm:5.63.0": - version: 5.63.0 - resolution: "knip@npm:5.63.0" +"knip@npm:5.63.1": + version: 5.63.1 + resolution: "knip@npm:5.63.1" dependencies: "@nodelib/fs.walk": "npm:^1.2.3" fast-glob: "npm:^3.3.3" @@ -5993,7 +5997,7 @@ __metadata: picomatch: "npm:^4.0.1" smol-toml: "npm:^1.4.1" strip-json-comments: "npm:5.0.2" - zod: "npm:^3.22.4" + zod: "npm:^3.25.0" zod-validation-error: "npm:^3.0.3" peerDependencies: "@types/node": ">=18" @@ -6001,7 +6005,7 @@ __metadata: bin: knip: bin/knip.js knip-bun: bin/knip-bun.js - checksum: 10/a4289909b408f21d08651c48af61e55855ffe3998a2cbae0c5ce20e444f2b2d6356e28dcd845c60156fd3015bab03e0f50ed7ecdaed5921672487513b0b1d0af + checksum: 10/4c36c4286aa18568896c9d470ce2f3e05de6c41f4d4ba59d0921268fbb7644cadcc067d7284fb490444d755cb020936ba921020ddbe79d2a5f2797387ce5ca06 languageName: node linkType: hard @@ -6031,15 +6035,15 @@ __metadata: languageName: node linkType: hard -"lint-staged@npm:16.1.5": - version: 16.1.5 - resolution: "lint-staged@npm:16.1.5" +"lint-staged@npm:16.1.6": + version: 16.1.6 + resolution: "lint-staged@npm:16.1.6" dependencies: - chalk: "npm:^5.5.0" + chalk: "npm:^5.6.0" commander: "npm:^14.0.0" debug: "npm:^4.4.1" lilconfig: "npm:^3.1.3" - listr2: "npm:^9.0.1" + listr2: "npm:^9.0.3" micromatch: "npm:^4.0.8" nano-spawn: "npm:^1.0.2" pidtree: "npm:^0.6.0" @@ -6047,13 +6051,13 @@ __metadata: yaml: "npm:^2.8.1" bin: lint-staged: bin/lint-staged.js - checksum: 10/02b284f89d7b8118e1b27b1f2068017ed84407e57a1166463789caa65f3429f206372c483bc37304ce03dcb30bd1dd3e624f0502ae4973d440fe73cdd04e0747 + checksum: 10/922b4392ae5d3d56130e4eba706c2fa6151d5da5e21f57ab601b1d6ce9cc635ceb5e4c3dc00e7da83ba8f0cb244b82604469c7ea1470b1e6b6ea0fc12454aa08 languageName: node linkType: hard -"listr2@npm:^9.0.1": - version: 9.0.1 - resolution: "listr2@npm:9.0.1" +"listr2@npm:^9.0.3": + version: 9.0.3 + resolution: "listr2@npm:9.0.3" dependencies: cli-truncate: "npm:^4.0.0" colorette: "npm:^2.0.20" @@ -6061,7 +6065,7 @@ __metadata: log-update: "npm:^6.1.0" rfdc: "npm:^1.4.1" wrap-ansi: "npm:^9.0.0" - checksum: 10/ac5f98317fe17588d304bb4dce47ea22892f223511948656f588c5ab47b99d5d97ca4b812b4fb1237db8ec8d86a504875d8d6a0bb24c877553537eab44941983 + checksum: 10/8cb7cd1cec0f4360502c14cd54af948f831134811d84d3fd2b38b2fa11ea66ee0b15ca8b00b8088d28d7381031afbe755ee3f46bc2c03c2c96c433f04296bd44 languageName: node linkType: hard @@ -7796,8 +7800,8 @@ __metadata: "@types/folder-hash": "npm:4.0.4" "@types/fs-extra": "npm:11.0.4" "@types/js-yaml": "npm:4.0.9" - "@types/node": "npm:22.18.0" - "@types/semver": "npm:7.7.0" + "@types/node": "npm:22.18.1" + "@types/semver": "npm:7.7.1" "@types/spinnies": "npm:0.5.3" chai: "npm:6.0.1" chalk: "npm:5.6.0" @@ -7810,7 +7814,7 @@ __metadata: fs-extra: "npm:11.3.1" httpsnippet: "npm:3.0.1" js-yaml: "npm:4.1.0" - knip: "npm:5.63.0" + knip: "npm:5.63.1" micromatch: "npm:4.0.8" semver: "npm:7.7.2" spinnies: "npm:0.5.1" @@ -8890,9 +8894,9 @@ __metadata: languageName: node linkType: hard -"vite@npm:7.1.3": - version: 7.1.3 - resolution: "vite@npm:7.1.3" +"vite@npm:7.1.4": + version: 7.1.4 + resolution: "vite@npm:7.1.4" dependencies: esbuild: "npm:^0.25.0" fdir: "npm:^6.5.0" @@ -8941,7 +8945,7 @@ __metadata: optional: true bin: vite: bin/vite.js - checksum: 10/792cba6d5090cc6713a1f72ee43578902df0e231db0b4d313589ec380919d3612a01903615e183ebca6a903f83ee4fbfceb3d07a5443d5698d5d992dbc60a995 + checksum: 10/40c6292227e8177470b9f1014fabe2fa324222d6bdc06eb994f7aa6872a56790cd1e45a2f7017a381413eb2fde48fde0f2f58933a045936ca6af2061862bf338 languageName: node linkType: hard @@ -9385,7 +9389,7 @@ __metadata: languageName: node linkType: hard -"zod@npm:^3.22.4": +"zod@npm:^3.25.0": version: 3.25.76 resolution: "zod@npm:3.25.76" checksum: 10/f0c963ec40cd96858451d1690404d603d36507c1fc9682f2dae59ab38b578687d542708a7fdbf645f77926f78c9ed558f57c3d3aa226c285f798df0c4da16995