Skip to content

Commit efd14a1

Browse files
authored
Merge branch 'main' into v1.6502.0
2 parents f040e09 + f4d494a commit efd14a1

File tree

8 files changed

+2222
-5909
lines changed

8 files changed

+2222
-5909
lines changed

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: 2 additions & 2 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",

packages_generated/autoscaling/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"directory": "packages_generated/autoscaling"
2727
},
2828
"engines": {
29-
"node": ">=20.18.3"
29+
"node": ">=20.19.1"
3030
},
3131
"scripts": {
3232
"package:check": "pnpm publint",

packages_generated/ipam/src/v1/types.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export type ResourceType =
3333
| 'serverless_container'
3434
| 'serverless_function'
3535
| 'vpn_gateway'
36+
| 'ddl_datalab'
3637

3738
export interface Resource {
3839
/**

packages_generated/lb/src/v1/marshalling.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,7 @@ const unmarshalRouteMatch = (data: unknown): RouteMatch => {
586586
return {
587587
hostHeader: data.host_header,
588588
matchSubdomains: data.match_subdomains,
589+
pathBegin: data.path_begin,
589590
sni: data.sni,
590591
} as RouteMatch
591592
}
@@ -1194,6 +1195,7 @@ const marshalRouteMatch = (
11941195
...resolveOneOf([
11951196
{ param: 'sni', value: request.sni },
11961197
{ param: 'host_header', value: request.hostHeader },
1198+
{ param: 'path_begin', value: request.pathBegin },
11971199
]),
11981200
})
11991201

packages_generated/lb/src/v1/types.gen.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -733,19 +733,25 @@ export interface RouteMatch {
733733
/**
734734
* Value to match in the Server Name Indication TLS extension (SNI) field from an incoming connection made via an SSL/TLS transport layer. This field should be set for routes on TCP Load Balancers.
735735
*
736-
* One-of ('matchType'): at most one of 'sni', 'hostHeader' could be set.
736+
* One-of ('matchType'): at most one of 'sni', 'hostHeader', 'pathBegin' could be set.
737737
*/
738738
sni?: string
739739
/**
740740
* Value to match in the HTTP Host request header from an incoming request. This field should be set for routes on HTTP Load Balancers.
741741
*
742-
* One-of ('matchType'): at most one of 'sni', 'hostHeader' could be set.
742+
* One-of ('matchType'): at most one of 'sni', 'hostHeader', 'pathBegin' could be set.
743743
*/
744744
hostHeader?: string
745745
/**
746746
* If true, all subdomains will match.
747747
*/
748748
matchSubdomains: boolean
749+
/**
750+
* Value to match in the URL beginning path from an incoming request.
751+
*
752+
* One-of ('matchType'): at most one of 'sni', 'hostHeader', 'pathBegin' could be set.
753+
*/
754+
pathBegin?: string
749755
}
750756

751757
export interface CreateCertificateRequestCustomCertificate {

0 commit comments

Comments
 (0)