Plugin Directory

Changeset 2994019


Ignore:
Timestamp:
11/10/2023 03:20:26 PM (2 years ago)
Author:
datafeedr.com
Message:

Update to version 1.3.8 from GitHub

Location:
datafeedr-woocommerce-importer
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • datafeedr-woocommerce-importer/tags/1.3.8/datafeedr-woocommerce-importer.php

    r2930963 r2994019  
    1010Requires PHP: 7.4
    1111Requires at least: 3.8
    12 Tested up to: 6.2.3-alpha
    13 Version: 1.3.7
     12Tested up to: 6.4.2-alpha
     13Version: 1.3.8
    1414
    1515WC requires at least: 3.0
    16 WC tested up to: 7.7
     16WC tested up to: 8.2
    1717
    1818Datafeedr WooCommerce Importer plugin
     
    4343 * Define constants.
    4444 */
    45 define( 'DFRPSWC_VERSION', '1.3.7' );
     45define( 'DFRPSWC_VERSION', '1.3.8' );
    4646define( 'DFRPSWC_DB_VERSION', '1.2.0' );
    4747define( 'DFRPSWC_URL', plugin_dir_url( __FILE__ ) );
     
    6363require_once dirname( __FILE__ ) . '/actions.php';
    6464require_once dirname( __FILE__ ) . '/filters.php';
     65
     66/**
     67 * Declaring WooCommerce HPOS compatibility.
     68 *
     69 * @see https://github.com/woocommerce/woocommerce/wiki/High-Performance-Order-Storage-Upgrade-Recipe-Book
     70 *
     71 * @since 1.3.8
     72 */
     73add_action( 'before_woocommerce_init', function () {
     74    if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
     75        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     76    }
     77} );
    6578
    6679/**
  • datafeedr-woocommerce-importer/tags/1.3.8/readme.txt

    r2930963 r2994019  
    88Requires PHP: 7.4
    99Requires at least: 3.8
    10 Tested up to: 6.2.3-alpha
    11 Stable tag: 1.3.7
     10Tested up to: 6.4.2-alpha
     11Stable tag: 1.3.8
    1212
    1313Import products from the Datafeedr API into your WooCommerce store.
     
    200200== Changelog ==
    201201
     202= 1.3.8 - 2023/11/10 =
     203* Updated "tested up to" value
     204* Declaring WooCommerce HPOS compatibility.
     205
    202206= 1.3.7 - 2023/06/26 =
    203207* Updated some data in readme.
  • datafeedr-woocommerce-importer/trunk/datafeedr-woocommerce-importer.php

    r2930963 r2994019  
    1010Requires PHP: 7.4
    1111Requires at least: 3.8
    12 Tested up to: 6.2.3-alpha
    13 Version: 1.3.7
     12Tested up to: 6.4.2-alpha
     13Version: 1.3.8
    1414
    1515WC requires at least: 3.0
    16 WC tested up to: 7.7
     16WC tested up to: 8.2
    1717
    1818Datafeedr WooCommerce Importer plugin
     
    4343 * Define constants.
    4444 */
    45 define( 'DFRPSWC_VERSION', '1.3.7' );
     45define( 'DFRPSWC_VERSION', '1.3.8' );
    4646define( 'DFRPSWC_DB_VERSION', '1.2.0' );
    4747define( 'DFRPSWC_URL', plugin_dir_url( __FILE__ ) );
     
    6363require_once dirname( __FILE__ ) . '/actions.php';
    6464require_once dirname( __FILE__ ) . '/filters.php';
     65
     66/**
     67 * Declaring WooCommerce HPOS compatibility.
     68 *
     69 * @see https://github.com/woocommerce/woocommerce/wiki/High-Performance-Order-Storage-Upgrade-Recipe-Book
     70 *
     71 * @since 1.3.8
     72 */
     73add_action( 'before_woocommerce_init', function () {
     74    if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
     75        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     76    }
     77} );
    6578
    6679/**
  • datafeedr-woocommerce-importer/trunk/readme.txt

    r2930963 r2994019  
    88Requires PHP: 7.4
    99Requires at least: 3.8
    10 Tested up to: 6.2.3-alpha
    11 Stable tag: 1.3.7
     10Tested up to: 6.4.2-alpha
     11Stable tag: 1.3.8
    1212
    1313Import products from the Datafeedr API into your WooCommerce store.
     
    200200== Changelog ==
    201201
     202= 1.3.8 - 2023/11/10 =
     203* Updated "tested up to" value
     204* Declaring WooCommerce HPOS compatibility.
     205
    202206= 1.3.7 - 2023/06/26 =
    203207* Updated some data in readme.
Note: See TracChangeset for help on using the changeset viewer.