Plugin Directory

Changeset 3261736


Ignore:
Timestamp:
03/25/2025 06:21:06 PM (9 months ago)
Author:
afragen
Message:

Update to version 3.6.3 from GitHub

Location:
wordpress-beta-tester
Files:
16 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wordpress-beta-tester/tags/3.6.3/CHANGES.md

    r3201160 r3261736  
    11[unreleased]
     2
     3#### 3.6.3 / 2025-03-25
     4* update workflow
     5* add extra setting to remove auto-installed plugin(s)
    26
    37#### 3.6.2 / 2024-12-02
  • wordpress-beta-tester/tags/3.6.3/languages/wordpress-beta-tester.pot

    r3201160 r3261736  
    1 # Copyright (C) 2024 WordPress Upgrade/Install Team
     1# Copyright (C) 2025 WordPress Upgrade/Install Team
    22# This file is distributed under the GPL v2 or later.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: wordpress-beta-tester 3.6.2\n"
    6 "Report-Msgid-Bugs-To: https://github.com/afragen/wordpress-beta-tester/wordpress-beta-tester/issues\n"
     5"Project-Id-Version: WordPress Beta Tester 3.6.3\n"
     6"Report-Msgid-Bugs-To: https://github.com/afragen/wordpress-beta-tester/issues\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    88"Language-Team: LANGUAGE <[email protected]>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-12-02T19:37:25+00:00\n"
     12"POT-Creation-Date: 2025-03-25T18:19:14+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
     
    187187msgstr ""
    188188
    189 #: src/WPBT/WPBT_Extras.php:60
     189#: src/WPBT/WPBT_Extras.php:71
    190190msgid "Extra Settings"
    191191msgstr ""
    192192
    193 #: src/WPBT/WPBT_Extras.php:90
     193#: src/WPBT/WPBT_Extras.php:101
    194194msgid "Skip successful autoupdate emails."
    195195msgstr ""
    196196
    197 #: src/WPBT/WPBT_Extras.php:91
     197#: src/WPBT/WPBT_Extras.php:102
    198198msgid "Disable sending emails to the admin user for successful autoupdates. Only emails indicating failures of the autoupdate process are sent."
     199msgstr ""
     200
     201#: src/WPBT/WPBT_Extras.php:114
     202msgid "Delete auto-installed plugins."
     203msgstr ""
     204
     205#: src/WPBT/WPBT_Extras.php:115
     206msgid "Akismet is automatically installed with beta testing offers."
    199207msgstr ""
    200208
     
    236244msgstr ""
    237245
     246#: src/WPBT/WPBT_Settings.php:89
     247#: src/WPBT/WPBT_Settings.php:285
     248msgid "Beta Testing WordPress"
     249msgstr ""
     250
    238251#: src/WPBT/WPBT_Settings.php:90
    239 #: src/WPBT/WPBT_Settings.php:286
    240 msgid "Beta Testing WordPress"
    241 msgstr ""
    242 
    243 #: src/WPBT/WPBT_Settings.php:91
    244252msgctxt "Menu item"
    245253msgid "Beta Testing"
    246254msgstr ""
    247255
    248 #: src/WPBT/WPBT_Settings.php:110
     256#: src/WPBT/WPBT_Settings.php:109
    249257msgid "Settings"
    250258msgstr ""
    251259
     260#: src/WPBT/WPBT_Settings.php:253
     261msgid "Saved."
     262msgstr ""
     263
    252264#: src/WPBT/WPBT_Settings.php:254
    253 msgid "Saved."
    254 msgstr ""
    255 
    256 #: src/WPBT/WPBT_Settings.php:255
    257265msgid "Perhaps you should head on over and <a href=\"update-core.php\">upgrade now</a>."
    258266msgstr ""
    259267
    260 #: src/WPBT/WPBT_Settings.php:289
     268#: src/WPBT/WPBT_Settings.php:288
    261269msgid "<strong>Please note:</strong> Once you have switched your website to one of these beta versions of software, it will not always be possible to downgrade as the database structure may be updated during the development of a major release."
    262270msgstr ""
  • wordpress-beta-tester/tags/3.6.3/src/WPBT/WPBT_Extras.php

    r3166156 r3261736  
    4040
    4141    /**
     42     * Initialize Extras.
     43     *
     44     * @return void
     45     */
     46    public function init() {
     47        $this->load_hooks();
     48        $this->skip_autoupdate_email();
     49        $this->remove_auto_installed_plugins();
     50    }
     51
     52    /**
    4253     * Load hooks.
    4354     *
     
    90101                'title'       => esc_html__( 'Skip successful autoupdate emails.', 'wordpress-beta-tester' ),
    91102                'description' => esc_html__( 'Disable sending emails to the admin user for successful autoupdates. Only emails indicating failures of the autoupdate process are sent.', 'wordpress-beta-tester' ),
     103            )
     104        );
     105
     106        add_settings_field(
     107            'remove_auto_installed_plugins',
     108            null,
     109            array( 'WPBT_Settings', 'checkbox_setting' ),
     110            'wp_beta_tester_extras',
     111            'wp_beta_tester_email',
     112            array(
     113                'id'          => 'remove_auto_installed_plugins',
     114                'title'       => esc_html__( 'Delete auto-installed plugins.', 'wordpress-beta-tester' ),
     115                'description' => esc_html__( 'Akismet is automatically installed with beta testing offers.', 'wordpress-beta-tester' ),
    92116            )
    93117        );
     
    184208        );
    185209    }
     210
     211    /**
     212     * Remove auto-installed plugins installed with every beta testing offer.
     213     *
     214     * @return void
     215     */
     216    public function remove_auto_installed_plugins() {
     217        if ( ! isset( self::$options['remove_auto_installed_plugins'] ) ) {
     218            return;
     219        }
     220
     221        // Needed as sometimes `delete_plugins()` not ready.
     222        require_once ABSPATH . 'wp-admin/includes/file.php';
     223        add_action( 'init', fn() => delete_plugins( array( 'akismet/akismet.php' ) ) );
     224    }
    186225}
  • wordpress-beta-tester/tags/3.6.3/src/WPBT/WPBT_Settings.php

    r3201160 r3261736  
    5454        $this->load_hooks();
    5555        ( new WPBT_Core( $this->wp_beta_tester, self::$options ) )->load_hooks();
    56         ( new WPBT_Extras( $this->wp_beta_tester, self::$options ) )->load_hooks();
    57         ( new WPBT_Extras( $this->wp_beta_tester, self::$options ) )->skip_autoupdate_email();
     56        ( new WPBT_Extras( $this->wp_beta_tester, self::$options ) )->init();
    5857        ( new WPBT_Help() )->load_hooks();
    5958    }
  • wordpress-beta-tester/tags/3.6.3/vendor/composer/InstalledVersions.php

    r2914451 r3261736  
    3232     */
    3333    private static $installed;
     34
     35    /**
     36     * @var bool
     37     */
     38    private static $installedIsLocalDir;
    3439
    3540    /**
     
    310315        self::$installed = $data;
    311316        self::$installedByVendor = array();
     317
     318        // when using reload, we disable the duplicate protection to ensure that self::$installed data is
     319        // always returned, but we cannot know whether it comes from the installed.php in __DIR__ or not,
     320        // so we have to assume it does not, and that may result in duplicate data being returned when listing
     321        // all installed packages for example
     322        self::$installedIsLocalDir = false;
    312323    }
    313324
     
    323334
    324335        $installed = array();
     336        $copiedLocalDir = false;
    325337
    326338        if (self::$canGetVendors) {
     339            $selfDir = strtr(__DIR__, '\\', '/');
    327340            foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
     341                $vendorDir = strtr($vendorDir, '\\', '/');
    328342                if (isset(self::$installedByVendor[$vendorDir])) {
    329343                    $installed[] = self::$installedByVendor[$vendorDir];
     
    331345                    /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
    332346                    $required = require $vendorDir.'/composer/installed.php';
    333                     $installed[] = self::$installedByVendor[$vendorDir] = $required;
    334                     if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
    335                         self::$installed = $installed[count($installed) - 1];
     347                    self::$installedByVendor[$vendorDir] = $required;
     348                    $installed[] = $required;
     349                    if (self::$installed === null && $vendorDir.'/composer' === $selfDir) {
     350                        self::$installed = $required;
     351                        self::$installedIsLocalDir = true;
    336352                    }
     353                }
     354                if (self::$installedIsLocalDir && $vendorDir.'/composer' === $selfDir) {
     355                    $copiedLocalDir = true;
    337356                }
    338357            }
     
    351370        }
    352371
    353         if (self::$installed !== array()) {
     372        if (self::$installed !== array() && !$copiedLocalDir) {
    354373            $installed[] = self::$installed;
    355374        }
  • wordpress-beta-tester/tags/3.6.3/vendor/composer/installed.json

    r3166156 r3261736  
    256256        {
    257257            "name": "squizlabs/php_codesniffer",
    258             "version": "3.10.3",
    259             "version_normalized": "3.10.3.0",
     258            "version": "3.12.0",
     259            "version_normalized": "3.12.0.0",
    260260            "source": {
    261261                "type": "git",
    262262                "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
    263                 "reference": "62d32998e820bddc40f99f8251958aed187a5c9c"
     263                "reference": "2d1b63db139c3c6ea0c927698e5160f8b3b8d630"
    264264            },
    265265            "dist": {
    266266                "type": "zip",
    267                 "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/62d32998e820bddc40f99f8251958aed187a5c9c",
    268                 "reference": "62d32998e820bddc40f99f8251958aed187a5c9c",
     267                "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/2d1b63db139c3c6ea0c927698e5160f8b3b8d630",
     268                "reference": "2d1b63db139c3c6ea0c927698e5160f8b3b8d630",
    269269                "shasum": ""
    270270            },
     
    278278                "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
    279279            },
    280             "time": "2024-09-18T10:38:58+00:00",
     280            "time": "2025-03-18T05:04:51+00:00",
    281281            "bin": [
    282282                "bin/phpcbf",
     
    333333                    "url": "https://opencollective.com/php_codesniffer",
    334334                    "type": "open_collective"
     335                },
     336                {
     337                    "url": "https://thanks.dev/u/gh/phpcsstandards",
     338                    "type": "thanks_dev"
    335339                }
    336340            ],
  • wordpress-beta-tester/tags/3.6.3/vendor/composer/installed.php

    r3166156 r3261736  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => 'c845c78f2c71f0b51e6423b64ed4e07563f4f3b7',
     6        'reference' => 'f942f73118c58e4794384adfa673ef5d24a6d9a1',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-master',
    1515            'version' => 'dev-master',
    16             'reference' => 'c845c78f2c71f0b51e6423b64ed4e07563f4f3b7',
     16            'reference' => 'f942f73118c58e4794384adfa673ef5d24a6d9a1',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
     
    4848        ),
    4949        'squizlabs/php_codesniffer' => array(
    50             'pretty_version' => '3.10.3',
    51             'version' => '3.10.3.0',
    52             'reference' => '62d32998e820bddc40f99f8251958aed187a5c9c',
     50            'pretty_version' => '3.12.0',
     51            'version' => '3.12.0.0',
     52            'reference' => '2d1b63db139c3c6ea0c927698e5160f8b3b8d630',
    5353            'type' => 'library',
    5454            'install_path' => __DIR__ . '/../squizlabs/php_codesniffer',
  • wordpress-beta-tester/tags/3.6.3/wp-beta-tester.php

    r3201160 r3261736  
    1414 * Description:       Allows you to easily upgrade to Beta releases.
    1515 * Author:            WordPress Upgrade/Install Team
    16  * Version:           3.6.2
     16 * Version:           3.6.3
    1717 * Network:           true
    1818 * Author URI:        https://make.wordpress.org/core/components/upgrade-install/
  • wordpress-beta-tester/trunk/CHANGES.md

    r3201160 r3261736  
    11[unreleased]
     2
     3#### 3.6.3 / 2025-03-25
     4* update workflow
     5* add extra setting to remove auto-installed plugin(s)
    26
    37#### 3.6.2 / 2024-12-02
  • wordpress-beta-tester/trunk/languages/wordpress-beta-tester.pot

    r3201160 r3261736  
    1 # Copyright (C) 2024 WordPress Upgrade/Install Team
     1# Copyright (C) 2025 WordPress Upgrade/Install Team
    22# This file is distributed under the GPL v2 or later.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: wordpress-beta-tester 3.6.2\n"
    6 "Report-Msgid-Bugs-To: https://github.com/afragen/wordpress-beta-tester/wordpress-beta-tester/issues\n"
     5"Project-Id-Version: WordPress Beta Tester 3.6.3\n"
     6"Report-Msgid-Bugs-To: https://github.com/afragen/wordpress-beta-tester/issues\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    88"Language-Team: LANGUAGE <[email protected]>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-12-02T19:37:25+00:00\n"
     12"POT-Creation-Date: 2025-03-25T18:19:14+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
     
    187187msgstr ""
    188188
    189 #: src/WPBT/WPBT_Extras.php:60
     189#: src/WPBT/WPBT_Extras.php:71
    190190msgid "Extra Settings"
    191191msgstr ""
    192192
    193 #: src/WPBT/WPBT_Extras.php:90
     193#: src/WPBT/WPBT_Extras.php:101
    194194msgid "Skip successful autoupdate emails."
    195195msgstr ""
    196196
    197 #: src/WPBT/WPBT_Extras.php:91
     197#: src/WPBT/WPBT_Extras.php:102
    198198msgid "Disable sending emails to the admin user for successful autoupdates. Only emails indicating failures of the autoupdate process are sent."
     199msgstr ""
     200
     201#: src/WPBT/WPBT_Extras.php:114
     202msgid "Delete auto-installed plugins."
     203msgstr ""
     204
     205#: src/WPBT/WPBT_Extras.php:115
     206msgid "Akismet is automatically installed with beta testing offers."
    199207msgstr ""
    200208
     
    236244msgstr ""
    237245
     246#: src/WPBT/WPBT_Settings.php:89
     247#: src/WPBT/WPBT_Settings.php:285
     248msgid "Beta Testing WordPress"
     249msgstr ""
     250
    238251#: src/WPBT/WPBT_Settings.php:90
    239 #: src/WPBT/WPBT_Settings.php:286
    240 msgid "Beta Testing WordPress"
    241 msgstr ""
    242 
    243 #: src/WPBT/WPBT_Settings.php:91
    244252msgctxt "Menu item"
    245253msgid "Beta Testing"
    246254msgstr ""
    247255
    248 #: src/WPBT/WPBT_Settings.php:110
     256#: src/WPBT/WPBT_Settings.php:109
    249257msgid "Settings"
    250258msgstr ""
    251259
     260#: src/WPBT/WPBT_Settings.php:253
     261msgid "Saved."
     262msgstr ""
     263
    252264#: src/WPBT/WPBT_Settings.php:254
    253 msgid "Saved."
    254 msgstr ""
    255 
    256 #: src/WPBT/WPBT_Settings.php:255
    257265msgid "Perhaps you should head on over and <a href=\"update-core.php\">upgrade now</a>."
    258266msgstr ""
    259267
    260 #: src/WPBT/WPBT_Settings.php:289
     268#: src/WPBT/WPBT_Settings.php:288
    261269msgid "<strong>Please note:</strong> Once you have switched your website to one of these beta versions of software, it will not always be possible to downgrade as the database structure may be updated during the development of a major release."
    262270msgstr ""
  • wordpress-beta-tester/trunk/src/WPBT/WPBT_Extras.php

    r3166156 r3261736  
    4040
    4141    /**
     42     * Initialize Extras.
     43     *
     44     * @return void
     45     */
     46    public function init() {
     47        $this->load_hooks();
     48        $this->skip_autoupdate_email();
     49        $this->remove_auto_installed_plugins();
     50    }
     51
     52    /**
    4253     * Load hooks.
    4354     *
     
    90101                'title'       => esc_html__( 'Skip successful autoupdate emails.', 'wordpress-beta-tester' ),
    91102                'description' => esc_html__( 'Disable sending emails to the admin user for successful autoupdates. Only emails indicating failures of the autoupdate process are sent.', 'wordpress-beta-tester' ),
     103            )
     104        );
     105
     106        add_settings_field(
     107            'remove_auto_installed_plugins',
     108            null,
     109            array( 'WPBT_Settings', 'checkbox_setting' ),
     110            'wp_beta_tester_extras',
     111            'wp_beta_tester_email',
     112            array(
     113                'id'          => 'remove_auto_installed_plugins',
     114                'title'       => esc_html__( 'Delete auto-installed plugins.', 'wordpress-beta-tester' ),
     115                'description' => esc_html__( 'Akismet is automatically installed with beta testing offers.', 'wordpress-beta-tester' ),
    92116            )
    93117        );
     
    184208        );
    185209    }
     210
     211    /**
     212     * Remove auto-installed plugins installed with every beta testing offer.
     213     *
     214     * @return void
     215     */
     216    public function remove_auto_installed_plugins() {
     217        if ( ! isset( self::$options['remove_auto_installed_plugins'] ) ) {
     218            return;
     219        }
     220
     221        // Needed as sometimes `delete_plugins()` not ready.
     222        require_once ABSPATH . 'wp-admin/includes/file.php';
     223        add_action( 'init', fn() => delete_plugins( array( 'akismet/akismet.php' ) ) );
     224    }
    186225}
  • wordpress-beta-tester/trunk/src/WPBT/WPBT_Settings.php

    r3201160 r3261736  
    5454        $this->load_hooks();
    5555        ( new WPBT_Core( $this->wp_beta_tester, self::$options ) )->load_hooks();
    56         ( new WPBT_Extras( $this->wp_beta_tester, self::$options ) )->load_hooks();
    57         ( new WPBT_Extras( $this->wp_beta_tester, self::$options ) )->skip_autoupdate_email();
     56        ( new WPBT_Extras( $this->wp_beta_tester, self::$options ) )->init();
    5857        ( new WPBT_Help() )->load_hooks();
    5958    }
  • wordpress-beta-tester/trunk/vendor/composer/InstalledVersions.php

    r2914451 r3261736  
    3232     */
    3333    private static $installed;
     34
     35    /**
     36     * @var bool
     37     */
     38    private static $installedIsLocalDir;
    3439
    3540    /**
     
    310315        self::$installed = $data;
    311316        self::$installedByVendor = array();
     317
     318        // when using reload, we disable the duplicate protection to ensure that self::$installed data is
     319        // always returned, but we cannot know whether it comes from the installed.php in __DIR__ or not,
     320        // so we have to assume it does not, and that may result in duplicate data being returned when listing
     321        // all installed packages for example
     322        self::$installedIsLocalDir = false;
    312323    }
    313324
     
    323334
    324335        $installed = array();
     336        $copiedLocalDir = false;
    325337
    326338        if (self::$canGetVendors) {
     339            $selfDir = strtr(__DIR__, '\\', '/');
    327340            foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
     341                $vendorDir = strtr($vendorDir, '\\', '/');
    328342                if (isset(self::$installedByVendor[$vendorDir])) {
    329343                    $installed[] = self::$installedByVendor[$vendorDir];
     
    331345                    /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
    332346                    $required = require $vendorDir.'/composer/installed.php';
    333                     $installed[] = self::$installedByVendor[$vendorDir] = $required;
    334                     if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
    335                         self::$installed = $installed[count($installed) - 1];
     347                    self::$installedByVendor[$vendorDir] = $required;
     348                    $installed[] = $required;
     349                    if (self::$installed === null && $vendorDir.'/composer' === $selfDir) {
     350                        self::$installed = $required;
     351                        self::$installedIsLocalDir = true;
    336352                    }
     353                }
     354                if (self::$installedIsLocalDir && $vendorDir.'/composer' === $selfDir) {
     355                    $copiedLocalDir = true;
    337356                }
    338357            }
     
    351370        }
    352371
    353         if (self::$installed !== array()) {
     372        if (self::$installed !== array() && !$copiedLocalDir) {
    354373            $installed[] = self::$installed;
    355374        }
  • wordpress-beta-tester/trunk/vendor/composer/installed.json

    r3166156 r3261736  
    256256        {
    257257            "name": "squizlabs/php_codesniffer",
    258             "version": "3.10.3",
    259             "version_normalized": "3.10.3.0",
     258            "version": "3.12.0",
     259            "version_normalized": "3.12.0.0",
    260260            "source": {
    261261                "type": "git",
    262262                "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
    263                 "reference": "62d32998e820bddc40f99f8251958aed187a5c9c"
     263                "reference": "2d1b63db139c3c6ea0c927698e5160f8b3b8d630"
    264264            },
    265265            "dist": {
    266266                "type": "zip",
    267                 "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/62d32998e820bddc40f99f8251958aed187a5c9c",
    268                 "reference": "62d32998e820bddc40f99f8251958aed187a5c9c",
     267                "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/2d1b63db139c3c6ea0c927698e5160f8b3b8d630",
     268                "reference": "2d1b63db139c3c6ea0c927698e5160f8b3b8d630",
    269269                "shasum": ""
    270270            },
     
    278278                "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
    279279            },
    280             "time": "2024-09-18T10:38:58+00:00",
     280            "time": "2025-03-18T05:04:51+00:00",
    281281            "bin": [
    282282                "bin/phpcbf",
     
    333333                    "url": "https://opencollective.com/php_codesniffer",
    334334                    "type": "open_collective"
     335                },
     336                {
     337                    "url": "https://thanks.dev/u/gh/phpcsstandards",
     338                    "type": "thanks_dev"
    335339                }
    336340            ],
  • wordpress-beta-tester/trunk/vendor/composer/installed.php

    r3166156 r3261736  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => 'c845c78f2c71f0b51e6423b64ed4e07563f4f3b7',
     6        'reference' => 'f942f73118c58e4794384adfa673ef5d24a6d9a1',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-master',
    1515            'version' => 'dev-master',
    16             'reference' => 'c845c78f2c71f0b51e6423b64ed4e07563f4f3b7',
     16            'reference' => 'f942f73118c58e4794384adfa673ef5d24a6d9a1',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
     
    4848        ),
    4949        'squizlabs/php_codesniffer' => array(
    50             'pretty_version' => '3.10.3',
    51             'version' => '3.10.3.0',
    52             'reference' => '62d32998e820bddc40f99f8251958aed187a5c9c',
     50            'pretty_version' => '3.12.0',
     51            'version' => '3.12.0.0',
     52            'reference' => '2d1b63db139c3c6ea0c927698e5160f8b3b8d630',
    5353            'type' => 'library',
    5454            'install_path' => __DIR__ . '/../squizlabs/php_codesniffer',
  • wordpress-beta-tester/trunk/wp-beta-tester.php

    r3201160 r3261736  
    1414 * Description:       Allows you to easily upgrade to Beta releases.
    1515 * Author:            WordPress Upgrade/Install Team
    16  * Version:           3.6.2
     16 * Version:           3.6.3
    1717 * Network:           true
    1818 * Author URI:        https://make.wordpress.org/core/components/upgrade-install/
Note: See TracChangeset for help on using the changeset viewer.