Skip to content

chore(deps): dependencies 2025-06-16 #4977

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 27 commits into from
Jun 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ea5dea8
chore: automatic empty commit
algolia-bot Jun 13, 2025
ce52337
fix(deps): update dependency requests to v2.32.4 [security] (#4978)
renovate[bot] Jun 13, 2025
8a92408
chore(deps): update dependency @cloudflare/vitest-pool-workers to v0.…
renovate[bot] Jun 15, 2025
695f03e
chore(deps): update dependency python to v3.13.5 (#4985)
renovate[bot] Jun 15, 2025
b6de117
chore(deps): update dependency wiremock.net to 1.8.11 (#4986)
renovate[bot] Jun 15, 2025
e1b3a6e
chore(deps): update dependency @types/react to v19.1.8 (#4984)
renovate[bot] Jun 15, 2025
c3686d3
chore(deps): update dotnet monorepo (#4987)
renovate[bot] Jun 15, 2025
64c6b20
chore(deps): update dependency knip to v5.61.0 (#4988)
renovate[bot] Jun 15, 2025
51c9cd9
fix(deps): update ktor monorepo to v3.2.0 (#4990)
renovate[bot] Jun 15, 2025
39a52c2
chore(deps): update eslint monorepo to v9.29.0 (#4989)
renovate[bot] Jun 15, 2025
7ce541f
chore(config): migrate renovate config (#4992)
renovate[bot] Jun 16, 2025
2487848
chore(deps): update dependency com.fasterxml.jackson.core:jackson-cor…
renovate[bot] Jun 16, 2025
bbe9223
chore(deps): update dependency oxlint to v1 (#4982)
renovate[bot] Jun 16, 2025
07b6f2f
chore(deps): update ghcr.io/nicklockwood/swiftformat docker tag to v0…
renovate[bot] Jun 16, 2025
ed9d612
chore(deps): update dependency wiremock.net to 1.8.12 (#4997)
renovate[bot] Jun 16, 2025
908c31b
chore(deps): update dependency nicklockwood/swiftformat to v0.56.4 (#…
renovate[bot] Jun 16, 2025
ec4f992
chore(deps): update dependency @types/node to v22.15.31 (#4993)
renovate[bot] Jun 16, 2025
b50b56b
chore(deps): update dependency scala to v3.7.1 (#4996)
renovate[bot] Jun 16, 2025
7c35cff
chore(deps): bump requests from 2.32.3 to 2.32.4 in /tests/output/pyt…
dependabot[bot] Jun 16, 2025
30ebb86
Merge branch 'main' into chore/renovateBaseBranch
millotp Jun 16, 2025
09421b0
chore(deps): bump brace-expansion from 1.1.11 to 1.1.12 in /website (…
dependabot[bot] Jun 16, 2025
8ca19d5
chore(deps): update dependency lint-staged to v16.1.2 (#4994)
renovate[bot] Jun 16, 2025
59f395e
chore(deps): bump brace-expansion from 2.0.1 to 2.0.2 in /tests/outpu…
dependabot[bot] Jun 16, 2025
36b4655
Merge branch 'main' into chore/renovateBaseBranch
millotp Jun 16, 2025
fe9229f
lock
millotp Jun 16, 2025
138032d
chore(deps): update dependency lints to v6 (#5003)
renovate[bot] Jun 16, 2025
bb690cf
template
millotp Jun 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
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ runs:
if: ${{ inputs.language == 'swift' }}
id: swiftformat-version
shell: bash
run: echo "SWIFTFORMAT_VERSION=0.56.3" >> $GITHUB_OUTPUT
run: echo "SWIFTFORMAT_VERSION=0.56.4" >> $GITHUB_OUTPUT

- name: Checkout swiftformat
if: ${{ inputs.language == 'swift' }}
Expand Down
2 changes: 1 addition & 1 deletion clients/algoliasearch-client-csharp/global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "9.0.300",
"version": "9.0.301",
"rollForward": "latestMinor"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ dependencies:
dev_dependencies:
build_runner: ^2.4.4
json_serializable: ^6.7.0
lints: ^5.0.0
lints: ^6.0.0
logging: ^1.2.0
test: ^1.25.8
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class DioRequester implements Requester {
}

@override
get connectTimeout => _client.options.connectTimeout;
Duration? get connectTimeout => _client.options.connectTimeout;

@override
void setConnectTimeout(Duration connectTimeout) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ final class Platform {
static Iterable<AgentSegment> agentSegments() => platformAgentSegments();

/// Set Algolia Agent as User-Agent or as query param depending on the platform.
static algoliaAgent(dio.RequestOptions options, String agent) =>
static void algoliaAgent(dio.RequestOptions options, String agent) =>
platformAlgoliaAgent(options, agent);

Platform._();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'dart:html' as web;
import 'package:web/web.dart' as web;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's no bc on the compatibility with this?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe, but the dart:html is deprecated. Not sure how to test this lib on the web

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok let's go then


import 'package:algolia_client_core/src/config/agent_segment.dart';
import 'package:dio/dio.dart' as dio;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ abstract class Requester {
void setClientApiKey(String apiKey);

/// Allows to customise the connect timeout for the requester.
get connectTimeout => null;
Duration? get connectTimeout => null;
void setConnectTimeout(Duration connectTimeout);

/// Closes any underlying resources that the Requester might be using.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ final class RetryStrategy {
final List<AlgoliaException> errors = [];
for (final host in hosts) {
final httpRequest = _buildRequest(host, request, callType, options);
final requesterConnectTimeout = requester.connectTimeout;
final requesterConnectTimeout =
requester.connectTimeout ?? Duration(seconds: 2);
if (options?.connectTimeout != null) {
requester.setConnectTimeout(options!.connectTimeout!);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ environment:
sdk: '>=3.0.0 <4.0.0'
dependencies:
dio: ^5.2.1
web: ^1.1.1
dev_dependencies:
lints: ^5.0.0
lints: ^6.0.0
test: ^1.25.8
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ dependencies:
dev_dependencies:
build_runner: ^2.4.4
json_serializable: ^6.7.0
lints: ^5.0.0
lints: ^6.0.0
logging: ^1.2.0
test: ^1.25.8
2 changes: 1 addition & 1 deletion clients/algoliasearch-client-dart/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ environment:
sdk: '>=3.0.0 <4.0.0'

dev_dependencies:
lints: ^5.0.0
lints: ^6.0.0
melos: ^6.0.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": "22.15.30",
"@types/node": "22.15.31",
"bundlewatch": "0.4.1",
"execa": "9.6.0",
"lerna": "8.2.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "22.15.30",
"@types/node": "22.15.31",
"jsdom": "26.1.0",
"publint": "0.3.12",
"ts-node": "10.9.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "22.15.30",
"@types/node": "22.15.31",
"publint": "0.3.12",
"rollup": "4.41.0",
"tsup": "8.5.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "22.15.30",
"@types/node": "22.15.31",
"publint": "0.3.12",
"rollup": "4.41.0",
"tsup": "8.5.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "22.15.30",
"@types/node": "22.15.31",
"jsdom": "26.1.0",
"publint": "0.3.12",
"ts-node": "10.9.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "22.15.30",
"@types/node": "22.15.31",
"jsdom": "26.1.0",
"publint": "0.3.12",
"tsup": "8.5.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "22.15.30",
"@types/node": "22.15.31",
"cross-fetch": "4.1.0",
"nock": "14.0.5",
"publint": "0.3.12",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "22.15.30",
"@types/node": "22.15.31",
"nock": "14.0.5",
"publint": "0.3.12",
"tsup": "8.5.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@types/node": "22.15.30",
"@types/node": "22.15.31",
"publint": "0.3.12",
"tsup": "8.5.0",
"typescript": "5.8.3"
Expand Down
Loading