@wordpress/i18n 4.58.0 → 5.0.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 (2) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 5.0.0 (2024-05-31)
6
+
7
+ ### Breaking Changes
8
+
9
+ - Increase the minimum required Node.js version to v18.12.0 matching long-term support releases ([#31270](https://github.com/WordPress/gutenberg/pull/61930)). Learn more about [Node.js releases](https://nodejs.org/en/about/previous-releases).
10
+
5
11
  ## 4.58.0 (2024-05-16)
6
12
 
7
13
  ## 4.57.0 (2024-05-02)
@@ -114,7 +120,7 @@
114
120
 
115
121
  ## 4.3.0 (2022-01-27)
116
122
 
117
- - Add new `addLocaleData` method to merge locale data into the Tannin instance by domain.
123
+ - Add new `addLocaleData` method to merge locale data into the Tannin instance by domain.
118
124
 
119
125
  ## 4.2.0 (2021-07-21)
120
126
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/i18n",
3
- "version": "4.58.0",
3
+ "version": "5.0.0",
4
4
  "description": "WordPress internationalization (i18n) library.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -19,7 +19,8 @@
19
19
  "url": "https://github.com/WordPress/gutenberg/issues"
20
20
  },
21
21
  "engines": {
22
- "node": ">=12"
22
+ "node": ">=18.12.0",
23
+ "npm": ">=8.19.2"
23
24
  },
24
25
  "main": "build/index.js",
25
26
  "module": "build-module/index.js",
@@ -30,7 +31,7 @@
30
31
  },
31
32
  "dependencies": {
32
33
  "@babel/runtime": "^7.16.0",
33
- "@wordpress/hooks": "^3.58.0",
34
+ "@wordpress/hooks": "^4.0.0",
34
35
  "gettext-parser": "^1.3.1",
35
36
  "memize": "^2.1.0",
36
37
  "sprintf-js": "^1.1.1",
@@ -39,5 +40,5 @@
39
40
  "publishConfig": {
40
41
  "access": "public"
41
42
  },
42
- "gitHead": "42f38f287506a6b3ed8ccba839b18ad066821044"
43
+ "gitHead": "2f30cddff15723ac7017fd009fc5913b7b419400"
43
44
  }