-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix version check * Correctly handle null check Also handle a multiline replace * Don’t crash when ‘replace’ is picked for text * Enable replace button when remove is picked * Send appropriate replace value to API When empty string, send null When ‘remove’ then send empty string * Version bump to 3.0.3
- Loading branch information
1 parent
e400d85
commit 0fd315c
Showing
11 changed files
with
331 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "search-regex", | ||
"version": "3.0.2", | ||
"version": "3.0.3", | ||
"description": "Adds search and replace functionality across posts, pages, comments, and meta-data, with full regular expression support", | ||
"main": "search-regex.php", | ||
"sideEffects": true, | ||
|
@@ -39,14 +39,14 @@ | |
"homepage": "https://github.com/johngodley/search-regex", | ||
"devDependencies": { | ||
"@types/jest": "^28.1.6", | ||
"@types/react": "^18.0.15", | ||
"@types/react": "^18.0.17", | ||
"@types/react-dom": "^18.0.6", | ||
"@types/react-highlight-words": "^0.16.4", | ||
"@types/react-redux": "^7.1.24", | ||
"@wordpress/base-styles": "^4.7.0", | ||
"@wordpress/eslint-plugin": "^12.8.0", | ||
"@wordpress/eslint-plugin": "^12.9.0", | ||
"@wordpress/prettier-config": "^1.4.0", | ||
"@wordpress/scripts": "^23.6.0", | ||
"@wordpress/scripts": "^23.7.1", | ||
"apidoc": "^0.52.0", | ||
"chai": "^4.3.6", | ||
"download": "^8.0.0", | ||
|
@@ -62,17 +62,17 @@ | |
"node-fetch": "2", | ||
"path": "^0.12.7", | ||
"prettier": "npm:[email protected]", | ||
"release-it": "^15.2.0", | ||
"release-it": "^15.3.0", | ||
"request": "^2.88.2", | ||
"through": "^2.3.8", | ||
"through2": "^4.0.2", | ||
"webpack-shell-plugin-next": "^2.2.2" | ||
}, | ||
"dependencies": { | ||
"@emotion/react": "^11.9.3", | ||
"@redux-devtools/extension": "^3.2.2", | ||
"@wordpress/element": "^4.12.0", | ||
"@wordpress/i18n": "^4.14.0", | ||
"@emotion/react": "^11.10.0", | ||
"@redux-devtools/extension": "^3.2.3", | ||
"@wordpress/element": "^4.13.0", | ||
"@wordpress/i18n": "^4.15.0", | ||
"classnames": "^2.3.1", | ||
"date-fns": "^2.29.1", | ||
"deep-equal": "^2.0.5", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule wp-plugin-components
updated
7 files
+1 −1 | badge/style.scss | |
+7 −1 | dropdown-button/style.scss | |
+1 −1 | error/decode-error/index.js | |
+3 −1 | error/display/error-api.js | |
+3 −1 | error/display/error-nonce.js | |
+1 −1 | modal/style.scss | |
+3 −1 | notice/style.scss |
Oops, something went wrong.