Skip to content

Conversation

phryneas
Copy link
Member

This PR prevents the DevTool installation warning to be turned into a documentation link.

Checklist:

  • If this PR contains changes to the library itself (not necessary for e.g. docs updates), please include a changeset (see CONTRIBUTING.md)
  • If this PR is a new feature, please reference an issue where a consensus about the design was reached (not necessary for small changes)
  • Make sure all of the significant new logic is covered by tests

@changeset-bot
Copy link

changeset-bot bot commented Jun 30, 2023

🦋 Changeset detected

Latest commit: a3578f6

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@apollo/client Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@phryneas
Copy link
Member Author

Here is a diff of all the built files, but while artificially keeping message ids stable:

differences in *.js files

4 files with differences

./core/ApolloClient.js
64c64,65
<                     __DEV__ && invariant.log(14, url);
---
>                     __DEV__ && invariant.log("Download the Apollo DevTools for a better development " +
>                         "experience: %s", url);
./core/core.cjs.native.js
2246c2246,2247
<                     globals.__DEV__ && globals.invariant.log(14, url);
---
>                     globals.__DEV__ && globals.invariant.log("Download the Apollo DevTools for a better development " +
>                         "experience: %s", url);
./invariantErrorCodes.js
409,416c409
< export const devLog = {
<   14: {
<     file: "@apollo/client/core/ApolloClient.js",
< 
<     message: "Download the Apollo DevTools for a better development " +
<         "experience: %s"
<   }
< };
---
> export const devLog = {};
./dev/dev.cjs.native.js
417,424c417
< const devLog = {
<   14: {
<     file: "@apollo/client/core/ApolloClient.js",
< 
<     message: "Download the Apollo DevTools for a better development " +
<         "experience: %s"
<   }
< };
---
> const devLog = {};

differences in *.cjs files

3 files with differences

./core/core.cjs
2246c2246,2247
<                     globals.__DEV__ && globals.invariant.log(14, url);
---
>                     globals.__DEV__ && globals.invariant.log("Download the Apollo DevTools for a better development " +
>                         "experience: %s", url);
./apollo-client.cjs
6646c6646,6647
<                     __DEV__ && invariant.log(14, url);
---
>                     __DEV__ && invariant.log("Download the Apollo DevTools for a better development " +
>                         "experience: %s", url);
./dev/dev.cjs
417,424c417
< const devLog = {
<   14: {
<     file: "@apollo/client/core/ApolloClient.js",
< 
<     message: "Download the Apollo DevTools for a better development " +
<         "experience: %s"
<   }
< };
---
> const devLog = {};

differences in *.d.ts files

0 files with differences

differences in other files

0 files with differences

@phryneas
Copy link
Member Author

And here is a diff of the actual file changes introduced by this PR:

differences in *.js files

44 files with differences

