Plugin Directory

Changeset 3314015


Ignore:
Timestamp:
06/18/2025 04:21:49 PM (9 months ago)
Author:
SamNajian
Message:

Tagging version 4.7.1

Location:
woocommerce-shipstation-integration
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woocommerce-shipstation-integration/tags/4.7.1/changelog.txt

    r3313351 r3314015  
    11*** ShipStation for WooCommerce ***
     2
     3= 4.7.1 - 2025-06-18 =
     4* Fix   - Fatal error on WooCommerce Subscriptions edit page.
    25
    36= 4.7.0 - 2025-06-17 =
  • woocommerce-shipstation-integration/tags/4.7.1/includes/class-checkout.php

    r3313351 r3314015  
    609609     * When context is not 'edit', adds gift data to shipping fields if the order is marked as gift.
    610610     *
    611      * @param array    $shipping_fields List of shipping fields to display in admin.
    612      * @param WC_Order $order           WooCommerce order object containing gift data.
    613      * @param string   $context         Context of display - 'edit' for editing, other for viewing.
     611     * @param array          $shipping_fields List of shipping fields to display in admin.
     612     * @param WC_Order|false $order           WooCommerce order object containing gift data.
     613     * @param string         $context         Context of display - 'edit' for editing, other for viewing.
    614614     *
    615615     * @return array Modified list of shipping fields including gift data if applicable.
    616616     */
    617     public function maybe_display_gift_data_below_admin_shipping_fields( array $shipping_fields, WC_Order $order, string $context ): array {
     617    public function maybe_display_gift_data_below_admin_shipping_fields( $shipping_fields, $order, $context ): array {
    618618
    619619        // Hide fields in edit context, don't allow to edit values.
     
    623623            }
    624624
     625            return $shipping_fields;
     626        }
     627
     628        if ( ! $order instanceof WC_Order ) {
    625629            return $shipping_fields;
    626630        }
  • woocommerce-shipstation-integration/tags/4.7.1/languages/woocommerce-shipstation.pot

    r3313351 r3314015  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: ShipStation for WooCommerce 4.7.0\n"
     5"Project-Id-Version: ShipStation for WooCommerce 4.7.1\n"
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/plugin/woocommerce-shipstation\n"
    8 "POT-Creation-Date: 2025-06-17 15:22:22+00:00\n"
     8"POT-Creation-Date: 2025-06-18 16:21:23+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
     
    216216msgstr ""
    217217
    218 #: includes/class-checkout.php:577 includes/class-checkout.php:877
    219 #: includes/class-checkout.php:882
     218#: includes/class-checkout.php:577 includes/class-checkout.php:881
     219#: includes/class-checkout.php:886
    220220msgid "Additional information"
    221221msgstr ""
  • woocommerce-shipstation-integration/tags/4.7.1/readme.txt

    r3313351 r3314015  
    88Requires PHP: 7.4
    99Requires Plugins: woocommerce
    10 Stable tag: 4.7.0
     10Stable tag: 4.7.1
    1111License: GPLv3
    1212License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7070
    7171== Changelog ==
     72
     73= 4.7.1 - 2025-06-18 =
     74* Fix   - Fatal error on WooCommerce Subscriptions edit page.
    7275
    7376= 4.7.0 - 2025-06-17 =
  • woocommerce-shipstation-integration/tags/4.7.1/woocommerce-shipstation.php

    r3313351 r3314015  
    33 * Plugin Name: ShipStation for WooCommerce
    44 * Plugin URI: https://woocommerce.com/products/shipstation-integration/
    5  * Version: 4.7.0
     5 * Version: 4.7.1
    66 * Description: Ship your WooCommerce orders with confidence, save on top carriers, and automate your processes with ShipStation.
    77 * Author: WooCommerce
     
    6060    }
    6161
    62     define( 'WC_SHIPSTATION_VERSION', '4.7.0' ); // WRCS: DEFINED_VERSION.
     62    define( 'WC_SHIPSTATION_VERSION', '4.7.1' ); // WRCS: DEFINED_VERSION.
    6363
    6464    if ( ! defined( 'WC_SHIPSTATION_EXPORT_LIMIT' ) ) {
  • woocommerce-shipstation-integration/trunk/changelog.txt

    r3313351 r3314015  
    11*** ShipStation for WooCommerce ***
     2
     3= 4.7.1 - 2025-06-18 =
     4* Fix   - Fatal error on WooCommerce Subscriptions edit page.
    25
    36= 4.7.0 - 2025-06-17 =
  • woocommerce-shipstation-integration/trunk/includes/class-checkout.php

    r3313351 r3314015  
    609609     * When context is not 'edit', adds gift data to shipping fields if the order is marked as gift.
    610610     *
    611      * @param array    $shipping_fields List of shipping fields to display in admin.
    612      * @param WC_Order $order           WooCommerce order object containing gift data.
    613      * @param string   $context         Context of display - 'edit' for editing, other for viewing.
     611     * @param array          $shipping_fields List of shipping fields to display in admin.
     612     * @param WC_Order|false $order           WooCommerce order object containing gift data.
     613     * @param string         $context         Context of display - 'edit' for editing, other for viewing.
    614614     *
    615615     * @return array Modified list of shipping fields including gift data if applicable.
    616616     */
    617     public function maybe_display_gift_data_below_admin_shipping_fields( array $shipping_fields, WC_Order $order, string $context ): array {
     617    public function maybe_display_gift_data_below_admin_shipping_fields( $shipping_fields, $order, $context ): array {
    618618
    619619        // Hide fields in edit context, don't allow to edit values.
     
    623623            }
    624624
     625            return $shipping_fields;
     626        }
     627
     628        if ( ! $order instanceof WC_Order ) {
    625629            return $shipping_fields;
    626630        }
  • woocommerce-shipstation-integration/trunk/languages/woocommerce-shipstation.pot

    r3313351 r3314015  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: ShipStation for WooCommerce 4.7.0\n"
     5"Project-Id-Version: ShipStation for WooCommerce 4.7.1\n"
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/plugin/woocommerce-shipstation\n"
    8 "POT-Creation-Date: 2025-06-17 15:22:22+00:00\n"
     8"POT-Creation-Date: 2025-06-18 16:21:23+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
     
    216216msgstr ""
    217217
    218 #: includes/class-checkout.php:577 includes/class-checkout.php:877
    219 #: includes/class-checkout.php:882
     218#: includes/class-checkout.php:577 includes/class-checkout.php:881
     219#: includes/class-checkout.php:886
    220220msgid "Additional information"
    221221msgstr ""
  • woocommerce-shipstation-integration/trunk/readme.txt

    r3313351 r3314015  
    88Requires PHP: 7.4
    99Requires Plugins: woocommerce
    10 Stable tag: 4.7.0
     10Stable tag: 4.7.1
    1111License: GPLv3
    1212License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7070
    7171== Changelog ==
     72
     73= 4.7.1 - 2025-06-18 =
     74* Fix   - Fatal error on WooCommerce Subscriptions edit page.
    7275
    7376= 4.7.0 - 2025-06-17 =
  • woocommerce-shipstation-integration/trunk/woocommerce-shipstation.php

    r3313351 r3314015  
    33 * Plugin Name: ShipStation for WooCommerce
    44 * Plugin URI: https://woocommerce.com/products/shipstation-integration/
    5  * Version: 4.7.0
     5 * Version: 4.7.1
    66 * Description: Ship your WooCommerce orders with confidence, save on top carriers, and automate your processes with ShipStation.
    77 * Author: WooCommerce
     
    6060    }
    6161
    62     define( 'WC_SHIPSTATION_VERSION', '4.7.0' ); // WRCS: DEFINED_VERSION.
     62    define( 'WC_SHIPSTATION_VERSION', '4.7.1' ); // WRCS: DEFINED_VERSION.
    6363
    6464    if ( ! defined( 'WC_SHIPSTATION_EXPORT_LIMIT' ) ) {
Note: See TracChangeset for help on using the changeset viewer.