Changeset 3364079
- Timestamp:
- 09/18/2025 03:34:56 PM (4 months ago)
- Location:
- wp-rollback
- Files:
-
- 12 edited
- 1 copied
-
tags/3.0.8 (copied) (copied from wp-rollback/trunk)
-
tags/3.0.8/languages/wp-rollback.pot (modified) (2 diffs)
-
tags/3.0.8/readme.txt (modified) (2 diffs)
-
tags/3.0.8/src/Core/Constants.php (modified) (1 diff)
-
tags/3.0.8/vendor/composer/installed.php (modified) (2 diffs)
-
tags/3.0.8/vendor/wp-rollback/shared-core/src/Rollbacks/Services/BackupService.php (modified) (3 diffs)
-
tags/3.0.8/wp-rollback.php (modified) (1 diff)
-
trunk/languages/wp-rollback.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Core/Constants.php (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/vendor/wp-rollback/shared-core/src/Rollbacks/Services/BackupService.php (modified) (3 diffs)
-
trunk/wp-rollback.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-rollback/tags/3.0.8/languages/wp-rollback.pot
r3363527 r3364079 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WP Rollback 3.0. 7\n"5 "Project-Id-Version: WP Rollback 3.0.8\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/free-plugin\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-09-1 7T21:38:48+00:00\n"12 "POT-Creation-Date: 2025-09-18T15:34:27+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.12.0\n" -
wp-rollback/tags/3.0.8/readme.txt
r3363527 r3364079 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 3.0. 78 Stable tag: 3.0.8 9 9 License: GPLv3 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 113 113 == Changelog == 114 114 115 = 3.0.8 = 116 * Fix: Changed the filesystem type in BackupService from WP_Filesystem_Direct to WP_Filesystem_Base to allow for broader compatibility with different filesystem implementations. 117 115 118 = 3.0.7 = 116 * Updated the WP_Filesystem call in BackupService to set $allow_relaxed_file_ownership to true, enabling support for Group/World writable files. This change aims to prevent potential issues with file permissions during backup operations. Thanks to @hanno from WP.org support forums.119 * Fix: Updated the WP_Filesystem call in BackupService to set $allow_relaxed_file_ownership to true, enabling support for Group/World writable files. This change aims to prevent potential issues with file permissions during backup operations. Thanks to @hanno from WP.org support forums. 117 120 118 121 = 3.0.6 = -
wp-rollback/tags/3.0.8/src/Core/Constants.php
r3363527 r3364079 26 26 parent::__construct( 27 27 'wp-rollback', // Text domain 28 '3.0. 7', // Version28 '3.0.8', // Version 29 29 'wp-rollback', // Slug 30 30 'wp-rollback-nonce', // Nonce -
wp-rollback/tags/3.0.8/vendor/composer/installed.php
r3363527 r3364079 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 483988858589cb4c22a8ec434b1e32b14a960424',6 'reference' => 'c7624b66d02358306725b5215746319cc981bc03', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 25 25 'pretty_version' => 'dev-main', 26 26 'version' => 'dev-main', 27 'reference' => ' 483988858589cb4c22a8ec434b1e32b14a960424',27 'reference' => 'c7624b66d02358306725b5215746319cc981bc03', 28 28 'type' => 'wordpress-plugin', 29 29 'install_path' => __DIR__ . '/../../', -
wp-rollback/tags/3.0.8/vendor/wp-rollback/shared-core/src/Rollbacks/Services/BackupService.php
r3363527 r3364079 12 12 namespace WpRollback\SharedCore\Rollbacks\Services; 13 13 14 use WP_Filesystem_ Direct;14 use WP_Filesystem_Base; 15 15 use ZipArchive; 16 16 use RecursiveIteratorIterator; … … 36 36 37 37 /** 38 * @var WP_Filesystem_ Direct|null WordPress filesystem39 */ 40 private ?WP_Filesystem_ Direct$filesystem = null;38 * @var WP_Filesystem_Base|null WordPress filesystem 39 */ 40 private ?WP_Filesystem_Base $filesystem = null; 41 41 42 42 /** … … 492 492 493 493 // WordPress variable naming exception - this is a global WordPress var 494 if (!($wp_filesystem instanceof WP_Filesystem_Direct)) { 494 // Accept any WP_Filesystem_Base implementation, not just Direct 495 if (!($wp_filesystem instanceof WP_Filesystem_Base)) { 495 496 throw new \RuntimeException('WordPress filesystem not initialized properly.'); 496 497 } -
wp-rollback/tags/3.0.8/wp-rollback.php
r3363527 r3364079 7 7 * Author: WP Rollback 8 8 * Author URI: https://wprollback.com/ 9 * Version: 3.0. 79 * Version: 3.0.8 10 10 * Requires at least: 6.5 11 11 * Requires PHP: 7.4 -
wp-rollback/trunk/languages/wp-rollback.pot
r3363527 r3364079 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WP Rollback 3.0. 7\n"5 "Project-Id-Version: WP Rollback 3.0.8\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/free-plugin\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-09-1 7T21:38:48+00:00\n"12 "POT-Creation-Date: 2025-09-18T15:34:27+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.12.0\n" -
wp-rollback/trunk/readme.txt
r3363527 r3364079 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 3.0. 78 Stable tag: 3.0.8 9 9 License: GPLv3 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 113 113 == Changelog == 114 114 115 = 3.0.8 = 116 * Fix: Changed the filesystem type in BackupService from WP_Filesystem_Direct to WP_Filesystem_Base to allow for broader compatibility with different filesystem implementations. 117 115 118 = 3.0.7 = 116 * Updated the WP_Filesystem call in BackupService to set $allow_relaxed_file_ownership to true, enabling support for Group/World writable files. This change aims to prevent potential issues with file permissions during backup operations. Thanks to @hanno from WP.org support forums.119 * Fix: Updated the WP_Filesystem call in BackupService to set $allow_relaxed_file_ownership to true, enabling support for Group/World writable files. This change aims to prevent potential issues with file permissions during backup operations. Thanks to @hanno from WP.org support forums. 117 120 118 121 = 3.0.6 = -
wp-rollback/trunk/src/Core/Constants.php
r3363527 r3364079 26 26 parent::__construct( 27 27 'wp-rollback', // Text domain 28 '3.0. 7', // Version28 '3.0.8', // Version 29 29 'wp-rollback', // Slug 30 30 'wp-rollback-nonce', // Nonce -
wp-rollback/trunk/vendor/composer/installed.php
r3363527 r3364079 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 483988858589cb4c22a8ec434b1e32b14a960424',6 'reference' => 'c7624b66d02358306725b5215746319cc981bc03', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 25 25 'pretty_version' => 'dev-main', 26 26 'version' => 'dev-main', 27 'reference' => ' 483988858589cb4c22a8ec434b1e32b14a960424',27 'reference' => 'c7624b66d02358306725b5215746319cc981bc03', 28 28 'type' => 'wordpress-plugin', 29 29 'install_path' => __DIR__ . '/../../', -
wp-rollback/trunk/vendor/wp-rollback/shared-core/src/Rollbacks/Services/BackupService.php
r3363527 r3364079 12 12 namespace WpRollback\SharedCore\Rollbacks\Services; 13 13 14 use WP_Filesystem_ Direct;14 use WP_Filesystem_Base; 15 15 use ZipArchive; 16 16 use RecursiveIteratorIterator; … … 36 36 37 37 /** 38 * @var WP_Filesystem_ Direct|null WordPress filesystem39 */ 40 private ?WP_Filesystem_ Direct$filesystem = null;38 * @var WP_Filesystem_Base|null WordPress filesystem 39 */ 40 private ?WP_Filesystem_Base $filesystem = null; 41 41 42 42 /** … … 492 492 493 493 // WordPress variable naming exception - this is a global WordPress var 494 if (!($wp_filesystem instanceof WP_Filesystem_Direct)) { 494 // Accept any WP_Filesystem_Base implementation, not just Direct 495 if (!($wp_filesystem instanceof WP_Filesystem_Base)) { 495 496 throw new \RuntimeException('WordPress filesystem not initialized properly.'); 496 497 } -
wp-rollback/trunk/wp-rollback.php
r3363527 r3364079 7 7 * Author: WP Rollback 8 8 * Author URI: https://wprollback.com/ 9 * Version: 3.0. 79 * Version: 3.0.8 10 10 * Requires at least: 6.5 11 11 * Requires PHP: 7.4
Note: See TracChangeset
for help on using the changeset viewer.