@wordpress/interface 4.2.0 → 4.2.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/README.md +8 -2
  3. package/package.json +11 -12
package/CHANGELOG.md CHANGED
@@ -2,13 +2,19 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 4.2.1 (2022-02-10)
6
+
7
+ ### Bug Fix
8
+
9
+ - Removed unused `@wordpress/deprecated` dependency ([#38388](https://github.com/WordPress/gutenberg/pull/38388)).
10
+
5
11
  ## 4.2.0 (2022-01-27)
6
12
 
7
13
  ## 4.1.0 (2021-09-09)
8
14
 
9
15
  ### New Feature
10
16
 
11
- - Add support for editor 'feature' preferences. Adds an `isFeatureActive` selector, a `toggleFeature` action, a `MoreMenuDropdown` component, and a `MoreMenuFeatureToggle` component. ([#33774](https://github.com/WordPress/gutenberg/pull/33774)).
17
+ - Add support for editor 'feature' preferences. Adds an `isFeatureActive` selector, a `toggleFeature` action, a `MoreMenuDropdown` component, and a `MoreMenuFeatureToggle` component. ([#33774](https://github.com/WordPress/gutenberg/pull/33774)).
12
18
 
13
19
  ## 4.0.0 (2021-07-29)
14
20
 
package/README.md CHANGED
@@ -69,8 +69,6 @@ wp.data.dispatch( 'core/interface' ).unpinItem( 'core/edit-post', 'edit-post-blo
69
69
  wp.data.select( 'core/interface' ).isItemPinned( 'core/edit-post', 'edit-post-block-patterns/block-patterns-sidebar' ); -> false
70
70
  ```
71
71
 
72
- <br/><br/><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
73
-
74
72
  ### Preferences
75
73
 
76
74
  The interface package provides some helpers for implementing editor preferences.
@@ -135,3 +133,11 @@ function MyEditorMenu() {
135
133
  );
136
134
  }
137
135
  ```
136
+
137
+ ## Contributing to this package
138
+
139
+ This is an individual package that's part of the Gutenberg project. The project is organized as a monorepo. It's made up of multiple self-contained software packages, each with a specific purpose. The packages in this monorepo are published to [npm](https://www.npmjs.com/) and used by [WordPress](https://make.wordpress.org/core/) as well as other software projects.
140
+
141
+ To find out more about contributing to this package or Gutenberg as a whole, please read the project's main [contributor guide](https://github.com/WordPress/gutenberg/tree/HEAD/CONTRIBUTING.md).
142
+
143
+ <br /><br /><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/interface",
3
- "version": "4.2.0",
3
+ "version": "4.2.2",
4
4
  "description": "Interface module for WordPress. The package contains shared functionality across the modern JavaScript-based WordPress screens.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -32,21 +32,20 @@
32
32
  ],
33
33
  "dependencies": {
34
34
  "@babel/runtime": "^7.16.0",
35
- "@wordpress/a11y": "^3.3.0",
36
- "@wordpress/components": "^19.3.0",
37
- "@wordpress/compose": "^5.1.0",
38
- "@wordpress/data": "^6.2.0",
39
- "@wordpress/deprecated": "^3.3.0",
40
- "@wordpress/element": "^4.1.0",
41
- "@wordpress/i18n": "^4.3.0",
42
- "@wordpress/icons": "^6.2.0",
43
- "@wordpress/plugins": "^4.1.0",
44
- "@wordpress/viewport": "^4.1.0",
35
+ "@wordpress/a11y": "^3.3.1",
36
+ "@wordpress/components": "^19.4.1",
37
+ "@wordpress/compose": "^5.1.1",
38
+ "@wordpress/data": "^6.2.1",
39
+ "@wordpress/element": "^4.1.1",
40
+ "@wordpress/i18n": "^4.3.1",
41
+ "@wordpress/icons": "^7.0.0",
42
+ "@wordpress/plugins": "^4.1.2",
43
+ "@wordpress/viewport": "^4.1.1",
45
44
  "classnames": "^2.3.1",
46
45
  "lodash": "^4.17.21"
47
46
  },
48
47
  "publishConfig": {
49
48
  "access": "public"
50
49
  },
51
- "gitHead": "d95ccb9366e249133cdb1d7b25c382446b9ee502"
50
+ "gitHead": "0f838547f37472e46e6d5a9d2e84b6c61f4bd3f0"
52
51
  }