Skip to content

Commit 2805350

Browse files
authored
Merge branch 'main' into v1.6507.0
2 parents 2ebc071 + 409d0e4 commit 2805350

File tree

101 files changed

+2980
-6069
lines changed

Some content is hidden

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

101 files changed

+2980
-6069
lines changed

.github/renovate.json

Lines changed: 35 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
"helpers:disableTypesNodeMajor"
88
],
99
"updateNotScheduled": true,
10-
"lockFileMaintenance": { "enabled": false },
10+
"lockFileMaintenance": {
11+
"enabled": false
12+
},
1113
"enabledManagers": ["github-actions", "npm"],
1214
"prCreation": "not-pending",
1315
"prHourlyLimit": 5,
@@ -23,60 +25,60 @@
2325
},
2426
{
2527
"automerge": false,
26-
"matchPackagePatterns": ["^@scaleway/"],
27-
"stabilityDays": 0,
28-
"matchUpdateTypes": ["major", "minor", "patch"]
28+
"minimumReleaseAge": null,
29+
"matchUpdateTypes": ["major", "minor", "patch"],
30+
"matchPackageNames": ["/^@scaleway//"]
2931
},
3032
{
3133
"labels": ["UPDATE-MAJOR"],
32-
"stabilityDays": 14,
34+
"minimumReleaseAge": "14 days",
3335
"matchUpdateTypes": ["major"]
3436
},
3537
{
3638
"labels": ["UPDATE-MINOR"],
37-
"stabilityDays": 5,
39+
"minimumReleaseAge": "5 days",
3840
"matchUpdateTypes": ["minor"]
3941
},
4042
{
4143
"labels": ["UPDATE-PATCH"],
42-
"stabilityDays": 1,
44+
"minimumReleaseAge": "1 day",
4345
"matchUpdateTypes": ["patch"]
4446
},
4547
{
46-
"matchPackagePatterns": [
47-
"^@babel/",
48-
"^@commitlint/",
49-
"^babel-",
50-
"cz-conventional-changelog",
51-
"eslint",
52-
"husky",
53-
"jest",
54-
"lint-staged"
55-
],
5648
"automerge": true,
5749
"automergeType": "branch",
5850
"semanticCommitScope": "minor-deps",
59-
"stabilityDays": 3,
60-
"matchUpdateTypes": ["minor"]
51+
"minimumReleaseAge": "3 days",
52+
"matchUpdateTypes": ["minor"],
53+
"matchPackageNames": [
54+
"/^@babel//",
55+
"/^@commitlint//",
56+
"/^babel-/",
57+
"/cz-conventional-changelog/",
58+
"/eslint/",
59+
"/husky/",
60+
"/jest/",
61+
"/lint-staged/"
62+
]
6163
},
6264
{
63-
"matchPackagePatterns": [
64-
"^@babel/",
65-
"^@commitlint/",
66-
"^@semantic-release/",
67-
"^@types/",
68-
"^babel-",
69-
"^eslint",
70-
"cz-conventional-changelog",
71-
"husky",
72-
"jest",
73-
"lint-staged"
74-
],
7565
"automerge": true,
7666
"automergeType": "branch",
7767
"semanticCommitScope": "patch-deps",
78-
"stabilityDays": 1,
79-
"matchUpdateTypes": ["patch"]
68+
"minimumReleaseAge": "1 day",
69+
"matchUpdateTypes": ["patch"],
70+
"matchPackageNames": [
71+
"/^@babel//",
72+
"/^@commitlint//",
73+
"/^@semantic-release//",
74+
"/^@types//",
75+
"/^babel-/",
76+
"/^eslint/",
77+
"/cz-conventional-changelog/",
78+
"/husky/",
79+
"/jest/",
80+
"/lint-staged/"
81+
]
8082
}
8183
]
8284
}

examples/nodejs-minimal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@scaleway/sdk": "^2.0"
1414
},
1515
"devDependencies": {
16-
"@types/node": "20.17.32",
16+
"@types/node": "20.17.46",
1717
"typescript": "5.8.3"
1818
}
1919
}

