This repository was archived by the owner on Jul 20, 2024. It is now read-only.
[Snyk] Upgrade @apollo/experimental-nextjs-app-support from 0.10.1 to 0.11.0#613
Open
tatsutakein wants to merge 1 commit intomainfrom
Open
[Snyk] Upgrade @apollo/experimental-nextjs-app-support from 0.10.1 to 0.11.0#613tatsutakein wants to merge 1 commit intomainfrom
tatsutakein wants to merge 1 commit intomainfrom
Conversation
….11.0 Snyk has created this PR to upgrade @apollo/experimental-nextjs-app-support from 0.10.1 to 0.11.0. See this package in npm: @apollo/experimental-nextjs-app-support See this project in Snyk: https://app.snyk.io/org/tatsutakein/project/9749cf28-33fd-4444-b2db-6430ae2d5f46?utm_source=github&utm_medium=referral&page=upgrade-pr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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/experimental-nextjs-app-support from 0.10.1 to 0.11.0.
ℹ️ 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.
The recommended version is 1 version ahead of your current version.
The recommended version was released on a month ago.
Release notes
Package name: @apollo/experimental-nextjs-app-support
-
0.11.0 - 2024-05-29
"use client";
- remove superjson dependency by @ phryneas in #274
- Transport minified version of query. by @ phryneas in #277
- add stream-utils sub-import by @ phryneas in #294
- update dependencies by @ phryneas in #297
- RSC preloading mechanism by @ phryneas in #258
- add shared
- Support next@15.0.0-rc.0 by @ nphmuller in #304
- Use a symbol property instead of instanceOf to check for correct ApolloClient/InMemoryCache by @ phryneas in #302
- Add deprecation messages to moved exports. by @ phryneas in #301
- update README to include PreloadQuery by @ phryneas in #303
- @ nphmuller made their first contribution in #304
-
0.10.1 - 2024-05-08
- Allow using the browser build of
from @apollo/experimental-nextjs-app-support GitHub release notesPrefetching queries for Client Components in RSC
Calling
registerApolloClientin RSC now also returns aPrefetchQuerycomponent that can be used to prefetch queries in RSC to seed the Client Component cache.Usage looks like
Client Components further down in the component tree can continue using
useSuspenseQuerywith the sameQUERYto retrieve that data.import { useSuspenseQuery } from "@ apollo/client";
// ...
export function ClientChild() {
const { data } = useSuspenseQuery(QUERY);
return <div>...</div>;
}
This also works with
QueryRefsfor usage withuseReadQueryin Client Components.For more details, see the new documentation at
https://github.com/apollographql/apollo-client-nextjs/tree/main?tab=readme-ov-file#preloading-data-in-rsc-for-usage-in-client-components
Renamed exports
In the past, the
@ apollo/experimental-nextjs-app-supportpackage had two entry points,/rscand/ssr.This has caused a lot of confusion, and both entry points have been moved together into the base entry point,
@ apollo/experimental-nextjs-app-support.On top of that, the Apollo Client React hooks (
useQuery,useSuspenseQuery, etc.) no longer need to be imported from@ apollo/experimental-nextjs-app-support, but they can be imported directly from@ apollo/clientnow, while still being streaming-compatible.Also, a few exports have been renamed:
NextSSRApolloClient->ApolloClientNextSSRInMemoryCache->InMemoryCacheresetNextSSRApolloSingletons->resetApolloClientSingletonsThe old entry points with the old exports still exist and each of them has a
@ deprecateddocblock explaining the new import to use.Next.js 15 support
next@15-rchas been added to thepeerDependencies, so this package can now be used with Next.js 15.Thank you for the PR, @ nphmuller!
Less transported data
In the past, we used the
superjsonpackage to serialize data to be transported from streaming SSR into the browser.This package is great to allow values like
undefined, circular references, and built-in class instances, likeDates.Unfortunately, though, this adds a lot of metadata to the transported data.
Since the data we need to transport is already JSON-serializable and we only need a bit of extra handling for
undefined, the SuperJSON dependency has been replaced with a more custom approach.This considerably reduces the amount of data transported.
If you have custom non-serializable data that needs to be transported, you can provide custom
stringifyandrevivefunctions.On top of that, we now transport a minified version of the Query, which saves additional data.
@ apollo/client-react-streaming/stream-utilsWe have added a new entry point,
@ apollo/client-react-streaming/stream-utils, which exports helper functions you can use to integrate Apollo Client with custom streaming SSR setups withrenderToReadableStreamandrenderToPipeableStream, e.g., in Vite.We are still working on documentation for this feature, but you can already take a peek at https://deploy-preview-11807--apollo-client-docs.netlify.app/ssr-and-rsc/custom-streaming-ssr.
What's Changed
@ apollo/experimental-nextjs-app-supportentry point by @ phryneas in #300New Contributors
Full Changelog: v.0.10.1...v.0.11.0
What's Changed
ApolloNextAppProvideroutside of Next.js, e.g. for tests. by @ phryneas in #284Full Changelog: v.0.10.0...v.0.10.1
Important
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: