@wordpress/widgets 4.1.0 → 4.3.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 -2
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 4.3.0 (2024-07-10)
|
|
6
|
+
|
|
7
|
+
## 4.2.0 (2024-06-26)
|
|
8
|
+
|
|
5
9
|
## 4.1.0 (2024-06-15)
|
|
6
10
|
|
|
7
11
|
## 4.0.0 (2024-05-31)
|
|
@@ -130,7 +134,7 @@
|
|
|
130
134
|
|
|
131
135
|
## 2.1.1 (2022-02-10)
|
|
132
136
|
|
|
133
|
-
### Bug
|
|
137
|
+
### Bug Fixes
|
|
134
138
|
|
|
135
139
|
- Removed unused `@wordpress/url` dependency ([#38388](https://github.com/WordPress/gutenberg/pull/38388)).
|
|
136
140
|
|
|
@@ -138,7 +142,7 @@
|
|
|
138
142
|
|
|
139
143
|
## 2.0.0 (2021-07-29)
|
|
140
144
|
|
|
141
|
-
### Breaking
|
|
145
|
+
### Breaking Changes
|
|
142
146
|
|
|
143
147
|
- 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
148
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/widgets",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.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.3.0",
|
|
29
|
+
"@wordpress/block-editor": "^13.3.0",
|
|
30
|
+
"@wordpress/blocks": "^13.3.0",
|
|
31
|
+
"@wordpress/components": "^28.3.0",
|
|
32
|
+
"@wordpress/compose": "^7.3.0",
|
|
33
|
+
"@wordpress/core-data": "^7.3.0",
|
|
34
|
+
"@wordpress/data": "^10.3.0",
|
|
35
|
+
"@wordpress/element": "^6.3.0",
|
|
36
|
+
"@wordpress/i18n": "^5.3.0",
|
|
37
|
+
"@wordpress/icons": "^10.3.0",
|
|
38
|
+
"@wordpress/notices": "^5.3.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": "122867d355ca4edc63d3a3bbd9411d3a2e1458df"
|
|
49
49
|
}
|