Plugin Directory

Changeset 3470869


Ignore:
Timestamp:
02/27/2026 06:57:08 AM (5 weeks ago)
Author:
jeherve
Message:

Posts on this Day version 1.5.7

  • General: the plugin now requires PHP 8.3.
  • Query: use the site's configured timezone instead of UTC when determining "today", fixing a bug where the widget could show yesterday's posts on sites with non-UTC timezones.
  • Caching: fix cache duration calculation to use consistent timezone-aware DateTime objects, and include the current date in the cache key for more reliable daily invalidation. Props @MrClicko.
Location:
posts-on-this-day/trunk
Files:
1 added
1 deleted
31 edited

Legend:

Unmodified
Added
Removed
  • posts-on-this-day/trunk/composer.json

    r3421209 r3470869  
    99    },
    1010    "require": {
    11         "automattic/jetpack-autoloader": "5.0.1"
     11        "php": "^8.3",
     12        "automattic/jetpack-autoloader": "5.0.15"
    1213    },
    1314    "require-dev": {
    14         "automattic/wordbless": "^0.6.0",
    15         "automattic/jetpack-codesniffer": "6.0.1",
     15        "brain/monkey": "^2.6",
     16        "automattic/jetpack-codesniffer": "7.0.0",
    1617        "dealerdirect/phpcodesniffer-composer-installer": "*",
    17         "php-parallel-lint/php-parallel-lint": "1.4.0"
     18        "php-parallel-lint/php-parallel-lint": "1.4.0",
     19        "phpunit/phpunit": "^12.0"
    1820    },
    1921    "scripts": {
     
    4143        "test-php": [
    4244            "@composer phpunit"
    43         ],
    44         "post-update-cmd": "php -r \"copy('vendor/automattic/wordbless/src/dbless-wpdb.php', 'wordpress/wp-content/db.php');\""
     45        ]
    4546    },
    4647    "autoload": {
  • posts-on-this-day/trunk/posts-on-this-day.php

    r3421209 r3470869  
    55 * Description: Widget to display a list of posts published "on this day" in years past. A good little bit of nostalgia for your blog.
    66 * Author: Jeremy Herve
    7  * Version: 1.5.6
     7 * Version: 1.5.7
    88 * Author URI: https://jeremy.hu
    99 * License: GPL2+
    1010 * Text Domain: posts-on-this-day
    1111 * Requires at least: 5.6
    12  * Requires PHP: 7.1
     12 * Requires PHP: 8.3
    1313 *
    1414 * @package jeherve/posts-on-this-day
  • posts-on-this-day/trunk/readme.txt

    r3421209 r3470869  
    22Contributors: jeherve
    33Tags: widget, on this day
    4 Stable tag: 1.5.6
     4Stable tag: 1.5.7
    55Requires at least: 5.6
    6 Requires PHP: 7.1
     6Requires PHP: 8.3
    77Tested up to: 6.9
    88License: GPLv2 or later
     
    4747
    4848== Changelog ==
     49
     50### [1.5.7] - 2026-02-27
     51
     52* General: the plugin now requires PHP 8.3.
     53* Query: use the site's configured timezone instead of UTC when determining "today", fixing a bug where the widget could show yesterday's posts on sites with non-UTC timezones.
     54* Caching: fix cache duration calculation to use consistent timezone-aware DateTime objects, and include the current date in the cache key for more reliable daily invalidation. Props @mrclicko.
    4955
    5056### [1.5.6] - 2025-12-16
  • posts-on-this-day/trunk/src/class-query.php

    r3421209 r3470869  
    5252         */
    5353        $transient_key = sprintf(
    54             'jeherve_posts_on_this_day_%1$d_%2$d_%3$s_%4$s',
     54            'jeherve_posts_on_this_day_%1$d_%2$d_%3$s_%4$s_%5$s',
    5555            $max,
    5656            $back,
    5757            esc_attr( $types ),
    58             ( true === $exact_match ? 'exact' : 'aweek' )
     58            ( true === $exact_match ? 'exact' : 'aweek' ),
     59            self::get_today_date()
    5960        );
    6061
     
    6768        $i = 1;
    6869        while ( $back >= $i ) {
    69             $today         = new DateTime();
     70            $today         = new DateTime( 'now', wp_timezone() );
    7071            $date_interval = sprintf( 'P%dY', $i );
    7172
     
    156157     */
    157158    public static function get_seconds_left_in_day(): int {
    158         $time_tonight = (int) strtotime( 'today 24:00' );
    159         $time_now     = (int) current_time( 'timestamp' ); // phpcs:ignore WordPress.DateTime.CurrentTimeTimestamp.Requested -- we specifically want the current timestamp.
     159        $site_tz  = wp_timezone();
     160        $now      = new DateTime( 'now', $site_tz );
     161        $midnight = new DateTime( 'tomorrow midnight', $site_tz );
    160162
    161         // Seconds left until midnight.
    162         $seconds_remaining = $time_tonight - $time_now;
     163        // Seconds left until midnight in the site's timezone.
     164        $seconds_remaining = $midnight->getTimestamp() - $now->getTimestamp();
    163165
    164166        /*
     
    177179        return (int) apply_filters( 'jeherve_posts_on_this_day_cache_duration', $seconds_remaining );
    178180    }
     181
     182    /**
     183     * Get today's date in the site's timezone.
     184     *
     185     * @since 1.5.7
     186     *
     187     * @return string Today's date in Y-m-d format.
     188     */
     189    public static function get_today_date(): string {
     190        return ( new DateTime( 'now', wp_timezone() ) )->format( 'Y-m-d' );
     191    }
    179192}
  • posts-on-this-day/trunk/vendor/autoload.php

    r3421209 r3470869  
    2020require_once __DIR__ . '/composer/autoload_real.php';
    2121
    22 return ComposerAutoloaderInit5bb9b0a795043d1024e30250b085ee8d::getLoader();
     22return ComposerAutoloaderInitb98c8afb4c281f898031976dea2d8215::getLoader();
  • posts-on-this-day/trunk/vendor/autoload_packages.php

    r3421209 r3470869  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jp5bb9b0a795043d1024e30250b085ee8d\al5_0_1;
     8namespace Automattic\Jetpack\Autoloader\jpb98c8afb4c281f898031976dea2d8215\al5_0_15;
    99
    1010 // phpcs:ignore
  • posts-on-this-day/trunk/vendor/automattic/jetpack-autoloader/CHANGELOG.md

    r3421209 r3470869  
    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## [5.0.15] - 2025-12-15
     9### Changed
     10- Internal updates.
     11
     12## [5.0.14] - 2025-12-08
     13### Fixed
     14- Ensure proper flags are used with `json_encode()`. [#46092]
     15
     16## [5.0.13] - 2025-11-12
     17### Changed
     18- Internal updates.
     19
     20## [5.0.12] - 2025-11-10
     21### Fixed
     22- Tests: Improve compatibility with PHP 8.5. [#45771]
     23
     24## [5.0.11] - 2025-10-06
     25### Fixed
     26- Tests: Replace deprecated `RunClassInSeparateProcess` attribute with `RunTestsInSeparateProcesses`. [#45370]
     27
     28## [5.0.10] - 2025-09-15
     29### Changed
     30- Internal updates.
     31
     32## [5.0.9] - 2025-07-28
     33### Changed
     34- Exclude development files from production build of the package. [#44456]
     35
     36## [5.0.8] - 2025-06-23
     37### Fixed
     38- Autoloader: Prevent double slash in autoloader path. [#44030]
     39
     40## [5.0.7] - 2025-04-28
     41### Changed
     42- Internal updates.
     43
     44## [5.0.6] - 2025-03-31
     45### Changed
     46- Internal updates.
     47
     48## [5.0.5] - 2025-03-21
     49### Changed
     50- Internal updates.
     51
     52## [5.0.4] - 2025-03-17
     53### Changed
     54- Internal updates.
     55
     56## [5.0.3] - 2025-03-12
     57### Changed
     58- Internal updates.
     59
     60## [5.0.2] - 2025-02-24
     61### Changed
     62- Internal updates.
    763
    864## [5.0.1] - 2025-01-20
     
    403459- Add Custom Autoloader
    404460
     461[5.0.15]: https://github.com/Automattic/jetpack-autoloader/compare/v5.0.14...v5.0.15
     462[5.0.14]: https://github.com/Automattic/jetpack-autoloader/compare/v5.0.13...v5.0.14
     463[5.0.13]: https://github.com/Automattic/jetpack-autoloader/compare/v5.0.12...v5.0.13
     464[5.0.12]: https://github.com/Automattic/jetpack-autoloader/compare/v5.0.11...v5.0.12
     465[5.0.11]: https://github.com/Automattic/jetpack-autoloader/compare/v5.0.10...v5.0.11
     466[5.0.10]: https://github.com/Automattic/jetpack-autoloader/compare/v5.0.9...v5.0.10
     467[5.0.9]: https://github.com/Automattic/jetpack-autoloader/compare/v5.0.8...v5.0.9
     468[5.0.8]: https://github.com/Automattic/jetpack-autoloader/compare/v5.0.7...v5.0.8
     469[5.0.7]: https://github.com/Automattic/jetpack-autoloader/compare/v5.0.6...v5.0.7
     470[5.0.6]: https://github.com/Automattic/jetpack-autoloader/compare/v5.0.5...v5.0.6
     471[5.0.5]: https://github.com/Automattic/jetpack-autoloader/compare/v5.0.4...v5.0.5
     472[5.0.4]: https://github.com/Automattic/jetpack-autoloader/compare/v5.0.3...v5.0.4
     473[5.0.3]: https://github.com/Automattic/jetpack-autoloader/compare/v5.0.2...v5.0.3
     474[5.0.2]: https://github.com/Automattic/jetpack-autoloader/compare/v5.0.1...v5.0.2
    405475[5.0.1]: https://github.com/Automattic/jetpack-autoloader/compare/v5.0.0...v5.0.1
    406476[5.0.0]: https://github.com/Automattic/jetpack-autoloader/compare/v4.0.0...v5.0.0
  • posts-on-this-day/trunk/vendor/automattic/jetpack-autoloader/README.md

    r3421209 r3470869  
    3434In the main plugin you will also need to include the files like this.
    3535```php
    36 require_once  plugin_dir_path( __FILE__ ) . '/vendor/autoload_packages.php';
     36require_once plugin_dir_path( __FILE__ ) . 'vendor/autoload_packages.php';
    3737```
    3838
  • posts-on-this-day/trunk/vendor/automattic/jetpack-autoloader/composer.json

    r3421209 r3470869  
    1818    "require-dev": {
    1919        "composer/composer": "^2.2",
    20         "yoast/phpunit-polyfills": "^1.1.1",
    21         "automattic/jetpack-changelogger": "^5.1.0"
     20        "yoast/phpunit-polyfills": "^4.0.0",
     21        "automattic/jetpack-changelogger": "^6.0.12",
     22        "automattic/phpunit-select-config": "^1.0.3"
    2223    },
    2324    "autoload": {
     
    3132    "scripts": {
    3233        "phpunit": [
    33             "./vendor/phpunit/phpunit/phpunit --colors=always"
     34            "phpunit-select-config phpunit.#.xml.dist --colors=always"
    3435        ],
    3536        "test-coverage": [
    36             "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"./tests/php/tmp/coverage-report.php\"",
     37            "php -dpcov.directory=. ./vendor/bin/phpunit-select-config phpunit.#.xml.dist --coverage-php \"./tests/php/tmp/coverage-report.php\"",
    3738            "php ./tests/php/bin/test-coverage.php \"$COVERAGE_DIR/php.cov\""
    3839        ],
  • posts-on-this-day/trunk/vendor/automattic/jetpack-autoloader/src/AutoloadFileWriter.php

    r3421209 r3470869  
    1818     * The file comment to use.
    1919     */
    20     const COMMENT = <<<AUTOLOADER_COMMENT
     20    const COMMENT = <<<'AUTOLOADER_COMMENT'
    2121/**
    2222 * This file was automatically generated by automattic/jetpack-autoloader.
  • posts-on-this-day/trunk/vendor/automattic/jetpack-autoloader/src/AutoloadGenerator.php

    r3421209 r3470869  
    2222class AutoloadGenerator {
    2323
    24     const VERSION = '5.0.1';
     24    const VERSION = '5.0.15';
    2525
    2626    /**
  • posts-on-this-day/trunk/vendor/composer/autoload_real.php

    r3421209 r3470869  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit5bb9b0a795043d1024e30250b085ee8d
     5class ComposerAutoloaderInitb98c8afb4c281f898031976dea2d8215
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit5bb9b0a795043d1024e30250b085ee8d', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInitb98c8afb4c281f898031976dea2d8215', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit5bb9b0a795043d1024e30250b085ee8d', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInitb98c8afb4c281f898031976dea2d8215', 'loadClassLoader'));
    3030
    3131        require __DIR__ . '/autoload_static.php';
    32         call_user_func(\Composer\Autoload\ComposerStaticInit5bb9b0a795043d1024e30250b085ee8d::getInitializer($loader));
     32        call_user_func(\Composer\Autoload\ComposerStaticInitb98c8afb4c281f898031976dea2d8215::getInitializer($loader));
    3333
    3434        $loader->register(true);
  • posts-on-this-day/trunk/vendor/composer/autoload_static.php

    r3421209 r3470869  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit5bb9b0a795043d1024e30250b085ee8d
     7class ComposerStaticInitb98c8afb4c281f898031976dea2d8215
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    3232    {
    3333        return \Closure::bind(function () use ($loader) {
    34             $loader->prefixLengthsPsr4 = ComposerStaticInit5bb9b0a795043d1024e30250b085ee8d::$prefixLengthsPsr4;
    35             $loader->prefixDirsPsr4 = ComposerStaticInit5bb9b0a795043d1024e30250b085ee8d::$prefixDirsPsr4;
    36             $loader->classMap = ComposerStaticInit5bb9b0a795043d1024e30250b085ee8d::$classMap;
     34            $loader->prefixLengthsPsr4 = ComposerStaticInitb98c8afb4c281f898031976dea2d8215::$prefixLengthsPsr4;
     35            $loader->prefixDirsPsr4 = ComposerStaticInitb98c8afb4c281f898031976dea2d8215::$prefixDirsPsr4;
     36            $loader->classMap = ComposerStaticInitb98c8afb4c281f898031976dea2d8215::$classMap;
    3737
    3838        }, null, ClassLoader::class);
  • posts-on-this-day/trunk/vendor/composer/installed.json

    r3421209 r3470869  
    33        {
    44            "name": "automattic/jetpack-autoloader",
    5             "version": "v5.0.1",
    6             "version_normalized": "5.0.1.0",
     5            "version": "v5.0.15",
     6            "version_normalized": "5.0.15.0",
    77            "source": {
    88                "type": "git",
    99                "url": "https://github.com/Automattic/jetpack-autoloader.git",
    10                 "reference": "ba3f5146426367c718312a0da87ebd596ed9cf33"
     10                "reference": "d5263d6ffa91dc0d0d39b1df54de1e9bb2091364"
    1111            },
    1212            "dist": {
    1313                "type": "zip",
    14                 "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/ba3f5146426367c718312a0da87ebd596ed9cf33",
    15                 "reference": "ba3f5146426367c718312a0da87ebd596ed9cf33",
     14                "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/d5263d6ffa91dc0d0d39b1df54de1e9bb2091364",
     15                "reference": "d5263d6ffa91dc0d0d39b1df54de1e9bb2091364",
    1616                "shasum": ""
    1717            },
     
    2121            },
    2222            "require-dev": {
    23                 "automattic/jetpack-changelogger": "^5.1.0",
     23                "automattic/jetpack-changelogger": "^6.0.12",
     24                "automattic/phpunit-select-config": "^1.0.3",
    2425                "composer/composer": "^2.2",
    25                 "yoast/phpunit-polyfills": "^1.1.1"
     26                "yoast/phpunit-polyfills": "^4.0.0"
    2627            },
    27             "time": "2025-01-20T16:46:39+00:00",
     28            "time": "2025-12-15T11:22:11+00:00",
    2829            "type": "composer-plugin",
    2930            "extra": {
     
    6465            ],
    6566            "support": {
    66                 "source": "https://github.com/Automattic/jetpack-autoloader/tree/v5.0.1"
     67                "source": "https://github.com/Automattic/jetpack-autoloader/tree/v5.0.15"
    6768            },
    6869            "install-path": "../automattic/jetpack-autoloader"
  • posts-on-this-day/trunk/vendor/composer/installed.php

    r3421209 r3470869  
    22    'root' => array(
    33        'name' => 'jeherve/posts-on-this-day',
    4         'pretty_version' => 'dev-trunk',
    5         'version' => 'dev-trunk',
    6         'reference' => '99941160c54a969e08f2aed975bcaece3efe2426',
     4        'pretty_version' => '1.0.0+no-version-set',
     5        'version' => '1.0.0.0',
     6        'reference' => null,
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'automattic/jetpack-autoloader' => array(
    14             'pretty_version' => 'v5.0.1',
    15             'version' => '5.0.1.0',
    16             'reference' => 'ba3f5146426367c718312a0da87ebd596ed9cf33',
     14            'pretty_version' => 'v5.0.15',
     15            'version' => '5.0.15.0',
     16            'reference' => 'd5263d6ffa91dc0d0d39b1df54de1e9bb2091364',
    1717            'type' => 'composer-plugin',
    1818            'install_path' => __DIR__ . '/../automattic/jetpack-autoloader',
     
    2121        ),
    2222        'jeherve/posts-on-this-day' => array(
    23             'pretty_version' => 'dev-trunk',
    24             'version' => 'dev-trunk',
    25             'reference' => '99941160c54a969e08f2aed975bcaece3efe2426',
     23            'pretty_version' => '1.0.0+no-version-set',
     24            'version' => '1.0.0.0',
     25            'reference' => null,
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
  • posts-on-this-day/trunk/vendor/composer/jetpack_autoload_classmap.php

    r3421209 r3470869  
    88return array(
    99    'Automattic\\Jetpack\\Autoloader\\AutoloadGenerator' => array(
    10         'version' => '5.0.1',
     10        'version' => '5.0.15',
    1111        'path'    => $vendorDir . '/automattic/jetpack-autoloader/src/AutoloadGenerator.php'
    1212    ),
    1313    'Jeherve\\Posts_On_This_Day\\Display' => array(
    14         'version' => 'dev-trunk',
     14        'version' => '1.0.0.0',
    1515        'path'    => $baseDir . '/src/class-display.php'
    1616    ),
    1717    'Jeherve\\Posts_On_This_Day\\Posts_On_This_Day_Widget' => array(
    18         'version' => 'dev-trunk',
     18        'version' => '1.0.0.0',
    1919        'path'    => $baseDir . '/src/class-posts-on-this-day-widget.php'
    2020    ),
    2121    'Jeherve\\Posts_On_This_Day\\Query' => array(
    22         'version' => 'dev-trunk',
     22        'version' => '1.0.0.0',
    2323        'path'    => $baseDir . '/src/class-query.php'
    2424    ),
  • posts-on-this-day/trunk/vendor/composer/jetpack_autoload_psr4.php

    r3421209 r3470869  
    88return array(
    99    'Automattic\\Jetpack\\Autoloader\\' => array(
    10         'version' => '5.0.1',
     10        'version' => '5.0.15',
    1111        'path'    => array( $vendorDir . '/automattic/jetpack-autoloader/src' )
    1212    ),
  • posts-on-this-day/trunk/vendor/jetpack-autoloader/class-autoloader-handler.php

    r3421209 r3470869  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jp5bb9b0a795043d1024e30250b085ee8d\al5_0_1;
     8namespace Automattic\Jetpack\Autoloader\jpb98c8afb4c281f898031976dea2d8215\al5_0_15;
    99
    1010 // phpcs:ignore
  • posts-on-this-day/trunk/vendor/jetpack-autoloader/class-autoloader-locator.php

    r3421209 r3470869  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jp5bb9b0a795043d1024e30250b085ee8d\al5_0_1;
     8namespace Automattic\Jetpack\Autoloader\jpb98c8afb4c281f898031976dea2d8215\al5_0_15;
    99
    1010 // phpcs:ignore
  • posts-on-this-day/trunk/vendor/jetpack-autoloader/class-autoloader.php

    r3421209 r3470869  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jp5bb9b0a795043d1024e30250b085ee8d\al5_0_1;
     8namespace Automattic\Jetpack\Autoloader\jpb98c8afb4c281f898031976dea2d8215\al5_0_15;
    99
    1010 // phpcs:ignore
  • posts-on-this-day/trunk/vendor/jetpack-autoloader/class-container.php

    r3421209 r3470869  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jp5bb9b0a795043d1024e30250b085ee8d\al5_0_1;
     8namespace Automattic\Jetpack\Autoloader\jpb98c8afb4c281f898031976dea2d8215\al5_0_15;
    99
    1010 // phpcs:ignore
  • posts-on-this-day/trunk/vendor/jetpack-autoloader/class-hook-manager.php

    r3421209 r3470869  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jp5bb9b0a795043d1024e30250b085ee8d\al5_0_1;
     8namespace Automattic\Jetpack\Autoloader\jpb98c8afb4c281f898031976dea2d8215\al5_0_15;
    99
    1010 // phpcs:ignore
  • posts-on-this-day/trunk/vendor/jetpack-autoloader/class-latest-autoloader-guard.php

    r3421209 r3470869  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jp5bb9b0a795043d1024e30250b085ee8d\al5_0_1;
     8namespace Automattic\Jetpack\Autoloader\jpb98c8afb4c281f898031976dea2d8215\al5_0_15;
    99
    1010 // phpcs:ignore
  • posts-on-this-day/trunk/vendor/jetpack-autoloader/class-manifest-reader.php

    r3421209 r3470869  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jp5bb9b0a795043d1024e30250b085ee8d\al5_0_1;
     8namespace Automattic\Jetpack\Autoloader\jpb98c8afb4c281f898031976dea2d8215\al5_0_15;
    99
    1010 // phpcs:ignore
  • posts-on-this-day/trunk/vendor/jetpack-autoloader/class-path-processor.php

    r3421209 r3470869  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jp5bb9b0a795043d1024e30250b085ee8d\al5_0_1;
     8namespace Automattic\Jetpack\Autoloader\jpb98c8afb4c281f898031976dea2d8215\al5_0_15;
    99
    1010 // phpcs:ignore
  • posts-on-this-day/trunk/vendor/jetpack-autoloader/class-php-autoloader.php

    r3421209 r3470869  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jp5bb9b0a795043d1024e30250b085ee8d\al5_0_1;
     8namespace Automattic\Jetpack\Autoloader\jpb98c8afb4c281f898031976dea2d8215\al5_0_15;
    99
    1010 // phpcs:ignore
  • posts-on-this-day/trunk/vendor/jetpack-autoloader/class-plugin-locator.php

    r3421209 r3470869  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jp5bb9b0a795043d1024e30250b085ee8d\al5_0_1;
     8namespace Automattic\Jetpack\Autoloader\jpb98c8afb4c281f898031976dea2d8215\al5_0_15;
    99
    1010 // phpcs:ignore
  • posts-on-this-day/trunk/vendor/jetpack-autoloader/class-plugins-handler.php

    r3421209 r3470869  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jp5bb9b0a795043d1024e30250b085ee8d\al5_0_1;
     8namespace Automattic\Jetpack\Autoloader\jpb98c8afb4c281f898031976dea2d8215\al5_0_15;
    99
    1010 // phpcs:ignore
  • posts-on-this-day/trunk/vendor/jetpack-autoloader/class-shutdown-handler.php

    r3421209 r3470869  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jp5bb9b0a795043d1024e30250b085ee8d\al5_0_1;
     8namespace Automattic\Jetpack\Autoloader\jpb98c8afb4c281f898031976dea2d8215\al5_0_15;
    99
    1010 // phpcs:ignore
  • posts-on-this-day/trunk/vendor/jetpack-autoloader/class-version-loader.php

    r3421209 r3470869  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jp5bb9b0a795043d1024e30250b085ee8d\al5_0_1;
     8namespace Automattic\Jetpack\Autoloader\jpb98c8afb4c281f898031976dea2d8215\al5_0_15;
    99
    1010 // phpcs:ignore
  • posts-on-this-day/trunk/vendor/jetpack-autoloader/class-version-selector.php

    r3421209 r3470869  
    66 */
    77
    8 namespace Automattic\Jetpack\Autoloader\jp5bb9b0a795043d1024e30250b085ee8d\al5_0_1;
     8namespace Automattic\Jetpack\Autoloader\jpb98c8afb4c281f898031976dea2d8215\al5_0_15;
    99
    1010 // phpcs:ignore
Note: See TracChangeset for help on using the changeset viewer.