Plugin Directory

Changeset 3490788


Ignore:
Timestamp:
03/25/2026 11:06:27 AM (4 days ago)
Author:
sendcloudbv
Message:

Release version 1.0.25

Location:
sendcloud-connected-shipping
Files:
154 added
10 edited

Legend:

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

    r3464963 r3490788  
    11*** WooCommerce Sendcloud | The all-in-one shipping platform Changelog ***
     2
     3= 2026-03-19 - version 1.0.25 =
     4* Compatible with Woocommerce 10.6.1
     5* Removed rudimentary Legacy API activation
    26
    37= 2026-02-19 - version 1.0.24 =
  • sendcloud-connected-shipping/trunk/composer.lock

    r3410880 r3490788  
    1818    },
    1919    "platform-dev": {},
    20     "plugin-api-version": "2.6.0"
     20    "plugin-api-version": "2.9.0"
    2121}
  • sendcloud-connected-shipping/trunk/includes/Controllers/Backend/class-connect-controller.php

    r3266337 r3490788  
    3434    public function generate_redirect_url() {
    3535        try {
    36             update_option( 'woocommerce_api_enabled', 'yes' );
    3736            $redirect_url = $this->connect_service->get_redirect_url();
    3837        } catch ( \Exception $exception ) {
  • sendcloud-connected-shipping/trunk/includes/class-sendcloud.php

    r3464963 r3490788  
    2828class SCCSP_Sendcloud {
    2929
    30     const VERSION = '1.0.24';
     30    const VERSION = '1.0.25';
    3131    const INTEGRATION_NAME = 'sendcloudshipping';
    3232    const BASE_API_URI = 'sendcloudshipping/v2';
  • sendcloud-connected-shipping/trunk/readme.txt

    r3464963 r3490788  
    11=== Sendcloud Shipping ===
    2 Version: 1.0.24
     2Version: 1.0.25
    33Developer: SendCloud Global B.V.
    44Developer URI: http://sendcloud.com
     
    77Requires PHP: 7.0
    88Tested up to: 6.9
    9 Stable tag: 1.0.24
     9Stable tag: 1.0.25
    1010License: GPLv2
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    103103
    104104== Changelog ==
     105= 1.0.25 =
     106* Compatible with Woocommerce 10.6.1
     107* Removed rudimentary Legacy API activation
     108
    105109= 1.0.24 =
    106110* Compatible with Woocommerce 10.4.3
  • sendcloud-connected-shipping/trunk/sendcloud-connected-shipping.php

    r3464963 r3490788  
    44 * Plugin URI: https://wordpress.org/plugins/sendcloud-connected-shipping/
    55 * Description: Sendcloud plugin.
    6  * Version: 1.0.24
     6 * Version: 1.0.25
    77 * Woo:
    88 * Author: Sendcloud B.V.
     
    1515 * Domain Path: /i18n/languages/
    1616 * WC requires at least: 3.5.0
    17  * WC tested up to: 10.4.3
     17 * WC tested up to: 10.6.1
    1818 *
    1919 * @package sendcloud-connected-shipping
  • sendcloud-connected-shipping/trunk/vendor/autoload.php

    r3435105 r3490788  
    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

    r3435105 r3490788  
    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

    r3464963 r3490788  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '3b391f53e93586f0946d9e4247c7f1a362265a99',
     6        'reference' => 'bd308f070834327fbaf0347180f6fc2176ca9939',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-main',
    1515            'version' => 'dev-main',
    16             'reference' => '3b391f53e93586f0946d9e4247c7f1a362265a99',
     16            'reference' => 'bd308f070834327fbaf0347180f6fc2176ca9939',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
  • sendcloud-connected-shipping/trunk/vendor/composer/platform_check.php

    r3266337 r3490788  
    2020        }
    2121    }
    22     trigger_error(
    23         'Composer detected issues in your platform: ' . implode(' ', $issues),
    24         E_USER_ERROR
     22    throw new \RuntimeException(
     23        'Composer detected issues in your platform: ' . implode(' ', $issues)
    2524    );
    2625}
Note: See TracChangeset for help on using the changeset viewer.