Skip to content

Commit 8bb34e7

Browse files
renovate[bot]ardatangithub-actions[bot]
authoredAug 19, 2024··
chore(deps): update dependency typescript to v5.5.4 (#10069)
* chore(deps): update dependency typescript to v5.5.4 * Fix * chore(dependencies): updated changesets for modified dependencies * Lint --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Arda TANRIKULU <ardatanrikulu@gmail.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 5fb302c commit 8bb34e7

File tree

11 files changed

+21
-14
lines changed

11 files changed

+21
-14
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@graphql-codegen/cli": patch
3+
---
4+
dependencies updates:
5+
- Updated dependency [`@whatwg-node/fetch@^0.9.20` ↗︎](https://www.npmjs.com/package/@whatwg-node/fetch/v/0.9.20) (from `^0.8.0`, in `dependencies`)
6+
- Updated dependency [`graphql-config@^5.1.1` ↗︎](https://www.npmjs.com/package/graphql-config/v/5.1.1) (from `^5.0.2`, in `dependencies`)

‎examples/react/apollo-client-defer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"cypress": "13.13.3",
2121
"serve": "14.2.3",
2222
"start-server-and-test": "2.0.5",
23-
"typescript": "5.2.2",
23+
"typescript": "5.5.4",
2424
"vite": "^4.1.0"
2525
},
2626
"scripts": {

‎examples/react/apollo-client-swc-plugin/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@vitejs/plugin-react-swc": "^3.3.0",
1414
"@types/react": "18.3.3",
1515
"@types/react-dom": "18.3.0",
16-
"typescript": "5.2.2",
16+
"typescript": "5.5.4",
1717
"vite": "^4.1.0"
1818
},
1919
"scripts": {

‎examples/react/apollo-client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@types/node": "^20.0.0",
1616
"@types/react": "^18.0.15",
1717
"@types/react-dom": "^18.0.10",
18-
"typescript": "5.2.2",
18+
"typescript": "5.5.4",
1919
"serve": "14.2.3",
2020
"cypress": "13.13.3",
2121
"start-server-and-test": "2.0.5",

‎examples/react/http-executor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@types/node": "^20.0.0",
1515
"@types/react": "^18.0.17",
1616
"@types/react-dom": "^18.0.10",
17-
"typescript": "5.2.2",
17+
"typescript": "5.5.4",
1818
"serve": "14.2.3",
1919
"cypress": "13.13.3",
2020
"start-server-and-test": "2.0.5",

‎examples/react/nextjs-swr/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@
2727
"@types/react-dom": "^18.0.10",
2828
"eslint": "^9.0.0",
2929
"eslint-config-next": "^13.0.0",
30-
"typescript": "5.2.2"
30+
"typescript": "5.5.4"
3131
}
3232
}

‎examples/react/tanstack-react-query/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@types/node": "^20.0.0",
1515
"@types/react": "^18.0.17",
1616
"@types/react-dom": "^18.0.10",
17-
"typescript": "5.2.2",
17+
"typescript": "5.5.4",
1818
"serve": "14.2.3",
1919
"cypress": "13.13.3",
2020
"start-server-and-test": "2.0.5",

‎examples/react/urql/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@types/react-dom": "^18.0.10",
1313
"@graphql-codegen/cli": "^5.0.2",
1414
"@vitejs/plugin-react": "^3.1.0",
15-
"typescript": "5.2.2",
15+
"typescript": "5.5.4",
1616
"serve": "14.2.3",
1717
"cypress": "13.13.3",
1818
"start-server-and-test": "2.0.5",

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"ts-node": "10.9.2",
7070
"tslib": "2.6.3",
7171
"tsx": "4.17.0",
72-
"typescript": "5.2.2"
72+
"typescript": "5.5.4"
7373
},
7474
"lint-staged": {
7575
"packages/**/src/**/*.{ts,tsx}": [
@@ -91,7 +91,7 @@
9191
"**/apollo-language-server/graphql": "^16.0.0",
9292
"**/@types/graphql-upload/graphql": "^16.0.0",
9393
"ts-node": "10.9.2",
94-
"typescript": "5.2.2",
94+
"typescript": "5.5.4",
9595
"cosmiconfig": "8.3.6",
9696
"eslint-plugin-promise": "7.1.0"
9797
}

‎packages/graphql-codegen-cli/tests/cli-flags.spec.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import { TempDir } from './utils.js';
44
const mockConfig = (str: string, file = './codegen.yml') => temp.createFile(file, str);
55
const createArgv = (str = ''): string[] => {
66
const result = ['node', 'fake.js'];
7-
const regexp = /([^\s'"]+(['"])([^\2]*?)\2)|[^\s'"]+|(['"])([^\4]*?)\4/gi;
7+
// eslint-disable-next-line no-control-regex
8+
const regexp = /([^\s'"]+(['"])([^\x02]*?)\x02)|[^\s'"]+|(['"])([^\x04]*?)\x04/gi;
89

910
let match;
1011
do {

‎yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -15520,10 +15520,10 @@ typescript-json-schema@0.56.0:
1552015520
typescript "~4.9.5"
1552115521
yargs "^17.1.1"
1552215522

15523-
typescript@5.2.2, typescript@^5.0.0, typescript@~4.9.5:
15524-
version "5.2.2"
15525-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.2.2.tgz#5ebb5e5a5b75f085f22bc3f8460fba308310fa78"
15526-
integrity sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==
15523+
typescript@5.5.4, typescript@^5.0.0, typescript@~4.9.5:
15524+
version "5.5.4"
15525+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz#d9852d6c82bad2d2eda4fd74a5762a8f5909e9ba"
15526+
integrity sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==
1552715527

1552815528
ua-parser-js@^0.7.30:
1552915529
version "0.7.33"

0 commit comments

Comments
 (0)
Please sign in to comment.