examples/serverless-function-minimal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"devDependencies": {
1616
"serverless-scaleway-functions": "0.4.14",
17-
"@types/node": "20.17.32",
17+
"@types/node": "20.17.46",
1818
"typescript": "5.8.3"
1919
}
2020
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@
5656
},
5757
"devDependencies": {
5858
"@biomejs/biome": "1.9.4",
59-
"@commitlint/cli": "19.8.0",
60-
"@commitlint/config-conventional": "19.8.0",
59+
"@commitlint/cli": "19.8.1",
60+
"@commitlint/config-conventional": "19.8.1",
6161
"@manypkg/cli": "0.24.0",
6262
"@scaleway/eslint-config-react": "4.0.9",
6363
"@typescript-eslint/eslint-plugin": "8.32.0",
@@ -76,7 +76,7 @@
7676
"husky": "9.1.7",
7777
"jsdom": "26.1.0",
7878
"lerna": "8.2.2",
79-
"lint-staged": "15.5.1",
79+
"lint-staged": "15.5.2",
8080
"prettier": "3.5.3",
8181
"react": "^19.1.0",
8282
"read-pkg": "9.0.1",

packages/client/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 1.2.2 (2025-05-13)
7+
8+
### Bug Fixes
9+
10+
- **bundled:** remove bundled as it's buggy with deps inside pack with… ([#2096](https://github.com/scaleway/scaleway-sdk-js/issues/2096)) ([bf33ff1](https://github.com/scaleway/scaleway-sdk-js/commit/bf33ff1f9cdd951add94817dac27239c86ef5437))
11+
612
## [1.2.1](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/[email protected]...@scaleway/[email protected]) (2025-04-24)
713

814
### Bug Fixes

packages/client/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scaleway/sdk-client",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"license": "Apache-2.0",
55
"description": "Scaleway SDK Client",
66
"keywords": [
@@ -33,5 +33,4 @@
3333
"node": ">=20.19.1"
3434
},
3535
"type": "module"
36-
3736
}

packages/configuration-loader/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 1.0.8 (2025-05-13)
7+
8+
**Note:** Version bump only for package @scaleway/configuration-loader
9+
610
## [1.0.7](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/[email protected]...@scaleway/[email protected]) (2025-03-31)
711

812
**Note:** Version bump only for package @scaleway/configuration-loader

packages/configuration-loader/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scaleway/configuration-loader",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"license": "Apache-2.0",
55
"description": "Load configuration via file or environment for NodeJS.",
66
"main": "dist/index.cjs",

packages/sdk/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.76.1](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/[email protected]...@scaleway/[email protected]) (2025-05-13)
7+
8+
**Note:** Version bump only for package @scaleway/sdk
9+
10+
# [2.76.0](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/[email protected]...@scaleway/[email protected]) (2025-05-13)
11+
12+
### Bug Fixes
13+
14+
- **bundled:** remove bundled as it's buggy with deps inside pack with… ([#2096](https://github.com/scaleway/scaleway-sdk-js/issues/2096)) ([bf33ff1](https://github.com/scaleway/scaleway-sdk-js/commit/bf33ff1f9cdd951add94817dac27239c86ef5437))
15+
16+
### Features
17+
18+
- **autoscaling:** enable v1alpha1 ([#2104](https://github.com/scaleway/scaleway-sdk-js/issues/2104)) ([0540c35](https://github.com/scaleway/scaleway-sdk-js/commit/0540c35ffc94762eca86d6e31abf37b7653d68d8))
19+
620
## [2.75.5](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/[email protected]...@scaleway/[email protected]) (2025-05-05)
721

822
**Note:** Version bump only for package @scaleway/sdk

packages/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scaleway/sdk",
3-
"version": "2.75.5",
3+
"version": "2.76.1",
44
"description": "Scaleway SDK TS.",
55
"types": "dist/index.d.ts",
66
"files": [

0 commit comments

Comments
 (0)