Plugin Directory

Changeset 3433830


Ignore:
Timestamp:
01/06/2026 05:39:44 PM (3 months ago)
Author:
techjewel
Message:

releasing FluentCart version 1.3.5

Location:
fluent-cart
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • fluent-cart/tags/1.3.5/app/Models/Cart.php

    r3433678 r3433830  
    123123    public function getCartDataAttribute($data): array
    124124    {
    125         //add static cache using id
    126         static $cache = [];
    127         if (isset($cache[$this->id])) {
    128             return $cache[$this->id];
    129         }
    130         if (!$data) {
    131             return [];
    132         }
    133125        $data = json_decode($data, true);
    134         $cache[$this->id] = Helper::loadBundleChild($data, ['*']);
    135         return $cache[$this->id];
     126        return Helper::loadBundleChild($data, ['*']);
    136127    }
    137128
  • fluent-cart/tags/1.3.5/fluent-cart.php

    r3433678 r3433830  
    66Plugin Name: FluentCart
    77Description: FluentCart WordPress Plugin
    8 Version: 1.3.4
     8Version: 1.3.5
    99Author: FluentCart Team
    1010Author URI: https://fluentcart.com/about-us
     
    1616
    1717if (!defined('FLUENTCART_PLUGIN_PATH')) {
    18     define('FLUENTCART_VERSION', '1.3.4');
     18    define('FLUENTCART_VERSION', '1.3.5');
    1919    define('FLUENTCART_DB_VERSION', '1.0.32');
    2020    define('FLUENTCART_PLUGIN_PATH', plugin_dir_path(__FILE__));
  • fluent-cart/tags/1.3.5/readme.txt

    r3433678 r3433830  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.3.4
     7Stable tag: 1.3.5
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    309309
    310310== Changelog ==
     311
     312= 1.3.5 (Jan 06, 2026) =
     313- hotfix: Cart Model caching issue fixed
    311314
    312315= 1.3.4 (Jan 06, 2026) =
  • fluent-cart/trunk/app/Models/Cart.php

    r3433678 r3433830  
    123123    public function getCartDataAttribute($data): array
    124124    {
    125         //add static cache using id
    126         static $cache = [];
    127         if (isset($cache[$this->id])) {
    128             return $cache[$this->id];
    129         }
    130         if (!$data) {
    131             return [];
    132         }
    133125        $data = json_decode($data, true);
    134         $cache[$this->id] = Helper::loadBundleChild($data, ['*']);
    135         return $cache[$this->id];
     126        return Helper::loadBundleChild($data, ['*']);
    136127    }
    137128
  • fluent-cart/trunk/fluent-cart.php

    r3433678 r3433830  
    66Plugin Name: FluentCart
    77Description: FluentCart WordPress Plugin
    8 Version: 1.3.4
     8Version: 1.3.5
    99Author: FluentCart Team
    1010Author URI: https://fluentcart.com/about-us
     
    1616
    1717if (!defined('FLUENTCART_PLUGIN_PATH')) {
    18     define('FLUENTCART_VERSION', '1.3.4');
     18    define('FLUENTCART_VERSION', '1.3.5');
    1919    define('FLUENTCART_DB_VERSION', '1.0.32');
    2020    define('FLUENTCART_PLUGIN_PATH', plugin_dir_path(__FILE__));
  • fluent-cart/trunk/readme.txt

    r3433678 r3433830  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.3.4
     7Stable tag: 1.3.5
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    309309
    310310== Changelog ==
     311
     312= 1.3.5 (Jan 06, 2026) =
     313- hotfix: Cart Model caching issue fixed
    311314
    312315= 1.3.4 (Jan 06, 2026) =
Note: See TracChangeset for help on using the changeset viewer.