Plugin Directory

Changeset 3309723


Ignore:
Timestamp:
06/11/2025 10:43:29 AM (9 months ago)
Author:
packlink
Message:

Release version 3.5.3

Location:
packlink-pro-shipping
Files:
1190 added
32 edited

Legend:

Unmodified
Added
Removed
  • packlink-pro-shipping/trunk/Components/ShippingMethod/class-packlink-shipping-method.php

    r3118361 r3309723  
    88namespace Packlink\WooCommerce\Components\ShippingMethod;
    99
     10use Automattic\WooCommerce\Enums\ProductTaxStatus;
    1011use Logeecom\Infrastructure\ORM\Interfaces\RepositoryInterface;
    1112use Logeecom\Infrastructure\ORM\QueryFilter\QueryFilter;
     
    118119        $this->price_policy                = $this->get_option( 'price_policy', __( 'Packlink prices', 'packlink_pro_shipping' ) );
    119120        $this->class_cost_calculation_type = $this->get_option( 'class_cost_calculation_type', 'class' );
    120 
     121        $this->tax_status                  = $this->get_option( 'tax_status', ProductTaxStatus::TAXABLE );
    121122        // Save settings in admin if you have any defined.
    122123        add_action( 'woocommerce_update_options_shipping_' . $this->id, array( $this, 'process_admin_options' ) );
  • packlink-pro-shipping/trunk/Components/ShippingMethod/includes/settings-packlink-shipping.php

    r3048950 r3309723  
    11<?php
     2
     3use Automattic\WooCommerce\Enums\ProductTaxStatus;
    24
    35if ( ! defined( 'ABSPATH' ) ) {
     
    2729        'default'     => isset( $this->settings['price_policy'] ) ? $this->settings['price_policy'] : __( 'Packlink prices', 'packlink_pro_shipping' ),
    2830        'desc_tip'    => true,
     31    ),
     32    'tax_status'   => array(
     33        'title'   => __( 'Tax status', 'woocommerce' ),
     34        'type'    => 'select',
     35        'class'   => 'wc-enhanced-select',
     36        'default' => ProductTaxStatus::TAXABLE,
     37        'options' => array(
     38            ProductTaxStatus::TAXABLE => __( 'Taxable', 'woocommerce' ),
     39            ProductTaxStatus::NONE    => _x( 'None', 'Tax status', 'woocommerce' ),
     40        ),
    2941    ),
    3042);
  • packlink-pro-shipping/trunk/composer.json

    r3300581 r3309723  
    22  "name": "packlink/woocommerce",
    33  "description": "Packlink WooCommerce Integration",
    4   "version": "3.5.2",
     4  "version": "3.5.3",
    55  "type": "library",
    66  "repositories": [
  • packlink-pro-shipping/trunk/packlink-pro-shipping.php

    r3300581 r3309723  
    1010 * Plugin URI: https://en.wordpress.org/plugins/packlink-pro-shipping/
    1111 * Description: Save up to 70% on your shipping costs. No fixed fees, no minimum shipping volume required. Manage all your shipments in a single platform.
    12  * Version: 3.5.2
     12 * Version: 3.5.3
    1313 * Author: Packlink Shipping S.L.
    1414 * Author URI: https://pro.packlink.es/
  • packlink-pro-shipping/trunk/readme.txt

    r3300581 r3309723  
    55Requires PHP: 5.5
    66Tested up to: 6.7.2
    7 Stable tag: 3.5.2
     7Stable tag: 3.5.3
    88License: LICENSE-2.0
    99License URI: http://www.apache.org/licenses/LICENSE-2.0
     
    6868
    6969== Changelog ==
     70
     71#### 3.5.3 - June 11th, 2025
     72
     73**Updates**
     74- Fix the issue with taxes during order creation when Block Checkout is enabled
    7075
    7176#### 3.5.2 - May 26th, 2025
  • packlink-pro-shipping/trunk/vendor/autoload.php

    r3300581 r3309723  
    55require_once __DIR__ . '/composer/autoload_real.php';
    66
    7 return ComposerAutoloaderInit368058657a6965f5b93430c9021665c6::getLoader();
     7return ComposerAutoloaderInitafaffab99cc41d1d82d43aca271ea5ee::getLoader();
  • packlink-pro-shipping/trunk/vendor/composer/autoload_real.php

    r3300581 r3309723  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit368058657a6965f5b93430c9021665c6
     5class ComposerAutoloaderInitafaffab99cc41d1d82d43aca271ea5ee
    66{
    77    private static $loader;
     
    2525        require __DIR__ . '/platform_check.php';
    2626
    27         spl_autoload_register(array('ComposerAutoloaderInit368058657a6965f5b93430c9021665c6', 'loadClassLoader'), true, true);
     27        spl_autoload_register(array('ComposerAutoloaderInitafaffab99cc41d1d82d43aca271ea5ee', 'loadClassLoader'), true, true);
    2828        self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
    29         spl_autoload_unregister(array('ComposerAutoloaderInit368058657a6965f5b93430c9021665c6', 'loadClassLoader'));
     29        spl_autoload_unregister(array('ComposerAutoloaderInitafaffab99cc41d1d82d43aca271ea5ee', 'loadClassLoader'));
    3030
    3131        $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
     
    3333            require __DIR__ . '/autoload_static.php';
    3434
    35             call_user_func(\Composer\Autoload\ComposerStaticInit368058657a6965f5b93430c9021665c6::getInitializer($loader));
     35            call_user_func(\Composer\Autoload\ComposerStaticInitafaffab99cc41d1d82d43aca271ea5ee::getInitializer($loader));
    3636        } else {
    3737            $map = require __DIR__ . '/autoload_namespaces.php';
  • packlink-pro-shipping/trunk/vendor/composer/autoload_static.php

    r3300581 r3309723  
    55namespace Composer\Autoload;
    66
    7 class ComposerStaticInit368058657a6965f5b93430c9021665c6
     7class ComposerStaticInitafaffab99cc41d1d82d43aca271ea5ee
    88{
    99    public static $prefixLengthsPsr4 = array (
     
    6363    {
    6464        return \Closure::bind(function () use ($loader) {
    65             $loader->prefixLengthsPsr4 = ComposerStaticInit368058657a6965f5b93430c9021665c6::$prefixLengthsPsr4;
    66             $loader->prefixDirsPsr4 = ComposerStaticInit368058657a6965f5b93430c9021665c6::$prefixDirsPsr4;
    67             $loader->classMap = ComposerStaticInit368058657a6965f5b93430c9021665c6::$classMap;
     65            $loader->prefixLengthsPsr4 = ComposerStaticInitafaffab99cc41d1d82d43aca271ea5ee::$prefixLengthsPsr4;
     66            $loader->prefixDirsPsr4 = ComposerStaticInitafaffab99cc41d1d82d43aca271ea5ee::$prefixDirsPsr4;
     67            $loader->classMap = ComposerStaticInitafaffab99cc41d1d82d43aca271ea5ee::$classMap;
    6868
    6969        }, null, ClassLoader::class);
  • packlink-pro-shipping/trunk/vendor/composer/installed.json

    r3300581 r3309723  
    2929            "time": "2016-03-02T20:38:15+00:00",
    3030            "type": "library",
    31             "installation-source": "dist",
     31            "installation-source": "source",
    3232            "autoload": {
    3333                "psr-4": {
     
    8484            "time": "2025-05-26T08:53:54+00:00",
    8585            "type": "library",
    86             "installation-source": "dist",
     86            "installation-source": "source",
    8787            "autoload": {
    8888                "psr-4": {
     
    130130            "time": "2016-01-01T17:47:15+00:00",
    131131            "type": "library",
    132             "installation-source": "dist",
     132            "installation-source": "source",
    133133            "autoload": {
    134134                "classmap": [
     
    180180            "time": "2017-05-11T14:25:49+00:00",
    181181            "type": "library",
    182             "installation-source": "dist",
     182            "installation-source": "source",
    183183            "autoload": {
    184184                "classmap": [
     
    235235            "time": "2017-05-11T14:57:54+00:00",
    236236            "type": "library",
    237             "installation-source": "dist",
     237            "installation-source": "source",
    238238            "autoload": {
    239239                "classmap": [
  • packlink-pro-shipping/trunk/vendor/composer/installed.php

    r3300581 r3309723  
    11<?php return array(
    22    'root' => array(
    3         'pretty_version' => '3.5.2',
    4         'version' => '3.5.2.0',
     3        'pretty_version' => '3.5.3',
     4        'version' => '3.5.3.0',
    55        'type' => 'library',
    66        'install_path' => __DIR__ . '/../../',
     
    3030        ),
    3131        'packlink/woocommerce' => array(
    32             'pretty_version' => '3.5.2',
    33             'version' => '3.5.2.0',
     32            'pretty_version' => '3.5.3',
     33            'version' => '3.5.3.0',
    3434            'type' => 'library',
    3535            'install_path' => __DIR__ . '/../../',
  • packlink-pro-shipping/trunk/vendor/iio/libmergepdf/.git/logs/HEAD

    r3159872 r3309723  
    1 0000000000000000000000000000000000000000 e69826483133bbfbb54b867989018d6cfca2f5b9 Tamara <tamara@example.com> 1727699886 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-hanneskod-libmergepdf.git/
    2 e69826483133bbfbb54b867989018d6cfca2f5b9 b6042db24d66a49f3ecd261395ec918f00763e9c Tamara <tamara@example.com> 1727699886 +0200  checkout: moving from master to 3.0.0
     10000000000000000000000000000000000000000 e69826483133bbfbb54b867989018d6cfca2f5b9 Tamara <tamara@example.com> 1749635006 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-hanneskod-libmergepdf.git/
     2e69826483133bbfbb54b867989018d6cfca2f5b9 b6042db24d66a49f3ecd261395ec918f00763e9c Tamara <tamara@example.com> 1749635006 +0200  checkout: moving from master to 3.0.0
  • packlink-pro-shipping/trunk/vendor/iio/libmergepdf/.git/logs/refs/heads/master

    r3159872 r3309723  
    1 0000000000000000000000000000000000000000 e69826483133bbfbb54b867989018d6cfca2f5b9 Tamara <tamara@example.com> 1727699886 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-hanneskod-libmergepdf.git/
     10000000000000000000000000000000000000000 e69826483133bbfbb54b867989018d6cfca2f5b9 Tamara <tamara@example.com> 1749635006 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-hanneskod-libmergepdf.git/
  • packlink-pro-shipping/trunk/vendor/iio/libmergepdf/.git/logs/refs/remotes/origin/HEAD

    r3159872 r3309723  
    1 0000000000000000000000000000000000000000 e69826483133bbfbb54b867989018d6cfca2f5b9 Tamara <tamara@example.com> 1727699886 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-hanneskod-libmergepdf.git/
     10000000000000000000000000000000000000000 e69826483133bbfbb54b867989018d6cfca2f5b9 Tamara <tamara@example.com> 1749635006 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-hanneskod-libmergepdf.git/
  • packlink-pro-shipping/trunk/vendor/iio/libmergepdf/.git/objects/info/packs

    r3159872 r3309723  
    1 P pack-a7b2164fb5ea7a83392bb149905e5c38a8b7df27.pack
     1P pack-e10dd3051e12ce64e03513806b33177388809174.pack
    22
  • packlink-pro-shipping/trunk/vendor/setasign/fpdf/.git/logs/HEAD

    r3159872 r3309723  
    1 0000000000000000000000000000000000000000 0838e0ee4925716fcbbc50ad9e1799b5edfae0a0 Tamara <tamara@example.com> 1727699886 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDF.git/
    2 0838e0ee4925716fcbbc50ad9e1799b5edfae0a0 2c68c9e6c034ac3187d25968790139a73184cdb1 Tamara <tamara@example.com> 1727699886 +0200  checkout: moving from master to 1.8.1
     10000000000000000000000000000000000000000 0838e0ee4925716fcbbc50ad9e1799b5edfae0a0 Tamara <tamara@example.com> 1749635006 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDF.git/
     20838e0ee4925716fcbbc50ad9e1799b5edfae0a0 2c68c9e6c034ac3187d25968790139a73184cdb1 Tamara <tamara@example.com> 1749635006 +0200  checkout: moving from master to 1.8.1
  • packlink-pro-shipping/trunk/vendor/setasign/fpdf/.git/logs/refs/heads/master

    r3159872 r3309723  
    1 0000000000000000000000000000000000000000 0838e0ee4925716fcbbc50ad9e1799b5edfae0a0 Tamara <tamara@example.com> 1727699886 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDF.git/
     10000000000000000000000000000000000000000 0838e0ee4925716fcbbc50ad9e1799b5edfae0a0 Tamara <tamara@example.com> 1749635006 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDF.git/
  • packlink-pro-shipping/trunk/vendor/setasign/fpdf/.git/logs/refs/remotes/origin/HEAD

    r3159872 r3309723  
    1 0000000000000000000000000000000000000000 0838e0ee4925716fcbbc50ad9e1799b5edfae0a0 Tamara <tamara@example.com> 1727699886 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDF.git/
     10000000000000000000000000000000000000000 0838e0ee4925716fcbbc50ad9e1799b5edfae0a0 Tamara <tamara@example.com> 1749635006 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDF.git/
  • packlink-pro-shipping/trunk/vendor/setasign/fpdf/.git/objects/info/packs

    r3159872 r3309723  
    1 P pack-83ac3e7ca5f4897bf874e8e55430592bceee9c7b.pack
     1P pack-ba2af61d5345f1135549ed114dc23cfe5c0c19f3.pack
    22
  • packlink-pro-shipping/trunk/vendor/setasign/fpdi-fpdf/.git/logs/HEAD

    r3159872 r3309723  
    1 0000000000000000000000000000000000000000 d77870452ae3de35900fe08ef1d275daf6188c81 Tamara <tamara@example.com> 1727699886 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDI-FPDF.git/
    2 d77870452ae3de35900fe08ef1d275daf6188c81 a5dda72b78253c0e9e4d644e6e3af4b94662e27e Tamara <tamara@example.com> 1727699886 +0200  checkout: moving from master to 1.6.2
     10000000000000000000000000000000000000000 d77870452ae3de35900fe08ef1d275daf6188c81 Tamara <tamara@example.com> 1749635006 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDI-FPDF.git/
     2d77870452ae3de35900fe08ef1d275daf6188c81 a5dda72b78253c0e9e4d644e6e3af4b94662e27e Tamara <tamara@example.com> 1749635006 +0200  checkout: moving from master to 1.6.2
  • packlink-pro-shipping/trunk/vendor/setasign/fpdi-fpdf/.git/logs/refs/heads/master

    r3159872 r3309723  
    1 0000000000000000000000000000000000000000 d77870452ae3de35900fe08ef1d275daf6188c81 Tamara <tamara@example.com> 1727699886 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDI-FPDF.git/
     10000000000000000000000000000000000000000 d77870452ae3de35900fe08ef1d275daf6188c81 Tamara <tamara@example.com> 1749635006 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDI-FPDF.git/
  • packlink-pro-shipping/trunk/vendor/setasign/fpdi-fpdf/.git/logs/refs/remotes/origin/HEAD

    r3159872 r3309723  
    1 0000000000000000000000000000000000000000 d77870452ae3de35900fe08ef1d275daf6188c81 Tamara <tamara@example.com> 1727699886 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDI-FPDF.git/
     10000000000000000000000000000000000000000 d77870452ae3de35900fe08ef1d275daf6188c81 Tamara <tamara@example.com> 1749635006 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDI-FPDF.git/
  • packlink-pro-shipping/trunk/vendor/setasign/fpdi/.git/info/refs

    r3159872 r3309723  
    1 bda0af0d8631698a47f74c40107a2344fc37004f    refs/heads/master
     1ac558dff4438273d3df8d56daa871eb239e3e676    refs/heads/master
    22a6ad58897a6d97cc2d2cd2adaeda343b25a368ea    refs/remotes/origin/1.6.x-legacy
    3 bda0af0d8631698a47f74c40107a2344fc37004f    refs/remotes/origin/HEAD
    4 bda0af0d8631698a47f74c40107a2344fc37004f    refs/remotes/origin/development
    5 bda0af0d8631698a47f74c40107a2344fc37004f    refs/remotes/origin/master
     3ac558dff4438273d3df8d56daa871eb239e3e676    refs/remotes/origin/HEAD
     4ac558dff4438273d3df8d56daa871eb239e3e676    refs/remotes/origin/development
     5ac558dff4438273d3df8d56daa871eb239e3e676    refs/remotes/origin/master
    66324cea8d7b08aa14246c802e8745907aeb744c9f    refs/tags/1.5.2
    778dd7565249f81c9f0ecc13e429a75702c8a20db4    refs/tags/1.5.3
     
    3232ecf0459643ec963febfb9a5d529dcd93656006a4    refs/tags/v2.5.0
    3333a6db878129ec6c7e141316ee71872923e7f1b7ad    refs/tags/v2.6.0
     3409a816004fcee9ed3405bd164147e3fdbb79a56f    refs/tags/v2.6.1
     359e013b376939c0d4029f54150d2a16f3c67a5797    refs/tags/v2.6.2
     3667c31f5e50c93c20579ca9e23035d8c540b51941    refs/tags/v2.6.3
  • packlink-pro-shipping/trunk/vendor/setasign/fpdi/.git/logs/HEAD

    r3159872 r3309723  
    1 0000000000000000000000000000000000000000 bda0af0d8631698a47f74c40107a2344fc37004f Tamara <tamara@example.com> 1727699885 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDI.git/
    2 bda0af0d8631698a47f74c40107a2344fc37004f a6ad58897a6d97cc2d2cd2adaeda343b25a368ea Tamara <tamara@example.com> 1727699886 +0200  checkout: moving from master to 1.6.2
     10000000000000000000000000000000000000000 ac558dff4438273d3df8d56daa871eb239e3e676 Tamara <tamara@example.com> 1749635006 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDI.git/
     2ac558dff4438273d3df8d56daa871eb239e3e676 a6ad58897a6d97cc2d2cd2adaeda343b25a368ea Tamara <tamara@example.com> 1749635006 +0200  checkout: moving from master to 1.6.2
  • packlink-pro-shipping/trunk/vendor/setasign/fpdi/.git/logs/refs/heads/master

    r3159872 r3309723  
    1 0000000000000000000000000000000000000000 bda0af0d8631698a47f74c40107a2344fc37004f Tamara <tamara@example.com> 1727699885 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDI.git/
     10000000000000000000000000000000000000000 ac558dff4438273d3df8d56daa871eb239e3e676 Tamara <tamara@example.com> 1749635006 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDI.git/
  • packlink-pro-shipping/trunk/vendor/setasign/fpdi/.git/logs/refs/remotes/origin/HEAD

    r3159872 r3309723  
    1 0000000000000000000000000000000000000000 bda0af0d8631698a47f74c40107a2344fc37004f Tamara <tamara@example.com> 1727699885 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDI.git/
     10000000000000000000000000000000000000000 ac558dff4438273d3df8d56daa871eb239e3e676 Tamara <tamara@example.com> 1749635006 +0200  clone: from /home/tamara/.cache/composer/vcs/https---github.com-Setasign-FPDI.git/
  • packlink-pro-shipping/trunk/vendor/setasign/fpdi/.git/objects/info/packs

    r3159872 r3309723  
    1 P pack-7eb366a0c87f126ab3d6392113516e9b325f88f8.pack
     1P pack-1413ec9071ef8564209488d05f9539a8cb6bf07e.pack
    22
  • packlink-pro-shipping/trunk/vendor/setasign/fpdi/.git/packed-refs

    r3159872 r3309723  
    11# pack-refs with: peeled fully-peeled sorted
    22a6ad58897a6d97cc2d2cd2adaeda343b25a368ea refs/remotes/origin/1.6.x-legacy
    3 bda0af0d8631698a47f74c40107a2344fc37004f refs/remotes/origin/development
    4 bda0af0d8631698a47f74c40107a2344fc37004f refs/remotes/origin/master
     3ac558dff4438273d3df8d56daa871eb239e3e676 refs/remotes/origin/development
     4ac558dff4438273d3df8d56daa871eb239e3e676 refs/remotes/origin/master
    55324cea8d7b08aa14246c802e8745907aeb744c9f refs/tags/1.5.2
    668dd7565249f81c9f0ecc13e429a75702c8a20db4 refs/tags/1.5.3
     
    3131ecf0459643ec963febfb9a5d529dcd93656006a4 refs/tags/v2.5.0
    3232a6db878129ec6c7e141316ee71872923e7f1b7ad refs/tags/v2.6.0
     3309a816004fcee9ed3405bd164147e3fdbb79a56f refs/tags/v2.6.1
     349e013b376939c0d4029f54150d2a16f3c67a5797 refs/tags/v2.6.2
     3567c31f5e50c93c20579ca9e23035d8c540b51941 refs/tags/v2.6.3
  • packlink-pro-shipping/trunk/vendor/setasign/fpdi/.git/refs/heads/master

    r3159872 r3309723  
    1 bda0af0d8631698a47f74c40107a2344fc37004f
     1ac558dff4438273d3df8d56daa871eb239e3e676
Note: See TracChangeset for help on using the changeset viewer.