Skip to content

Commit 8adbc8b

Browse files
authored
Merge branch 'main' into fix/update-crawler
2 parents b082c59 + f540e32 commit 8adbc8b

File tree

262 files changed

+101728
-17040
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

262 files changed

+101728
-17040
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
# Java for code generation
2020
- name: Install Java
2121
if: inputs.type != 'minimal'
22-
uses: actions/setup-java@v4.6.0
22+
uses: actions/setup-java@v4.7.0
2323
with:
2424
distribution: zulu
2525
java-version-file: config/.java-version

.github/workflows/check.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ jobs:
301301
path: clients-javascript.zip
302302

303303
client_gen:
304-
timeout-minutes: 15
304+
timeout-minutes: 20 # swift CTS is excruciatingly slow
305305
runs-on: ubuntu-22.04
306306
needs:
307307
- setup
@@ -381,12 +381,13 @@ jobs:
381381
run: yarn cli cts generate ${{ matrix.client.language }} ${{ matrix.client.toRun }} --language-version ${{ matrix.client.version }}
382382

383383
- name: Run unit CTS
384+
if: ${{ matrix.client.language != 'swift' || startsWith(github.head_ref, 'chore/prepare-release-') }}
384385
run: yarn cli cts run ${{ matrix.client.language }} ${{ matrix.client.toRun }} --no-e2e
385386

386387
- name: Run e2e CTS
387388
id: cts-e2e
388389
continue-on-error: true
389-
if: ${{ !github.event.pull_request.head.repo.fork && !contains(format('{0} {1}', github.event.pull_request.title, github.event.head_commit.message), '[skip-e2e]') }}
390+
if: ${{ !github.event.pull_request.head.repo.fork && !contains(format('{0} {1}', github.event.pull_request.title, github.event.head_commit.message), '[skip-e2e]') && (matrix.client.language != 'swift' || startsWith(github.head_ref, 'chore/prepare-release-')) }}
390391
run: yarn cli cts run ${{ matrix.client.language }} ${{ matrix.client.toRun }} --no-client --no-requests
391392

392393
- name: Retry e2e CTS

CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@
44
specs/ @algolia/doc-approvers
55
website/ @algolia/doc-approvers
66
* @algolia/api-clients-automation
7+
8+
specs/advanced-personalization @algolia/predict-fe

clients/algoliasearch-client-kotlin/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
kotlin = "2.1.0"
2+
kotlin = "2.1.10"
33
ktor = "3.0.3"
44

55
[libraries]

clients/algoliasearch-client-php/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
}
1414
],
1515
"require": {
16-
"php": ">=8.1",
16+
"php": ">=8.1 !=8.3.0",
1717
"ext-curl": "*",
1818
"ext-json": "*",
1919
"ext-mbstring": "*",

0 commit comments

Comments
 (0)