@wordpress/interface 6.1.0 → 6.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 CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 6.2.0 (2024-06-26)
6
+
5
7
  ## 6.1.0 (2024-06-15)
6
8
 
7
9
  ## 6.0.0 (2024-05-31)
@@ -26,7 +28,7 @@
26
28
 
27
29
  ## 5.30.0 (2024-03-06)
28
30
 
29
- ## Breaking Changes
31
+ ### Breaking Changes
30
32
 
31
33
  - Removed `MoreMenuDropdown` component ([#59095](https://github.com/WordPress/gutenberg/pull/59095)).
32
34
 
@@ -134,7 +136,7 @@
134
136
 
135
137
  ## 4.2.1 (2022-02-10)
136
138
 
137
- ### Bug Fix
139
+ ### Bug Fixes
138
140
 
139
141
  - Removed unused `@wordpress/deprecated` dependency ([#38388](https://github.com/WordPress/gutenberg/pull/38388)).
140
142
 
@@ -142,13 +144,13 @@
142
144
 
143
145
  ## 4.1.0 (2021-09-09)
144
146
 
145
- ### New Feature
147
+ ### New Features
146
148
 
147
149
  - 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)).
148
150
 
149
151
  ## 4.0.0 (2021-07-29)
150
152
 
151
- ### Breaking Change
153
+ ### Breaking Changes
152
154
 
153
155
  - 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).
154
156
 
@@ -183,7 +185,7 @@
183
185
 
184
186
  ## 0.11.0 (2020-12-17)
185
187
 
186
- ### New Feature
188
+ ### New Features
187
189
 
188
190
  - Added a store definition `store` for the interface namespace to use with `@wordpress/data` API ([#26655](https://github.com/WordPress/gutenberg/pull/26655)).
189
191
 
package/lock-unlock.js CHANGED
@@ -5,6 +5,6 @@ import { __dangerousOptInToUnstableAPIsOnlyForCoreModules } from '@wordpress/pri
5
5
 
6
6
  export const { lock, unlock } =
7
7
  __dangerousOptInToUnstableAPIsOnlyForCoreModules(
8
- 'I know using unstable features means my theme or plugin will inevitably break in the next version of WordPress.',
8
+ 'I acknowledge private features are not for use in themes or plugins and doing so will break in the next version of WordPress.',
9
9
  '@wordpress/interface'
10
10
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/interface",
3
- "version": "6.1.0",
3
+ "version": "6.2.0",
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",
@@ -33,18 +33,18 @@
33
33
  ],
34
34
  "dependencies": {
35
35
  "@babel/runtime": "^7.16.0",
36
- "@wordpress/a11y": "^4.1.0",
37
- "@wordpress/components": "^28.1.0",
38
- "@wordpress/compose": "^7.1.0",
39
- "@wordpress/data": "^10.1.0",
40
- "@wordpress/deprecated": "^4.1.0",
41
- "@wordpress/element": "^6.1.0",
42
- "@wordpress/i18n": "^5.1.0",
43
- "@wordpress/icons": "^10.1.0",
44
- "@wordpress/plugins": "^7.1.0",
45
- "@wordpress/preferences": "^4.1.0",
46
- "@wordpress/private-apis": "^1.1.0",
47
- "@wordpress/viewport": "^6.1.0",
36
+ "@wordpress/a11y": "^4.2.0",
37
+ "@wordpress/components": "^28.2.0",
38
+ "@wordpress/compose": "^7.2.0",
39
+ "@wordpress/data": "^10.2.0",
40
+ "@wordpress/deprecated": "^4.2.0",
41
+ "@wordpress/element": "^6.2.0",
42
+ "@wordpress/i18n": "^5.2.0",
43
+ "@wordpress/icons": "^10.2.0",
44
+ "@wordpress/plugins": "^7.2.0",
45
+ "@wordpress/preferences": "^4.2.0",
46
+ "@wordpress/private-apis": "^1.2.0",
47
+ "@wordpress/viewport": "^6.2.0",
48
48
  "clsx": "^2.1.1"
49
49
  },
50
50
  "peerDependencies": {
@@ -54,5 +54,5 @@
54
54
  "publishConfig": {
55
55
  "access": "public"
56
56
  },
57
- "gitHead": "66d3bf12e67d16deddc4b4a9ec42e1d0bed3479a"
57
+ "gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
58
58
  }