-
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.
* Remove unused class * Don’t error with invalid locale * Fix simple and advanced pagination * Don’t issue a page change on first load * Remove dev mode * Bump packages * Remove old help links * Take into account skipped rows in advanced pagination Advanced searching can return rows that don’t match. Although we ignore these from the returned results, the ‘next’ value has to take them into account * Include current results + latest results when exporting It was missing the already downloaded data * Set 3.0.6 version
- Loading branch information
1 parent
048ef31
commit 713df81
Showing
21 changed files
with
535 additions
and
679 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
This file was deleted.
Oops, something went wrong.
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.5", | ||
"version": "3.0.6", | ||
"description": "Adds search and replace functionality across posts, pages, comments, and meta-data, with full regular expression support", | ||
"main": "search-regex.php", | ||
"sideEffects": true, | ||
|
@@ -38,8 +38,8 @@ | |
}, | ||
"homepage": "https://github.com/johngodley/search-regex", | ||
"devDependencies": { | ||
"@types/jest": "^28.1.8", | ||
"@types/react": "^18.0.17", | ||
"@types/jest": "^29.0.0", | ||
"@types/react": "^18.0.18", | ||
"@types/react-dom": "^18.0.6", | ||
"@types/react-highlight-words": "^0.16.4", | ||
"@types/react-redux": "^7.1.24", | ||
|
@@ -56,20 +56,20 @@ | |
"gulp-po2json": "^1.0.0", | ||
"gulp-zip": "^5.1.0", | ||
"he": "^1.2.0", | ||
"jest": "^29.0.0", | ||
"jest-environment-jsdom": "^29.0.0", | ||
"jest": "^29.0.1", | ||
"jest-environment-jsdom": "^29.0.1", | ||
"mocha": "^10.0.0", | ||
"node-fetch": "2", | ||
"path": "^0.12.7", | ||
"prettier": "npm:[email protected]", | ||
"release-it": "^15.4.0", | ||
"release-it": "^15.4.1", | ||
"request": "^2.88.2", | ||
"through": "^2.3.8", | ||
"through2": "^4.0.2", | ||
"webpack-shell-plugin-next": "^2.2.2" | ||
}, | ||
"dependencies": { | ||
"@emotion/react": "^11.10.0", | ||
"@emotion/react": "^11.10.4", | ||
"@redux-devtools/extension": "^3.2.3", | ||
"@wordpress/element": "^4.14.0", | ||
"@wordpress/i18n": "^4.16.0", | ||
|
@@ -92,9 +92,9 @@ | |
"react-textarea-autosize": "^8.3.4", | ||
"redux": "^4.2.0", | ||
"redux-thunk": "^2.4.1", | ||
"typescript": "^4.7.4", | ||
"typescript": "^4.8.2", | ||
"url": "^0.11.0", | ||
"use-debounce": "^8.0.3" | ||
"use-debounce": "^8.0.4" | ||
}, | ||
"apidoc": { | ||
"name": "Search Regex REST API", | ||
|
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
Oops, something went wrong.