next-intl 2.7.7-alpha.1 → 2.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/package.json +7 -7
  3. package/CHANGELOG.md +0 -442
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Jan Amann
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-intl",
3
- "version": "2.7.6",
3
+ "version": "2.9.0",
4
4
  "sideEffects": false,
5
5
  "author": "Jan Amann <jan@amann.me>",
6
6
  "description": "A minimal, but complete solution for internationalization in Next.js apps.",
@@ -42,21 +42,21 @@
42
42
  "testEnvironment": "jsdom"
43
43
  },
44
44
  "dependencies": {
45
- "use-intl": "^2.7.6"
45
+ "use-intl": "^2.9.0"
46
46
  },
47
47
  "peerDependencies": {
48
- "next": "^10.0.0 || ^11.0.0 || ^12.0.0",
48
+ "next": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0",
49
49
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@testing-library/react": "^13.0.0",
53
- "@types/react": "^18.0.0",
53
+ "@types/react": "^18.0.23",
54
54
  "dts-cli": "1.4.0",
55
55
  "eslint": "8.12.0",
56
56
  "eslint-config-molindo": "6.0.0",
57
- "next": "^12.1.4",
58
- "react": "^18.0.0",
59
- "react-dom": "^18.0.0",
57
+ "next": "^13.0.0",
58
+ "react": "^18.2.0",
59
+ "react-dom": "^18.2.0",
60
60
  "tslib": "^2.3.1",
61
61
  "typescript": "^4.4.4"
62
62
  },
