@wordpress/i18n 5.0.1 → 5.2.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.
- package/CHANGELOG.md +9 -5
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 5.2.0 (2024-06-26)
|
|
6
|
+
|
|
7
|
+
## 5.1.0 (2024-06-15)
|
|
8
|
+
|
|
5
9
|
## 5.0.0 (2024-05-31)
|
|
6
10
|
|
|
7
11
|
### Breaking Changes
|
|
@@ -156,7 +160,7 @@
|
|
|
156
160
|
|
|
157
161
|
## 3.12.0 (2020-04-30)
|
|
158
162
|
|
|
159
|
-
### Bug
|
|
163
|
+
### Bug Fixes
|
|
160
164
|
|
|
161
165
|
- Relax type of `sprintf` arguments type ([#21919](https://github.com/WordPress/gutenberg/pull/21919))
|
|
162
166
|
|
|
@@ -169,7 +173,7 @@
|
|
|
169
173
|
|
|
170
174
|
## 3.10.0 (2020-04-01)
|
|
171
175
|
|
|
172
|
-
### New
|
|
176
|
+
### New Features
|
|
173
177
|
|
|
174
178
|
- Add `isRTL` function ([#20298](https://github.com/WordPress/gutenberg/pull/20298))
|
|
175
179
|
|
|
@@ -192,13 +196,13 @@
|
|
|
192
196
|
|
|
193
197
|
## 2.0.0 (2018-09-05)
|
|
194
198
|
|
|
195
|
-
### Breaking
|
|
199
|
+
### Breaking Changes
|
|
196
200
|
|
|
197
201
|
- Change how required built-ins are polyfilled with Babel 7 ([#9171](https://github.com/WordPress/gutenberg/pull/9171)). If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods.
|
|
198
202
|
|
|
199
203
|
## 1.2.0 (2018-07-12)
|
|
200
204
|
|
|
201
|
-
### New
|
|
205
|
+
### New Features
|
|
202
206
|
|
|
203
207
|
- Updated build to work with Babel 7 ([#7832](https://github.com/WordPress/gutenberg/pull/7832))
|
|
204
208
|
|
|
@@ -208,6 +212,6 @@
|
|
|
208
212
|
|
|
209
213
|
## 1.1.1 (2018-05-18)
|
|
210
214
|
|
|
211
|
-
###
|
|
215
|
+
### Internal
|
|
212
216
|
|
|
213
217
|
- Fix: Standardized `package.json` format ([#119](https://github.com/WordPress/packages/pull/119))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/i18n",
|
|
3
|
-
"version": "5.0
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"description": "WordPress internationalization (i18n) library.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@babel/runtime": "^7.16.0",
|
|
34
|
-
"@wordpress/hooks": "^4.0
|
|
34
|
+
"@wordpress/hooks": "^4.2.0",
|
|
35
35
|
"gettext-parser": "^1.3.1",
|
|
36
36
|
"memize": "^2.1.0",
|
|
37
37
|
"sprintf-js": "^1.1.1",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
|
|
44
44
|
}
|