@wordpress/date 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 +6 -4
- 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)
|
|
@@ -94,7 +96,7 @@
|
|
|
94
96
|
|
|
95
97
|
## 4.17.0 (2022-09-13)
|
|
96
98
|
|
|
97
|
-
|
|
99
|
+
### Deprecations
|
|
98
100
|
|
|
99
101
|
- `__experimentalGetSettings` has been renamed to `getSettings`.
|
|
100
102
|
|
|
@@ -139,7 +141,7 @@
|
|
|
139
141
|
|
|
140
142
|
## 3.15.0 (2021-04-06)
|
|
141
143
|
|
|
142
|
-
### New
|
|
144
|
+
### New Features
|
|
143
145
|
|
|
144
146
|
- Bundle type definitions.
|
|
145
147
|
|
|
@@ -164,7 +166,7 @@
|
|
|
164
166
|
|
|
165
167
|
## 2.1.0 (2018-10-29)
|
|
166
168
|
|
|
167
|
-
### Breaking
|
|
169
|
+
### Breaking Changes
|
|
168
170
|
|
|
169
171
|
- Marked getSettings as experimental
|
|
170
172
|
|
|
@@ -176,6 +178,6 @@
|
|
|
176
178
|
|
|
177
179
|
## 2.0.0 (2018-09-05)
|
|
178
180
|
|
|
179
|
-
### Breaking
|
|
181
|
+
### Breaking Changes
|
|
180
182
|
|
|
181
183
|
- 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.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/date",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"description": "Date module for WordPress.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"types": "build-types",
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@babel/runtime": "^7.16.0",
|
|
31
|
-
"@wordpress/deprecated": "^4.
|
|
31
|
+
"@wordpress/deprecated": "^4.2.0",
|
|
32
32
|
"moment": "^2.29.4",
|
|
33
33
|
"moment-timezone": "^0.5.40"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
|
|
39
39
|
}
|