[Snyk] Upgrade @apollo/client from 3.6.2 to 3.7.15 #311
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR was automatically created by Snyk using the credentials of a real user.
Snyk has created this PR to upgrade @apollo/client from 3.6.2 to 3.7.15.
ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
Release notes
Package name: @apollo/client
-
3.7.15 - 2023-05-26
-
-
-
3.7.14 - 2023-05-03
-
-
-
3.7.13 - 2023-04-27
-
-
-
3.7.12 - 2023-04-12
- #10735
-
3.7.11 - 2023-03-31
-
-
-
-
- Kicking off multiple requests in parallel with the execution function will now ensure each returned promise is resolved with the data from its request. Previously, each promise was resolved with data from the last execution.
- Re-rendering
-
-
-
-
3.7.10 - 2023-03-02
-
-
-
3.7.9 - 2023-02-17
-
-
-
3.7.8 - 2023-02-15
-
-
-
-
3.7.7 - 2023-02-03
-
-
-
-
3.7.6 - 2023-01-31
-
3.7.5 - 2023-01-24
-
3.7.4 - 2023-01-13
-
3.7.3 - 2022-12-15
-
3.7.2 - 2022-12-06
-
3.7.1 - 2022-10-20
-
3.7.0 - 2022-09-30
-
3.7.0-rc.0 - 2022-09-21
-
3.7.0-beta.8 - 2022-09-21
-
3.7.0-beta.7 - 2022-09-08
-
3.7.0-beta.6 - 2022-06-27
-
3.7.0-beta.5 - 2022-06-10
-
3.7.0-beta.4 - 2022-06-10
-
3.7.0-beta.3 - 2022-06-07
-
3.7.0-beta.2 - 2022-06-07
-
3.7.0-beta.1 - 2022-05-26
-
3.7.0-beta.0 - 2022-05-25
-
3.7.0-alpha.6 - 2022-05-19
-
3.7.0-alpha.5 - 2022-05-16
-
3.7.0-alpha.4 - 2022-05-13
-
3.7.0-alpha.3 - 2022-05-09
-
3.7.0-alpha.2 - 2022-05-03
-
3.7.0-alpha.1 - 2022-05-03
-
3.7.0-alpha.0 - 2022-04-27
-
3.6.10 - 2022-09-29
-
3.6.9 - 2022-06-21
-
3.6.8 - 2022-06-10
-
3.6.7 - 2022-06-10
-
3.6.6 - 2022-05-26
-
3.6.5 - 2022-05-23
-
3.6.4 - 2022-05-16
-
3.6.3 - 2022-05-05
-
3.6.2 - 2022-05-03
from @apollo/client GitHub release notesPatch Changes
#10891
ab42a5c08Thanks @ laverdet! - Fixes a bug in how multipart responses are read when using@ defer. When reading a multipart body,HttpLinkno longer attempts to parse the boundary (e.g."---"or other boundary string) within the response data itself, only when reading the beginning of each mulitpart chunked message.#10789
23a4e1578Thanks @ phryneas! - Fix a bug where other fields could be aliased to__typenameorid, in which case an incoming result would be merged into the wrong cache entry.Patch Changes
#10764
1b0a61fe5Thanks @ phryneas! - DeprecateuseFragmentreturnPartialDataoption#10810
a6252774fThanks @ dleavitt! - Fix type signature ofServerError.In <3.7
HttpLinkandBatchHttpLinkwould return aServerError.messageof e.g."Unexpected token 'E', \"Error! Foo bar\" is not valid JSON"and aServerError.resultofundefinedin the case where a server returned a >= 300 response code with a response body containing a string that could not be parsed as JSON.In >=3.7,
messagebecame e.g.Response not successful: Received status code 302andresultbecame the string from the response body, however the type inServerError.resultwas not updated to include thestringtype, which is now properly reflected.Patch Changes
#10805
a5503666cThanks @ phryneas! - Fix a potential memory leak in SSR scenarios when manypersistedQueryinstances were created over time.#10718
577c68bddThanks @ Hsifnus! - Delay Concast subscription teardown slightly inuseSubscriptionto prevent unexpected Concast teardown when oneuseSubscriptionhook tears down its in-flight Concast subscription immediately followed by anotheruseSubscriptionhook reusing and subscribing to that same ConcastPatch Changes
895bcdcffThanks @ alessbell! - If a multipart chunk contains onlyhasNext: false, immediately complete the observable.Patch Changes
#10586
4175af594Thanks @ alessbell! - Improve WebSocket error handling for genericEventreceived on error. For more information see https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/error_event.#10411
152baac34Thanks @ lovasoa! - Simplify error message generation and make 'undefined' an impossible message string.#10592
cdb98ae08Thanks @ alessbell! - Adds support for multipart subscriptions inHttpLink.#10698
38508a251Thanks @ jerelmiller! - Changes the behavior ofuseLazyQueryintroduced in #10427 where unmounting a component before a query was resolved would reject the promise with an abort error. Instead, the promise will now resolve naturally with the result from the request.Other notable fixes:
useLazyQuerywith a different query document will now ensure the execution function uses the updated query document. Previously, only the query document rendered the first time would be used for the request.#10660
364bee98fThanks @ alessbell! - Upgrades TypeScript to v5. This change is fully backward-compatible and transparent to users.#10597
8fb9d190dThanks @ phryneas! - Fix a bug where an incoming cache update could prevent future updates from the active link.#10629
02605bb3cThanks @ phryneas! -useQuery: delay unsubscribe to fix race conditionsPatch Changes
#9438
52a9c8ea1Thanks @ dciesielkiewicz! - Ensure theclientoption passed touseMutation's execute function is used when provided. Previously this option was ignored.#9124
975b923c0Thanks @ andrebrantom! - MakeApolloClient.writeQueryandApolloClient.writeFragmentbehave more likecache.writeQueryandcache.writeFragmentby returning the reference returned by the cache.Patch Changes
#10560
a561ecf43Thanks @ benjamn! - Keep__typenamefragment when it does not contain@ clientdirective and strip out inline fragments which use a@ clientdirective. Thanks @ Gazler and @ mtsmfm!#10560
251a12806Thanks @ benjamn! - RefactorremoveDirectivesFromDocumentto fix AST ordering sensitivities and avoid 1/3 AST traversals, potentially improving performance for large queriesPatch Changes
#7555
45562d6faThanks @ TheCeloReis! - AddsTVariablesgeneric toGraphQLRequestandMockedResponseinterfaces.#10526
1d13de4f1Thanks @ benjamn! - Tolerate undefinedconcast.sourcesifcompletecalled earlier thanconcast.start#10497
8a883d8a1Thanks @ nevir! - UpdateSingleExecutionResultandIncrementalPayload'sdatatypes such that they no longer includeundefined, which was not a valid runtime value, to fix errors when TypeScript'sexactOptionalPropertyTypesis enabled.Patch Changes
#10502
315faf9caThanks @ jerelmiller! - Log a warning to the console when a mock passed toMockedProviderorMockLinkcannot be matched to a query during a test. This makes it easier to debug user errors in the mock setup, such as typos, especially if the query under test is using anerrorPolicyset toignore, which makes it difficult to know that a match did not occur.#10499
9e54f5dfaThanks @ phryneas! - Allow the execution function returned byuseLazyQueryto change the query.#10362
14a56b105Thanks @ mccraveiro! - Fix error when server returns an error and we are also querying for a local fieldCommit messages
Package name: @apollo/client
Compare
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.
For more information:
🧐 View latest project report
🛠 Adjust upgrade PR settings
🔕 Ignore this dependency or unsubscribe from future upgrade PRs
This change is