Skip to content

Commit

Permalink
bump 24.07.02
Browse files Browse the repository at this point in the history
- Fixed: _load_textdomain_just_in_time was called incorrectly.
- Fixed: blueprint.json -> deprecated pluginZipFile property.
- Updated: Tested up to 6.7.
  • Loading branch information
nawawi committed Dec 6, 2024
1 parent 05cb891 commit 0d4482a
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 24 deletions.
23 changes: 8 additions & 15 deletions .wordpress.org/blueprints/blueprint.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,23 @@
{
"landingPage": "\/wp-admin\/plugins.php",
"preferredVersions": {
"php": "8.0",
"wp": "latest"
},
"phpExtensionBundles": [
"kitchen-sink"
],
"features": {
"networking": true
},
"steps": [
{
"step": "login",
"username": "admin",
"password": "password"
},
{
"step": "installPlugin",
"pluginZipFile": {
"pluginData": {
"resource": "url",
"url": "https:\/\/downloads.wordpress.org\/plugin\/docket-cache.23.08.02.zip"
"url": "https:\/\/downloads.wordpress.org\/plugin\/docket-cache.zip"
},
"options": {
"activate": true
}
},
{
"step": "login",
"username": "admin",
"password": "password"
}
]
}
}
6 changes: 6 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
= v24.07.02 (2024-12-06) =

- Fixed: _load_textdomain_just_in_time was called incorrectly.
- Fixed: blueprint.json -> deprecated pluginZipFile property.
- Updated: Tested up to 6.7.

= v24.07.01 (2024-07-21) =

- Fixed: View::tooltip() -> Typos "dan".
Expand Down
Binary file modified dist/docket-cache.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions docket-cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
* @wordpress-plugin
* Plugin Name: Docket Cache
* Plugin URI: https://docketcache.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
* Version: 24.07.01
* VerPrev: 23.08.02
* Version: 24.07.02
* VerPrev: 24.07.01
* Description: A persistent object cache stored as a plain PHP code, accelerates caching with OPcache backend.
* GitHub Plugin URI: https://github.com/nawawi/docket-cache
* Author: Nawawi Jamili
Expand Down
2 changes: 1 addition & 1 deletion includes/object-cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @wordpress-plugin
* Plugin Name: Docket Cache Drop-in
* Plugin URI: https://wordpress.org/plugins/docket-cache/
* Version: 24.07.01
* Version: 24.07.02
* Description: Object Cache drop-in for Docket Cache.
* Author: Nawawi Jamili
* Author URI: https://docketcache.com
Expand Down
2 changes: 1 addition & 1 deletion includes/src/Crawler.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

final class Crawler
{
private static $version = '24.07.01';
private static $version = '24.07.02';
public static $send_cookie = false;

private static function default_args($param = [])
Expand Down
2 changes: 1 addition & 1 deletion includes/src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,7 @@ private function toggle_auto_update($toggle = false)
private function register_plugin_hooks()
{
add_action(
'plugins_loaded',
'init',
function () {
load_plugin_textdomain(
'docket-cache',
Expand Down
4 changes: 2 additions & 2 deletions languages/docket-cache.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the MIT.
msgid ""
msgstr ""
"Project-Id-Version: Docket Cache 24.07.01\n"
"Project-Id-Version: Docket Cache 24.07.02\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/docket-cache\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-07-21T14:03:25+00:00\n"
"POT-Creation-Date: 2024-12-06T07:57:08+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
"X-Domain: docket-cache\n"
Expand Down
9 changes: 7 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
Contributors: nawawijamili
Tags: object cache, OPcache, cache, database, performance
Requires at least: 5.4
Tested up to: 6.6
Tested up to: 6.7
Requires PHP: 7.2.5
Stable tag: 24.07.01
Stable tag: 24.07.02
License: MIT
License URI: https://github.com/nawawi/docket-cache/blob/master/LICENSE.txt

Expand Down Expand Up @@ -172,6 +172,11 @@ Yes, you can. It can boost more your WordPress performance since there is no net
Please do manually remove wp-content/object-cache.php and wp-content/cache/docket-cache if an error occurs during updates. Thanks.

== Changelog ==
= 24.07.02 =
- Fixed: _load_textdomain_just_in_time was called incorrectly.
- Fixed: blueprint.json -> deprecated pluginZipFile property.
- Updated: Tested up to 6.7.

= 24.07.01 =
- Fixed: View::tooltip() -> Typos "dan".
- Fixed: Filesystem::sanitize_maxsizedisk() -> Returns default if empty.
Expand Down

0 comments on commit 0d4482a

Please sign in to comment.