Skip to content

Commit 98ba6e2

Browse files
authored
docs: V4 beta provider inheritance (#1684)
Related to #1682
1 parent 3d113b4 commit 98ba6e2

File tree

1 file changed

+31
-8
lines changed

1 file changed

+31
-8
lines changed

docs/src/pages/blog/next-intl-4-0.mdx

+31-8
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ Here's what's new in `next-intl@4.0`:
1818
3. [**Strictly-typed ICU arguments**](#strictly-typed-icu-arguments)
1919
4. [**GDPR compliance**](#gdpr-compliance)
2020
5. [**Modernized build output**](#modernized-build-output)
21-
6. [**Preparation for upcoming Next.js features**](#nextjs-future)
21+
6. [**Improved inheritance in `NextIntlClientProvider`**](#nextintlclientprovider-inheritance)
22+
7. [**Preparation for upcoming Next.js features**](#nextjs-future)
2223

2324
Please also have a look at the [other breaking changes](#other-breaking-changes) listed below before you upgrade.
2425

@@ -188,6 +189,30 @@ The build output of `next-intl` has been modernized and now leverages the follow
188189

189190
With these changes, the bundle size of `next-intl` has been reduced by ~7% ([all details](https://github.com/amannn/next-intl/pull/1470)).
190191

192+
## Improved inheritance of `NextIntlClientProvider` [#nextintlclientprovider-inheritance]
193+
194+
Previously, [`NextIntlClientProvider`](/docs/usage/configuration#nextintlclientprovider) would conservatively inherit only a subset from `i18n/request.ts`.
195+
196+
To improve the getting started experience, the provider now also inherits:
197+
198+
- `messages` ([PR #1682](https://github.com/amannn/next-intl/pull/1682))
199+
- `formats` ([PR #1191](https://github.com/amannn/next-intl/pull/1191))
200+
201+
Due to this, you can now remove these props from `NextIntlClientProvider` if you've previously passed them manually:
202+
203+
```diff
204+
<NextIntlClientProvider
205+
- messages={messages}
206+
- formats={formats}
207+
>
208+
{/* ... */}
209+
</NextIntlClientProvider>
210+
```
211+
212+
With this, `NextIntlClientProvider` now inherits all of your configuration, with the minor exception of [error handling functions](/docs/usage/configuration#error-handling). Since functions are not serializable, they cannot be passed across the server/client boundary. However, [an alternative](https://github.com/amannn/next-intl/issues/1285) for this is also on the horizon.
213+
214+
To make it easier to work with error handling functions on the client side, `NextIntlClientProvider` can now also be used in a nested fashion and will inherit the configuration from a parent provider ([PR #1413](https://github.com/amannn/next-intl/pull/1413)).
215+
191216
## Preparation for upcoming Next.js features [#nextjs-future]
192217

193218
To ensure that the sails of `next-intl` are set for a steady course in the upcoming future, I've investigated the implications of upcoming Next.js features like [`ppr`](https://nextjs.org/docs/app/api-reference/next-config-js/ppr), [`dynamicIO`](https://nextjs.org/docs/canary/app/api-reference/config/next-config-js/dynamicIO) and [`rootParams`](https://github.com/vercel/next.js/pull/72837) for `next-intl`.
@@ -205,13 +230,11 @@ I'm particularly excited about the announcement of `rootParams`, as it seems lik
205230
## Other breaking changes
206231

207232
1. Return type-safe messages from `useMessages` and `getMessages` (see [PR #1489](https://github.com/amannn/next-intl/pull/1489))
208-
2. Inherit context in case nested `NextIntlClientProvider` instances are present (see [PR #1413](https://github.com/amannn/next-intl/pull/1413))
209-
3. Automatically inherit formats when `NextIntlClientProvider` is rendered from a Server Component (see [PR #1191](https://github.com/amannn/next-intl/pull/1191))
210-
4. Require locale to be returned from `getRequestConfig` (see [PR #1486](https://github.com/amannn/next-intl/pull/1486))
211-
5. Disallow passing `null`, `undefined` or `boolean` as an ICU argument (see [PR #1561](https://github.com/amannn/next-intl/pull/1561))
212-
6. Bump minimum required TypeScript version to 5 for projects using TypeScript (see [PR #1481](https://github.com/amannn/next-intl/pull/1481))
213-
7. Remove deprecated APIs (see [PR #1479](https://github.com/amannn/next-intl/pull/1479))
214-
8. Remove deprecated APIs pt. 2 (see [PR #1482](https://github.com/amannn/next-intl/pull/1482))
233+
2. Require locale to be returned from `getRequestConfig` (see [PR #1486](https://github.com/amannn/next-intl/pull/1486))
234+
3. Disallow passing `null`, `undefined` or `boolean` as an ICU argument (see [PR #1561](https://github.com/amannn/next-intl/pull/1561))
235+
4. Bump minimum required TypeScript version to 5 for projects using TypeScript (see [PR #1481](https://github.com/amannn/next-intl/pull/1481))
236+
5. Remove deprecated APIs (see [PR #1479](https://github.com/amannn/next-intl/pull/1479))
237+
6. Remove deprecated APIs pt. 2 (see [PR #1482](https://github.com/amannn/next-intl/pull/1482))
215238

216239
## Upgrade now
217240

0 commit comments

Comments
 (0)