Skip to content

Commit adde443

Browse files
authored
Update dependencies (orval-labs#2670)
* chore: update dependencies * chore: update formatting after prettier update * chore: fix linting
1 parent 154c686 commit adde443

File tree

26 files changed

+762
-817
lines changed

26 files changed

+762
-817
lines changed

.yarnrc.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ npmRegistryServer: https://registry.npmjs.org
1313

1414
# https://yarnpkg.com/features/catalogs
1515
catalog:
16-
eslint: 9.39.1
17-
'@eslint/js': 9.39.1
18-
prettier: 3.6.2
19-
rimraf: 6.1.0
20-
tsdown: 0.16.4
16+
eslint: 9.39.2
17+
'@eslint/js': 9.39.2
18+
prettier: 3.7.4
19+
rimraf: 6.1.2
20+
tsdown: 0.18.2
2121
typescript: 5.9.3
22-
vitest: 4.0.8
22+
vitest: 4.0.16
2323
'@types/node': 22.18.12
24-
'@scalar/openapi-types': 0.5.2
24+
'@scalar/openapi-types': 0.5.3
2525

2626
# using named catalogs to align packages in /tests with /samples
2727
catalogs:

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,18 @@
4545
"esbuild-plugin-alias": "^0.2.1",
4646
"eslint": "catalog:",
4747
"eslint-config-prettier": "^10.1.8",
48-
"eslint-config-turbo": "^2.6.1",
48+
"eslint-config-turbo": "^2.7.1",
4949
"eslint-plugin-prettier": "^5.5.4",
5050
"eslint-plugin-simple-import-sort": "^12.1.1",
51-
"eslint-plugin-unicorn": "^61.0.2",
51+
"eslint-plugin-unicorn": "^62.0.0",
5252
"globals": "^16.5.0",
5353
"husky": "^9.1.7",
5454
"lint-staged": "^16.2.6",
5555
"prettier": "catalog:",
5656
"rimraf": "catalog:",
57-
"turbo": "^2.6.1",
57+
"turbo": "^2.7.1",
5858
"typescript": "catalog:",
59-
"typescript-eslint": "^8.46.4",
59+
"typescript-eslint": "^8.50.1",
6060
"vitest": "catalog:"
6161
},
6262
"stableVersion": "8.0.0-rc.4"

packages/angular/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ const generateImplementation = (
191191
const propsImplementation =
192192
mutator.bodyTypeName && body.definition
193193
? toObjectString(props, 'implementation').replace(
194-
new RegExp(`(\\w*):\\s?${body.definition}`),
194+
new RegExp(String.raw`(\w*):\s?${body.definition}`),
195195
`$1: ${mutator.bodyTypeName}<${body.definition}>`,
196196
)
197197
: toObjectString(props, 'implementation');

packages/axios/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const generateAxiosImplementation = (
130130
const propsImplementation =
131131
mutator.bodyTypeName && body.definition
132132
? toObjectString(props, 'implementation').replace(
133-
new RegExp(`(\\w*):\\s?${body.definition}`),
133+
new RegExp(String.raw`(\w*):\s?${body.definition}`),
134134
`$1: ${mutator.bodyTypeName}<${body.definition}>`,
135135
)
136136
: toObjectString(props, 'implementation');

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@
3939
"chalk": "^5.6.2",
4040
"compare-versions": "^6.1.1",
4141
"debug": "^4.4.3",
42-
"esbuild": "^0.27.0",
42+
"esbuild": "^0.27.2",
4343
"esutils": "2.0.3",
4444
"fs-extra": "^11.3.2",
45-
"globby": "16.0.0",
45+
"globby": "16.1.0",
4646
"remeda": "^2.32.0",
4747
"typedoc": "^0.28.14"
4848
},

packages/orval/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@
8181
"@orval/query": "workspace:*",
8282
"@orval/swr": "workspace:*",
8383
"@orval/zod": "workspace:*",
84-
"@scalar/json-magic": "^0.8.3",
85-
"@scalar/openapi-parser": "^0.23.4",
84+
"@scalar/json-magic": "^0.8.8",
85+
"@scalar/openapi-parser": "^0.23.9",
8686
"@scalar/openapi-types": "catalog:",
8787
"chalk": "^5.6.2",
88-
"chokidar": "^4.0.3",
88+
"chokidar": "^5.0.0",
8989
"commander": "^14.0.2",
9090
"enquirer": "^2.4.1",
9191
"execa": "^9.6.0",

packages/swr/src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ const generateAxiosRequestFunction = (
9696
const propsImplementation =
9797
mutator.bodyTypeName && body.definition
9898
? toObjectString(props, 'implementation').replace(
99-
new RegExp(`(\\w*):\\s?${body.definition}`),
99+
new RegExp(String.raw`(\w*):\s?${body.definition}`),
100100
`$1: ${mutator.bodyTypeName}<${body.definition}>`,
101101
)
102102
: toObjectString(props, 'implementation');

samples/angular-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929
"@angular/cli": "^20.3.1",
3030
"@angular/compiler-cli": "^20.3.2",
3131
"@faker-js/faker": "^10.1.0",
32-
"msw": "^2.12.1",
32+
"msw": "^2.12.4",
3333
"orval": "workspace:*",
34-
"rimraf": "^6.1.0",
34+
"rimraf": "^6.1.2",
3535
"typescript": "~5.8.3",
36-
"vitest": "^4.0.8"
36+
"vitest": "^4.0.16"
3737
},
3838
"dependenciesMeta": {
3939
"msw": {

samples/basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"dependencies": {
2121
"@faker-js/faker": "^10.1.0",
2222
"axios": "^1.13.2",
23-
"msw": "^2.12.1"
23+
"msw": "^2.12.4"
2424
},
2525
"dependenciesMeta": {
2626
"msw": {

samples/hono/composite-routes-with-tags-split/src/endpoints/validator.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ type Hook<
4747
T,
4848
E extends Env,
4949
P extends string,
50-
Target extends
51-
keyof ValidationTargetsWithResponse = keyof ValidationTargetsWithResponse,
50+
Target extends keyof ValidationTargetsWithResponse =
51+
keyof ValidationTargetsWithResponse,
5252
O = {},
5353
Schema extends ZodSchema = any,
5454
> = (

0 commit comments

Comments
 (0)