@automattic/jetpack-shared-extension-utils 0.4.9 → 0.4.12

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 CHANGED
@@ -5,6 +5,18 @@ 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.4.12] - 2022-07-06
9
+ ### Changed
10
+ - Updated package dependencies. [#24923]
11
+
12
+ ## [0.4.11] - 2022-06-28
13
+ ### Removed
14
+ - Remove unused testing infrastructure.
15
+
16
+ ## [0.4.10] - 2022-06-21
17
+ ### Changed
18
+ - Renaming `master` references to `trunk` [#24712]
19
+
8
20
  ## [0.4.9] - 2022-06-14
9
21
  ### Changed
10
22
  - Updated package dependencies. [#24722]
@@ -77,6 +89,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
89
  ### Changed
78
90
  - Core: prepare utility for release
79
91
 
92
+ [0.4.12]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.11...0.4.12
93
+ [0.4.11]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.10...0.4.11
94
+ [0.4.10]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.9...0.4.10
80
95
  [0.4.9]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.8...0.4.9
81
96
  [0.4.8]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.7...0.4.8
82
97
  [0.4.7]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.6...0.4.7
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  Utility functions used by the block editor extensions.
4
4
 
5
5
  This package is the new home for the code in [the `extensions/shared`
6
- directory](https://github.com/Automattic/jetpack/tree/master/projects/plugins/jetpack/extensions/shared)
6
+ directory](https://github.com/Automattic/jetpack/tree/trunk/projects/plugins/jetpack/extensions/shared)
7
7
  of the Jetpack plugin, so that plugins can share it. To begin with, we moving
8
8
  the code used by the Publicize editor extension, but the goal is to bring over
9
9
  all the shared code.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-shared-extension-utils",
3
- "version": "0.4.9",
3
+ "version": "0.4.12",
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": {
@@ -13,20 +13,17 @@
13
13
  },
14
14
  "license": "GPL-2.0-or-later",
15
15
  "author": "Automattic",
16
- "scripts": {
17
- "test": "NODE_ENV=test NODE_PATH=tests:. js-test-runner --jsdom --initfile=test-main.jsx 'glob:./!(node_modules)/**/test/*.@(jsx|js)'"
18
- },
16
+ "scripts": {},
19
17
  "dependencies": {
20
- "@wordpress/compose": "5.8.0",
21
- "@wordpress/i18n": "4.10.0",
22
- "@wordpress/plugins": "4.8.0",
23
- "@wordpress/url": "3.11.0",
18
+ "@wordpress/compose": "5.10.0",
19
+ "@wordpress/i18n": "4.12.0",
20
+ "@wordpress/plugins": "4.10.0",
21
+ "@wordpress/url": "3.13.0",
24
22
  "lodash": "4.17.21"
25
23
  },
26
24
  "devDependencies": {
27
- "@babel/core": "7.18.5",
28
- "@babel/preset-react": "7.17.12",
29
- "nyc": "15.1.0",
25
+ "@babel/core": "7.18.6",
26
+ "@babel/preset-react": "7.18.6",
30
27
  "react": "17.0.2"
31
28
  },
32
29
  "exports": {
package/.nycrc DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "extensions": [".js", ".jsx"],
3
- "exclude": "**/test/*.jsx",
4
- "reporter": "clover"
5
- }
package/test-main.jsx DELETED
@@ -1,4 +0,0 @@
1
- import Adapter from '@wojtekmaj/enzyme-adapter-react-17';
2
- import Enzyme from 'enzyme';
3
-
4
- Enzyme.configure( { adapter: new Adapter() } );