package/CHANGELOG.md DELETED
@@ -1,442 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## 2.7.6 (2022-09-22)
7
-
8
- **Note:** Version bump only for package next-intl
9
-
10
-
11
-
12
-
13
-
14
- ## 2.7.5 (2022-08-30)
15
-
16
- **Note:** Version bump only for package next-intl
17
-
18
-
19
-
20
-
21
-
22
- ## 2.7.4 (2022-05-30)
23
-
24
-
25
- ### Bug Fixes
26
-
27
- * Adapt TypeScript validation to work with messages files that only have a single top-level namespace ([#115](https://github.com/amannn/next-intl/issues/115)) ([cf0b83e](https://github.com/amannn/next-intl/commit/cf0b83e3a591cfe87e17537c3ca0c7000cc70b1e))
28
-
29
-
30
-
31
-
32
-
33
- ## 2.7.3 (2022-05-20)
34
-
35
-
36
- ### Bug Fixes
37
-
38
- * Add back the ability to render the provider without messages ([#113](https://github.com/amannn/next-intl/issues/113)) ([8395822](https://github.com/amannn/next-intl/commit/8395822fa17cd0a04b88f8edce3b20e5e613fc78))
39
-
40
-
41
-
42
-
43
-
44
- ## 2.7.2 (2022-05-10)
45
-
46
-
47
- ### Bug Fixes
48
-
49
- * Enable tree-shaking ([#108](https://github.com/amannn/next-intl/issues/108)) ([157b0e2](https://github.com/amannn/next-intl/commit/157b0e28376055e7e34e86007c51d008c8e214aa))
50
-
51
-
52
-
53
-
54
-
55
- ## 2.7.1 (2022-04-28)
56
-
57
-
58
- ### Bug Fixes
59
-
60
- * Allow null message values ([#110](https://github.com/amannn/next-intl/issues/110)) ([14ae8ff](https://github.com/amannn/next-intl/commit/14ae8ffdf1b295873f14081e2c3709d0f9bd2b9e))
61
-
62
-
63
-
64
-
65
-
66
- # 2.7.0 (2022-04-28)
67
-
68
-
69
- ### Features
70
-
71
- * Warn for invalid namespace keys ([#106](https://github.com/amannn/next-intl/issues/106)) ([e86ab28](https://github.com/amannn/next-intl/commit/e86ab28b9180b866ce1a0a9173355d4b686b7d07))
72
-
73
-
74
-
75
-
76
-
77
- # 2.6.0 (2022-04-08)
78
-
79
-
80
- ### Features
81
-
82
- * Support React 18 ([#98](https://github.com/amannn/next-intl/issues/98)) ([38614eb](https://github.com/amannn/next-intl/commit/38614eb9c6d6fb96704424d7f3ff8a67a24b789e))
83
-
84
-
85
-
86
-
87
-
88
- # 2.5.0 (2022-04-01)
89
-
90
-
91
- ### Features
92
-
93
- * Type safe messages ([#93](https://github.com/amannn/next-intl/issues/93)) ([13b49b1](https://github.com/amannn/next-intl/commit/13b49b138bc0ec3adbe661af6a70dfabfe7e86b0))
94
-
95
-
96
-
97
-
98
-
99
-
100
-
101
- ## 2.4.1 (2022-03-24)
102
-
103
-
104
- ### Bug Fixes
105
-
106
- * Overwrite prerelease ([6caf5c4](https://github.com/amannn/next-intl/commit/6caf5c48a35179f802503bc6580469187765c837))
107
-
108
-
109
-
110
-
111
-
112
- # [2.4.0](https://github.com/amannn/next-intl/compare/v2.3.5...v2.4.0) (2022-02-08)
113
-
114
- **Note:** Version bump only for package next-intl
115
-
116
-
117
-
118
-
119
-
120
- ## 2.3.5 (2022-01-19)
121
-
122
-
123
- ### Bug Fixes
124
-
125
- * Support identical wrappers with identical text content in rich text ([#80](https://github.com/amannn/next-intl/issues/80)) ([b35bb9f](https://github.com/amannn/next-intl/commit/b35bb9ffc5fa56c6260b6b424be3cd875f199aef))
126
-
127
-
128
-
129
-
130
-
131
- ## 2.3.4 (2022-01-04)
132
-
133
-
134
- ### Bug Fixes
135
-
136
- * Allow usage outside of Next.js (e.g. Jest and Storybook) ([#76](https://github.com/amannn/next-intl/issues/76)) ([7c6925b](https://github.com/amannn/next-intl/commit/7c6925b39338be95c1c940c67a1ae2f5e3f85cdd))
137
-
138
-
139
-
140
-
141
-
142
- ## 2.3.3 (2021-12-23)
143
-
144
- **Note:** Version bump only for package next-intl
145
-
146
-
147
-
148
-
149
-
150
- ## 2.3.2 (2021-12-23)
151
-
152
- **Note:** Version bump only for package next-intl
153
-
154
-
155
-
156
-
157
-
158
- ## 2.3.1 (2021-12-23)
159
-
160
- **Note:** Version bump only for package next-intl
161
-
162
-
163
-
164
-
165
-
166
- # 2.3.0 (2021-11-24)
167
-
168
-
169
- ### Features
170
-
171
- * Add `useLocale` and `useTimeZone` ([#67](https://github.com/amannn/next-intl/issues/67)) ([7833f4a](https://github.com/amannn/next-intl/commit/7833f4adc1aadc937cbaa550a968ef6f7b4f5ee1))
172
-
173
-
174
-
175
-
176
-
177
- ## 2.2.1 (2021-11-23)
178
-
179
-
180
- ### Bug Fixes
181
-
182
- * Clearer error message when no messages are provided ([#66](https://github.com/amannn/next-intl/issues/66)) ([742729a](https://github.com/amannn/next-intl/commit/742729aaddd63367efc2b79ef0cdf93545abdfb0))
183
-
184
-
185
-
186
-
187
-
188
- # 2.2.0 (2021-11-02)
189
-
190
-
191
- ### Features
192
-
193
- * TypeScript improvements: Use enum type for `style` of `NumberFormatOptions`, only allow passing React children to messages rendered with `t.rich` and update `tslib` ([#63](https://github.com/amannn/next-intl/issues/63)) ([d73e935](https://github.com/amannn/next-intl/commit/d73e9358bf13c87c0a653bd9fbed35e41548ff1d))
194
-
195
-
196
-
197
-
198
-
199
- ## 2.1.1 (2021-10-28)
200
-
201
- **Note:** Version bump only for package next-intl
202
-
203
-
204
-
205
-
206
-
207
- # 2.1.0 (2021-10-27)
208
-
209
-
210
- ### Features
211
-
212
- * Support Next.js 12 ([#61](https://github.com/amannn/next-intl/issues/61)) ([0391cc8](https://github.com/amannn/next-intl/commit/0391cc85d3401bca9df29080a569957f6be93c85))
213
-
214
-
215
-
216
-
217
-
218
- ## 2.0.5 (2021-09-28)
219
-
220
- **Note:** Version bump only for package next-intl
221
-
222
-
223
-
224
-
225
-
226
- ## 2.0.4 (2021-09-28)
227
-
228
- **Note:** Version bump only for package next-intl
229
-
230
-
231
-
232
-
233
-
234
- ## 2.0.3 (2021-09-17)
235
-
236
- **Note:** Version bump only for package next-intl
237
-
238
-
239
-
240
-
241
-
242
- ## 2.0.2 (2021-09-17)
243
-
244
-
245
- ### Bug Fixes
246
-
247
- * Render correct messages when the namespace changes in `useTranslations` ([#58](https://github.com/amannn/next-intl/issues/58)) ([b8f7dab](https://github.com/amannn/next-intl/commit/b8f7dab0e3a213a91bdcd7929547cd01ba0b5f54))
248
-
249
-
250
-
251
-
252
-
253
- ## 2.0.1 (2021-09-04)
254
-
255
- **Note:** Version bump only for package next-intl
256
-
257
-
258
-
259
-
260
-
261
- # 2.0.0 (2021-08-26)
262
-
263
-
264
- * feat!: Use a separate API for rich text formatting to avoid type casting in TypeScript #54 ([4c13a64](https://github.com/amannn/next-intl/commit/4c13a644ce99992d9e57887afe35a09b8e3d6572)), closes [#54](https://github.com/amannn/next-intl/issues/54)
265
-
266
-
267
- ### BREAKING CHANGES
268
-
269
- * Instead of using the `t` function for formatting both regular messages and rich text, this function will only work for regular messages now. For rich text you can use `t.rich` instead now.
270
-
271
-
272
-
273
-
274
-
275
- ## 1.5.1 (2021-08-13)
276
-
277
-
278
- ### Bug Fixes
279
-
280
- * Improve API for rendering raw messages and add docs ([#51](https://github.com/amannn/next-intl/issues/51)) ([19f4a7e](https://github.com/amannn/next-intl/commit/19f4a7e4e81e1cff78dc7e3f337dce69800be280))
281
-
282
-
283
-
284
-
285
-
286
- # 1.5.0 (2021-08-10)
287
-
288
-
289
- ### Features
290
-
291
- * Add flag to return raw messages ([#48](https://github.com/amannn/next-intl/issues/48)) ([b34e19f](https://github.com/amannn/next-intl/commit/b34e19ff618308b7d0c01e7969975215d96ff608))
292
-
293
-
294
-
295
-
296
-
297
- ## 1.4.7 (2021-08-02)
298
-
299
-
300
- ### Bug Fixes
301
-
302
- * Adjust default for `onError` of the provider to log errors correctly ([#46](https://github.com/amannn/next-intl/issues/46)) ([d0a1986](https://github.com/amannn/next-intl/commit/d0a1986905e30acac40630e9ea6d099caad617fb))
303
-
304
-
305
-
306
-
307
-
308
- ## 1.4.6 (2021-08-02)
309
-
310
-
311
- ### Bug Fixes
312
-
313
- * Use `timeZone` in translation function from `useTranslations` ([#45](https://github.com/amannn/next-intl/issues/45)) ([ebf75f2](https://github.com/amannn/next-intl/commit/ebf75f2add0ddc46f89768e9481bb16c56f94720))
314
-
315
-
316
-
317
-
318
-
319
- ## 1.4.5 (2021-07-26)
320
-
321
- **Note:** Version bump only for package next-intl
322
-
323
-
324
-
325
-
326
-
327
- ## 1.4.4 (2021-07-08)
328
-
329
- **Note:** Version bump only for package next-intl
330
-
331
-
332
-
333
-
334
-
335
- ## 1.4.3 (2021-07-08)
336
-
337
- **Note:** Version bump only for package next-intl
338
-
339
-
340
-
341
-
342
-
343
- ## [1.4.2](https://github.com/amannn/next-intl/compare/v1.4.1...v1.4.2) (2021-06-16)
344
-
345
-
346
- ### Bug Fixes
347
-
348
- * Don't require `react-dom` as a peer dependency ([#39](https://github.com/amannn/next-intl/issues/39)) ([39edfcd](https://github.com/amannn/next-intl/commit/39edfcd9091e09570fc2152cda6a1e9ae5e7c210))
349
-
350
-
351
-
352
-
353
-
354
- ## [1.4.1](https://github.com/amannn/next-intl/compare/v1.4.0...v1.4.1) (2021-06-16)
355
-
356
-
357
- ### Bug Fixes
358
-
359
- * Use correct version range for use-intl ([02c33d3](https://github.com/amannn/next-intl/commit/02c33d341794bdcf6ba30ca8325a6a843a684635))
360
-
361
-
362
-
363
-
364
-
365
- # [1.4.0](https://github.com/amannn/next-intl/compare/v1.3.11...v1.4.0) (2021-06-16)
366
-
367
-
368
- ### Features
369
-
370
- * Support Next.js 11 ([#36](https://github.com/amannn/next-intl/issues/36)) ([fc59871](https://github.com/amannn/next-intl/commit/fc5987156c2a74a9703e39f2b7ee19b84165fd77))
371
-
372
-
373
-
374
-
375
-
376
- ## 1.3.11 (2021-05-07)
377
-
378
- **Note:** Version bump only for package next-intl
379
-
380
-
381
-
382
-
383
-
384
- ## 1.3.10 (2021-05-02)
385
-
386
- **Note:** Version bump only for package next-intl
387
-
388
-
389
-
390
-
391
-
392
- ## 1.3.9 (2021-05-02)
393
-
394
- **Note:** Version bump only for package next-intl
395
-
396
-
397
-
398
-
399
-
400
- ## 1.3.8 (2021-03-26)
401
-
402
- **Note:** Version bump only for package next-intl
403
-
404
-
405
-
406
-
407
-
408
- ## 1.3.7 (2021-02-12)
409
-
410
- **Note:** Version bump only for package next-intl
411
-
412
-
413
-
414
-
415
-
416
- ## 1.3.6 (2021-02-09)
417
-
418
- **Note:** Version bump only for package next-intl
419
-
420
-
421
-
422
-
423
-
424
- ## 1.3.5 (2021-02-09)
425
-
426
- **Note:** Version bump only for package next-intl
427
-
428
-
429
-
430
-
431
-
432
- ## 1.3.4 (2021-02-09)
433
-
434
- **Note:** Version bump only for package next-intl
435
-
436
-
437
-
438
-
439
-
440
- ## [1.3.3](https://github.com/amannn/next-intl/compare/v1.3.2...v1.3.3) (2021-02-09)
441
-
442
- **Note:** Version bump only for package next-intl