Plugin Directory

Changeset 3453976


Ignore:
Timestamp:
02/04/2026 05:09:25 PM (7 weeks ago)
Author:
IQComputing
Message:

Update to version 1.2.2 from GitHub

Location:
live-rates-for-shipstation
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • live-rates-for-shipstation/tags/1.2.2/changelog.txt

    r3452463 r3453976  
    33This is a brief text document keeping track of changes to the plugin. For a full history, see the Github Repository.
    44
     5= 1.2.2 =
     6
     7Relase Date: February 04, 2026.
     8
     9* Overview
     10    * Replaces a PHP 8.5 function call of array_first() for reset()
     11        * Thanks to Theo for reporting this issue!
     12
    513= 1.2.1 =
    614
     
    917* Overview
    1018    * Patches an issue where adjustments would overwrite the shipping cost.
    11         * Thanks to use @nextphase for reporting this issue!
     19        * Thanks to user @nextphase for reporting this issue!
    1220
    1321= 1.2.0 =
  • live-rates-for-shipstation/tags/1.2.2/core/classes/shipping-calculator.php

    r3452463 r3453976  
    976976        }
    977977
    978         $package     = array_first( $package_arr );
     978        $package     = reset( $package_arr );
    979979        $rate_name   = ( isset( $shiprate['_name'] ) ) ? $shiprate['_name'] : '';
    980980        $rate_name   = ( empty( $rate_name ) && isset( $package['nickname'] ) ) ? $package['nickname'] : $rate_name;
     
    10811081
    10821082        $other = array();
    1083         $package = array_first( $package_arr );
     1083        $package = reset( $package_arr );
    10841084
    10851085        // Loop and add any other shipment amounts.
  • live-rates-for-shipstation/tags/1.2.2/live-rates-for-shipstation.php

    r3452463 r3453976  
    44 * Plugin URI: https://iqcomputing.com/contact/
    55 * Description: ShipStation shipping method with live rates.
    6  * Version: 1.2.1
     6 * Version: 1.2.2
    77 * Requires at least: 6.2
    88 * Author: IQComputing
     
    2626     * @var String
    2727     */
    28     protected static $version = '1.2.1';
     28    protected static $version = '1.2.2';
    2929
    3030
  • live-rates-for-shipstation/tags/1.2.2/readme.txt

    r3452463 r3453976  
    44Requires at least: 5.9
    55Tested up to: 6.8
    6 Stable tag: 1.2.1
     6Stable tag: 1.2.2
    77License: GPLv3 or later
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    5151== Changelog ==
    5252
     53= 1.2.2 (2026-02-04) =
     54* Replaces PHP 8.5 func array_first with reset. (Thanks Theo)!
     55
    5356= 1.2.1 (2026-02-02) =
    5457* Patches an issue with adjustments not adjusting. (Thanks @nextphase)!
     
    6265* New `iqlrss/cache/cart_rates` filter hook.
    6366* New `iqlrss/shipping/calculator_object` filter hook.
    64 
    65 = 1.1.2 (2026-01-19) =
    66 * Patched an issue where rate caching would not account for a destination change.
    67 * Fixed a JS bug for Shipping Adjustment would not display on API Verified.
    68 * Moved autolaod to separate file.
    69 * Added verification to logs to prevent edge-case errors.
    70 * Big Shipping Method changes coming in next version to account for Unit Tests. Calculations will move to their own class instance. See the experimental branch for more info.
  • live-rates-for-shipstation/trunk/changelog.txt

    r3452463 r3453976  
    33This is a brief text document keeping track of changes to the plugin. For a full history, see the Github Repository.
    44
     5= 1.2.2 =
     6
     7Relase Date: February 04, 2026.
     8
     9* Overview
     10    * Replaces a PHP 8.5 function call of array_first() for reset()
     11        * Thanks to Theo for reporting this issue!
     12
    513= 1.2.1 =
    614
     
    917* Overview
    1018    * Patches an issue where adjustments would overwrite the shipping cost.
    11         * Thanks to use @nextphase for reporting this issue!
     19        * Thanks to user @nextphase for reporting this issue!
    1220
    1321= 1.2.0 =
  • live-rates-for-shipstation/trunk/core/classes/shipping-calculator.php

    r3452463 r3453976  
    976976        }
    977977
    978         $package     = array_first( $package_arr );
     978        $package     = reset( $package_arr );
    979979        $rate_name   = ( isset( $shiprate['_name'] ) ) ? $shiprate['_name'] : '';
    980980        $rate_name   = ( empty( $rate_name ) && isset( $package['nickname'] ) ) ? $package['nickname'] : $rate_name;
     
    10811081
    10821082        $other = array();
    1083         $package = array_first( $package_arr );
     1083        $package = reset( $package_arr );
    10841084
    10851085        // Loop and add any other shipment amounts.
  • live-rates-for-shipstation/trunk/live-rates-for-shipstation.php

    r3452463 r3453976  
    44 * Plugin URI: https://iqcomputing.com/contact/
    55 * Description: ShipStation shipping method with live rates.
    6  * Version: 1.2.1
     6 * Version: 1.2.2
    77 * Requires at least: 6.2
    88 * Author: IQComputing
     
    2626     * @var String
    2727     */
    28     protected static $version = '1.2.1';
     28    protected static $version = '1.2.2';
    2929
    3030
  • live-rates-for-shipstation/trunk/readme.txt

    r3452463 r3453976  
    44Requires at least: 5.9
    55Tested up to: 6.8
    6 Stable tag: 1.2.1
     6Stable tag: 1.2.2
    77License: GPLv3 or later
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    5151== Changelog ==
    5252
     53= 1.2.2 (2026-02-04) =
     54* Replaces PHP 8.5 func array_first with reset. (Thanks Theo)!
     55
    5356= 1.2.1 (2026-02-02) =
    5457* Patches an issue with adjustments not adjusting. (Thanks @nextphase)!
     
    6265* New `iqlrss/cache/cart_rates` filter hook.
    6366* New `iqlrss/shipping/calculator_object` filter hook.
    64 
    65 = 1.1.2 (2026-01-19) =
    66 * Patched an issue where rate caching would not account for a destination change.
    67 * Fixed a JS bug for Shipping Adjustment would not display on API Verified.
    68 * Moved autolaod to separate file.
    69 * Added verification to logs to prevent edge-case errors.
    70 * Big Shipping Method changes coming in next version to account for Unit Tests. Calculations will move to their own class instance. See the experimental branch for more info.
Note: See TracChangeset for help on using the changeset viewer.