Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
f0699a2
chore: automatic empty commit
algolia-bot Dec 12, 2025
f61f01e
chore(deps): update dependency dart to v3.10.4 (#5748)
renovate[bot] Dec 13, 2025
b7f11ea
chore(deps): update dependency @cloudflare/vitest-pool-workers to v0.…
renovate[bot] Dec 13, 2025
3ac26ce
fix(deps): update dependency ch.qos.logback:logback-classic to v1.5.2…
renovate[bot] Dec 13, 2025
ab42fe7
fix(deps): update react monorepo to v19.2.3 (#5751)
renovate[bot] Dec 13, 2025
a8315fd
chore(deps): update dependency @redocly/cli to v2.12.6 (#5747)
renovate[bot] Dec 13, 2025
25d0655
chore(deps): update dependency publint to v0.3.16 (#5749)
renovate[bot] Dec 13, 2025
c32d192
chore(deps): update dependency jsdom to v27.3.0 (#5752)
renovate[bot] Dec 13, 2025
e52653e
chore(deps): update dependency oxlint to v1.32.0 (#5754)
renovate[bot] Dec 13, 2025
7d4073e
chore(deps): update dependency typescript-eslint to v8.49.0 (#5755)
renovate[bot] Dec 13, 2025
27858e5
chore(deps): update node.js to v24.12.0 (#5756)
renovate[bot] Dec 14, 2025
9a72f00
chore(deps): update dependency eslint-vitest-rule-tester to v3.0.1 (#…
renovate[bot] Dec 15, 2025
e93e7e8
chore(deps): update dependency @types/node to v25 (#5760)
renovate[bot] Dec 16, 2025
d0a2890
chore(deps): update actions/upload-artifact action to v6 (#5762)
renovate[bot] Dec 16, 2025
ba9475a
chore(deps): update actions/cache action to v5 (#5757)
renovate[bot] Dec 16, 2025
a1d2a32
chore(deps): update eslint monorepo to v9.39.2 (#5764)
renovate[bot] Dec 16, 2025
24aa273
chore(deps): update dependency @actions/exec to v2 (#5759)
renovate[bot] Dec 16, 2025
b151d34
Merge branch 'main' into chore/renovateBaseBranch
Fluf22 Dec 16, 2025
7f64d03
Merge branch 'main' into chore/renovateBaseBranch
Fluf22 Dec 16, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ runs:

- name: Cache golangci-lint analysis
if: ${{ inputs.language == 'go' }}
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/golangci-lint
key: golangci-lint-${{ inputs.version }}-${{ hashFiles('clients/algoliasearch-client-go/go.sum') }}
Expand All @@ -98,14 +98,14 @@ runs:

- name: Restore Yarn js-client
if: ${{ inputs.language == 'javascript' }}
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.yarn-cache-dir-client.outputs.dir || 'clients/algoliasearch-client-javascript/.yarn/cache' }}
key: yarn-cache-clients-${{ hashFiles('clients/algoliasearch-client-javascript/yarn.lock') }}

- name: Cache js-client node modules
if: ${{ inputs.language == 'javascript' }}
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: clients/algoliasearch-client-javascript/node_modules
key: node-modules-clients-${{ hashFiles('clients/algoliasearch-client-javascript/yarn.lock') }}
Expand Down Expand Up @@ -183,7 +183,7 @@ runs:
- name: Cache the build folder
id: cache-swift-build
if: ${{ inputs.language == 'swift' }}
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
clients/algoliasearch-client-swift/.build
Expand All @@ -206,7 +206,7 @@ runs:
- name: Cache the build folder for swiftformat
id: cache-swiftformat
if: ${{ inputs.language == 'swift' }}
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: swiftformat/.build
key: swiftformat-build-${{ steps.swiftformat-version.outputs.SWIFTFORMAT_VERSION }}-${{ runner.os }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:
run: yarn cli build specs -s

- name: Store bundled specs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
if-no-files-found: error
name: specs
Expand Down Expand Up @@ -248,13 +248,13 @@ jobs:
run: echo "dir=$(cd tests/output/javascript && yarn config get cacheFolder)" >> $GITHUB_OUTPUT

- name: Restore Yarn js tests
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.yarn-cache-dir-tests.outputs.dir || 'tests/output/javascript/.yarn/cache' }}
key: yarn-cache-tests-${{ hashFiles('tests/output/javascript/yarn.lock') }}

- name: Cache js tests node modules
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: tests/output/javascript/node_modules
key: node-modules-tests-${{ hashFiles('tests/output/javascript/yarn.lock') }}
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
run: zip -r -y clients-javascript.zip clients/algoliasearch-client-javascript ${{ fromJSON(needs.setup.outputs.JAVASCRIPT_DATA).testsToStore }} ${{ fromJSON(needs.setup.outputs.JAVASCRIPT_DATA).guidesToStore }} -x "**/node_modules**" "**/.yarn/cache/**" "**/.yarn/install-state.gz" "**/build/**" "**/dist/**" "**/.gradle/**" "**/bin/**" "**/.nx/**"

- name: Store javascript clients
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
if-no-files-found: error
name: clients-javascript
Expand Down Expand Up @@ -414,7 +414,7 @@ jobs:

- name: Store ${{ matrix.client.language }} clients
if: ${{ matrix.client.isMainVersion }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
if-no-files-found: error
name: clients-${{matrix.client.language }}
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.11.1
24.12.0
2 changes: 1 addition & 1 deletion clients/algoliasearch-client-javascript/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.11.1
24.12.0
2 changes: 1 addition & 1 deletion clients/algoliasearch-client-javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"test:bundle": "lerna run test:bundle --verbose --include-dependencies"
},
"devDependencies": {
"@types/node": "24.10.1",
"@types/node": "24.10.4",
"bundlewatch": "0.4.1",
"execa": "9.6.1",
"lerna": "9.0.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "24.10.1",
"publint": "0.3.15",
"@types/node": "24.10.4",
"publint": "0.3.16",
"rollup": "4.53.3",
"tsup": "8.5.1",
"typescript": "5.9.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "24.10.1",
"publint": "0.3.15",
"@types/node": "24.10.4",
"publint": "0.3.16",
"rollup": "4.53.3",
"tsup": "8.5.1",
"typescript": "5.9.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "24.10.1",
"jsdom": "27.2.0",
"publint": "0.3.15",
"@types/node": "24.10.4",
"jsdom": "27.3.0",
"publint": "0.3.16",
"ts-node": "10.9.2",
"tsup": "8.5.1",
"typescript": "5.9.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "24.10.1",
"publint": "0.3.15",
"@types/node": "24.10.4",
"publint": "0.3.16",
"rollup": "4.53.3",
"tsup": "8.5.1",
"typescript": "5.9.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "24.10.1",
"jsdom": "27.2.0",
"publint": "0.3.15",
"@types/node": "24.10.4",
"jsdom": "27.3.0",
"publint": "0.3.16",
"ts-node": "10.9.2",
"tsup": "8.5.1",
"typescript": "5.9.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "24.10.1",
"jsdom": "27.2.0",
"publint": "0.3.15",
"@types/node": "24.10.4",
"jsdom": "27.3.0",
"publint": "0.3.16",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.15",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "24.10.1",
"@types/node": "24.10.4",
"cross-fetch": "4.1.0",
"nock": "14.0.10",
"publint": "0.3.15",
"publint": "0.3.16",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.15"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "24.10.1",
"@types/node": "24.10.4",
"nock": "14.0.10",
"publint": "0.3.15",
"publint": "0.3.16",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.15"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "24.10.1",
"publint": "0.3.15",
"@types/node": "24.10.4",
"publint": "0.3.16",
"tsup": "8.5.1",
"typescript": "5.9.3"
},
Expand Down
Loading