Changeset 3453976
- Timestamp:
- 02/04/2026 05:09:25 PM (7 weeks ago)
- Location:
- live-rates-for-shipstation
- Files:
-
- 8 edited
- 1 copied
-
tags/1.2.2 (copied) (copied from live-rates-for-shipstation/trunk)
-
tags/1.2.2/changelog.txt (modified) (2 diffs)
-
tags/1.2.2/core/classes/shipping-calculator.php (modified) (2 diffs)
-
tags/1.2.2/live-rates-for-shipstation.php (modified) (2 diffs)
-
tags/1.2.2/readme.txt (modified) (3 diffs)
-
trunk/changelog.txt (modified) (2 diffs)
-
trunk/core/classes/shipping-calculator.php (modified) (2 diffs)
-
trunk/live-rates-for-shipstation.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
live-rates-for-shipstation/tags/1.2.2/changelog.txt
r3452463 r3453976 3 3 This is a brief text document keeping track of changes to the plugin. For a full history, see the Github Repository. 4 4 5 = 1.2.2 = 6 7 Relase 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 5 13 = 1.2.1 = 6 14 … … 9 17 * Overview 10 18 * 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! 12 20 13 21 = 1.2.0 = -
live-rates-for-shipstation/tags/1.2.2/core/classes/shipping-calculator.php
r3452463 r3453976 976 976 } 977 977 978 $package = array_first( $package_arr );978 $package = reset( $package_arr ); 979 979 $rate_name = ( isset( $shiprate['_name'] ) ) ? $shiprate['_name'] : ''; 980 980 $rate_name = ( empty( $rate_name ) && isset( $package['nickname'] ) ) ? $package['nickname'] : $rate_name; … … 1081 1081 1082 1082 $other = array(); 1083 $package = array_first( $package_arr );1083 $package = reset( $package_arr ); 1084 1084 1085 1085 // Loop and add any other shipment amounts. -
live-rates-for-shipstation/tags/1.2.2/live-rates-for-shipstation.php
r3452463 r3453976 4 4 * Plugin URI: https://iqcomputing.com/contact/ 5 5 * Description: ShipStation shipping method with live rates. 6 * Version: 1.2. 16 * Version: 1.2.2 7 7 * Requires at least: 6.2 8 8 * Author: IQComputing … … 26 26 * @var String 27 27 */ 28 protected static $version = '1.2. 1';28 protected static $version = '1.2.2'; 29 29 30 30 -
live-rates-for-shipstation/tags/1.2.2/readme.txt
r3452463 r3453976 4 4 Requires at least: 5.9 5 5 Tested up to: 6.8 6 Stable tag: 1.2. 16 Stable tag: 1.2.2 7 7 License: GPLv3 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 51 51 == Changelog == 52 52 53 = 1.2.2 (2026-02-04) = 54 * Replaces PHP 8.5 func array_first with reset. (Thanks Theo)! 55 53 56 = 1.2.1 (2026-02-02) = 54 57 * Patches an issue with adjustments not adjusting. (Thanks @nextphase)! … … 62 65 * New `iqlrss/cache/cart_rates` filter hook. 63 66 * 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 3 3 This is a brief text document keeping track of changes to the plugin. For a full history, see the Github Repository. 4 4 5 = 1.2.2 = 6 7 Relase 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 5 13 = 1.2.1 = 6 14 … … 9 17 * Overview 10 18 * 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! 12 20 13 21 = 1.2.0 = -
live-rates-for-shipstation/trunk/core/classes/shipping-calculator.php
r3452463 r3453976 976 976 } 977 977 978 $package = array_first( $package_arr );978 $package = reset( $package_arr ); 979 979 $rate_name = ( isset( $shiprate['_name'] ) ) ? $shiprate['_name'] : ''; 980 980 $rate_name = ( empty( $rate_name ) && isset( $package['nickname'] ) ) ? $package['nickname'] : $rate_name; … … 1081 1081 1082 1082 $other = array(); 1083 $package = array_first( $package_arr );1083 $package = reset( $package_arr ); 1084 1084 1085 1085 // Loop and add any other shipment amounts. -
live-rates-for-shipstation/trunk/live-rates-for-shipstation.php
r3452463 r3453976 4 4 * Plugin URI: https://iqcomputing.com/contact/ 5 5 * Description: ShipStation shipping method with live rates. 6 * Version: 1.2. 16 * Version: 1.2.2 7 7 * Requires at least: 6.2 8 8 * Author: IQComputing … … 26 26 * @var String 27 27 */ 28 protected static $version = '1.2. 1';28 protected static $version = '1.2.2'; 29 29 30 30 -
live-rates-for-shipstation/trunk/readme.txt
r3452463 r3453976 4 4 Requires at least: 5.9 5 5 Tested up to: 6.8 6 Stable tag: 1.2. 16 Stable tag: 1.2.2 7 7 License: GPLv3 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 51 51 == Changelog == 52 52 53 = 1.2.2 (2026-02-04) = 54 * Replaces PHP 8.5 func array_first with reset. (Thanks Theo)! 55 53 56 = 1.2.1 (2026-02-02) = 54 57 * Patches an issue with adjustments not adjusting. (Thanks @nextphase)! … … 62 65 * New `iqlrss/cache/cart_rates` filter hook. 63 66 * 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.