Skip to content

Commit 32ee1aa

Browse files
authored
Merge branch 'main' into feat/new_locality_type
2 parents 4c79d0d + 186e0d1 commit 32ee1aa

File tree

130 files changed

+898
-225
lines changed

Some content is hidden

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

130 files changed

+898
-225
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
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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: 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.2.3 (2025-05-26)
7+
8+
**Note:** Version bump only for package @scaleway/sdk-client
9+
610
## 1.2.2 (2025-05-13)
711

812
### Bug Fixes

packages/client/package.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scaleway/sdk-client",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"license": "Apache-2.0",
55
"description": "Scaleway SDK Client",
66
"keywords": [
@@ -9,9 +9,6 @@
99
"sdk",
1010
"client"
1111
],
12-
"main": "dist/index.cjs",
13-
"module": "dist/index.js",
14-
"types": "dist/index.d.ts",
1512
"scripts": {
1613
"typecheck": "tsc --noEmit",
1714
"type:generate": "tsc --declaration -p tsconfig.build.json",
@@ -26,11 +23,19 @@
2623
},
2724
"repository": {
2825
"type": "git",
29-
"url": "https://github.com/scaleway/scaleway-sdk-js",
26+
"url": "git+https://github.com/scaleway/scaleway-sdk-js",
3027
"directory": "packages/client"
3128
},
3229
"engines": {
3330
"node": ">=20.19.1"
3431
},
35-
"type": "module"
32+
"type": "module",
33+
"exports": {
34+
".": {
35+
"types": "./dist/index.d.ts",
36+
"import": "./dist/index.js",
37+
"require": "./dist/index.cjs",
38+
"default": "./dist/index.js"
39+
}
40+
}
3641
}

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.9 (2025-05-26)
7+
8+
**Note:** Version bump only for package @scaleway/configuration-loader
9+
610
## 1.0.8 (2025-05-13)
711

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

packages/configuration-loader/package.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
11
{
22
"name": "@scaleway/configuration-loader",
3-
"version": "1.0.8",
3+
"version": "1.0.9",
44
"license": "Apache-2.0",
55
"description": "Load configuration via file or environment for NodeJS.",
6-
"main": "dist/index.cjs",
7-
"module": "dist/index.js",
8-
"types": "dist/index.d.ts",
96
"publishConfig": {
107
"access": "public"
118
},
129
"repository": {
1310
"type": "git",
14-
"url": "https://github.com/scaleway/scaleway-sdk-js",
11+
"url": "git+https://github.com/scaleway/scaleway-sdk-js",
1512
"directory": "packages/configuration-loader"
1613
},
1714
"engines": {
1815
"node": ">=20.19.1"
1916
},
2017
"type": "module",
18+
"exports": {
19+
".": {
20+
"types": "./dist/index.d.ts",
21+
"import": "./dist/index.js",
22+
"require": "./dist/index.cjs",
23+
"default": "./dist/index.js"
24+
}
25+
},
2126
"scripts": {
2227
"typecheck": "tsc --noEmit",
2328
"type:generate": "tsc --declaration -p tsconfig.build.json",

packages/sdk/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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.3](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/[email protected]...@scaleway/[email protected]) (2025-05-26)
7+
8+
**Note:** Version bump only for package @scaleway/sdk
9+
10+
## [2.76.2](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/[email protected]...@scaleway/[email protected]) (2025-05-19)
11+
12+
**Note:** Version bump only for package @scaleway/sdk
13+
14+
## [2.76.1](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/[email protected]...@scaleway/[email protected]) (2025-05-13)
15+
16+
**Note:** Version bump only for package @scaleway/sdk
17+
618
# [2.76.0](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/[email protected]...@scaleway/[email protected]) (2025-05-13)
719

820
### Bug Fixes

packages/sdk/package.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@scaleway/sdk",
3-
"version": "2.76.0",
3+
"version": "2.76.3",
44
"description": "Scaleway SDK TS.",
5-
"types": "dist/index.d.ts",
5+
"license": "Apache-2.0",
66
"files": [
77
"dist"
88
],
@@ -13,16 +13,11 @@
1313
"import": "./dist/index.gen.js",
1414
"require": "./dist/index.gen.cjs",
1515
"default": "./dist/index.gen.js"
16-
},
17-
"./*": {
18-
"types": "./dist/*/index.gen.d.ts",
19-
"import": "./dist/*/index.gen.js",
20-
"require": "./dist/*/index.gen.cjs",
21-
"default": "./dist/*/index.gen.js"
2216
}
2317
},
2418
"repository": {
2519
"type": "git",
20+
"url": "git+https://github.com/scaleway/scaleway-sdk-js.git",
2621
"directory": "packages/sdk"
2722
},
2823
"engines": {

packages_generated/account/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.4 (2025-05-26)
7+
8+
**Note:** Version bump only for package @scaleway/sdk-account
9+
10+
## [1.0.3](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/[email protected]...@scaleway/[email protected]) (2025-05-13)
11+
12+
**Note:** Version bump only for package @scaleway/sdk-account
13+
614
## [1.0.2](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/[email protected]...@scaleway/[email protected]) (2025-05-13)
715

816
### Bug Fixes

packages_generated/account/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "@scaleway/sdk-account",
3-
"version": "1.0.2",
3+
"version": "1.0.4",
44
"description": "Scaleway SDK account",
5-
"types": "dist/index.d.ts",
5+
"license": "Apache-2.0",
66
"files": [
77
"dist"
88
],

0 commit comments

Comments
 (0)