./core/ObservableQuery.js
185c185
<                     19,
---
>                     18,
276c276
<                 __DEV__ && invariant.error(20, err);
---
>                 __DEV__ && invariant.error(19, err);
375c375
<         invariant(pollInterval, 21);
---
>         invariant(pollInterval, 20);
530c530
<     __DEV__ && invariant.error(22, error.message, error.stack);
---
>     __DEV__ && invariant.error(21, error.message, error.stack);
534c534
<         __DEV__ && invariant.debug(23, missing);
---
>         __DEV__ && invariant.debug(22, missing);
./core/LocalState.js
181c181
<                             invariant(fragment, 17, selection.name.value);
---
>                             invariant(fragment, 16, selection.name.value);
294c294
<                         invariant(fragment, 18, spread.name.value);
---
>                         invariant(fragment, 17, spread.name.value);
./core/ApolloClient.js
64c64,65
<                     __DEV__ && invariant.log(14, url);
---
>                     __DEV__ && invariant.log("Download the Apollo DevTools for a better development " +
>                         "experience: %s", url);
127c128
<         invariant(options.fetchPolicy !== "cache-and-network", 15);
---
>         invariant(options.fetchPolicy !== "cache-and-network", 14);
216c217
<             __DEV__ && invariant.debug(16, error);
---
>             __DEV__ && invariant.debug(15, error);
./core/QueryManager.js
52c52
<         this.cancelPendingFetches(newInvariantError(24));
---
>         this.cancelPendingFetches(newInvariantError(23));
66c66
<                         invariant(mutation, 25);
---
>                         invariant(mutation, 24);
68c68
<                             fetchPolicy === "no-cache", 26);
---
>                             fetchPolicy === "no-cache", 25);
386,389c386,389
<         invariant(options.query, 27);
<         invariant(options.query.kind === "Document", 28);
<         invariant(!options.returnPartialData, 29);
<         invariant(!options.pollInterval, 30);
---
>         invariant(options.query, 26);
>         invariant(options.query.kind === "Document", 27);
>         invariant(!options.returnPartialData, 28);
>         invariant(!options.pollInterval, 29);
414c414
<         this.cancelPendingFetches(newInvariantError(31));
---
>         this.cancelPendingFetches(newInvariantError(30));
490c490
<                     __DEV__ && invariant.warn(typeof nameOrDoc === "string" ? 32 : 33, nameOrDoc);
---
>                     __DEV__ && invariant.warn(typeof nameOrDoc === "string" ? 31 : 32, nameOrDoc);
./core/core.cjs.native.js
368c368
<                     19,
---
>                     18,
459c459
<                 globals.__DEV__ && globals.invariant.error(20, err);
---
>                 globals.__DEV__ && globals.invariant.error(19, err);
557c557
<         globals.invariant(pollInterval, 21);
---
>         globals.invariant(pollInterval, 20);
710c710
<     globals.__DEV__ && globals.invariant.error(22, error.message, error.stack);
---
>     globals.__DEV__ && globals.invariant.error(21, error.message, error.stack);
714c714
<         globals.__DEV__ && globals.invariant.debug(23, missing);
---
>         globals.__DEV__ && globals.invariant.debug(22, missing);
896c896
<                             globals.invariant(fragment, 17, selection.name.value);
---
>                             globals.invariant(fragment, 16, selection.name.value);
1009c1009
<                         globals.invariant(fragment, 18, spread.name.value);
---
>                         globals.invariant(fragment, 17, spread.name.value);
1346c1346
<         this.cancelPendingFetches(globals.newInvariantError(24));
---
>         this.cancelPendingFetches(globals.newInvariantError(23));
1360c1360
<                         globals.invariant(mutation, 25);
---
>                         globals.invariant(mutation, 24);
1362c1362
<                             fetchPolicy === "no-cache", 26);
---
>                             fetchPolicy === "no-cache", 25);
1680,1683c1680,1683
<         globals.invariant(options.query, 27);
<         globals.invariant(options.query.kind === "Document", 28);
<         globals.invariant(!options.returnPartialData, 29);
<         globals.invariant(!options.pollInterval, 30);
---
>         globals.invariant(options.query, 26);
>         globals.invariant(options.query.kind === "Document", 27);
>         globals.invariant(!options.returnPartialData, 28);
>         globals.invariant(!options.pollInterval, 29);
1708c1708
<         this.cancelPendingFetches(globals.newInvariantError(31));
---
>         this.cancelPendingFetches(globals.newInvariantError(30));
1784c1784
<                     globals.__DEV__ && globals.invariant.warn(typeof nameOrDoc === "string" ? 32 : 33, nameOrDoc);
---
>                     globals.__DEV__ && globals.invariant.warn(typeof nameOrDoc === "string" ? 31 : 32, nameOrDoc);
2246c2246,2247
<                     globals.__DEV__ && globals.invariant.log(14, url);
---
>                     globals.__DEV__ && globals.invariant.log("Download the Apollo DevTools for a better development " +
>                         "experience: %s", url);
2309c2310
<         globals.invariant(options.fetchPolicy !== "cache-and-network", 15);
---
>         globals.invariant(options.fetchPolicy !== "cache-and-network", 14);
2398c2399
<             globals.__DEV__ && globals.invariant.debug(16, error);
---
>             globals.__DEV__ && globals.invariant.debug(15, error);
./invariantErrorCodes.js
57c57
<   15: {
---
>   14: {
67c67
<   17: {
---
>   16: {
73c73
<   18: {
---
>   17: {
79c79
<   21: {
---
>   20: {
85c85
<   24: {
---
>   23: {
90c90
<   25: {
---
>   24: {
96c96
<   26: {
---
>   25: {
102c102
<   27: {
---
>   26: {
110c110
<   28: {
---
>   27: {
116c116
<   29: {
---
>   28: {
122c122
<   30: {
---
>   29: {
128c128
<   31: {
---
>   30: {
133c133
<   35: {
---
>   34: {
138c138
<   36: {
---
>   35: {
143c143
<   38: {
---
>   37: {
148c148
<   39: {
---
>   38: {
157c157
<   40: {
---
>   39: {
163c163
<   42: {
---
>   41: {
168c168
<   43: {
---
>   42: {
176c176
<   44: {
---
>   43: {
186c186
<   45: {
---
>   44: {
194c194
<   46: {
---
>   45: {
202c202
<   47: {
---
>   46: {
210c210
<   48: {
---
>   47: {
219c219
<   50: {
---
>   49: {
228c228
<   55: {
---
>   54: {
237c237
<   56: {
---
>   55: {
243c243
<   59: {
---
>   58: {
252c252
<   60: {
---
>   59: {
260c260
<   61: {
---
>   60: {
270c270
<   62: {
---
>   61: {
279c279
<   63: {
---
>   62: {
287c287
<   64: {
---
>   63: {
293c293
<   65: {
---
>   64: {
299c299
<   66: {
---
>   65: {
305c305
<   67: {
---
>   66: {
311c311
<   68: {
---
>   67: {
317c317
<   69: {
---
>   68: {
323c323
<   70: {
---
>   69: {
330c330
<   71: {
---
>   70: {
336c336
<   72: {
---
>   71: {
342c342
<   73: {
---
>   72: {
348c348
<   74: {
---
>   73: {
353c353
<   75: {
---
>   74: {
359c359
<   76: {
---
>   75: {
365c365
<   77: {
---
>   76: {
371c371
<   78: {
---
>   77: {
377c377
<   79: {
---
>   78: {
383c383
<   80: {
---
>   79: {
388c388
<   81: {
---
>   80: {
398c398
<   16: {
---
>   15: {
403c403
<   23: {
---
>   22: {
409,416c409
< export const devLog = {
<   14: {
<     file: "@apollo/client/core/ApolloClient.js",
< 
<     message: "Download the Apollo DevTools for a better development " +
<         "experience: %s"
<   }
< };
---
> export const devLog = {};
434c427
<   19: {
---
>   18: {
439c432
<   32: {
---
>   31: {
444c437
<   33: {
---
>   32: {
449c442
<   34: {
---
>   33: {
454c447
<   37: {
---
>   36: {
459c452
<   41: {
---
>   40: {
464c457
<   49: {
---
>   48: {
469c462
<   51: {
---
>   50: {
474c467
<   52: {
---
>   51: {
479c472
<   53: {
---
>   52: {
484c477
<   54: {
---
>   53: {
489c482
<   57: {
---
>   56: {
494c487
<   83: {
---
>   82: {
508c501
<   20: {
---
>   19: {
513c506
<   22: {
---
>   21: {
518c511
<   58: {
---
>   57: {
523c516
<   82: {
---
>   81: {
./utilities/utilities.cjs.native.js
22c22
<             globals.invariant(evaledValue !== void 0, 66, directive.name.value);
---
>             globals.invariant(evaledValue !== void 0, 65, directive.name.value);
69c69
<             globals.invariant(directiveArguments && directiveArguments.length === 1, 67, directiveName);
---
>             globals.invariant(directiveArguments && directiveArguments.length === 1, 66, directiveName);
71c71
<             globals.invariant(ifArgument.name && ifArgument.name.value === "if", 68, directiveName);
---
>             globals.invariant(ifArgument.name && ifArgument.name.value === "if", 67, directiveName);
74c74
<                 (ifValue.kind === "Variable" || ifValue.kind === "BooleanValue"), 69, directiveName);
---
>                 (ifValue.kind === "Variable" || ifValue.kind === "BooleanValue"), 68, directiveName);
107c107
<                 70,
---
>                 69,
117c117
<         globals.invariant(fragments.length === 1, 71, fragments.length);
---
>         globals.invariant(fragments.length === 1, 70, fragments.length);
158c158
<             globals.invariant(fragment, 72, fragmentName);
---
>             globals.invariant(fragment, 71, fragmentName);
236c236
<         throw globals.newInvariantError(81, name.value, value.kind);
---
>         throw globals.newInvariantError(80, name.value, value.kind);
381c381
<     globals.invariant(doc && doc.kind === "Document", 73);
---
>     globals.invariant(doc && doc.kind === "Document", 72);
386c386
<             throw globals.newInvariantError(74, definition.kind);
---
>             throw globals.newInvariantError(73, definition.kind);
390c390
<     globals.invariant(operations.length <= 1, 75, operations.length);
---
>     globals.invariant(operations.length <= 1, 74, operations.length);
413c413
<     globals.invariant(queryDef && queryDef.operation === "query", 76);
---
>     globals.invariant(queryDef && queryDef.operation === "query", 75);
417,418c417,418
<     globals.invariant(doc.kind === "Document", 77);
<     globals.invariant(doc.definitions.length <= 1, 78);
---
>     globals.invariant(doc.kind === "Document", 76);
>     globals.invariant(doc.definitions.length <= 1, 77);
420c420
<     globals.invariant(fragmentDef.kind === "FragmentDefinition", 79);
---
>     globals.invariant(fragmentDef.kind === "FragmentDefinition", 78);
443c443
<     throw globals.newInvariantError(80);
---
>     throw globals.newInvariantError(79);
515c515
<             globals.invariant(Array.isArray(cacheKeys), 65);
---
>             globals.invariant(Array.isArray(cacheKeys), 64);
608c608
<         globals.__DEV__ && globals.invariant.error(82);
---
>         globals.__DEV__ && globals.invariant.error(81);
784c784
<                 globals.__DEV__ && globals.invariant.warn(83);
---
>                 globals.__DEV__ && globals.invariant.warn(82);
./utilities/graphql/storeUtils.js
74c74
<         throw newInvariantError(81, name.value, value.kind);
---
>         throw newInvariantError(80, name.value, value.kind);
./utilities/graphql/fragments.js
9c9
<                 70,
---
>                 69,
19c19
<         invariant(fragments.length === 1, 71, fragments.length);
---
>         invariant(fragments.length === 1, 70, fragments.length);
60c60
<             invariant(fragment, 72, fragmentName);
---
>             invariant(fragment, 71, fragmentName);
./utilities/graphql/directives.js
13c13
<             invariant(evaledValue !== void 0, 66, directive.name.value);
---
>             invariant(evaledValue !== void 0, 65, directive.name.value);
60c60
<             invariant(directiveArguments && directiveArguments.length === 1, 67, directiveName);
---
>             invariant(directiveArguments && directiveArguments.length === 1, 66, directiveName);
62c62
<             invariant(ifArgument.name && ifArgument.name.value === "if", 68, directiveName);
---
>             invariant(ifArgument.name && ifArgument.name.value === "if", 67, directiveName);
65c65
<                 (ifValue.kind === "Variable" || ifValue.kind === "BooleanValue"), 69, directiveName);
---
>                 (ifValue.kind === "Variable" || ifValue.kind === "BooleanValue"), 68, directiveName);
./utilities/graphql/DocumentTransform.js
62c62
<             invariant(Array.isArray(cacheKeys), 65);
---
>             invariant(Array.isArray(cacheKeys), 64);
./utilities/graphql/transform.js
78c78
<         __DEV__ && invariant.error(82);
---
>         __DEV__ && invariant.error(81);
254c254
<                 __DEV__ && invariant.warn(83);
---
>                 __DEV__ && invariant.warn(82);
./utilities/graphql/getFromAST.js
4c4
<     invariant(doc && doc.kind === "Document", 73);
---
>     invariant(doc && doc.kind === "Document", 72);
9c9
<             throw newInvariantError(74, definition.kind);
---
>             throw newInvariantError(73, definition.kind);
13c13
<     invariant(operations.length <= 1, 75, operations.length);
---
>     invariant(operations.length <= 1, 74, operations.length);
36c36
<     invariant(queryDef && queryDef.operation === "query", 76);
---
>     invariant(queryDef && queryDef.operation === "query", 75);
40,41c40,41
<     invariant(doc.kind === "Document", 77);
<     invariant(doc.definitions.length <= 1, 78);
---
>     invariant(doc.kind === "Document", 76);
>     invariant(doc.definitions.length <= 1, 77);
43c43
<     invariant(fragmentDef.kind === "FragmentDefinition", 79);
---
>     invariant(fragmentDef.kind === "FragmentDefinition", 78);
66c66
<     throw newInvariantError(80);
---
>     throw newInvariantError(79);
./testing/core/mocking/mockLink.js
114c114
<         invariant(queryWithoutConnection, 64);
---
>         invariant(queryWithoutConnection, 63);
./testing/core/core.cjs.native.js
121c121
<         globals.invariant(queryWithoutConnection, 64);
---
>         globals.invariant(queryWithoutConnection, 63);
./link/core/ApolloLink.js
50c50
<             __DEV__ && invariant.warn(34, firstLink);
---
>             __DEV__ && invariant.warn(33, firstLink);
74c74
<         throw newInvariantError(35);
---
>         throw newInvariantError(34);
./link/core/core.cjs.native.js
55c55
<             globals.__DEV__ && globals.invariant.warn(34, firstLink);
---
>             globals.__DEV__ && globals.invariant.warn(33, firstLink);
79c79
<         throw globals.newInvariantError(35);
---
>         throw globals.newInvariantError(34);
./link/utils/utils.cjs.native.js
22c22
<                     globals.__DEV__ && globals.invariant.warn(41);
---
>                     globals.__DEV__ && globals.invariant.warn(40);
65c65
<             throw globals.newInvariantError(42, key);
---
>             throw globals.newInvariantError(41, key);
./link/utils/validateOperation.js
13c13
<             throw newInvariantError(42, key);
---
>             throw newInvariantError(41, key);
./link/utils/toPromise.js
8c8
<                     __DEV__ && invariant.warn(41);
---
>                     __DEV__ && invariant.warn(40);
./link/http/checkFetcher.js
4c4
<         throw newInvariantError(36);
---
>         throw newInvariantError(35);
./link/http/createHttpLink.js
81c81
<                 __DEV__ && invariant.warn(37);
---
>                 __DEV__ && invariant.warn(36);
./link/http/http.cjs.native.js
333c333
<         var parseError = globals.newInvariantError(38, label, e.message);
---
>         var parseError = globals.newInvariantError(37, label, e.message);
416c416
<         throw globals.newInvariantError(36);
---
>         throw globals.newInvariantError(35);
551c551
<                 globals.__DEV__ && globals.invariant.warn(37);
---
>                 globals.__DEV__ && globals.invariant.warn(36);
./link/http/serializeFetchParameter.js
8c8
<         var parseError = newInvariantError(38, label, e.message);
---
>         var parseError = newInvariantError(37, label, e.message);
./link/persisted-queries/index.js
45c45
<         typeof options.generateHash === "function"), 39);
---
>         typeof options.generateHash === "function"), 38);
61c61
<         invariant(forward, 40);
---
>         invariant(forward, 39);
./link/persisted-queries/persisted-queries.cjs.native.js
46c46
<         typeof options.generateHash === "function"), 39);
---
>         typeof options.generateHash === "function"), 38);
62c62
<         globals.invariant(forward, 40);
---
>         globals.invariant(forward, 39);
./dev/dev.cjs.native.js
65c65
<   15: {
---
>   14: {
75c75
<   17: {
---
>   16: {
81c81
<   18: {
---
>   17: {
87c87
<   21: {
---
>   20: {
93c93
<   24: {
---
>   23: {
98c98
<   25: {
---
>   24: {
104c104
<   26: {
---
>   25: {
110c110
<   27: {
---
>   26: {
118c118
<   28: {
---
>   27: {
124c124
<   29: {
---
>   28: {
130c130
<   30: {
---
>   29: {
136c136
<   31: {
---
>   30: {
141c141
<   35: {
---
>   34: {
146c146
<   36: {
---
>   35: {
151c151
<   38: {
---
>   37: {
156c156
<   39: {
---
>   38: {
165c165
<   40: {
---
>   39: {
171c171
<   42: {
---
>   41: {
176c176
<   43: {
---
>   42: {
184c184
<   44: {
---
>   43: {
194c194
<   45: {
---
>   44: {
202c202
<   46: {
---
>   45: {
210c210
<   47: {
---
>   46: {
218c218
<   48: {
---
>   47: {
227c227
<   50: {
---
>   49: {
236c236
<   55: {
---
>   54: {
245c245
<   56: {
---
>   55: {
251c251
<   59: {
---
>   58: {
260c260
<   60: {
---
>   59: {
268c268
<   61: {
---
>   60: {
278c278
<   62: {
---
>   61: {
287c287
<   63: {
---
>   62: {
295c295
<   64: {
---
>   63: {
301c301
<   65: {
---
>   64: {
307c307
<   66: {
---
>   65: {
313c313
<   67: {
---
>   66: {
319c319
<   68: {
---
>   67: {
325c325
<   69: {
---
>   68: {
331c331
<   70: {
---
>   69: {
338c338
<   71: {
---
>   70: {
344c344
<   72: {
---
>   71: {
350c350
<   73: {
---
>   72: {
356c356
<   74: {
---
>   73: {
361c361
<   75: {
---
>   74: {
367c367
<   76: {
---
>   75: {
373c373
<   77: {
---
>   76: {
379c379
<   78: {
---
>   77: {
385c385
<   79: {
---
>   78: {
391c391
<   80: {
---
>   79: {
396c396
<   81: {
---
>   80: {
406c406
<   16: {
---
>   15: {
411c411
<   23: {
---
>   22: {
417,424c417
< const devLog = {
<   14: {
<     file: "@apollo/client/core/ApolloClient.js",
< 
<     message: "Download the Apollo DevTools for a better development " +
<         "experience: %s"
<   }
< };
---
> const devLog = {};
442c435
<   19: {
---
>   18: {
447c440
<   32: {
---
>   31: {
452c445
<   33: {
---
>   32: {
457c450
<   34: {
---
>   33: {
462c455
<   37: {
---
>   36: {
467c460
<   41: {
---
>   40: {
472c465
<   49: {
---
>   48: {
477c470
<   51: {
---
>   50: {
482c475
<   52: {
---
>   51: {
487c480
<   53: {
---
>   52: {
492c485
<   54: {
---
>   53: {
497c490
<   57: {
---
>   56: {
502c495
<   83: {
---
>   82: {
516c509
<   20: {
---
>   19: {
521c514
<   22: {
---
>   21: {
526c519
<   58: {
---
>   57: {
531c524
<   82: {
---
>   81: {
./react/context/ApolloContext.js
8c8
<     invariant("createContext" in React, 44);
---
>     invariant("createContext" in React, 43);
./react/context/ApolloProvider.js
12c12
<     invariant(context.client, 45);
---
>     invariant(context.client, 44);
./react/context/context.cjs.native.js
28c28
<     globals.invariant("createContext" in React__namespace, 44);
---
>     globals.invariant("createContext" in React__namespace, 43);
37c37
<         globals.invariant(context && context.client, 43);
---
>         globals.invariant(context && context.client, 42);
49c49
<     globals.invariant(context.client, 45);
---
>     globals.invariant(context.client, 44);
./react/context/ApolloConsumer.js
7c7
<         invariant(context && context.client, 43);
---
>         invariant(context && context.client, 42);
./react/hoc/withApollo.js
20c20
<             invariant(operationOptions.withRef, 47);
---
>             invariant(operationOptions.withRef, 46);
./react/hoc/hoc-utils.js
37c37
<         invariant(this.withRef, 46);
---
>         invariant(this.withRef, 45);
./react/hoc/hoc.cjs.native.js
62c62
<         globals.invariant(this.withRef, 46);
---
>         globals.invariant(this.withRef, 45);
293c293
<             globals.invariant(operationOptions.withRef, 47);
---
>             globals.invariant(operationOptions.withRef, 46);
./react/parser/index.js
29c29
<     invariant(!!document && !!document.kind, 59, document);
---
>     invariant(!!document && !!document.kind, 58, document);
55c55
<         (queries.length || mutations.length || subscriptions.length), 60);
---
>         (queries.length || mutations.length || subscriptions.length), 59);
58c58
<         61,
---
>         60,
72c72
<     invariant(definitions.length === 1, 62, document, definitions.length);
---
>     invariant(definitions.length === 1, 61, document, definitions.length);
91c91
<         63,
---
>         62,
./react/parser/parser.cjs.native.js
34c34
<     globals.invariant(!!document && !!document.kind, 59, document);
---
>     globals.invariant(!!document && !!document.kind, 58, document);
60c60
<         (queries.length || mutations.length || subscriptions.length), 60);
---
>         (queries.length || mutations.length || subscriptions.length), 59);
63c63
<         61,
---
>         60,
77c77
<     globals.invariant(definitions.length === 1, 62, document, definitions.length);
---
>     globals.invariant(definitions.length === 1, 61, document, definitions.length);
96c96
<         63,
---
>         62,
./react/hooks/useReadQuery.js
10c10
<     invariant(internalQueryRef.promiseCache, 50);
---
>     invariant(internalQueryRef.promiseCache, 49);
./react/hooks/useQuery.js
57c57
<         __DEV__ && invariant.warn(49);
---
>         __DEV__ && invariant.warn(48);
./react/hooks/useSyncExternalStore.js
13c13
<         __DEV__ && invariant.error(58);
---
>         __DEV__ && invariant.error(57);
./react/hooks/hooks.cjs.native.js
38c38
<     globals.invariant(!!client, 48);
---
>     globals.invariant(!!client, 47);
51c51
<         globals.__DEV__ && globals.invariant.error(58);
---
>         globals.__DEV__ && globals.invariant.error(57);
131c131
<         globals.__DEV__ && globals.invariant.warn(49);
---
>         globals.__DEV__ && globals.invariant.warn(48);
542c542
<             globals.__DEV__ && globals.invariant.warn(options.onData ? 51 : 52);
---
>             globals.__DEV__ && globals.invariant.warn(options.onData ? 50 : 51);
545c545
<             globals.__DEV__ && globals.invariant.warn(options.onComplete ? 53 : 54);
---
>             globals.__DEV__ && globals.invariant.warn(options.onComplete ? 52 : 53);
756c756
<     globals.invariant(suspenseCache, 55);
---
>     globals.invariant(suspenseCache, 54);
841c841
<     globals.invariant(supportedFetchPolicies.includes(fetchPolicy), 56, fetchPolicy);
---
>     globals.invariant(supportedFetchPolicies.includes(fetchPolicy), 55, fetchPolicy);
845c845
<         globals.__DEV__ && globals.invariant.warn(57);
---
>         globals.__DEV__ && globals.invariant.warn(56);
1046c1046
<     invariant__default(internalQueryRef.promiseCache, 50);
---
>     invariant__default(internalQueryRef.promiseCache, 49);
./react/hooks/useSuspenseCache.js
7c7
<     invariant(suspenseCache, 55);
---
>     invariant(suspenseCache, 54);
./react/hooks/useSubscription.js
19c19
<             __DEV__ && invariant.warn(options.onData ? 51 : 52);
---
>             __DEV__ && invariant.warn(options.onData ? 50 : 51);
22c22
<             __DEV__ && invariant.warn(options.onComplete ? 53 : 54);
---
>             __DEV__ && invariant.warn(options.onComplete ? 52 : 53);
./react/hooks/useApolloClient.js
7c7
<     invariant(!!client, 48);
---
>     invariant(!!client, 47);
./react/hooks/useSuspenseQuery.js
92c92
<     invariant(supportedFetchPolicies.includes(fetchPolicy), 56, fetchPolicy);
---
>     invariant(supportedFetchPolicies.includes(fetchPolicy), 55, fetchPolicy);
96c96
<         __DEV__ && invariant.warn(57);
---
>         __DEV__ && invariant.warn(56);

differences in *.cjs files

14 files with differences

./core/core.cjs
368c368
<                     19,
---
>                     18,
459c459
<                 globals.__DEV__ && globals.invariant.error(20, err);
---
>                 globals.__DEV__ && globals.invariant.error(19, err);
557c557
<         globals.invariant(pollInterval, 21);
---
>         globals.invariant(pollInterval, 20);
710c710
<     globals.__DEV__ && globals.invariant.error(22, error.message, error.stack);
---
>     globals.__DEV__ && globals.invariant.error(21, error.message, error.stack);
714c714
<         globals.__DEV__ && globals.invariant.debug(23, missing);
---
>         globals.__DEV__ && globals.invariant.debug(22, missing);
896c896
<                             globals.invariant(fragment, 17, selection.name.value);
---
>                             globals.invariant(fragment, 16, selection.name.value);
1009c1009
<                         globals.invariant(fragment, 18, spread.name.value);
---
>                         globals.invariant(fragment, 17, spread.name.value);
1346c1346
<         this.cancelPendingFetches(globals.newInvariantError(24));
---
>         this.cancelPendingFetches(globals.newInvariantError(23));
1360c1360
<                         globals.invariant(mutation, 25);
---
>                         globals.invariant(mutation, 24);
1362c1362
<                             fetchPolicy === "no-cache", 26);
---
>                             fetchPolicy === "no-cache", 25);
1680,1683c1680,1683
<         globals.invariant(options.query, 27);
<         globals.invariant(options.query.kind === "Document", 28);
<         globals.invariant(!options.returnPartialData, 29);
<         globals.invariant(!options.pollInterval, 30);
---
>         globals.invariant(options.query, 26);
>         globals.invariant(options.query.kind === "Document", 27);
>         globals.invariant(!options.returnPartialData, 28);
>         globals.invariant(!options.pollInterval, 29);
1708c1708
<         this.cancelPendingFetches(globals.newInvariantError(31));
---
>         this.cancelPendingFetches(globals.newInvariantError(30));
1784c1784
<                     globals.__DEV__ && globals.invariant.warn(typeof nameOrDoc === "string" ? 32 : 33, nameOrDoc);
---
>                     globals.__DEV__ && globals.invariant.warn(typeof nameOrDoc === "string" ? 31 : 32, nameOrDoc);
2246c2246,2247
<                     globals.__DEV__ && globals.invariant.log(14, url);
---
>                     globals.__DEV__ && globals.invariant.log("Download the Apollo DevTools for a better development " +
>                         "experience: %s", url);
2309c2310
<         globals.invariant(options.fetchPolicy !== "cache-and-network", 15);
---
>         globals.invariant(options.fetchPolicy !== "cache-and-network", 14);
2398c2399
<             globals.__DEV__ && globals.invariant.debug(16, error);
---
>             globals.__DEV__ && globals.invariant.debug(15, error);
./apollo-client.cjs
135c135
<             invariant(evaledValue !== void 0, 66, directive.name.value);
---
>             invariant(evaledValue !== void 0, 65, directive.name.value);
171c171
<             invariant(directiveArguments && directiveArguments.length === 1, 67, directiveName);
---
>             invariant(directiveArguments && directiveArguments.length === 1, 66, directiveName);
173c173
<             invariant(ifArgument.name && ifArgument.name.value === "if", 68, directiveName);
---
>             invariant(ifArgument.name && ifArgument.name.value === "if", 67, directiveName);
176c176
<                 (ifValue.kind === "Variable" || ifValue.kind === "BooleanValue"), 69, directiveName);
---
>                 (ifValue.kind === "Variable" || ifValue.kind === "BooleanValue"), 68, directiveName);
203c203
<                 70,
---
>                 69,
213c213
<         invariant(fragments.length === 1, 71, fragments.length);
---
>         invariant(fragments.length === 1, 70, fragments.length);
254c254
<             invariant(fragment, 72, fragmentName);
---
>             invariant(fragment, 71, fragmentName);
332c332
<         throw newInvariantError(81, name.value, value.kind);
---
>         throw newInvariantError(80, name.value, value.kind);
477c477
<     invariant(doc && doc.kind === "Document", 73);
---
>     invariant(doc && doc.kind === "Document", 72);
482c482
<             throw newInvariantError(74, definition.kind);
---
>             throw newInvariantError(73, definition.kind);
486c486
<     invariant(operations.length <= 1, 75, operations.length);
---
>     invariant(operations.length <= 1, 74, operations.length);
509c509
<     invariant(queryDef && queryDef.operation === "query", 76);
---
>     invariant(queryDef && queryDef.operation === "query", 75);
513,514c513,514
<     invariant(doc.kind === "Document", 77);
<     invariant(doc.definitions.length <= 1, 78);
---
>     invariant(doc.kind === "Document", 76);
>     invariant(doc.definitions.length <= 1, 77);
516c516
<     invariant(fragmentDef.kind === "FragmentDefinition", 79);
---
>     invariant(fragmentDef.kind === "FragmentDefinition", 78);
539c539
<     throw newInvariantError(80);
---
>     throw newInvariantError(79);
611c611
<             invariant(Array.isArray(cacheKeys), 65);
---
>             invariant(Array.isArray(cacheKeys), 64);
704c704
<         __DEV__ && invariant.error(82);
---
>         __DEV__ && invariant.error(81);
1381c1381
<                     __DEV__ && invariant.warn(41);
---
>                     __DEV__ && invariant.warn(40);
1424c1424
<             throw newInvariantError(42, key);
---
>             throw newInvariantError(41, key);
1531c1531
<             __DEV__ && invariant.warn(34, firstLink);
---
>             __DEV__ && invariant.warn(33, firstLink);
1555c1555
<         throw newInvariantError(35);
---
>         throw newInvariantError(34);
1930c1930
<         var parseError = newInvariantError(38, label, e.message);
---
>         var parseError = newInvariantError(37, label, e.message);
2013c2013
<         throw newInvariantError(36);
---
>         throw newInvariantError(35);
2148c2148
<                 __DEV__ && invariant.warn(37);
---
>                 __DEV__ && invariant.warn(36);
4768c4768
<                     19,
---
>                     18,
4859c4859
<                 __DEV__ && invariant.error(20, err);
---
>                 __DEV__ && invariant.error(19, err);
4957c4957
<         invariant(pollInterval, 21);
---
>         invariant(pollInterval, 20);
5110c5110
<     __DEV__ && invariant.error(22, error.message, error.stack);
---
>     __DEV__ && invariant.error(21, error.message, error.stack);
5114c5114
<         __DEV__ && invariant.debug(23, missing);
---
>         __DEV__ && invariant.debug(22, missing);
5296c5296
<                             invariant(fragment, 17, selection.name.value);
---
>                             invariant(fragment, 16, selection.name.value);
5409c5409
<                         invariant(fragment, 18, spread.name.value);
---
>                         invariant(fragment, 17, spread.name.value);
5746c5746
<         this.cancelPendingFetches(newInvariantError(24));
---
>         this.cancelPendingFetches(newInvariantError(23));
5760c5760
<                         invariant(mutation, 25);
---
>                         invariant(mutation, 24);
5762c5762
<                             fetchPolicy === "no-cache", 26);
---
>                             fetchPolicy === "no-cache", 25);
6080,6083c6080,6083
<         invariant(options.query, 27);
<         invariant(options.query.kind === "Document", 28);
<         invariant(!options.returnPartialData, 29);
<         invariant(!options.pollInterval, 30);
---
>         invariant(options.query, 26);
>         invariant(options.query.kind === "Document", 27);
>         invariant(!options.returnPartialData, 28);
>         invariant(!options.pollInterval, 29);
6108c6108
<         this.cancelPendingFetches(newInvariantError(31));
---
>         this.cancelPendingFetches(newInvariantError(30));
6184c6184
<                     __DEV__ && invariant.warn(typeof nameOrDoc === "string" ? 32 : 33, nameOrDoc);
---
>                     __DEV__ && invariant.warn(typeof nameOrDoc === "string" ? 31 : 32, nameOrDoc);
6646c6646,6647
<                     __DEV__ && invariant.log(14, url);
---
>                     __DEV__ && invariant.log("Download the Apollo DevTools for a better development " +
>                         "experience: %s", url);
6709c6710
<         invariant(options.fetchPolicy !== "cache-and-network", 15);
---
>         invariant(options.fetchPolicy !== "cache-and-network", 14);
6798c6799
<             __DEV__ && invariant.debug(16, error);
---
>             __DEV__ && invariant.debug(15, error);
6834c6835
<     invariant("createContext" in React__namespace, 44);
---
>     invariant("createContext" in React__namespace, 43);
6843c6844
<         invariant(context && context.client, 43);
---
>         invariant(context && context.client, 42);
6855c6856
<     invariant(context.client, 45);
---
>     invariant(context.client, 44);
6862c6863
<     invariant(!!client, 48);
---
>     invariant(!!client, 47);
6875c6876
<         __DEV__ && invariant.error(58);
---
>         __DEV__ && invariant.error(57);
6938c6939
<     invariant(!!document && !!document.kind, 59, document);
---
>     invariant(!!document && !!document.kind, 58, document);
6964c6965
<         (queries.length || mutations.length || subscriptions.length), 60);
---
>         (queries.length || mutations.length || subscriptions.length), 59);
6967c6968
<         61,
---
>         60,
6981c6982
<     invariant(definitions.length === 1, 62, document, definitions.length);
---
>     invariant(definitions.length === 1, 61, document, definitions.length);
7000c7001
<         63,
---
>         62,
7051c7052
<         __DEV__ && invariant.warn(49);
---
>         __DEV__ && invariant.warn(48);
7462c7463
<             __DEV__ && invariant.warn(options.onData ? 51 : 52);
---
>             __DEV__ && invariant.warn(options.onData ? 50 : 51);
7465c7466
<             __DEV__ && invariant.warn(options.onComplete ? 53 : 54);
---
>             __DEV__ && invariant.warn(options.onComplete ? 52 : 53);
7676c7677
<     invariant(suspenseCache, 55);
---
>     invariant(suspenseCache, 54);
7761c7762
<     invariant(supportedFetchPolicies.includes(fetchPolicy), 56, fetchPolicy);
---
>     invariant(supportedFetchPolicies.includes(fetchPolicy), 55, fetchPolicy);
7765c7766
<         __DEV__ && invariant.warn(57);
---
>         __DEV__ && invariant.warn(56);
7966c7967
<     invariant__default(internalQueryRef.promiseCache, 50);
---
>     invariant__default(internalQueryRef.promiseCache, 49);
./apollo-client.min.cjs
> Minified file differs.
./utilities/utilities.cjs
22c22
<             globals.invariant(evaledValue !== void 0, 66, directive.name.value);
---
>             globals.invariant(evaledValue !== void 0, 65, directive.name.value);
69c69
<             globals.invariant(directiveArguments && directiveArguments.length === 1, 67, directiveName);
---
>             globals.invariant(directiveArguments && directiveArguments.length === 1, 66, directiveName);
71c71
<             globals.invariant(ifArgument.name && ifArgument.name.value === "if", 68, directiveName);
---
>             globals.invariant(ifArgument.name && ifArgument.name.value === "if", 67, directiveName);
74c74
<                 (ifValue.kind === "Variable" || ifValue.kind === "BooleanValue"), 69, directiveName);
---
>                 (ifValue.kind === "Variable" || ifValue.kind === "BooleanValue"), 68, directiveName);
107c107
<                 70,
---
>                 69,
117c117
<         globals.invariant(fragments.length === 1, 71, fragments.length);
---
>         globals.invariant(fragments.length === 1, 70, fragments.length);
158c158
<             globals.invariant(fragment, 72, fragmentName);
---
>             globals.invariant(fragment, 71, fragmentName);
236c236
<         throw globals.newInvariantError(81, name.value, value.kind);
---
>         throw globals.newInvariantError(80, name.value, value.kind);
381c381
<     globals.invariant(doc && doc.kind === "Document", 73);
---
>     globals.invariant(doc && doc.kind === "Document", 72);
386c386
<             throw globals.newInvariantError(74, definition.kind);
---
>             throw globals.newInvariantError(73, definition.kind);
390c390
<     globals.invariant(operations.length <= 1, 75, operations.length);
---
>     globals.invariant(operations.length <= 1, 74, operations.length);
413c413
<     globals.invariant(queryDef && queryDef.operation === "query", 76);
---
>     globals.invariant(queryDef && queryDef.operation === "query", 75);
417,418c417,418
<     globals.invariant(doc.kind === "Document", 77);
<     globals.invariant(doc.definitions.length <= 1, 78);
---
>     globals.invariant(doc.kind === "Document", 76);
>     globals.invariant(doc.definitions.length <= 1, 77);
420c420
<     globals.invariant(fragmentDef.kind === "FragmentDefinition", 79);
---
>     globals.invariant(fragmentDef.kind === "FragmentDefinition", 78);
443c443
<     throw globals.newInvariantError(80);
---
>     throw globals.newInvariantError(79);
515c515
<             globals.invariant(Array.isArray(cacheKeys), 65);
---
>             globals.invariant(Array.isArray(cacheKeys), 64);
608c608
<         globals.__DEV__ && globals.invariant.error(82);
---
>         globals.__DEV__ && globals.invariant.error(81);
784c784
<                 globals.__DEV__ && globals.invariant.warn(83);
---
>                 globals.__DEV__ && globals.invariant.warn(82);
./testing/core/core.cjs
121c121
<         globals.invariant(queryWithoutConnection, 64);
---
>         globals.invariant(queryWithoutConnection, 63);
./link/core/core.cjs
55c55
<             globals.__DEV__ && globals.invariant.warn(34, firstLink);
---
>             globals.__DEV__ && globals.invariant.warn(33, firstLink);
79c79
<         throw globals.newInvariantError(35);
---
>         throw globals.newInvariantError(34);
./link/utils/utils.cjs
22c22
<                     globals.__DEV__ && globals.invariant.warn(41);
---
>                     globals.__DEV__ && globals.invariant.warn(40);
65c65
<             throw globals.newInvariantError(42, key);
---
>             throw globals.newInvariantError(41, key);
./link/http/http.cjs
333c333
<         var parseError = globals.newInvariantError(38, label, e.message);
---
>         var parseError = globals.newInvariantError(37, label, e.message);
416c416
<         throw globals.newInvariantError(36);
---
>         throw globals.newInvariantError(35);
551c551
<                 globals.__DEV__ && globals.invariant.warn(37);
---
>                 globals.__DEV__ && globals.invariant.warn(36);
./link/persisted-queries/persisted-queries.cjs
46c46
<         typeof options.generateHash === "function"), 39);
---
>         typeof options.generateHash === "function"), 38);
62c62
<         globals.invariant(forward, 40);
---
>         globals.invariant(forward, 39);
./dev/dev.cjs
65c65
<   15: {
---
>   14: {
75c75
<   17: {
---
>   16: {
81c81
<   18: {
---
>   17: {
87c87
<   21: {
---
>   20: {
93c93
<   24: {
---
>   23: {
98c98
<   25: {
---
>   24: {
104c104
<   26: {
---
>   25: {
110c110
<   27: {
---
>   26: {
118c118
<   28: {
---
>   27: {
124c124
<   29: {
---
>   28: {
130c130
<   30: {
---
>   29: {
136c136
<   31: {
---
>   30: {
141c141
<   35: {
---
>   34: {
146c146
<   36: {
---
>   35: {
151c151
<   38: {
---
>   37: {
156c156
<   39: {
---
>   38: {
165c165
<   40: {
---
>   39: {
171c171
<   42: {
---
>   41: {
176c176
<   43: {
---
>   42: {
184c184
<   44: {
---
>   43: {
194c194
<   45: {
---
>   44: {
202c202
<   46: {
---
>   45: {
210c210
<   47: {
---
>   46: {
218c218
<   48: {
---
>   47: {
227c227
<   50: {
---
>   49: {
236c236
<   55: {
---
>   54: {
245c245
<   56: {
---
>   55: {
251c251
<   59: {
---
>   58: {
260c260
<   60: {
---
>   59: {
268c268
<   61: {
---
>   60: {
278c278
<   62: {
---
>   61: {
287c287
<   63: {
---
>   62: {
295c295
<   64: {
---
>   63: {
301c301
<   65: {
---
>   64: {
307c307
<   66: {
---
>   65: {
313c313
<   67: {
---
>   66: {
319c319
<   68: {
---
>   67: {
325c325
<   69: {
---
>   68: {
331c331
<   70: {
---
>   69: {
338c338
<   71: {
---
>   70: {
344c344
<   72: {
---
>   71: {
350c350
<   73: {
---
>   72: {
356c356
<   74: {
---
>   73: {
361c361
<   75: {
---
>   74: {
367c367
<   76: {
---
>   75: {
373c373
<   77: {
---
>   76: {
379c379
<   78: {
---
>   77: {
385c385
<   79: {
---
>   78: {
391c391
<   80: {
---
>   79: {
396c396
<   81: {
---
>   80: {
406c406
<   16: {
---
>   15: {
411c411
<   23: {
---
>   22: {
417,424c417
< const devLog = {
<   14: {
<     file: "@apollo/client/core/ApolloClient.js",
< 
<     message: "Download the Apollo DevTools for a better development " +
<         "experience: %s"
<   }
< };
---
> const devLog = {};
442c435
<   19: {
---
>   18: {
447c440
<   32: {
---
>   31: {
452c445
<   33: {
---
>   32: {
457c450
<   34: {
---
>   33: {
462c455
<   37: {
---
>   36: {
467c460
<   41: {
---
>   40: {
472c465
<   49: {
---
>   48: {
477c470
<   51: {
---
>   50: {
482c475
<   52: {
---
>   51: {
487c480
<   53: {
---
>   52: {
492c485
<   54: {
---
>   53: {
497c490
<   57: {
---
>   56: {
502c495
<   83: {
---
>   82: {
516c509
<   20: {
---
>   19: {
521c514
<   22: {
---
>   21: {
526c519
<   58: {
---
>   57: {
531c524
<   82: {
---
>   81: {
./react/context/context.cjs
28c28
<     globals.invariant("createContext" in React__namespace, 44);
---
>     globals.invariant("createContext" in React__namespace, 43);
37c37
<         globals.invariant(context && context.client, 43);
---
>         globals.invariant(context && context.client, 42);
49c49
<     globals.invariant(context.client, 45);
---
>     globals.invariant(context.client, 44);
./react/hoc/hoc.cjs
62c62
<         globals.invariant(this.withRef, 46);
---
>         globals.invariant(this.withRef, 45);
293c293
<             globals.invariant(operationOptions.withRef, 47);
---
>             globals.invariant(operationOptions.withRef, 46);
./react/parser/parser.cjs
34c34
<     globals.invariant(!!document && !!document.kind, 59, document);
---
>     globals.invariant(!!document && !!document.kind, 58, document);
60c60
<         (queries.length || mutations.length || subscriptions.length), 60);
---
>         (queries.length || mutations.length || subscriptions.length), 59);
63c63
<         61,
---
>         60,
77c77
<     globals.invariant(definitions.length === 1, 62, document, definitions.length);
---
>     globals.invariant(definitions.length === 1, 61, document, definitions.length);
96c96
<         63,
---
>         62,
./react/hooks/hooks.cjs
38c38
<     globals.invariant(!!client, 48);
---
>     globals.invariant(!!client, 47);
51c51
<         globals.__DEV__ && globals.invariant.error(58);
---
>         globals.__DEV__ && globals.invariant.error(57);
131c131
<         globals.__DEV__ && globals.invariant.warn(49);
---
>         globals.__DEV__ && globals.invariant.warn(48);
542c542
<             globals.__DEV__ && globals.invariant.warn(options.onData ? 51 : 52);
---
>             globals.__DEV__ && globals.invariant.warn(options.onData ? 50 : 51);
545c545
<             globals.__DEV__ && globals.invariant.warn(options.onComplete ? 53 : 54);
---
>             globals.__DEV__ && globals.invariant.warn(options.onComplete ? 52 : 53);
756c756
<     globals.invariant(suspenseCache, 55);
---
>     globals.invariant(suspenseCache, 54);
841c841
<     globals.invariant(supportedFetchPolicies.includes(fetchPolicy), 56, fetchPolicy);
---
>     globals.invariant(supportedFetchPolicies.includes(fetchPolicy), 55, fetchPolicy);
845c845
<         globals.__DEV__ && globals.invariant.warn(57);
---
>         globals.__DEV__ && globals.invariant.warn(56);
1046c1046
<     invariant__default(internalQueryRef.promiseCache, 50);
---
>     invariant__default(internalQueryRef.promiseCache, 49);

differences in *.d.ts files

0 files with differences

differences in other files

0 files with differences

@github-actions
Copy link
Contributor

github-actions bot commented Jun 30, 2023

size-limit report 📦

Path Size
dist/apollo-client.min.cjs 36.85 KB (+0.01% 🔺)
import { ApolloClient, InMemoryCache, HttpLink } from "dist/main.cjs" 43.43 KB (+0.1% 🔺)
import { ApolloClient, InMemoryCache, HttpLink } from "dist/index.js" 32.61 KB (+0.13% 🔺)
import { ApolloProvider } from "dist/react/index.js" 1.3 KB (0%)
import { useQuery } from "dist/react/index.js" 4.33 KB (0%)
import { useLazyQuery } from "dist/react/index.js" 4.65 KB (0%)
import { useMutation } from "dist/react/index.js" 2.56 KB (+0.04% 🔺)
import { useSubscription } from "dist/react/index.js" 2.32 KB (+0.05% 🔺)
import { useSuspenseQuery } from "dist/react/index.js" 3.71 KB (0%)
import { useBackgroundQuery } from "dist/react/index.js" 3.78 KB (0%)
import { useReadQuery } from "dist/react/index.js" 2.48 KB (+0.04% 🔺)
import { useFragment } from "dist/react/index.js" 2.12 KB (0%)

@phryneas
Copy link
Member Author

/release:pr

@github-actions
Copy link
Contributor

A new release has been made for this PR. You can install it with npm i @apollo/[email protected].

@phryneas phryneas self-assigned this Jul 3, 2023
Copy link
Member

@jerelmiller jerelmiller left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for putting this back! I'm sure we would have had a lot of comments about this one otherwise.

@phryneas phryneas merged commit e47cfd0 into release-3.8 Jul 5, 2023
@phryneas phryneas deleted the pr/keep-devtool-warning branch July 5, 2023 11:30
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Aug 5, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants