@wordpress/deprecated 4.0.1 → 4.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 +8 -4
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 4.2.0 (2024-06-26)
|
|
6
|
+
|
|
7
|
+
## 4.1.0 (2024-06-15)
|
|
8
|
+
|
|
5
9
|
## 4.0.0 (2024-05-31)
|
|
6
10
|
|
|
7
11
|
### Breaking Changes
|
|
@@ -135,13 +139,13 @@
|
|
|
135
139
|
|
|
136
140
|
## 2.11.0 (2020-12-17)
|
|
137
141
|
|
|
138
|
-
### New
|
|
142
|
+
### New Features
|
|
139
143
|
|
|
140
144
|
- Include TypeScript type declarations ([#26429](https://github.com/WordPress/gutenberg/pull/26429))
|
|
141
145
|
|
|
142
146
|
## 2.6.0 (2019-08-29)
|
|
143
147
|
|
|
144
|
-
### Bug
|
|
148
|
+
### Bug Fixes
|
|
145
149
|
|
|
146
150
|
- When there is no `options.version` param provided `deprecated` method warns with more relaxed tone.
|
|
147
151
|
|
|
@@ -149,10 +153,10 @@
|
|
|
149
153
|
|
|
150
154
|
## 2.0.0 (2018-09-05)
|
|
151
155
|
|
|
152
|
-
### Breaking
|
|
156
|
+
### Breaking Changes
|
|
153
157
|
|
|
154
158
|
- 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.
|
|
155
159
|
|
|
156
|
-
### New
|
|
160
|
+
### New Features
|
|
157
161
|
|
|
158
162
|
- Call `doAction` hook when a deprecated feature is encountered ([#8110](https://github.com/WordPress/gutenberg/pull/8110))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/deprecated",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Deprecation utility for WordPress.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"sideEffects": false,
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@babel/runtime": "^7.16.0",
|
|
32
|
-
"@wordpress/hooks": "^4.0
|
|
32
|
+
"@wordpress/hooks": "^4.2.0"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
|
|
38
38
|
}
|