Plugin Directory

Changeset 3149953


Ignore:
Timestamp:
09/11/2024 10:21:49 AM (19 months ago)
Author:
postiwp
Message:

Update to version 3.0.1 from GitHub

Location:
posti-warehouse
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • posti-warehouse/tags/3.0.1/README.md

    r3139663 r3149953  
    9898
    9999## Version history
     100- 3.0.1:
     101    - Bug fix: Order filter "meta_query" was not being applied during order status sync when HPOS is disabled.
    100102- 3.0.0:
    101103    - Added HPOS support
  • posti-warehouse/tags/3.0.1/classes/class-api.php

    r3139663 r3149953  
    1414    private $last_status = false;
    1515    private $token_option = 'posti_wh_api_auth';
    16     private $user_agent = 'woo-wh-client/3.0.0';
     16    private $user_agent = 'woo-wh-client/3.0.1';
    1717
    1818    public function __construct(Posti_Warehouse_Logger $logger, array &$options) {
  • posti-warehouse/tags/3.0.1/classes/class-order.php

    r3139663 r3149953  
    4343            add_action('woocommerce_email_order_meta', array($this, 'addTrackingToEmail'), 10, 4);
    4444        }
    45        
    4645    }
    4746
     
    305304            'post_status' => 'any',
    306305            'numberposts' => -1,
    307             'meta_query' => array(
    308                 'relation' => 'AND',
    309                 array(
    310                     'key' => '_posti_id',
    311                     'value' => $order_ids,
    312                     'compare' => 'IN'
    313                 )
    314             )
     306            'meta_key' => '_posti_id',
     307            'meta_value' => $order_ids,
     308            'meta_compare' => 'IN'
    315309        );
    316310        $posts = wc_get_orders($posts_query);
  • posti-warehouse/tags/3.0.1/posti-warehouse.php

    r3139663 r3149953  
    33/**
    44 * Plugin Name: Posti Warehouse
    5  * Version: 3.0.0
     5 * Version: 3.0.1
    66 * Description: Provides integration to Posti warehouse and dropshipping services.
    77 * Author: Posti
  • posti-warehouse/tags/3.0.1/readme.txt

    r3139663 r3149953  
    55Tested up to: 6.6
    66Requires PHP: 7.1
    7 Stable tag: 3.0.0
     7Stable tag: 3.0.1
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • posti-warehouse/trunk/README.md

    r3139663 r3149953  
    9898
    9999## Version history
     100- 3.0.1:
     101    - Bug fix: Order filter "meta_query" was not being applied during order status sync when HPOS is disabled.
    100102- 3.0.0:
    101103    - Added HPOS support
  • posti-warehouse/trunk/classes/class-api.php

    r3139663 r3149953  
    1414    private $last_status = false;
    1515    private $token_option = 'posti_wh_api_auth';
    16     private $user_agent = 'woo-wh-client/3.0.0';
     16    private $user_agent = 'woo-wh-client/3.0.1';
    1717
    1818    public function __construct(Posti_Warehouse_Logger $logger, array &$options) {
  • posti-warehouse/trunk/classes/class-order.php

    r3139663 r3149953  
    4343            add_action('woocommerce_email_order_meta', array($this, 'addTrackingToEmail'), 10, 4);
    4444        }
    45        
    4645    }
    4746
     
    305304            'post_status' => 'any',
    306305            'numberposts' => -1,
    307             'meta_query' => array(
    308                 'relation' => 'AND',
    309                 array(
    310                     'key' => '_posti_id',
    311                     'value' => $order_ids,
    312                     'compare' => 'IN'
    313                 )
    314             )
     306            'meta_key' => '_posti_id',
     307            'meta_value' => $order_ids,
     308            'meta_compare' => 'IN'
    315309        );
    316310        $posts = wc_get_orders($posts_query);
  • posti-warehouse/trunk/posti-warehouse.php

    r3139663 r3149953  
    33/**
    44 * Plugin Name: Posti Warehouse
    5  * Version: 3.0.0
     5 * Version: 3.0.1
    66 * Description: Provides integration to Posti warehouse and dropshipping services.
    77 * Author: Posti
  • posti-warehouse/trunk/readme.txt

    r3139663 r3149953  
    55Tested up to: 6.6
    66Requires PHP: 7.1
    7 Stable tag: 3.0.0
     7Stable tag: 3.0.1
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset for help on using the changeset viewer.