@wordpress/block-directory 3.1.0 → 3.1.1

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 +6 -0
  2. package/README.md +7 -1
  3. package/package.json +19 -20
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 3.1.1 (2022-02-10)
6
+
7
+ ### Bug Fix
8
+
9
+ - Removed unused `@wordpress/url` dependency ([#38388](https://github.com/WordPress/gutenberg/pull/38388)).
10
+
5
11
  ## 3.1.0 (2022-01-27)
6
12
 
7
13
  ## 3.0.0 (2021-07-29)
package/README.md CHANGED
@@ -253,4 +253,10 @@ _Returns_
253
253
 
254
254
  <!-- END TOKEN(Autogenerated selectors|src/store/selectors.js) -->
255
255
 
256
- <br/><br/><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
256
+ ## Contributing to this package
257
+
258
+ 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.
259
+
260
+ 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).
261
+
262
+ <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/block-directory",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "Extend editor with block directory features to search, download and install blocks.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -26,28 +26,27 @@
26
26
  "react-native": "src/index",
27
27
  "dependencies": {
28
28
  "@babel/runtime": "^7.16.0",
29
- "@wordpress/a11y": "^3.3.0",
30
- "@wordpress/api-fetch": "^6.0.0",
31
- "@wordpress/block-editor": "^8.1.0",
32
- "@wordpress/blocks": "^11.2.0",
33
- "@wordpress/components": "^19.3.0",
34
- "@wordpress/compose": "^5.1.0",
35
- "@wordpress/core-data": "^4.1.0",
36
- "@wordpress/data": "^6.2.0",
37
- "@wordpress/edit-post": "^5.1.0",
38
- "@wordpress/editor": "^12.1.0",
39
- "@wordpress/element": "^4.1.0",
40
- "@wordpress/hooks": "^3.3.0",
41
- "@wordpress/html-entities": "^3.3.0",
42
- "@wordpress/i18n": "^4.3.0",
43
- "@wordpress/icons": "^6.2.0",
44
- "@wordpress/notices": "^3.3.0",
45
- "@wordpress/plugins": "^4.1.0",
46
- "@wordpress/url": "^3.4.0",
29
+ "@wordpress/a11y": "^3.3.1",
30
+ "@wordpress/api-fetch": "^6.0.1",
31
+ "@wordpress/block-editor": "^8.1.1",
32
+ "@wordpress/blocks": "^11.2.1",
33
+ "@wordpress/components": "^19.4.0",
34
+ "@wordpress/compose": "^5.1.1",
35
+ "@wordpress/core-data": "^4.1.1",
36
+ "@wordpress/data": "^6.2.1",
37
+ "@wordpress/edit-post": "^6.0.0",
38
+ "@wordpress/editor": "^12.2.0",
39
+ "@wordpress/element": "^4.1.1",
40
+ "@wordpress/hooks": "^3.3.1",
41
+ "@wordpress/html-entities": "^3.3.1",
42
+ "@wordpress/i18n": "^4.3.1",
43
+ "@wordpress/icons": "^6.3.0",
44
+ "@wordpress/notices": "^3.3.1",
45
+ "@wordpress/plugins": "^4.1.1",
47
46
  "lodash": "^4.17.21"
48
47
  },
49
48
  "publishConfig": {
50
49
  "access": "public"
51
50
  },
52
- "gitHead": "d95ccb9366e249133cdb1d7b25c382446b9ee502"
51
+ "gitHead": "2e4922861e49f5a090f9dc52056165092cfba163"
53
52
  }