Plugin Directory

Changeset 3411112


Ignore:
Timestamp:
12/04/2025 03:18:02 PM (10 days ago)
Author:
bjorsch
Message:

Updating trunk to version 15.3.1

Location:
jetpack/trunk
Files:
29 edited

Legend:

Unmodified
Added
Removed
  • jetpack/trunk/CHANGELOG.md

    r3410919 r3411112  
    33### This is a list detailing changes for all Jetpack releases.
    44
     5## 15.3.1 - 2025-12-04
     6- Forms: Use the correct case on cipher names. [#46189]
     7
    58## 15.3 - 2025-12-03
    6 
    79### Enhancements
    810- Forms: Add browser info to the form response email notification. [#45710]
  • jetpack/trunk/composer.json

    r3410076 r3411112  
    3232        "automattic/jetpack-external-connections": "^0.1.7",
    3333        "automattic/jetpack-external-media": "^0.5.14",
    34         "automattic/jetpack-forms": "^6.21.1",
     34        "automattic/jetpack-forms": "^6.21.2",
    3535        "automattic/jetpack-image-cdn": "^0.7.24",
    3636        "automattic/jetpack-import": "^0.9.13",
     
    104104            "ext-intl": "0.0.0"
    105105        },
    106         "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3",
     106        "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1",
    107107        "allow-plugins": {
    108108            "automattic/jetpack-autoloader": true,
  • jetpack/trunk/jetpack.php

    r3410076 r3411112  
    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: 15.3
     7 * Version: 15.3.1
    88 * Author URI: https://jetpack.com
    99 * License: GPL2+
     
    3939if ( ! defined( 'JETPACK__VERSION' ) ) {
    4040    // This breaks the project version checks when a one-liner.
    41     define( 'JETPACK__VERSION', '15.3' );
     41    define( 'JETPACK__VERSION', '15.3.1' );
    4242}
    4343defined( 'JETPACK__MINIMUM_WP_VERSION' ) || define( 'JETPACK__MINIMUM_WP_VERSION', '6.7' );
  • jetpack/trunk/jetpack_vendor/automattic/jetpack-forms/CHANGELOG.md

    r3409621 r3411112  
    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## [6.21.2] - 2025-12-04
     9### Fixed
     10- Forms: Use the correct case on cipher names [#46189]
    711
    812## [6.21.1] - 2025-12-03
     
    19391943- Added a public load_contact_form method for initializing the contact form module. [#28416]
    19401944
     1945[6.21.2]: https://github.com/automattic/jetpack-forms/compare/v6.21.1...v6.21.2
    19411946[6.21.1]: https://github.com/automattic/jetpack-forms/compare/v6.21.0...v6.21.1
    19421947[6.21.0]: https://github.com/automattic/jetpack-forms/compare/v6.20.0...v6.21.0
  • jetpack/trunk/jetpack_vendor/automattic/jetpack-forms/src/class-jetpack-forms.php

    r3409621 r3411112  
    1515class Jetpack_Forms {
    1616
    17     const PACKAGE_VERSION = '6.21.1';
     17    const PACKAGE_VERSION = '6.21.2';
    1818
    1919    /**
  • jetpack/trunk/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form.php

    r3407366 r3411112  
    319319
    320320            // Determine which cipher was used (stored in JWT or default to GCM)
    321             $cipher = isset( $data['cipher'] ) ? $data['cipher'] : 'AES-256-GCM';
     321            $cipher = isset( $data['cipher'] ) ? $data['cipher'] : 'aes-256-gcm';
    322322
    323323            // Check if the cipher is available on this server
     
    328328
    329329            // Determine IV and tag sizes based on cipher
    330             $is_gcm = strpos( $cipher, 'GCM' ) !== false;
     330            $is_gcm = stripos( $cipher, 'gcm' ) !== false;
    331331            if ( $is_gcm ) {
    332332                // GCM: 12-byte IV + 16-byte tag + ciphertext
     
    549549
    550550        // Check cipher availability with fallback support
    551         $cipher                   = 'AES-256-GCM';
    552         $available_cipher_methods = array_map( 'strtolower', openssl_get_cipher_methods() );
     551        $available_cipher_methods = openssl_get_cipher_methods();
     552        $cipher                   = null;
     553        $cipher_fallback          = null;
    553554        $use_encryption           = false;
    554555        $iv_length                = 12; // Default for GCM
    555556
    556         if ( in_array( strtolower( $cipher ), $available_cipher_methods, true ) ) {
    557             $use_encryption = true;
    558             // IV length already set to 12 (NIST recommended for AES-GCM)
    559         } else {
    560             // Try fallback to AES-256-CBC
    561             $cipher = 'AES-256-CBC';
    562             if ( in_array( strtolower( $cipher ), $available_cipher_methods, true ) ) {
     557        // Try to find AES-256-GCM first (case-insensitive search)
     558        foreach ( $available_cipher_methods as $method ) {
     559            if ( strtolower( $method ) === 'aes-256-gcm' ) {
     560                $cipher         = $method; // Use the actual name with original casing
    563561                $use_encryption = true;
    564                 $iv_length      = 16; // 16-byte (128-bit) IV for AES-CBC
    565             }
    566         }
     562                // IV length already set to 12 (NIST recommended for AES-GCM)
     563                break;
     564            }
     565            // If AES-256-GCM not found, try fallback to AES-256-CBC
     566            if ( strtolower( $method ) === 'aes-256-cbc' ) {
     567                $cipher_fallback = $method; // Use the actual name with original casing
     568                $use_encryption  = true;
     569            }
     570        }
     571
     572        // Use the fallback cipher if the primary cipher is not available.
     573        if ( $cipher === null && $cipher_fallback !== null ) {
     574            $cipher    = $cipher_fallback;
     575            $iv_length = 16; // 16-byte (128-bit) IV for AES-CBC
     576        }
     577
     578        // Lazy fallback payload in case encryption fails or is unavailable.
     579        $unencrypted_payload = array(
     580            'attributes' => $attributes,
     581            'content'    => $this->content,
     582            'hash'       => $this->hash,
     583            'source'     => $this->source->serialize(),
     584            // No version field = version 1 (unencrypted)
     585        );
    567586
    568587        if ( $use_encryption ) {
     
    579598
    580599            if ( $encrypted === false ) {
    581                 throw new \Exception( 'Failed to encrypt JWT payload' );
    582             }
    583 
     600                do_action( 'jetpack_forms_log', 'jwt_encryption_failed', openssl_error_string() );
     601                return JWT::encode( $unencrypted_payload, $jwt_signing_key );
     602            }
    584603            // For GCM, include the authentication tag; for CBC, tag will be empty
    585             $encrypted_blob = strpos( $cipher, 'GCM' ) !== false ? $iv . $tag . $encrypted : $iv . $encrypted;
     604            $encrypted_blob = stripos( $cipher, 'GCM' ) !== false ? $iv . $tag . $encrypted : $iv . $encrypted;
    586605
    587606            return JWT::encode(
     
    596615                $jwt_signing_key
    597616            );
    598         } else {
    599             // No encryption available - fall back to version 1 format (unencrypted)
    600             return JWT::encode(
    601                 array(
    602                     'attributes' => $attributes,
    603                     'content'    => $this->content,
    604                     'hash'       => $this->hash,
    605                     'source'     => $this->source->serialize(),
    606                     // No version field = version 1 (unencrypted)
    607                 ),
    608                 $jwt_signing_key
    609             );
    610         }
     617        }
     618
     619        // No encryption available - fall back to version 1 format (unencrypted)
     620        return JWT::encode( $unencrypted_payload, $jwt_signing_key );
    611621    }
    612622
  • jetpack/trunk/jetpack_vendor/i18n-map.php

    r3409621 r3411112  
    6767    'jetpack-forms' => array(
    6868      'path' => 'jetpack_vendor/automattic/jetpack-forms',
    69       'ver' => '6.21.1',
     69      'ver' => '6.21.2',
    7070    ),
    7171    'jetpack-image-cdn' => array(
  • jetpack/trunk/readme.txt

    r3410098 r3411112  
    327327
    328328== Changelog ==
     329### 15.3.1 - 2025-12-04
     330#### Bug fixes
     331- Forms: Use the correct case on cipher names.
     332
    329333### 15.3 - 2025-12-03
    330 
    331 Incorrectly tagged without releasing new versions of Jetpack Forms. 15.3-beta.3 was created immediately to fix the issue.
    332 
    333334#### Enhancements
    334335- Forms: Add browser info to the form response email notification.
  • jetpack/trunk/vendor/autoload.php

    r3410076 r3411112  
    2020require_once __DIR__ . '/composer/autoload_real.php';
    2121
    22 return ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3::getLoader();
     22return ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1::getLoader();
  • jetpack/trunk/vendor/autoload_packages.php

    r3410076 r3411112  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3\al5_0_13;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/composer/autoload_real.php

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

    r3410076 r3411112  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3
     7class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1
    88{
    99    public static $files = array (
     
    516516    {
    517517        return \Closure::bind(function () use ($loader) {
    518             $loader->prefixLengthsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3::$prefixLengthsPsr4;
    519             $loader->prefixDirsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3::$prefixDirsPsr4;
    520             $loader->classMap = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3::$classMap;
     518            $loader->prefixLengthsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1::$prefixLengthsPsr4;
     519            $loader->prefixDirsPsr4 = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1::$prefixDirsPsr4;
     520            $loader->classMap = ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1::$classMap;
    521521
    522522        }, null, ClassLoader::class);
  • jetpack/trunk/vendor/composer/installed.json

    r3409621 r3411112  
    14081408        {
    14091409            "name": "automattic/jetpack-forms",
    1410             "version": "v6.21.1",
    1411             "version_normalized": "6.21.1.0",
     1410            "version": "v6.21.2",
     1411            "version_normalized": "6.21.2.0",
    14121412            "source": {
    14131413                "type": "git",
    14141414                "url": "https://github.com/Automattic/jetpack-forms.git",
    1415                 "reference": "2728bf6dd1eed46078970260db5f06897e3bb24c"
    1416             },
    1417             "dist": {
    1418                 "type": "zip",
    1419                 "url": "https://api.github.com/repos/Automattic/jetpack-forms/zipball/2728bf6dd1eed46078970260db5f06897e3bb24c",
    1420                 "reference": "2728bf6dd1eed46078970260db5f06897e3bb24c",
     1415                "reference": "e7f111de622ff025b9896437472352f122bf7cec"
     1416            },
     1417            "dist": {
     1418                "type": "zip",
     1419                "url": "https://api.github.com/repos/Automattic/jetpack-forms/zipball/e7f111de622ff025b9896437472352f122bf7cec",
     1420                "reference": "e7f111de622ff025b9896437472352f122bf7cec",
    14211421                "shasum": ""
    14221422            },
     
    14461446                "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package."
    14471447            },
    1448             "time": "2025-12-03T01:40:10+00:00",
     1448            "time": "2025-12-04T14:39:51+00:00",
    14491449            "type": "jetpack-library",
    14501450            "extra": {
     
    14741474            "description": "Jetpack Forms",
    14751475            "support": {
    1476                 "source": "https://github.com/Automattic/jetpack-forms/tree/v6.21.1"
     1476                "source": "https://github.com/Automattic/jetpack-forms/tree/v6.21.2"
    14771477            },
    14781478            "install-path": "../../jetpack_vendor/automattic/jetpack-forms"
  • jetpack/trunk/vendor/composer/installed.php

    r3409621 r3411112  
    228228        ),
    229229        'automattic/jetpack-forms' => array(
    230             'pretty_version' => 'v6.21.1',
    231             'version' => '6.21.1.0',
    232             'reference' => '2728bf6dd1eed46078970260db5f06897e3bb24c',
     230            'pretty_version' => 'v6.21.2',
     231            'version' => '6.21.2.0',
     232            'reference' => 'e7f111de622ff025b9896437472352f122bf7cec',
    233233            'type' => 'jetpack-library',
    234234            'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-forms',
  • jetpack/trunk/vendor/composer/jetpack_autoload_classmap.php

    r3409621 r3411112  
    452452    ),
    453453    'Automattic\\Jetpack\\Extensions\\Contact_Form\\Contact_Form_Block' => array(
    454         'version' => '6.21.1.0',
     454        'version' => '6.21.2.0',
    455455        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/blocks/contact-form/class-contact-form-block.php'
    456456    ),
     
    468468    ),
    469469    'Automattic\\Jetpack\\Forms\\Abilities\\Forms_Abilities' => array(
    470         'version' => '6.21.1.0',
     470        'version' => '6.21.2.0',
    471471        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/abilities/class-forms-abilities.php'
    472472    ),
    473473    'Automattic\\Jetpack\\Forms\\ContactForm\\Admin' => array(
    474         'version' => '6.21.1.0',
     474        'version' => '6.21.2.0',
    475475        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-admin.php'
    476476    ),
    477477    'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form' => array(
    478         'version' => '6.21.1.0',
     478        'version' => '6.21.2.0',
    479479        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form.php'
    480480    ),
    481481    'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Endpoint' => array(
    482         'version' => '6.21.1.0',
     482        'version' => '6.21.2.0',
    483483        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-endpoint.php'
    484484    ),
    485485    'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Field' => array(
    486         'version' => '6.21.1.0',
     486        'version' => '6.21.2.0',
    487487        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-field.php'
    488488    ),
    489489    'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Plugin' => array(
    490         'version' => '6.21.1.0',
     490        'version' => '6.21.2.0',
    491491        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-plugin.php'
    492492    ),
    493493    'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Shortcode' => array(
    494         'version' => '6.21.1.0',
     494        'version' => '6.21.2.0',
    495495        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-shortcode.php'
    496496    ),
    497497    'Automattic\\Jetpack\\Forms\\ContactForm\\Editor_View' => array(
    498         'version' => '6.21.1.0',
     498        'version' => '6.21.2.0',
    499499        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-editor-view.php'
    500500    ),
    501501    'Automattic\\Jetpack\\Forms\\ContactForm\\Feedback' => array(
    502         'version' => '6.21.1.0',
     502        'version' => '6.21.2.0',
    503503        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-feedback.php'
    504504    ),
    505505    'Automattic\\Jetpack\\Forms\\ContactForm\\Feedback_Author' => array(
    506         'version' => '6.21.1.0',
     506        'version' => '6.21.2.0',
    507507        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-feedback-author.php'
    508508    ),
    509509    'Automattic\\Jetpack\\Forms\\ContactForm\\Feedback_Field' => array(
    510         'version' => '6.21.1.0',
     510        'version' => '6.21.2.0',
    511511        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-feedback-field.php'
    512512    ),
    513513    'Automattic\\Jetpack\\Forms\\ContactForm\\Feedback_Source' => array(
    514         'version' => '6.21.1.0',
     514        'version' => '6.21.2.0',
    515515        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-feedback-source.php'
    516516    ),
    517517    'Automattic\\Jetpack\\Forms\\ContactForm\\Form_Submission_Error' => array(
    518         'version' => '6.21.1.0',
     518        'version' => '6.21.2.0',
    519519        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-form-submission-error.php'
    520520    ),
    521521    'Automattic\\Jetpack\\Forms\\ContactForm\\Form_View' => array(
    522         'version' => '6.21.1.0',
     522        'version' => '6.21.2.0',
    523523        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-form-view.php'
    524524    ),
    525525    'Automattic\\Jetpack\\Forms\\ContactForm\\Util' => array(
    526         'version' => '6.21.1.0',
     526        'version' => '6.21.2.0',
    527527        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-util.php'
    528528    ),
    529529    'Automattic\\Jetpack\\Forms\\Dashboard\\Dashboard' => array(
    530         'version' => '6.21.1.0',
     530        'version' => '6.21.2.0',
    531531        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/dashboard/class-dashboard.php'
    532532    ),
    533533    'Automattic\\Jetpack\\Forms\\Dashboard\\Dashboard_View_Switch' => array(
    534         'version' => '6.21.1.0',
     534        'version' => '6.21.2.0',
    535535        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/dashboard/class-dashboard-view-switch.php'
    536536    ),
    537537    'Automattic\\Jetpack\\Forms\\Jetpack_Forms' => array(
    538         'version' => '6.21.1.0',
     538        'version' => '6.21.2.0',
    539539        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/class-jetpack-forms.php'
    540540    ),
    541541    'Automattic\\Jetpack\\Forms\\Service\\Form_Webhooks' => array(
    542         'version' => '6.21.1.0',
     542        'version' => '6.21.2.0',
    543543        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/service/class-form-webhooks.php'
    544544    ),
    545545    'Automattic\\Jetpack\\Forms\\Service\\Google_Drive' => array(
    546         'version' => '6.21.1.0',
     546        'version' => '6.21.2.0',
    547547        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/service/class-google-drive.php'
    548548    ),
    549549    'Automattic\\Jetpack\\Forms\\Service\\Hostinger_Reach_Integration' => array(
    550         'version' => '6.21.1.0',
     550        'version' => '6.21.2.0',
    551551        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/service/class-hostinger-reach-integration.php'
    552552    ),
    553553    'Automattic\\Jetpack\\Forms\\Service\\MailPoet_Integration' => array(
    554         'version' => '6.21.1.0',
     554        'version' => '6.21.2.0',
    555555        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/service/class-mailpoet-integration.php'
    556556    ),
    557557    'Automattic\\Jetpack\\Forms\\Service\\Post_To_Url' => array(
    558         'version' => '6.21.1.0',
     558        'version' => '6.21.2.0',
    559559        'path'    => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/service/class-post-to-url.php'
    560560    ),
  • jetpack/trunk/vendor/jetpack-autoloader/class-autoloader-handler.php

    r3410076 r3411112  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3\al5_0_13;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-autoloader-locator.php

    r3410076 r3411112  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3\al5_0_13;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-autoloader.php

    r3410076 r3411112  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3\al5_0_13;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-container.php

    r3410076 r3411112  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3\al5_0_13;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-hook-manager.php

    r3410076 r3411112  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3\al5_0_13;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-latest-autoloader-guard.php

    r3410076 r3411112  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3\al5_0_13;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-manifest-reader.php

    r3410076 r3411112  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3\al5_0_13;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-path-processor.php

    r3410076 r3411112  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3\al5_0_13;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-php-autoloader.php

    r3410076 r3411112  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3\al5_0_13;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-plugin-locator.php

    r3410076 r3411112  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3\al5_0_13;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-plugins-handler.php

    r3410076 r3411112  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3\al5_0_13;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-shutdown-handler.php

    r3410076 r3411112  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3\al5_0_13;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-version-loader.php

    r3410076 r3411112  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3\al5_0_13;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13;
    99
    1010 // phpcs:ignore
  • jetpack/trunk/vendor/jetpack-autoloader/class-version-selector.php

    r3410076 r3411112  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3\al5_0_13;
     8namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13;
    99
    1010 // phpcs:ignore
Note: See TracChangeset for help on using the changeset viewer.