Skip to content

Commit 07f293b

Browse files
fix: update dependency @apollo/client to v3.11.9
1 parent 46bf806 commit 07f293b

File tree

5 files changed

+76
-54
lines changed

5 files changed

+76
-54
lines changed

packages/graphql/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"react-router-dom": "^5.1.0"
3333
},
3434
"devDependencies": {
35-
"@apollo/client": "3.4.17",
35+
"@apollo/client": "3.11.9",
3636
"react": "^17.0.2",
3737
"react-dom": "^17.0.2",
3838
"react-helmet-async": "^1.0.9",

packages/react-apollo/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"displayName": "unit"
2424
},
2525
"dependencies": {
26-
"@apollo/client": "3.4.17",
26+
"@apollo/client": "3.11.9",
2727
"@graphql-tools/schema": "^8.0.0",
2828
"cross-fetch": "^3.0.4",
2929
"find-up": "^5.0.0",

packages/spec/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"node": "14 || 16"
2929
},
3030
"devDependencies": {
31-
"@apollo/client": "3.4.17",
31+
"@apollo/client": "3.11.9",
3232
"@graphql-tools/delegate": "^8.0.0",
3333
"@graphql-tools/mock": "^8.0.0",
3434
"@graphql-tools/schema": "^8.0.0",

packages/template-graphql/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"serve": "hops serve"
1515
},
1616
"dependencies": {
17-
"@apollo/client": "3.4.17",
17+
"@apollo/client": "3.11.9",
1818
"hops": "16.0.0-nightly.5",
1919
"hops-postcss": "16.0.0-nightly.5",
2020
"hops-react-apollo": "16.0.0-nightly.5",

yarn.lock

+72-50
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,25 @@
99
dependencies:
1010
"@jridgewell/trace-mapping" "^0.3.0"
1111

12-
"@apollo/client@3.4.17":
13-
version "3.4.17"
14-
resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.4.17.tgz#4972e19a49809e16d17c5adc67f45623a6dac135"
15-
integrity sha512-MDt2rwMX1GqodiVEKJqmDmAz8xr0qJmq5PdWeIt0yDaT4GOkKYWZiWkyfhfv3raTk8PyJvbsNG9q2CqmUrlGfg==
16-
dependencies:
17-
"@graphql-typed-document-node/core" "^3.0.0"
18-
"@wry/context" "^0.6.0"
19-
"@wry/equality" "^0.5.0"
20-
"@wry/trie" "^0.3.0"
21-
graphql-tag "^2.12.3"
12+
"@apollo/client@3.11.9":
13+
version "3.11.9"
14+
resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.11.9.tgz#d7f998a6e8496667f157823d50a746c4e5a20b46"
15+
integrity sha512-aQ6VL+CPO1G4DLS/3FelfA+nl+ZQCP5qeN1NS6J8xh9wumUM/2W1ccneqCYmbTMDtoSunxE1BV2W6u0FF4axwQ==
16+
dependencies:
17+
"@graphql-typed-document-node/core" "^3.1.1"
18+
"@wry/caches" "^1.0.0"
19+
"@wry/equality" "^0.5.6"
20+
"@wry/trie" "^0.5.0"
21+
graphql-tag "^2.12.6"
2222
hoist-non-react-statics "^3.3.2"
23-
optimism "^0.16.1"
23+
optimism "^0.18.0"
2424
prop-types "^15.7.2"
25+
rehackt "^0.1.0"
26+
response-iterator "^0.2.6"
2527
symbol-observable "^4.0.0"
26-
ts-invariant "^0.9.0"
28+
ts-invariant "^0.10.3"
2729
tslib "^2.3.0"
28-
zen-observable-ts "~1.1.0"
30+
zen-observable-ts "^1.2.5"
2931

3032
3133
version "1.2.2"
@@ -1426,10 +1428,10 @@
14261428
tslib "~2.3.0"
14271429
value-or-promise "1.0.11"
14281430

1429-
"@graphql-typed-document-node/core@^3.0.0":
1430-
version "3.1.1"
1431-
resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.1.1.tgz#076d78ce99822258cf813ecc1e7fa460fa74d052"
1432-
integrity sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==
1431+
"@graphql-typed-document-node/core@^3.1.1":
1432+
version "3.2.0"
1433+
resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.2.0.tgz#5f3d96ec6b2354ad6d8a28bf216a1d97b5426861"
1434+
integrity sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==
14331435

14341436
"@humanwhocodes/config-array@^0.9.2":
14351437
version "0.9.5"
@@ -3057,11 +3059,6 @@
30573059
dependencies:
30583060
"@types/node" "*"
30593061

3060-
3061-
version "0.8.3"
3062-
resolved "https://registry.yarnpkg.com/@types/zen-observable/-/zen-observable-0.8.3.tgz#781d360c282436494b32fe7d9f7f8e64b3118aa3"
3063-
integrity sha512-fbF6oTd4sGGy0xjHPKAt+eS2CrxJ3+6gQ3FGcBoIJR2TLAyCkCyI8JqZNy+FeON0AhVgNJoUumVoZQjBFUqHkw==
3064-
30653062
"@vishnucss/chips@^1.1.2":
30663063
version "1.1.2"
30673064
resolved "https://registry.yarnpkg.com/@vishnucss/chips/-/chips-1.1.2.tgz#3de6c0f689461a3e026b82baddc04759ca88de70"
@@ -3188,24 +3185,38 @@
31883185
"@webassemblyjs/ast" "1.11.1"
31893186
"@xtuc/long" "4.2.2"
31903187

3191-
"@wry/context@^0.6.0":
3192-
version "0.6.1"
3193-
resolved "https://registry.yarnpkg.com/@wry/context/-/context-0.6.1.tgz#c3c29c0ad622adb00f6a53303c4f965ee06ebeb2"
3194-
integrity sha512-LOmVnY1iTU2D8tv4Xf6MVMZZ+juIJ87Kt/plMijjN20NMAXGmH4u8bS1t0uT74cZ5gwpocYueV58YwyI8y+GKw==
3188+
"@wry/caches@^1.0.0":
3189+
version "1.0.1"
3190+
resolved "https://registry.yarnpkg.com/@wry/caches/-/caches-1.0.1.tgz#8641fd3b6e09230b86ce8b93558d44cf1ece7e52"
3191+
integrity sha512-bXuaUNLVVkD20wcGBWRyo7j9N3TxePEWFZj2Y+r9OoUzfqmavM84+mFykRicNsBqatba5JLay1t48wxaXaWnlA==
31953192
dependencies:
31963193
tslib "^2.3.0"
31973194

3198-
"@wry/equality@^0.5.0":
3199-
version "0.5.2"
3200-
resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.5.2.tgz#72c8a7a7d884dff30b612f4f8464eba26c080e73"
3201-
integrity sha512-oVMxbUXL48EV/C0/M7gLVsoK6qRHPS85x8zECofEZOVvxGmIPLA9o5Z27cc2PoAyZz1S2VoM2A7FLAnpfGlneA==
3195+
"@wry/context@^0.7.0":
3196+
version "0.7.4"
3197+
resolved "https://registry.yarnpkg.com/@wry/context/-/context-0.7.4.tgz#e32d750fa075955c4ab2cfb8c48095e1d42d5990"
3198+
integrity sha512-jmT7Sb4ZQWI5iyu3lobQxICu2nC/vbUhP0vIdd6tHC9PTfenmRmuIFqktc6GH9cgi+ZHnsLWPvfSvc4DrYmKiQ==
32023199
dependencies:
32033200
tslib "^2.3.0"
32043201

3205-
"@wry/trie@^0.3.0":
3206-
version "0.3.1"
3207-
resolved "https://registry.yarnpkg.com/@wry/trie/-/trie-0.3.1.tgz#2279b790f15032f8bcea7fc944d27988e5b3b139"
3208-
integrity sha512-WwB53ikYudh9pIorgxrkHKrQZcCqNM/Q/bDzZBffEaGUKGuHrRb3zZUT9Sh2qw9yogC7SsdRmQ1ER0pqvd3bfw==
3202+
"@wry/equality@^0.5.6":
3203+
version "0.5.7"
3204+
resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.5.7.tgz#72ec1a73760943d439d56b7b1e9985aec5d497bb"
3205+
integrity sha512-BRFORjsTuQv5gxcXsuDXx6oGRhuVsEGwZy6LOzRRfgu+eSfxbhUQ9L9YtSEIuIjY/o7g3iWFjrc5eSY1GXP2Dw==
3206+
dependencies:
3207+
tslib "^2.3.0"
3208+
3209+
"@wry/trie@^0.4.3":
3210+
version "0.4.3"
3211+
resolved "https://registry.yarnpkg.com/@wry/trie/-/trie-0.4.3.tgz#077d52c22365871bf3ffcbab8e95cb8bc5689af4"
3212+
integrity sha512-I6bHwH0fSf6RqQcnnXLJKhkSXG45MFral3GxPaY4uAl0LYDZM+YDVDAiU9bYwjTuysy1S0IeecWtmq1SZA3M1w==
3213+
dependencies:
3214+
tslib "^2.3.0"
3215+
3216+
"@wry/trie@^0.5.0":
3217+
version "0.5.0"
3218+
resolved "https://registry.yarnpkg.com/@wry/trie/-/trie-0.5.0.tgz#11e783f3a53f6e4cd1d42d2d1323f5bc3fa99c94"
3219+
integrity sha512-FNoYzHawTMk/6KMQoEG5O4PuioX19UbwdQKF44yw0nLfOypfQdjtfZzo/UIJWAJ23sNIFbD1Ug9lbaDGMwbqQA==
32093220
dependencies:
32103221
tslib "^2.3.0"
32113222

@@ -6804,7 +6815,7 @@ [email protected]:
68046815
resolved "https://registry.yarnpkg.com/graphql-executor/-/graphql-executor-0.0.18.tgz#6aa4b39e1ca773e159c2a602621e90606df0109a"
68056816
integrity sha512-upUSl7tfZCZ5dWG1XkOvpG70Yk3duZKcCoi/uJso4WxJVT6KIrcK4nZ4+2X/hzx46pL8wAukgYHY6iNmocRN+g==
68066817

6807-
graphql-tag@^2.11.0, graphql-tag@^2.12.3:
6818+
graphql-tag@^2.11.0, graphql-tag@^2.12.3, graphql-tag@^2.12.6:
68086819
version "2.12.6"
68096820
resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.6.tgz#d441a569c1d2537ef10ca3d1633b48725329b5f1"
68106821
integrity sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==
@@ -9636,13 +9647,15 @@ opener@^1.5.2:
96369647
resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598"
96379648
integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==
96389649

9639-
optimism@^0.16.1:
9640-
version "0.16.1"
9641-
resolved "https://registry.yarnpkg.com/optimism/-/optimism-0.16.1.tgz#7c8efc1f3179f18307b887e18c15c5b7133f6e7d"
9642-
integrity sha512-64i+Uw3otrndfq5kaoGNoY7pvOhSsjFEN4bdEFh80MWVk/dbgJfMv7VFDeCT8LxNAlEVhQmdVEbfE7X2nWNIIg==
9650+
optimism@^0.18.0:
9651+
version "0.18.0"
9652+
resolved "https://registry.yarnpkg.com/optimism/-/optimism-0.18.0.tgz#e7bb38b24715f3fdad8a9a7fc18e999144bbfa63"
9653+
integrity sha512-tGn8+REwLRNFnb9WmcY5IfpOqeX2kpaYJ1s6Ae3mn12AeydLkR3j+jSCmVQFoXqU8D41PAJ1RG1rCRNWmNZVmQ==
96439654
dependencies:
9644-
"@wry/context" "^0.6.0"
9645-
"@wry/trie" "^0.3.0"
9655+
"@wry/caches" "^1.0.0"
9656+
"@wry/context" "^0.7.0"
9657+
"@wry/trie" "^0.4.3"
9658+
tslib "^2.3.0"
96469659

96479660
optionator@^0.8.1:
96489661
version "0.8.3"
@@ -11132,6 +11145,11 @@ regjsparser@^0.8.2:
1113211145
dependencies:
1113311146
jsesc "~0.5.0"
1113411147

11148+
rehackt@^0.1.0:
11149+
version "0.1.0"
11150+
resolved "https://registry.yarnpkg.com/rehackt/-/rehackt-0.1.0.tgz#a7c5e289c87345f70da8728a7eb878e5d03c696b"
11151+
integrity sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw==
11152+
1113511153
remove-trailing-separator@^1.0.1:
1113611154
version "1.1.0"
1113711155
resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
@@ -11268,6 +11286,11 @@ resolve@^2.0.0-next.3:
1126811286
is-core-module "^2.2.0"
1126911287
path-parse "^1.0.6"
1127011288

11289+
response-iterator@^0.2.6:
11290+
version "0.2.6"
11291+
resolved "https://registry.yarnpkg.com/response-iterator/-/response-iterator-0.2.6.tgz#249005fb14d2e4eeb478a3f735a28fd8b4c9f3da"
11292+
integrity sha512-pVzEEzrsg23Sh053rmDUvLSkGXluZio0qu8VT6ukrYuvtjVfCbDZH9d6PGXb8HZfzdNZt8feXv/jvUzlhRgLnw==
11293+
1127111294
restore-cursor@^2.0.0:
1127211295
version "2.0.0"
1127311296
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
@@ -12458,10 +12481,10 @@ trim-newlines@^3.0.0:
1245812481
resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144"
1245912482
integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==
1246012483

12461-
ts-invariant@^0.9.0:
12462-
version "0.9.4"
12463-
resolved "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.9.4.tgz#42ac6c791aade267dd9dc65276549df5c5d71cac"
12464-
integrity sha512-63jtX/ZSwnUNi/WhXjnK8kz4cHHpYS60AnmA6ixz17l7E12a5puCWFlNpkne5Rl0J8TBPVHpGjsj4fxs8ObVLQ==
12484+
ts-invariant@^0.10.3:
12485+
version "0.10.3"
12486+
resolved "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.10.3.tgz#3e048ff96e91459ffca01304dbc7f61c1f642f6c"
12487+
integrity sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==
1246512488
dependencies:
1246612489
tslib "^2.1.0"
1246712490

@@ -13277,12 +13300,11 @@ yocto-queue@^0.1.0:
1327713300
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
1327813301
integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
1327913302

13280-
zen-observable-ts@~1.1.0:
13281-
version "1.1.0"
13282-
resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-1.1.0.tgz#2d1aa9d79b87058e9b75698b92791c1838551f83"
13283-
integrity sha512-1h4zlLSqI2cRLPJUHJFL8bCWHhkpuXkF+dbGkRaWjgDIG26DmzyshUMrdV/rL3UnR+mhaX4fRq8LPouq0MYYIA==
13303+
zen-observable-ts@^1.2.5:
13304+
version "1.2.5"
13305+
resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-1.2.5.tgz#6c6d9ea3d3a842812c6e9519209365a122ba8b58"
13306+
integrity sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg==
1328413307
dependencies:
13285-
"@types/zen-observable" "0.8.3"
1328613308
zen-observable "0.8.15"
1328713309

1328813310
[email protected], zen-observable@^0.8.15:

0 commit comments

Comments
 (0)