@automattic/jetpack-shared-extension-utils 0.10.0 → 0.10.2
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 +10 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.10.2] - 2023-04-04
|
|
9
|
+
### Changed
|
|
10
|
+
- Updated package dependencies. [#29854]
|
|
11
|
+
|
|
12
|
+
## [0.10.1] - 2023-03-28
|
|
13
|
+
### Changed
|
|
14
|
+
- Minor internal updates.
|
|
15
|
+
|
|
8
16
|
## [0.10.0] - 2023-03-27
|
|
9
17
|
### Added
|
|
10
18
|
- useModuleStatus: Add new hook to enable or disable Jetpack modules. [#29044]
|
|
@@ -185,6 +193,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
185
193
|
### Changed
|
|
186
194
|
- Core: prepare utility for release
|
|
187
195
|
|
|
196
|
+
[0.10.2]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.10.1...0.10.2
|
|
197
|
+
[0.10.1]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.10.0...0.10.1
|
|
188
198
|
[0.10.0]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.9.2...0.10.0
|
|
189
199
|
[0.9.2]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.9.1...0.9.2
|
|
190
200
|
[0.9.1]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.9.0...0.9.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/jetpack-shared-extension-utils",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"description": "Utility functions used by the block editor extensions",
|
|
5
5
|
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/shared-extension-utils/#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@automattic/jetpack-analytics": "workspace:*",
|
|
21
21
|
"@automattic/jetpack-connection": "workspace:*",
|
|
22
|
-
"@wordpress/api-fetch": "6.
|
|
23
|
-
"@wordpress/compose": "6.
|
|
24
|
-
"@wordpress/element": "5.
|
|
25
|
-
"@wordpress/i18n": "4.
|
|
26
|
-
"@wordpress/plugins": "5.
|
|
27
|
-
"@wordpress/url": "3.
|
|
22
|
+
"@wordpress/api-fetch": "6.27.0",
|
|
23
|
+
"@wordpress/compose": "6.7.0",
|
|
24
|
+
"@wordpress/element": "5.7.0",
|
|
25
|
+
"@wordpress/i18n": "4.30.0",
|
|
26
|
+
"@wordpress/plugins": "5.7.0",
|
|
27
|
+
"@wordpress/url": "3.31.0",
|
|
28
28
|
"lodash": "4.17.21"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"react-dom": "18.2.0",
|
|
38
38
|
"jetpack-js-tools": "workspace:*",
|
|
39
39
|
"@automattic/jetpack-webpack-config": "workspace:*",
|
|
40
|
-
"@wordpress/babel-plugin-import-jsx-pragma": "4.
|
|
40
|
+
"@wordpress/babel-plugin-import-jsx-pragma": "4.13.0",
|
|
41
41
|
"@testing-library/dom": "8.19.1",
|
|
42
42
|
"@testing-library/react": "13.4.0",
|
|
43
43
|
"@testing-library/user-event": "14.4.3",
|