@wordpress/i18n 5.1.0 → 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 +7 -5
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 5.2.0 (2024-06-26)
|
|
6
|
+
|
|
5
7
|
## 5.1.0 (2024-06-15)
|
|
6
8
|
|
|
7
9
|
## 5.0.0 (2024-05-31)
|
|
@@ -158,7 +160,7 @@
|
|
|
158
160
|
|
|
159
161
|
## 3.12.0 (2020-04-30)
|
|
160
162
|
|
|
161
|
-
### Bug
|
|
163
|
+
### Bug Fixes
|
|
162
164
|
|
|
163
165
|
- Relax type of `sprintf` arguments type ([#21919](https://github.com/WordPress/gutenberg/pull/21919))
|
|
164
166
|
|
|
@@ -171,7 +173,7 @@
|
|
|
171
173
|
|
|
172
174
|
## 3.10.0 (2020-04-01)
|
|
173
175
|
|
|
174
|
-
### New
|
|
176
|
+
### New Features
|
|
175
177
|
|
|
176
178
|
- Add `isRTL` function ([#20298](https://github.com/WordPress/gutenberg/pull/20298))
|
|
177
179
|
|
|
@@ -194,13 +196,13 @@
|
|
|
194
196
|
|
|
195
197
|
## 2.0.0 (2018-09-05)
|
|
196
198
|
|
|
197
|
-
### Breaking
|
|
199
|
+
### Breaking Changes
|
|
198
200
|
|
|
199
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.
|
|
200
202
|
|
|
201
203
|
## 1.2.0 (2018-07-12)
|
|
202
204
|
|
|
203
|
-
### New
|
|
205
|
+
### New Features
|
|
204
206
|
|
|
205
207
|
- Updated build to work with Babel 7 ([#7832](https://github.com/WordPress/gutenberg/pull/7832))
|
|
206
208
|
|
|
@@ -210,6 +212,6 @@
|
|
|
210
212
|
|
|
211
213
|
## 1.1.1 (2018-05-18)
|
|
212
214
|
|
|
213
|
-
###
|
|
215
|
+
### Internal
|
|
214
216
|
|
|
215
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.
|
|
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.
|
|
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
|
}
|