@wordpress/widgets 4.1.0 → 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 +4 -2
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 4.2.0 (2024-06-26)
|
|
6
|
+
|
|
5
7
|
## 4.1.0 (2024-06-15)
|
|
6
8
|
|
|
7
9
|
## 4.0.0 (2024-05-31)
|
|
@@ -130,7 +132,7 @@
|
|
|
130
132
|
|
|
131
133
|
## 2.1.1 (2022-02-10)
|
|
132
134
|
|
|
133
|
-
### Bug
|
|
135
|
+
### Bug Fixes
|
|
134
136
|
|
|
135
137
|
- Removed unused `@wordpress/url` dependency ([#38388](https://github.com/WordPress/gutenberg/pull/38388)).
|
|
136
138
|
|
|
@@ -138,7 +140,7 @@
|
|
|
138
140
|
|
|
139
141
|
## 2.0.0 (2021-07-29)
|
|
140
142
|
|
|
141
|
-
### Breaking
|
|
143
|
+
### Breaking Changes
|
|
142
144
|
|
|
143
145
|
- Upgraded React components to work with v17.0 ([#29118](https://github.com/WordPress/gutenberg/pull/29118)). There are no new features in React v17.0 as explained in the [blog post](https://reactjs.org/blog/2020/10/20/react-v17.html).
|
|
144
146
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/widgets",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Functionality used by the widgets block editor in the Widgets screen and the Customizer.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
"react-native": "src/index",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@babel/runtime": "^7.16.0",
|
|
28
|
-
"@wordpress/api-fetch": "^7.
|
|
29
|
-
"@wordpress/block-editor": "^13.
|
|
30
|
-
"@wordpress/blocks": "^13.
|
|
31
|
-
"@wordpress/components": "^28.
|
|
32
|
-
"@wordpress/compose": "^7.
|
|
33
|
-
"@wordpress/core-data": "^7.
|
|
34
|
-
"@wordpress/data": "^10.
|
|
35
|
-
"@wordpress/element": "^6.
|
|
36
|
-
"@wordpress/i18n": "^5.
|
|
37
|
-
"@wordpress/icons": "^10.
|
|
38
|
-
"@wordpress/notices": "^5.
|
|
28
|
+
"@wordpress/api-fetch": "^7.2.0",
|
|
29
|
+
"@wordpress/block-editor": "^13.2.0",
|
|
30
|
+
"@wordpress/blocks": "^13.2.0",
|
|
31
|
+
"@wordpress/components": "^28.2.0",
|
|
32
|
+
"@wordpress/compose": "^7.2.0",
|
|
33
|
+
"@wordpress/core-data": "^7.2.0",
|
|
34
|
+
"@wordpress/data": "^10.2.0",
|
|
35
|
+
"@wordpress/element": "^6.2.0",
|
|
36
|
+
"@wordpress/i18n": "^5.2.0",
|
|
37
|
+
"@wordpress/icons": "^10.2.0",
|
|
38
|
+
"@wordpress/notices": "^5.2.0",
|
|
39
39
|
"clsx": "^2.1.1"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
|
|
49
49
|
}
|