Skip to content

Commit e15672e

Browse files
authored
Merge branch 'main' into v1.6502.0
2 parents efd14a1 + 409d0e4 commit e15672e

File tree

97 files changed

+764
-160
lines changed

Some content is hidden

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

97 files changed

+764
-160
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: 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": [

packages/sdk/src/index.gen.ts

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import { Accountv3 } from '@scaleway/sdk-account'
66
import { Applesiliconv1alpha1 } from '@scaleway/sdk-applesilicon'
77
import { AuditTrailv1alpha1 } from '@scaleway/sdk-audit-trail'
88
import { Autoscalingv1alpha1 } from '@scaleway/sdk-autoscaling'
9-
import { Baremetalv1,Baremetalv3 } from '@scaleway/sdk-baremetal'
9+
import { Baremetalv1, Baremetalv3 } from '@scaleway/sdk-baremetal'
1010
import { Billingv2beta1 } from '@scaleway/sdk-billing'
11-
import { Blockv1,Blockv1alpha1 } from '@scaleway/sdk-block'
11+
import { Blockv1, Blockv1alpha1 } from '@scaleway/sdk-block'
1212
import { Cockpitv1 } from '@scaleway/sdk-cockpit'
1313
import { Containerv1beta1 } from '@scaleway/sdk-container'
1414
import { Dediboxv1 } from '@scaleway/sdk-dedibox'
@@ -18,7 +18,7 @@ import { Filev1alpha1 } from '@scaleway/sdk-file'
1818
import { Flexibleipv1alpha1 } from '@scaleway/sdk-flexibleip'
1919
import { Functionv1beta1 } from '@scaleway/sdk-function'
2020
import { Iamv1alpha1 } from '@scaleway/sdk-iam'
21-
import { Inferencev1,Inferencev1beta1 } from '@scaleway/sdk-inference'
21+
import { Inferencev1, Inferencev1beta1 } from '@scaleway/sdk-inference'
2222
import { Instancev1 } from '@scaleway/sdk-instance'
2323
import { Interlinkv1beta1 } from '@scaleway/sdk-interlink'
2424
import { Iotv1 } from '@scaleway/sdk-iot'
@@ -40,7 +40,7 @@ import { ServerlessSqldbv1alpha1 } from '@scaleway/sdk-serverless-sqldb'
4040
import { Temv1alpha1 } from '@scaleway/sdk-tem'
4141
import { Testv1 } from '@scaleway/sdk-test'
4242
import { Vpcv2 } from '@scaleway/sdk-vpc'
43-
import { Vpcgwv1,Vpcgwv2 } from '@scaleway/sdk-vpcgw'
43+
import { Vpcgwv1, Vpcgwv2 } from '@scaleway/sdk-vpcgw'
4444
import { Webhostingv1 } from '@scaleway/sdk-webhosting'
4545
/**
4646
* @deprecated Direct version exports are deprecated. Use the 'Account' namespace instead (e.g., Account.v1).
@@ -77,7 +77,7 @@ export const Autoscaling = {
7777
/**
7878
* @deprecated Direct version exports are deprecated. Use the 'Baremetal' namespace instead (e.g., Baremetal.v1).
7979
*/
80-
export { Baremetalv1,Baremetalv3 }
80+
export { Baremetalv1, Baremetalv3 }
8181
export const Baremetal = {
8282
v1: Baremetalv1,
8383
v3: Baremetalv3,
@@ -94,7 +94,7 @@ export const Billing = {
9494
/**
9595
* @deprecated Direct version exports are deprecated. Use the 'Block' namespace instead (e.g., Block.v1).
9696
*/
97-
export { Blockv1,Blockv1alpha1 }
97+
export { Blockv1, Blockv1alpha1 }
9898
export const Block = {
9999
v1: Blockv1,
100100
v1alpha1: Blockv1alpha1,
@@ -175,7 +175,7 @@ export const Iam = {
175175
/**
176176
* @deprecated Direct version exports are deprecated. Use the 'Inference' namespace instead (e.g., Inference.v1).
177177
*/
178-
export { Inferencev1,Inferencev1beta1 }
178+
export { Inferencev1, Inferencev1beta1 }
179179
export const Inference = {
180180
v1: Inferencev1,
181181
v1beta1: Inferencev1beta1,
@@ -352,7 +352,7 @@ export const Vpc = {
352352
/**
353353
* @deprecated Direct version exports are deprecated. Use the 'Vpcgw' namespace instead (e.g., Vpcgw.v1).
354354
*/
355-
export { Vpcgwv1,Vpcgwv2 }
355+
export { Vpcgwv1, Vpcgwv2 }
356356
export const Vpcgw = {
357357
v1: Vpcgwv1,
358358
v2: Vpcgwv2,
@@ -365,4 +365,3 @@ export { Webhostingv1 }
365365
export const Webhosting = {
366366
v1: Webhostingv1,
367367
}
368-

packages_generated/account/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
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.3](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-account
9+
10+
## [1.0.2](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+
616
## 1.0.1 (2025-04-28)
717

818
**Note:** Version bump only for package @scaleway/sdk-account

0 commit comments

Comments
 (0)