Plugin Directory

Changeset 3049911

Timestamp:
03/12/2024 04:50:52 PM (5 months ago)
Author:
samiff
Message:

Updating trunk to version 13.2.1

Location:
jetpack/trunk
Files:
32 edited

Legend:

Unmodified
Added
Removed
  • jetpack/trunk/CHANGELOG.md

    r3045490 r3049911  
    33### This is a list detailing changes for all Jetpack releases.
    44
    5 ## 13.3-a.0 - unreleased
    6 
    7 This is an alpha version! The changes listed here are not final.
     5## 13.2.1 - 2024-03-12
     6### Other changes <!-- Non-user-facing changes go here. This section will not be copied to readme.txt. -->
     7- Subscriptions: improve security by better checks when displaying a Subscription form via a shortcode. [#36347]
     8- This fixes a minor bug in a recently shipped feature that makes it work more like expected [#36262]
    89
    910## 13.2 - 2024-03-05
  • jetpack/trunk/composer.json

    r3045490 r3049911  
    2828        "automattic/jetpack-device-detection": "^2.1.0",
    2929        "automattic/jetpack-error": "^2.0.0",
    30         "automattic/jetpack-forms": "^0.30.8",
     30        "automattic/jetpack-forms": "^0.30.",
    3131        "automattic/jetpack-google-fonts-provider": "^0.7.1",
    3232        "automattic/jetpack-identity-crisis": "^0.17.1",
     
    9494            "ext-intl": "0.0.0"
    9595        },
    96         "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2",
     96        "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2",
    9797        "allow-plugins": {
    9898            "automattic/jetpack-autoloader": true,
  • jetpack/trunk/jetpack.php

    r3045490 r3049911  
    55 * Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things.
    66 * Author: Automattic
    7  * Version: 13.2
     7 * Version: 13.2
    88 * Author URI: https://jetpack.com
    99 * License: GPL2+
     
    3535define( 'JETPACK__MINIMUM_WP_VERSION', '6.3' );
    3636define( 'JETPACK__MINIMUM_PHP_VERSION', '7.0' );
    37 define( 'JETPACK__VERSION', '13.2' );
     37define( 'JETPACK__VERSION', '13.2' );
    3838
    3939/**
  • jetpack/trunk/jetpack_vendor/automattic/jetpack-forms/CHANGELOG.md

    r3045140 r3049911  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
    66and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
     7
     8
     9
     10
    711
    812## [0.30.8] - 2024-03-04
     
    506510- Added a public load_contact_form method for initializing the contact form module. [#28416]
    507511
     512
    508513[0.30.8]: https://github.com/automattic/jetpack-forms/compare/v0.30.7...v0.30.8
    509514[0.30.7]: https://github.com/automattic/jetpack-forms/compare/v0.30.6...v0.30.7
  • jetpack/trunk/jetpack_vendor/automattic/jetpack-forms/src/class-jetpack-forms.php

    r3045140 r3049911  
    1616class Jetpack_Forms {
    1717
    18     const PACKAGE_VERSION = '0.30.8';
     18    const PACKAGE_VERSION = '0.30.';
    1919
    2020    /**
  • jetpack/trunk/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-admin.php

    r3014336 r3049911  
    110110        }
    111111
     112
     113
     114
     115
     116
    112117        // if there aren't any feedbacks, bail out
    113118        if ( ! (int) wp_count_posts( 'feedback' )->publish ) {
    114             return;
    115         }
    116 
    117         $current_screen = get_current_screen();
    118         if ( ! in_array( $current_screen->id, array( 'edit-feedback', 'feedback_page_feedback-export' ), true ) ) {
    119119            return;
    120120        }
  • jetpack/trunk/jetpack_vendor/i18n-map.php

    r3045140 r3049911  
    4343    'jetpack-forms' => array(
    4444      'path' => 'jetpack_vendor/automattic/jetpack-forms',
    45       'ver' => '0.30.8',
     45      'ver' => '0.30.',
    4646    ),
    4747    'jetpack-google-fonts-provider' => array(
  • jetpack/trunk/json-endpoints/class.wpcom-json-api-update-post-v1-2-endpoint.php

    r3042017 r3049911  
    279279                return new WP_Error( 'unauthorized', 'User cannot edit post', 403 );
    280280            }
    281 
    282             if ( ! empty( $input['if_not_modified_since'] ) ) {
    283                 if ( mysql2date( 'U', $post->post_modified_gmt ) > mysql2date( 'U', $input['if_not_modified_since'] ) ) {
     281            // The input `if_not_modified_since` input is the format ISO 8601 datetime and get converted to `if_not_modified_since_gmt` and `if_not_modified_since`
     282            if ( ! empty( $input['if_not_modified_since'] ) ) {
     283                if ( mysql2date( 'U', $post->post_modified_gmt ) > mysql2date( 'U', $input['if_not_modified_since'] ) ) {
    284284                    return new WP_Error( 'old-revision', 'There is a revision of this post that is more recent.', 409 );
    285285                }
  • jetpack/trunk/modules/sso/class.jetpack-sso-user-admin.php

    r3045140 r3049911  
    844844
    845845                    if ( 200 === wp_remote_retrieve_response_code( $response ) ) {
    846                         $body                 = json_decode( $response['body'], true );
     846                        $body = json_decode( $response['body'], true );
     847
     848                        // ensure array_merge happens with the right parameters
     849                        if ( empty( $body ) ) {
     850                            $body = array();
     851                        }
     852
    847853                        self::$cached_invites = array_merge( self::$cached_invites, $body );
    848854                    }
  • jetpack/trunk/modules/subscriptions/views.php

    r3004946 r3049911  
    163163            if ( self::is_current_user_subscribed() ) {
    164164                if ( ! empty( $instance['title_following'] ) ) {
    165                     echo $before_title . '<label for="subscribe-field' . ( self::$instance_count > 1 ? '-' . self::$instance_count : '' ) . '">' . esc_attr( $instance['title_following'] ) . '</label>' . $after_title . "\n"; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     165                    printf(
     166                        '%1$s<label for="subscribe-field%2$s">%3$s</label>%4$s%5$s',
     167                        $before_title, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     168                        ( self::$instance_count > 1 ? '-' . (int) self::$instance_count : '' ),
     169                        esc_html( $instance['title_following'] ),
     170                        $after_title, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     171                        "\n"
     172                    );
    166173                }
    167174            } elseif ( ! empty( $instance['title'] ) ) {
    168                 echo $before_title . '<label for="subscribe-field' . ( self::$instance_count > 1 ? '-' . self::$instance_count : '' ) . '">' . $instance['title'] . '</label>' . $after_title . "\n"; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     175                printf(
     176                    '%1$s<label for="subscribe-field%2$s">%3$s</label>%4$s%5$s',
     177                    $before_title, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     178                    ( self::$instance_count > 1 ? '-' . (int) self::$instance_count : '' ),
     179                    esc_html( $instance['title'] ),
     180                    $after_title, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     181                    "\n"
     182                );
    169183            }
    170184        }
    171185
    172186        if ( self::is_jetpack() && empty( $instance['show_only_email_and_button'] ) ) {
    173             echo $args['before_title'] . $instance['title'] . $args['after_title'] . "\n"; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     187            printf(
     188                '%1$s%2$s%3$s%4$s',
     189                $before_title, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     190                esc_html( $instance['title'] ),
     191                $after_title, // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
     192                "\n"
     193            );
    174194        }
    175195    }
     
    339359        $subscribers_total            = self::fetch_subscriber_count();
    340360        $subscribe_text               = empty( $instance['show_only_email_and_button'] ) ?
    341             stripslashes( $instance['subscribe_text'] ) :
     361            ( $instance['subscribe_text'] ) :
    342362            false;
    343363        $referer                      = esc_url_raw( ( is_ssl() ? 'https' : 'http' ) . '://' . ( isset( $_SERVER['HTTP_HOST'] ) ? wp_unslash( $_SERVER['HTTP_HOST'] ) : '' ) . ( isset( $_SERVER['REQUEST_URI'] ) ? wp_unslash( $_SERVER['REQUEST_URI'] ) : '' ) );
     
    915935        $style = 'padding: ' .
    916936            $instance['custom_padding'] . 'px ' .
    917             round( $instance['custom_padding'] * 1.5 ) . 'px ' .
     937            round( * 1.5 ) . 'px ' .
    918938            $instance['custom_padding'] . 'px ' .
    919             round( $instance['custom_padding'] * 1.5 ) . 'px; ';
     939            round( * 1.5 ) . 'px; ';
    920940
    921941        $submit_button_styles .= $style;
  • jetpack/trunk/readme.txt

    r3045496 r3049911  
    327327
    328328== Changelog ==
    329 ### 13.2 - 2024-03-05
    330 ### Enhancements
    331 - Three legacy Jetpack widgets are now available as new blocks:
    332     - Blog Stats block: easily display visitor stats data on a global or per post basis.
    333     - Top Posts and Pages block: provides a quick way to display the most popular content on your site.
    334     - Goodreads block: showcase books from the shelves of a Goodreads profile.
    335 - Jetpack mobile app: now provides a seamless way to upload images from your mobile device while publishing on the web. [#35583]
    336 - Jetpack SSO: various improvements made to enhance inviting and managing users. [#35277]
    337 
    338 ### Improved compatibility
    339 - Blaze: remove "Promote with Blaze" links appearing in the Posts list when the Blaze feature is enabled. You can still go to Tools > Advertising to create and manage Blaze campaigns on your site. [#35586]
    340 - General: the plugin is now compatible with the upcoming WordPress release, version 6.5. [#35820]
    341 - Subscriptions block: add support for WP Super Cache and Boost Cache. [#35598]
    342 - WordAds: add additional states to US Privacy law opt-out. [#35765]
    343 - WordAds: include option to toggle GDPR Consent Banner. [#35205]
    344 - WPcom API: add 'if_not_modified_since' to the update post endpoint which will help clients determine if the post has been updated since last retrieved. [#35526]
    345 
    346 ### Bug fixes
    347 - Carousel: don't open carousel if no images are found in the gallery. [#35788]
    348 - Jetpack Google Fonts: fix bug where some Google fonts aren't displayed correctly on front end. [#35706]
    349 - Memberships: disable scroll to top when memberships subscribe popup is opened. [#35553]
    350 - Sharing block: only enqueue extra JavaScript when a Sharing Block is inserted on the page. [#35955]
    351 - Sharing buttons: small adjustments to default button styles. [#35521]
    352 - Subscribe block: improve disabled placeholder state theme colour compatibility. [#35813]
    353 - WooCommerce Analytics: avoid error when trying to pay for a deleted product. [#35566]
    354 - WPcom i18n: fix mixed translations after WordPress.com user locale switch. [#35750]
    355 
     329### 13.2.1 - 2024-03-12
     330### Security
     331- Subscriptions: improve security checks when displaying a Subscription form via a shortcode.
    356332--------
    357333
  • jetpack/trunk/vendor/autoload.php

    r3045490 r3049911  
    2323require_once __DIR__ . '/composer/autoload_real.php';
    2424
    25 return ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2::getLoader();
     25return ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2::getLoader();
  • jetpack/trunk/vendor/autoload_packages.php

    r3045490 r3049911  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/composer/autoload_real.php

    r3045490 r3049911  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2
     5class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2::getInitializer($loader));
    3333
    3434        $loader->setClassMapAuthoritative(true);
    3535        $loader->register(true);
    3636
    37         $filesToLoad = \Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2::$files;
     37        $filesToLoad = \Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2::$files;
    3838        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
    3939            if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • jetpack/trunk/vendor/composer/autoload_static.php

    r3045490 r3049911  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2
     7class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2
    88{
    99    public static $files = array (
     
    462462    {
    463463        return \Closure::bind(function () use ($loader) {
    464             $loader->prefixLengthsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2::$prefixLengthsPsr4;
    465             $loader->prefixDirsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2::$prefixDirsPsr4;
    466             $loader->classMap = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2::$classMap;
     464            $loader->prefixLengthsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2::$prefixLengthsPsr4;
     465            $loader->prefixDirsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2::$prefixDirsPsr4;
     466            $loader->classMap = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2::$classMap;
    467467
    468468        }, null, ClassLoader::class);
  • jetpack/trunk/vendor/composer/installed.json

    r3045140 r3049911  
    10531053        {
    10541054            "name": "automattic/jetpack-forms",
    1055             "version": "v0.30.8",
    1056             "version_normalized": "0.30.8.0",
     1055            "version": "v0.30.",
     1056            "version_normalized": "0.30..0",
    10571057            "source": {
    10581058                "type": "git",
    10591059                "url": "https://github.com/Automattic/jetpack-forms.git",
    1060                 "reference": "394ad7eb54414d07d916aaafb11d5243119b4594"
    1061             },
    1062             "dist": {
    1063                 "type": "zip",
    1064                 "url": "https://api.github.com/repos/Automattic/jetpack-forms/zipball/394ad7eb54414d07d916aaafb11d5243119b4594",
    1065                 "reference": "394ad7eb54414d07d916aaafb11d5243119b4594",
     1060                "reference": ""
     1061            },
     1062            "dist": {
     1063                "type": "zip",
     1064                "url": "https://api.github.com/repos/Automattic/jetpack-forms/zipball/",
     1065                "reference": "",
    10661066                "shasum": ""
    10671067            },
     
    10821082                "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
    10831083            },
    1084             "time": "2024-03-04T15:36:43+00:00",
     1084            "time": "2024-03-+00:00",
    10851085            "type": "jetpack-library",
    10861086            "extra": {
     
    11101110            "description": "Jetpack Forms",
    11111111            "support": {
    1112                 "source": "https://github.com/Automattic/jetpack-forms/tree/v0.30.8"
     1112                "source": "https://github.com/Automattic/jetpack-forms/tree/v0.30."
    11131113            },
    11141114            "install-path": "../../jetpack_vendor/automattic/jetpack-forms"
  • jetpack/trunk/vendor/composer/installed.php

    r3045140 r3049911  
    183183        ),
    184184        'automattic/jetpack-forms' => array(
    185             'pretty_version' => 'v0.30.8',
    186             'version' => '0.30.8.0',
    187             'reference' => '394ad7eb54414d07d916aaafb11d5243119b4594',
     185            'pretty_version' => 'v0.30.',
     186            'version' => '0.30..0',
     187            'reference' => '',
    188188            'type' => 'jetpack-library',
    189189            'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-forms',
  • jetpack/trunk/vendor/composer/jetpack_autoload_classmap.php

    r3045140 r3049911  
    316316    ),
    317317    'Automattic\\Jetpack\\Extensions\\Contact_Form\\Contact_Form_Block' => array(
    318         'version' => '0.30.8.0',
     318        'version' => '0.30..0',
    319319        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/blocks/contact-form/class-contact-form-block.php'
    320320    ),
     
    340340    ),
    341341    'Automattic\\Jetpack\\Forms\\ContactForm\\Admin' => array(
    342         'version' => '0.30.8.0',
     342        'version' => '0.30..0',
    343343        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-admin.php'
    344344    ),
    345345    'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form' => array(
    346         'version' => '0.30.8.0',
     346        'version' => '0.30..0',
    347347        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form.php'
    348348    ),
    349349    'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Endpoint' => array(
    350         'version' => '0.30.8.0',
     350        'version' => '0.30..0',
    351351        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-endpoint.php'
    352352    ),
    353353    'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Field' => array(
    354         'version' => '0.30.8.0',
     354        'version' => '0.30..0',
    355355        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-field.php'
    356356    ),
    357357    'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Plugin' => array(
    358         'version' => '0.30.8.0',
     358        'version' => '0.30..0',
    359359        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-plugin.php'
    360360    ),
    361361    'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Shortcode' => array(
    362         'version' => '0.30.8.0',
     362        'version' => '0.30..0',
    363363        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-shortcode.php'
    364364    ),
    365365    'Automattic\\Jetpack\\Forms\\ContactForm\\Editor_View' => array(
    366         'version' => '0.30.8.0',
     366        'version' => '0.30..0',
    367367        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-editor-view.php'
    368368    ),
    369369    'Automattic\\Jetpack\\Forms\\ContactForm\\Form_View' => array(
    370         'version' => '0.30.8.0',
     370        'version' => '0.30..0',
    371371        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-form-view.php'
    372372    ),
    373373    'Automattic\\Jetpack\\Forms\\ContactForm\\Util' => array(
    374         'version' => '0.30.8.0',
     374        'version' => '0.30..0',
    375375        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-util.php'
    376376    ),
    377377    'Automattic\\Jetpack\\Forms\\Dashboard\\Dashboard' => array(
    378         'version' => '0.30.8.0',
     378        'version' => '0.30..0',
    379379        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/dashboard/class-dashboard.php'
    380380    ),
    381381    'Automattic\\Jetpack\\Forms\\Dashboard\\Dashboard_View_Switch' => array(
    382         'version' => '0.30.8.0',
     382        'version' => '0.30..0',
    383383        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/dashboard/class-dashboard-view-switch.php'
    384384    ),
    385385    'Automattic\\Jetpack\\Forms\\Jetpack_Forms' => array(
    386         'version' => '0.30.8.0',
     386        'version' => '0.30..0',
    387387        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/class-jetpack-forms.php'
    388388    ),
    389389    'Automattic\\Jetpack\\Forms\\Service\\Google_Drive' => array(
    390         'version' => '0.30.8.0',
     390        'version' => '0.30..0',
    391391        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/service/class-google-drive.php'
    392392    ),
    393393    'Automattic\\Jetpack\\Forms\\Service\\Post_To_Url' => array(
    394         'version' => '0.30.8.0',
     394        'version' => '0.30..0',
    395395        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/service/class-post-to-url.php'
    396396    ),
    397397    'Automattic\\Jetpack\\Forms\\WPCOM_REST_API_V2_Endpoint_Forms' => array(
    398         'version' => '0.30.8.0',
     398        'version' => '0.30..0',
    399399        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/class-wpcom-rest-api-v2-endpoint-forms.php'
    400400    ),
  • jetpack/trunk/vendor/jetpack-autoloader/class-autoloader-handler.php

    r3045490 r3049911  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-autoloader-locator.php

    r3045490 r3049911  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-autoloader.php

    r3045490 r3049911  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-container.php

    r3045490 r3049911  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-hook-manager.php

    r3045490 r3049911  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-latest-autoloader-guard.php

    r3045490 r3049911  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-manifest-reader.php

    r3045490 r3049911  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-path-processor.php

    r3045490 r3049911  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-php-autoloader.php

    r3045490 r3049911  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-plugin-locator.php

    r3045490 r3049911  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-plugins-handler.php

    r3045490 r3049911  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-shutdown-handler.php

    r3045490 r3049911  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-version-loader.php

    r3045490 r3049911  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-version-selector.php

    r3045490 r3049911  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ13_2\al3_0_2;
    99
    1010 // phpcs:ignore
Note: See TracChangeset for help on using the changeset viewer.