Skip to content

Commit 33e93a2

Browse files
authored
Merge pull request #85 from liip/fix/wp-editor-dependency
fix(): Update npm dependencies
2 parents 6f34e9c + f46cb07 commit 33e93a2

File tree

8 files changed

+1146
-1301
lines changed

8 files changed

+1146
-1301
lines changed

languages/wp-bootstrap-blocks-de_CH.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the same license as the Bootstrap Blocks plugin.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Bootstrap Blocks 3.3.1\n"
5+
"Project-Id-Version: Bootstrap Blocks 3.3.2\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bootstrap-"
77
"blocks\n"
88
"POT-Creation-Date: 2021-06-13T14:01:24+00:00\n"

languages/wp-bootstrap-blocks-de_DE.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the same license as the Bootstrap Blocks plugin.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Bootstrap Blocks 3.3.1\n"
5+
"Project-Id-Version: Bootstrap Blocks 3.3.2\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bootstrap-"
77
"blocks\n"
88
"POT-Creation-Date: 2021-06-13T14:01:24+00:00\n"

languages/wp-bootstrap-blocks.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the GPL2+.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Bootstrap Blocks 3.3.1\n"
5+
"Project-Id-Version: Bootstrap Blocks 3.3.2\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bootstrap-blocks\n"
77
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
88
"Language-Team: LANGUAGE <[email protected]>\n"

package-lock.json

Lines changed: 1121 additions & 1280 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-bootstrap-blocks",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"private": true,
55
"description": "Bootstrap Gutenberg Blocks for WordPress",
66
"author": "Liip AG",
@@ -18,22 +18,22 @@
1818
"url": "https://github.com/liip/bootstrap-blocks-wordpress-plugin/issues"
1919
},
2020
"dependencies": {
21-
"@wordpress/block-editor": "^6.1.8",
22-
"@wordpress/blocks": "^9.1.4",
23-
"@wordpress/components": "^14.1.5",
24-
"@wordpress/compose": "^4.1.2",
25-
"@wordpress/data": "^5.1.2",
26-
"@wordpress/editor": "^10.1.11",
27-
"@wordpress/element": "^3.1.1",
28-
"@wordpress/hooks": "^3.1.1",
29-
"@wordpress/i18n": "^4.1.1"
21+
"@wordpress/block-editor": "^7.0.0",
22+
"@wordpress/blocks": "^11.0.0",
23+
"@wordpress/components": "^15.0.0",
24+
"@wordpress/compose": "^5.0.0",
25+
"@wordpress/data": "^6.0.0",
26+
"@wordpress/editor": "^11.0.0",
27+
"@wordpress/element": "^4.0.0",
28+
"@wordpress/hooks": "^3.2.0",
29+
"@wordpress/i18n": "^4.2.1"
3030
},
3131
"devDependencies": {
3232
"@cypress/snapshot": "^2.1.7",
33-
"@wordpress/base-styles": "^3.5.4",
34-
"@wordpress/env": "^4.0.5",
35-
"@wordpress/scripts": "^16.1.4",
36-
"cypress": "^7.6.0",
33+
"@wordpress/base-styles": "^3.6.0",
34+
"@wordpress/env": "^4.1.0",
35+
"@wordpress/scripts": "^17.1.0",
36+
"cypress": "^8.1.0",
3737
"cypress-wp-test-utils": "^0.3.0",
3838
"cypress-xpath": "^1.6.2",
3939
"eslint-plugin-cypress": "^2.11.3",
@@ -49,7 +49,7 @@
4949
"wp-env": "wp-env",
5050
"check-engines": "wp-scripts check-engines",
5151
"check-licenses": "wp-scripts check-licenses",
52-
"lint": "npm run lint:pkg-json && npm run lint:css && npm run lint:js && npm run lint:md-docs && npm run lint:md-js",
52+
"lint": "npm run lint:pkg-json && npm run lint:css && npm run lint:js && npm run lint:md-docs",
5353
"lint:css": "wp-scripts lint-style 'src/**/*.scss'",
5454
"lint:js": "wp-scripts lint-js",
5555
"lint:js-fix": "wp-scripts lint-js --fix",

readme.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: gutenberg, blocks, bootstrap
55
Requires at least: 5.0
66
Tested up to: 5.8
77
Requires PHP: 5.6
8-
Stable tag: 3.3.1
8+
Stable tag: 3.3.2
99
License: GPLv2
1010
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1111

@@ -121,6 +121,10 @@ Please create a new GitHub issue and let us know: [https://github.com/liip/boots
121121

122122
== Changelog ==
123123

124+
= 3.3.2 =
125+
126+
* [FIX] Remove deprecated `wp-editor` dependency in newer versions of WordPress to avoid deprecation notice in widget screen (WordPress >= 5.8).
127+
124128
= 3.3.1 =
125129

126130
* [COMPATIBILITY] Tested up to WordPress 5.8.

src/class-wp-bootstrap-blocks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class WP_Bootstrap_Blocks {
3333
*
3434
* @var string
3535
*/
36-
public static $version = '3.3.1';
36+
public static $version = '3.3.2';
3737

3838
/**
3939
* The plugin token.

wp-bootstrap-blocks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Bootstrap Gutenberg Blocks for WordPress.
66
* Author: Liip AG
77
* Author URI: https://liip.ch
8-
* Version: 3.3.1
8+
* Version: 3.3.2
99
* License: GPL2+
1010
* License URI: https://www.gnu.org/licenses/gpl-2.0.txt
1111
* Text Domain: wp-bootstrap-blocks

0 commit comments

Comments
 (0)