Skip to content

Commit 1d60d08

Browse files
authoredDec 20, 2024
fix: Add missing deprecation warnings for next-intl@4.0 (#1485)
Adds missing deprecation warnings: 1. Warn when `locale` parameter is accessed in `getRequestConfig` ([ref](https://next-intl-docs.vercel.app/blog/next-intl-3-22#await-request-locale)) 1. Warn when no `locale` was returned from `getRequestConfig` ([ref](https://next-intl-docs.vercel.app/blog/next-intl-3-22#await-request-locale)) 2. Warn when using `next-intl` in a Client Component without a `NextIntlClientProvider` ancestor being present ([ref](#1541))
1 parent a6e070b commit 1d60d08

File tree

5 files changed

+40
-14
lines changed

5 files changed

+40
-14
lines changed
 

‎packages/next-intl/.size-limit.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const config: SizeLimitConfig = [
7171
name: "import * from 'next-intl' (react-client, ESM)",
7272
path: 'dist/esm/index.react-client.js',
7373
import: '*',
74-
limit: '14.245 kB'
74+
limit: '14.365 kB'
7575
},
7676
{
7777
name: "import {NextIntlProvider} from 'next-intl' (react-client, ESM)",

‎packages/next-intl/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1027,4 +1027,4 @@ Please refer to [the release notes](https://next-intl-docs.vercel.app/blog/next-
10271027

10281028
## [1.3.3](https://github.com/amannn/next-intl/compare/v1.3.2...v1.3.3) (2021-02-09)
10291029

1030-
**Note:** Version bump only for package next-intl
1030+
**Note:** Version bump only for package next-intl

‎packages/next-intl/src/react-client/useLocale.tsx

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import {useParams} from 'next/navigation';
33
import {useLocale as useBaseLocale} from 'use-intl/_useLocale';
44
import {LOCALE_SEGMENT_NAME} from '../shared/constants';
55

6+
let hasWarnedForParams = false;
7+
68
export default function useLocale(): string {
79
// The types aren't entirely correct here. Outside of Next.js
810
// `useParams` can be called, but the return type is `null`.
@@ -16,6 +18,12 @@ export default function useLocale(): string {
1618
locale = useBaseLocale();
1719
} catch (error) {
1820
if (typeof params?.[LOCALE_SEGMENT_NAME] === 'string') {
21+
if (process.env.NODE_ENV !== 'production' && !hasWarnedForParams) {
22+
console.warn(
23+
'Deprecation warning: `useLocale` has returned a default from `useParams().locale` since no `NextIntlClientProvider` ancestor was found for the calling component. This behavior will be removed in the next major version. Please ensure all Client Components that use `next-intl` are wrapped in a `NextIntlClientProvider`.'
24+
);
25+
hasWarnedForParams = true;
26+
}
1927
locale = params[LOCALE_SEGMENT_NAME];
2028
} else {
2129
throw error;

‎packages/next-intl/src/server/react-server/getConfig.tsx

+29-4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ import {getRequestLocale as getRequestLocaleLegacy} from './RequestLocaleLegacy'
1111
import createRequestConfig from './createRequestConfig';
1212
import {GetRequestConfigParams} from './getRequestConfig';
1313

14+
let hasWarnedForMissingReturnedLocale = false;
15+
let hasWarnedForAccessedLocaleParam = false;
16+
1417
// Make sure `now` is consistent across the request in case none was configured
1518
function getDefaultNowImpl() {
1619
return new Date();
@@ -49,6 +52,15 @@ See also: https://next-intl.dev/docs/usage/configuration#i18n-request
4952
// `locale` (either in a single-language workflow or because the locale is
5053
// read from the user settings), don't attempt to read the request locale.
5154
get locale() {
55+
if (
56+
process.env.NODE_ENV !== 'production' &&
57+
!hasWarnedForAccessedLocaleParam
58+
) {
59+
console.warn(
60+
`\nThe \`locale\` parameter in \`getRequestConfig\` is deprecated, please switch to \`await requestLocale\`. See https://next-intl.dev/blog/next-intl-3-22#await-request-locale\n`
61+
);
62+
hasWarnedForAccessedLocaleParam = true;
63+
}
5264
return localeOverride || getRequestLocaleLegacy();
5365
},
5466

@@ -64,15 +76,28 @@ See also: https://next-intl.dev/docs/usage/configuration#i18n-request
6476
result = await result;
6577
}
6678

67-
const locale = result.locale || (await params.requestLocale);
79+
let locale = result.locale;
6880

6981
if (!locale) {
70-
if (process.env.NODE_ENV !== 'production') {
82+
if (
83+
process.env.NODE_ENV !== 'production' &&
84+
!hasWarnedForMissingReturnedLocale
85+
) {
7186
console.error(
72-
`\nUnable to find \`next-intl\` locale because the middleware didn't run on this request and no \`locale\` was returned in \`getRequestConfig\`. See https://next-intl.dev/docs/routing/middleware#unable-to-find-locale. The \`notFound()\` function will be called as a result.\n`
87+
`\nA \`locale\` is expected to be returned from \`getRequestConfig\`, but none was returned. This will be an error in the next major version of next-intl.\n\nSee: https://next-intl.dev/blog/next-intl-3-22#await-request-locale\n`
7388
);
89+
hasWarnedForMissingReturnedLocale = true;
90+
}
91+
92+
locale = await params.requestLocale;
93+
if (!locale) {
94+
if (process.env.NODE_ENV !== 'production') {
95+
console.error(
96+
`\nUnable to find \`next-intl\` locale because the middleware didn't run on this request and no \`locale\` was returned in \`getRequestConfig\`. See https://next-intl.dev/docs/routing/middleware#unable-to-find-locale. The \`notFound()\` function will be called as a result.\n`
97+
);
98+
}
99+
notFound();
74100
}
75-
notFound();
76101
}
77102

78103
return {

‎packages/next-intl/src/server/react-server/getRequestConfig.tsx

+1-8
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,7 @@ import type {IntlConfig} from 'use-intl/core';
22

33
export type RequestConfig = Omit<IntlConfig, 'locale'> & {
44
/**
5-
* Instead of reading a `requestLocale` from the argument that's passed to the
6-
* function within `getRequestConfig`, you can include a locale as part of the
7-
* returned request configuration.
8-
*
9-
* This can be helpful for the following use cases:
10-
* - Apps that only support a single language
11-
* - Apps where the locale should be read from user settings instead of the pathname
12-
* - Providing a fallback locale in case the locale was not matched by the middleware
5+
* @see https://next-intl.dev/docs/usage/configuration#i18n-request
136
**/
147
locale?: IntlConfig['locale'];
158
};

0 commit comments

Comments
 (0)
Failed to load comments.