Plugin Directory

Changeset 3318368


Ignore:
Timestamp:
06/26/2025 04:20:19 PM (9 months ago)
Author:
sendcloudbv
Message:

Release version 1.0.13

Location:
sendcloud-connected-shipping
Files:
131 added
8 edited

Legend:

Unmodified
Added
Removed
  • sendcloud-connected-shipping/trunk/changelog.txt

    r3300820 r3318368  
    11*** WooCommerce Sendcloud | The all-in-one shipping platform Changelog ***
     2
     3= 2025-06-26 - version 1.0.13 =
     4* Fixed excessive DB queries
     5
     6= 2025-06-16 - version 1.0.12 =
     7* Fixed woocommerce email template
    28
    39= 2025-05-26 - version 1.0.11 =
  • sendcloud-connected-shipping/trunk/includes/Services/class-config-service.php

    r3274838 r3318368  
    8585        $carriers_array = $carriers ? json_decode($carriers, true) : [];
    8686
    87         set_transient('sccsp_service_point_carriers', $carriers_array, 30 * MINUTE_IN_SECONDS);
     87        set_transient('service_point_carriers', $carriers_array, 30 * MINUTE_IN_SECONDS);
    8888
    8989        return $carriers_array;
  • sendcloud-connected-shipping/trunk/includes/class-sendcloud.php

    r3312433 r3318368  
    2727
    2828class SCCSP_Sendcloud {
    29     const VERSION = '1.0.12';
     29    const VERSION = '1.0.13';
    3030
    3131    const INTEGRATION_NAME = 'sendcloudshipping';
  • sendcloud-connected-shipping/trunk/readme.txt

    r3312433 r3318368  
    9191
    9292== Changelog ==
     93= 2025-06-26 - version 1.0.13 =
     94* Fixed excessive DB queries
     95
    9396= 1.0.12 =
    9497* Fixed woocommerce email template
  • sendcloud-connected-shipping/trunk/sendcloud-connected-shipping.php

    r3312433 r3318368  
    44 * Plugin URI: https://wordpress.org/plugins/sendcloud-connected-shipping/
    55 * Description: Sendcloud plugin.
    6  * Version: 1.0.12
     6 * Version: 1.0.13
    77 * Woo:
    88 * Author: Sendcloud B.V.
  • sendcloud-connected-shipping/trunk/vendor/autoload.php

    r3300820 r3318368  
    1515        }
    1616    }
    17     trigger_error(
    18         $err,
    19         E_USER_ERROR
    20     );
     17    throw new RuntimeException($err);
    2118}
    2219
  • sendcloud-connected-shipping/trunk/vendor/composer/InstalledVersions.php

    r3300820 r3318368  
    2727class InstalledVersions
    2828{
     29    /**
     30     * @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to
     31     * @internal
     32     */
     33    private static $selfDir = null;
     34
    2935    /**
    3036     * @var mixed[]|null
     
    324330
    325331    /**
     332     * @return string
     333     */
     334    private static function getSelfDir()
     335    {
     336        if (self::$selfDir === null) {
     337            self::$selfDir = strtr(__DIR__, '\\', '/');
     338        }
     339
     340        return self::$selfDir;
     341    }
     342
     343    /**
    326344     * @return array[]
    327345     * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
     
    337355
    338356        if (self::$canGetVendors) {
    339             $selfDir = strtr(__DIR__, '\\', '/');
     357            $selfDir = self::getSelfDir();
    340358            foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
    341359                $vendorDir = strtr($vendorDir, '\\', '/');
  • sendcloud-connected-shipping/trunk/vendor/composer/installed.php

    r3312433 r3318368  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '1b8901e7f7babe251e24bdad08834b67ec372283',
     6        'reference' => '9d075f6b385d6314ef3d2844a924c877a6f07553',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-main',
    1515            'version' => 'dev-main',
    16             'reference' => '1b8901e7f7babe251e24bdad08834b67ec372283',
     16            'reference' => '9d075f6b385d6314ef3d2844a924c877a6f07553',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.