Plugin Directory

Changeset 3364079


Ignore:
Timestamp:
09/18/2025 03:34:56 PM (4 months ago)
Author:
dlocc
Message:

Update to version 3.0.8 from GitHub

Location:
wp-rollback
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-rollback/tags/3.0.8/languages/wp-rollback.pot

    r3363527 r3364079  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Rollback 3.0.7\n"
     5"Project-Id-Version: WP Rollback 3.0.8\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/free-plugin\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-09-17T21:38:48+00:00\n"
     12"POT-Creation-Date: 2025-09-18T15:34:27+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
  • wp-rollback/tags/3.0.8/readme.txt

    r3363527 r3364079  
    66Tested up to: 6.8
    77Requires PHP: 7.4
    8 Stable tag: 3.0.7
     8Stable tag: 3.0.8
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    113113== Changelog ==
    114114
     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
    115118= 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.
    117120
    118121= 3.0.6 =
  • wp-rollback/tags/3.0.8/src/Core/Constants.php

    r3363527 r3364079  
    2626        parent::__construct(
    2727            'wp-rollback',    // Text domain
    28             '3.0.7',          // Version
     28            '3.0.8',          // Version
    2929            'wp-rollback',    // Slug
    3030            'wp-rollback-nonce', // Nonce
  • wp-rollback/tags/3.0.8/vendor/composer/installed.php

    r3363527 r3364079  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '483988858589cb4c22a8ec434b1e32b14a960424',
     6        'reference' => 'c7624b66d02358306725b5215746319cc981bc03',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2525            'pretty_version' => 'dev-main',
    2626            'version' => 'dev-main',
    27             'reference' => '483988858589cb4c22a8ec434b1e32b14a960424',
     27            'reference' => 'c7624b66d02358306725b5215746319cc981bc03',
    2828            'type' => 'wordpress-plugin',
    2929            'install_path' => __DIR__ . '/../../',
  • wp-rollback/tags/3.0.8/vendor/wp-rollback/shared-core/src/Rollbacks/Services/BackupService.php

    r3363527 r3364079  
    1212namespace WpRollback\SharedCore\Rollbacks\Services;
    1313
    14 use WP_Filesystem_Direct;
     14use WP_Filesystem_Base;
    1515use ZipArchive;
    1616use RecursiveIteratorIterator;
     
    3636
    3737    /**
    38      * @var WP_Filesystem_Direct|null WordPress filesystem
    39      */
    40     private ?WP_Filesystem_Direct $filesystem = null;
     38     * @var WP_Filesystem_Base|null WordPress filesystem
     39     */
     40    private ?WP_Filesystem_Base $filesystem = null;
    4141
    4242    /**
     
    492492
    493493        // 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)) {
    495496            throw new \RuntimeException('WordPress filesystem not initialized properly.');
    496497        }
  • wp-rollback/tags/3.0.8/wp-rollback.php

    r3363527 r3364079  
    77 * Author: WP Rollback
    88 * Author URI: https://wprollback.com/
    9  * Version: 3.0.7
     9 * Version: 3.0.8
    1010 * Requires at least: 6.5
    1111 * Requires PHP: 7.4
  • wp-rollback/trunk/languages/wp-rollback.pot

    r3363527 r3364079  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Rollback 3.0.7\n"
     5"Project-Id-Version: WP Rollback 3.0.8\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/free-plugin\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-09-17T21:38:48+00:00\n"
     12"POT-Creation-Date: 2025-09-18T15:34:27+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
  • wp-rollback/trunk/readme.txt

    r3363527 r3364079  
    66Tested up to: 6.8
    77Requires PHP: 7.4
    8 Stable tag: 3.0.7
     8Stable tag: 3.0.8
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    113113== Changelog ==
    114114
     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
    115118= 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.
    117120
    118121= 3.0.6 =
  • wp-rollback/trunk/src/Core/Constants.php

    r3363527 r3364079  
    2626        parent::__construct(
    2727            'wp-rollback',    // Text domain
    28             '3.0.7',          // Version
     28            '3.0.8',          // Version
    2929            'wp-rollback',    // Slug
    3030            'wp-rollback-nonce', // Nonce
  • wp-rollback/trunk/vendor/composer/installed.php

    r3363527 r3364079  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '483988858589cb4c22a8ec434b1e32b14a960424',
     6        'reference' => 'c7624b66d02358306725b5215746319cc981bc03',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2525            'pretty_version' => 'dev-main',
    2626            'version' => 'dev-main',
    27             'reference' => '483988858589cb4c22a8ec434b1e32b14a960424',
     27            'reference' => 'c7624b66d02358306725b5215746319cc981bc03',
    2828            'type' => 'wordpress-plugin',
    2929            'install_path' => __DIR__ . '/../../',
  • wp-rollback/trunk/vendor/wp-rollback/shared-core/src/Rollbacks/Services/BackupService.php

    r3363527 r3364079  
    1212namespace WpRollback\SharedCore\Rollbacks\Services;
    1313
    14 use WP_Filesystem_Direct;
     14use WP_Filesystem_Base;
    1515use ZipArchive;
    1616use RecursiveIteratorIterator;
     
    3636
    3737    /**
    38      * @var WP_Filesystem_Direct|null WordPress filesystem
    39      */
    40     private ?WP_Filesystem_Direct $filesystem = null;
     38     * @var WP_Filesystem_Base|null WordPress filesystem
     39     */
     40    private ?WP_Filesystem_Base $filesystem = null;
    4141
    4242    /**
     
    492492
    493493        // 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)) {
    495496            throw new \RuntimeException('WordPress filesystem not initialized properly.');
    496497        }
  • wp-rollback/trunk/wp-rollback.php

    r3363527 r3364079  
    77 * Author: WP Rollback
    88 * Author URI: https://wprollback.com/
    9  * Version: 3.0.7
     9 * Version: 3.0.8
    1010 * Requires at least: 6.5
    1111 * Requires PHP: 7.4
Note: See TracChangeset for help on using the changeset viewer.