Changeset 3411112
- Timestamp:
- 12/04/2025 03:18:02 PM (10 days ago)
- Location:
- jetpack/trunk
- Files:
-
- 29 edited
-
CHANGELOG.md (modified) (1 diff)
-
composer.json (modified) (2 diffs)
-
jetpack.php (modified) (2 diffs)
-
jetpack_vendor/automattic/jetpack-forms/CHANGELOG.md (modified) (2 diffs)
-
jetpack_vendor/automattic/jetpack-forms/src/class-jetpack-forms.php (modified) (1 diff)
-
jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form.php (modified) (5 diffs)
-
jetpack_vendor/i18n-map.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
vendor/autoload.php (modified) (1 diff)
-
vendor/autoload_packages.php (modified) (1 diff)
-
vendor/composer/autoload_real.php (modified) (2 diffs)
-
vendor/composer/autoload_static.php (modified) (2 diffs)
-
vendor/composer/installed.json (modified) (3 diffs)
-
vendor/composer/installed.php (modified) (1 diff)
-
vendor/composer/jetpack_autoload_classmap.php (modified) (2 diffs)
-
vendor/jetpack-autoloader/class-autoloader-handler.php (modified) (1 diff)
-
vendor/jetpack-autoloader/class-autoloader-locator.php (modified) (1 diff)
-
vendor/jetpack-autoloader/class-autoloader.php (modified) (1 diff)
-
vendor/jetpack-autoloader/class-container.php (modified) (1 diff)
-
vendor/jetpack-autoloader/class-hook-manager.php (modified) (1 diff)
-
vendor/jetpack-autoloader/class-latest-autoloader-guard.php (modified) (1 diff)
-
vendor/jetpack-autoloader/class-manifest-reader.php (modified) (1 diff)
-
vendor/jetpack-autoloader/class-path-processor.php (modified) (1 diff)
-
vendor/jetpack-autoloader/class-php-autoloader.php (modified) (1 diff)
-
vendor/jetpack-autoloader/class-plugin-locator.php (modified) (1 diff)
-
vendor/jetpack-autoloader/class-plugins-handler.php (modified) (1 diff)
-
vendor/jetpack-autoloader/class-shutdown-handler.php (modified) (1 diff)
-
vendor/jetpack-autoloader/class-version-loader.php (modified) (1 diff)
-
vendor/jetpack-autoloader/class-version-selector.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jetpack/trunk/CHANGELOG.md
r3410919 r3411112 3 3 ### This is a list detailing changes for all Jetpack releases. 4 4 5 ## 15.3.1 - 2025-12-04 6 - Forms: Use the correct case on cipher names. [#46189] 7 5 8 ## 15.3 - 2025-12-03 6 7 9 ### Enhancements 8 10 - Forms: Add browser info to the form response email notification. [#45710] -
jetpack/trunk/composer.json
r3410076 r3411112 32 32 "automattic/jetpack-external-connections": "^0.1.7", 33 33 "automattic/jetpack-external-media": "^0.5.14", 34 "automattic/jetpack-forms": "^6.21. 1",34 "automattic/jetpack-forms": "^6.21.2", 35 35 "automattic/jetpack-image-cdn": "^0.7.24", 36 36 "automattic/jetpack-import": "^0.9.13", … … 104 104 "ext-intl": "0.0.0" 105 105 }, 106 "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 ",106 "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1", 107 107 "allow-plugins": { 108 108 "automattic/jetpack-autoloader": true, -
jetpack/trunk/jetpack.php
r3410076 r3411112 5 5 * Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things. 6 6 * Author: Automattic 7 * Version: 15.3 7 * Version: 15.3.1 8 8 * Author URI: https://jetpack.com 9 9 * License: GPL2+ … … 39 39 if ( ! defined( 'JETPACK__VERSION' ) ) { 40 40 // This breaks the project version checks when a one-liner. 41 define( 'JETPACK__VERSION', '15.3 ' );41 define( 'JETPACK__VERSION', '15.3.1' ); 42 42 } 43 43 defined( 'JETPACK__MINIMUM_WP_VERSION' ) || define( 'JETPACK__MINIMUM_WP_VERSION', '6.7' ); -
jetpack/trunk/jetpack_vendor/automattic/jetpack-forms/CHANGELOG.md
r3409621 r3411112 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) 6 6 and 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] 7 11 8 12 ## [6.21.1] - 2025-12-03 … … 1939 1943 - Added a public load_contact_form method for initializing the contact form module. [#28416] 1940 1944 1945 [6.21.2]: https://github.com/automattic/jetpack-forms/compare/v6.21.1...v6.21.2 1941 1946 [6.21.1]: https://github.com/automattic/jetpack-forms/compare/v6.21.0...v6.21.1 1942 1947 [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 15 15 class Jetpack_Forms { 16 16 17 const PACKAGE_VERSION = '6.21. 1';17 const PACKAGE_VERSION = '6.21.2'; 18 18 19 19 /** -
jetpack/trunk/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form.php
r3407366 r3411112 319 319 320 320 // 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'; 322 322 323 323 // Check if the cipher is available on this server … … 328 328 329 329 // Determine IV and tag sizes based on cipher 330 $is_gcm = str pos( $cipher, 'GCM' ) !== false;330 $is_gcm = stripos( $cipher, 'gcm' ) !== false; 331 331 if ( $is_gcm ) { 332 332 // GCM: 12-byte IV + 16-byte tag + ciphertext … … 549 549 550 550 // 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; 553 554 $use_encryption = false; 554 555 $iv_length = 12; // Default for GCM 555 556 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 563 561 $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 ); 567 586 568 587 if ( $use_encryption ) { … … 579 598 580 599 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 } 584 603 // For GCM, include the authentication tag; for CBC, tag will be empty 585 $encrypted_blob = str pos( $cipher, 'GCM' ) !== false ? $iv . $tag . $encrypted : $iv . $encrypted;604 $encrypted_blob = stripos( $cipher, 'GCM' ) !== false ? $iv . $tag . $encrypted : $iv . $encrypted; 586 605 587 606 return JWT::encode( … … 596 615 $jwt_signing_key 597 616 ); 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 ); 611 621 } 612 622 -
jetpack/trunk/jetpack_vendor/i18n-map.php
r3409621 r3411112 67 67 'jetpack-forms' => array( 68 68 'path' => 'jetpack_vendor/automattic/jetpack-forms', 69 'ver' => '6.21. 1',69 'ver' => '6.21.2', 70 70 ), 71 71 'jetpack-image-cdn' => array( -
jetpack/trunk/readme.txt
r3410098 r3411112 327 327 328 328 == Changelog == 329 ### 15.3.1 - 2025-12-04 330 #### Bug fixes 331 - Forms: Use the correct case on cipher names. 332 329 333 ### 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 333 334 #### Enhancements 334 335 - Forms: Add browser info to the form response email notification. -
jetpack/trunk/vendor/autoload.php
r3410076 r3411112 20 20 require_once __DIR__ . '/composer/autoload_real.php'; 21 21 22 return ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 ::getLoader();22 return ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1::getLoader(); -
jetpack/trunk/vendor/autoload_packages.php
r3410076 r3411112 6 6 */ 7 7 8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 \al5_0_13;8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13; 9 9 10 10 // phpcs:ignore -
jetpack/trunk/vendor/composer/autoload_real.php
r3410076 r3411112 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 5 class ComposerAutoloaderInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 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); 28 28 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')); 30 30 31 31 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)); 33 33 34 34 $loader->setClassMapAuthoritative(true); 35 35 $loader->register(true); 36 36 37 $filesToLoad = \Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 ::$files;37 $filesToLoad = \Composer\Autoload\ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1::$files; 38 38 $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { 39 39 if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { -
jetpack/trunk/vendor/composer/autoload_static.php
r3410076 r3411112 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 7 class ComposerStaticInitf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1 8 8 { 9 9 public static $files = array ( … … 516 516 { 517 517 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; 521 521 522 522 }, null, ClassLoader::class); -
jetpack/trunk/vendor/composer/installed.json
r3409621 r3411112 1408 1408 { 1409 1409 "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", 1412 1412 "source": { 1413 1413 "type": "git", 1414 1414 "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", 1421 1421 "shasum": "" 1422 1422 }, … … 1446 1446 "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." 1447 1447 }, 1448 "time": "2025-12-0 3T01:40:10+00:00",1448 "time": "2025-12-04T14:39:51+00:00", 1449 1449 "type": "jetpack-library", 1450 1450 "extra": { … … 1474 1474 "description": "Jetpack Forms", 1475 1475 "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" 1477 1477 }, 1478 1478 "install-path": "../../jetpack_vendor/automattic/jetpack-forms" -
jetpack/trunk/vendor/composer/installed.php
r3409621 r3411112 228 228 ), 229 229 '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', 233 233 'type' => 'jetpack-library', 234 234 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-forms', -
jetpack/trunk/vendor/composer/jetpack_autoload_classmap.php
r3409621 r3411112 452 452 ), 453 453 'Automattic\\Jetpack\\Extensions\\Contact_Form\\Contact_Form_Block' => array( 454 'version' => '6.21. 1.0',454 'version' => '6.21.2.0', 455 455 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/blocks/contact-form/class-contact-form-block.php' 456 456 ), … … 468 468 ), 469 469 'Automattic\\Jetpack\\Forms\\Abilities\\Forms_Abilities' => array( 470 'version' => '6.21. 1.0',470 'version' => '6.21.2.0', 471 471 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/abilities/class-forms-abilities.php' 472 472 ), 473 473 'Automattic\\Jetpack\\Forms\\ContactForm\\Admin' => array( 474 'version' => '6.21. 1.0',474 'version' => '6.21.2.0', 475 475 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-admin.php' 476 476 ), 477 477 'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form' => array( 478 'version' => '6.21. 1.0',478 'version' => '6.21.2.0', 479 479 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form.php' 480 480 ), 481 481 'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Endpoint' => array( 482 'version' => '6.21. 1.0',482 'version' => '6.21.2.0', 483 483 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-endpoint.php' 484 484 ), 485 485 'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Field' => array( 486 'version' => '6.21. 1.0',486 'version' => '6.21.2.0', 487 487 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-field.php' 488 488 ), 489 489 'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Plugin' => array( 490 'version' => '6.21. 1.0',490 'version' => '6.21.2.0', 491 491 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-plugin.php' 492 492 ), 493 493 'Automattic\\Jetpack\\Forms\\ContactForm\\Contact_Form_Shortcode' => array( 494 'version' => '6.21. 1.0',494 'version' => '6.21.2.0', 495 495 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-contact-form-shortcode.php' 496 496 ), 497 497 'Automattic\\Jetpack\\Forms\\ContactForm\\Editor_View' => array( 498 'version' => '6.21. 1.0',498 'version' => '6.21.2.0', 499 499 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-editor-view.php' 500 500 ), 501 501 'Automattic\\Jetpack\\Forms\\ContactForm\\Feedback' => array( 502 'version' => '6.21. 1.0',502 'version' => '6.21.2.0', 503 503 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-feedback.php' 504 504 ), 505 505 'Automattic\\Jetpack\\Forms\\ContactForm\\Feedback_Author' => array( 506 'version' => '6.21. 1.0',506 'version' => '6.21.2.0', 507 507 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-feedback-author.php' 508 508 ), 509 509 'Automattic\\Jetpack\\Forms\\ContactForm\\Feedback_Field' => array( 510 'version' => '6.21. 1.0',510 'version' => '6.21.2.0', 511 511 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-feedback-field.php' 512 512 ), 513 513 'Automattic\\Jetpack\\Forms\\ContactForm\\Feedback_Source' => array( 514 'version' => '6.21. 1.0',514 'version' => '6.21.2.0', 515 515 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-feedback-source.php' 516 516 ), 517 517 'Automattic\\Jetpack\\Forms\\ContactForm\\Form_Submission_Error' => array( 518 'version' => '6.21. 1.0',518 'version' => '6.21.2.0', 519 519 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-form-submission-error.php' 520 520 ), 521 521 'Automattic\\Jetpack\\Forms\\ContactForm\\Form_View' => array( 522 'version' => '6.21. 1.0',522 'version' => '6.21.2.0', 523 523 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-form-view.php' 524 524 ), 525 525 'Automattic\\Jetpack\\Forms\\ContactForm\\Util' => array( 526 'version' => '6.21. 1.0',526 'version' => '6.21.2.0', 527 527 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/contact-form/class-util.php' 528 528 ), 529 529 'Automattic\\Jetpack\\Forms\\Dashboard\\Dashboard' => array( 530 'version' => '6.21. 1.0',530 'version' => '6.21.2.0', 531 531 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/dashboard/class-dashboard.php' 532 532 ), 533 533 'Automattic\\Jetpack\\Forms\\Dashboard\\Dashboard_View_Switch' => array( 534 'version' => '6.21. 1.0',534 'version' => '6.21.2.0', 535 535 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/dashboard/class-dashboard-view-switch.php' 536 536 ), 537 537 'Automattic\\Jetpack\\Forms\\Jetpack_Forms' => array( 538 'version' => '6.21. 1.0',538 'version' => '6.21.2.0', 539 539 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/class-jetpack-forms.php' 540 540 ), 541 541 'Automattic\\Jetpack\\Forms\\Service\\Form_Webhooks' => array( 542 'version' => '6.21. 1.0',542 'version' => '6.21.2.0', 543 543 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/service/class-form-webhooks.php' 544 544 ), 545 545 'Automattic\\Jetpack\\Forms\\Service\\Google_Drive' => array( 546 'version' => '6.21. 1.0',546 'version' => '6.21.2.0', 547 547 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/service/class-google-drive.php' 548 548 ), 549 549 'Automattic\\Jetpack\\Forms\\Service\\Hostinger_Reach_Integration' => array( 550 'version' => '6.21. 1.0',550 'version' => '6.21.2.0', 551 551 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/service/class-hostinger-reach-integration.php' 552 552 ), 553 553 'Automattic\\Jetpack\\Forms\\Service\\MailPoet_Integration' => array( 554 'version' => '6.21. 1.0',554 'version' => '6.21.2.0', 555 555 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/service/class-mailpoet-integration.php' 556 556 ), 557 557 'Automattic\\Jetpack\\Forms\\Service\\Post_To_Url' => array( 558 'version' => '6.21. 1.0',558 'version' => '6.21.2.0', 559 559 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-forms/src/service/class-post-to-url.php' 560 560 ), -
jetpack/trunk/vendor/jetpack-autoloader/class-autoloader-handler.php
r3410076 r3411112 6 6 */ 7 7 8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 \al5_0_13;8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13; 9 9 10 10 // phpcs:ignore -
jetpack/trunk/vendor/jetpack-autoloader/class-autoloader-locator.php
r3410076 r3411112 6 6 */ 7 7 8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 \al5_0_13;8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13; 9 9 10 10 // phpcs:ignore -
jetpack/trunk/vendor/jetpack-autoloader/class-autoloader.php
r3410076 r3411112 6 6 */ 7 7 8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 \al5_0_13;8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13; 9 9 10 10 // phpcs:ignore -
jetpack/trunk/vendor/jetpack-autoloader/class-container.php
r3410076 r3411112 6 6 */ 7 7 8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 \al5_0_13;8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13; 9 9 10 10 // phpcs:ignore -
jetpack/trunk/vendor/jetpack-autoloader/class-hook-manager.php
r3410076 r3411112 6 6 */ 7 7 8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 \al5_0_13;8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13; 9 9 10 10 // phpcs:ignore -
jetpack/trunk/vendor/jetpack-autoloader/class-latest-autoloader-guard.php
r3410076 r3411112 6 6 */ 7 7 8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 \al5_0_13;8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13; 9 9 10 10 // phpcs:ignore -
jetpack/trunk/vendor/jetpack-autoloader/class-manifest-reader.php
r3410076 r3411112 6 6 */ 7 7 8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 \al5_0_13;8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13; 9 9 10 10 // phpcs:ignore -
jetpack/trunk/vendor/jetpack-autoloader/class-path-processor.php
r3410076 r3411112 6 6 */ 7 7 8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 \al5_0_13;8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13; 9 9 10 10 // phpcs:ignore -
jetpack/trunk/vendor/jetpack-autoloader/class-php-autoloader.php
r3410076 r3411112 6 6 */ 7 7 8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 \al5_0_13;8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13; 9 9 10 10 // phpcs:ignore -
jetpack/trunk/vendor/jetpack-autoloader/class-plugin-locator.php
r3410076 r3411112 6 6 */ 7 7 8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 \al5_0_13;8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13; 9 9 10 10 // phpcs:ignore -
jetpack/trunk/vendor/jetpack-autoloader/class-plugins-handler.php
r3410076 r3411112 6 6 */ 7 7 8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 \al5_0_13;8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13; 9 9 10 10 // phpcs:ignore -
jetpack/trunk/vendor/jetpack-autoloader/class-shutdown-handler.php
r3410076 r3411112 6 6 */ 7 7 8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 \al5_0_13;8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13; 9 9 10 10 // phpcs:ignore -
jetpack/trunk/vendor/jetpack-autoloader/class-version-loader.php
r3410076 r3411112 6 6 */ 7 7 8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 \al5_0_13;8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13; 9 9 10 10 // phpcs:ignore -
jetpack/trunk/vendor/jetpack-autoloader/class-version-selector.php
r3410076 r3411112 6 6 */ 7 7 8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3 \al5_0_13;8 namespace Automattic\Jetpack\Autoloader\jpf11009ded9fc4592b6a05b61ce272b3c_jetpackⓥ15_3_1\al5_0_13; 9 9 10 10 // phpcs:ignore
Note: See TracChangeset
for help on using the changeset viewer.