Skip to content

Commit

Permalink
Merge pull request #1072 from woocommerce/trunk
Browse files Browse the repository at this point in the history
Release/1.4.10
  • Loading branch information
message-dimke authored Sep 30, 2024
2 parents 0a8159b + e1a066d commit 0d8cb26
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 8 deletions.
6 changes: 6 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
*** Pinterest for WooCommerce Changelog ***

= 1.4.10 - 2024-09-24 =
* Dev - Tests suits update.
* Fix - 403 Pinterest API error response is not the reason to auto-disconnect.
* Fix - Feed Deletion Failure notice duplicates removal.
* Fix - Reuse existing feed, if any.

= 1.4.9 - 2024-09-12 =
* Tweak - WC 9.3 compatibility.

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pinterest-for-woocommerce",
"title": "Pinterest for WooCommerce",
"description": "Pinterest for WooCommerce",
"version": "1.4.9",
"version": "1.4.10",
"main": "gulpfile.js",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions pinterest-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Plugin Name: Pinterest for WooCommerce
* Plugin URI: https://woocommerce.com/products/pinterest-for-woocommerce/
* Description: Grow your business on Pinterest! Use this official plugin to allow shoppers to Pin products while browsing your store, track conversions, and advertise on Pinterest.
* Version: 1.4.9
* Version: 1.4.10
* Author: WooCommerce
* Author URI: https://woocommerce.com
* License: GPL-2.0+
Expand Down Expand Up @@ -47,7 +47,7 @@
}

define( 'PINTEREST_FOR_WOOCOMMERCE_PLUGIN_FILE', __FILE__ );
define( 'PINTEREST_FOR_WOOCOMMERCE_VERSION', '1.4.9' ); // WRCS: DEFINED_VERSION.
define( 'PINTEREST_FOR_WOOCOMMERCE_VERSION', '1.4.10' ); // WRCS: DEFINED_VERSION.

// HPOS compatibility declaration.
add_action(
Expand Down
8 changes: 7 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: pinterest, woocommerce, marketing, product catalog feed, pixel
Requires at least: 5.6
Tested up to: 6.6
Requires PHP: 7.3
Stable tag: 1.4.9
Stable tag: 1.4.10
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -91,6 +91,12 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/

== Changelog ==

= 1.4.10 - 2024-09-24 =
* Dev - Tests suits update.
* Fix - 403 Pinterest API error response is not the reason to auto-disconnect.
* Fix - Feed Deletion Failure notice duplicates removal.
* Fix - Reuse existing feed, if any.

= 1.4.9 - 2024-09-12 =
* Tweak - WC 9.3 compatibility.

Expand Down
4 changes: 2 additions & 2 deletions src/Feeds.php
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ public static function match_local_feed_configuration_to_registered_feeds( array
*
* @param array $feed A feed information array from Pinterest API response.
*
* @since x.x.x
* @since 1.4.10
* @return bool
*/
private static function does_feed_match( array $feed ): bool {
Expand All @@ -340,7 +340,7 @@ private static function does_feed_match( array $feed ): bool {
/**
* Compare remote feeds to local configuration to find a matching feed.
*
* @since x.x.x
* @since 1.4.10
* @return string - Remote feed ID that matches.
* @throws FeedNotFoundException When there is no matching feed at Pinterest.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/PluginUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ private function feed_status_migration(): void {
/**
* Clears all Feed Deletion Failure admin notices created by mistake.
*
* @since x.x.x
* @since 1.4.10
* @return void
*/
private function feed_deletion_notice_cleanup(): void {
Expand Down

0 comments on commit 0d8cb26

Please sign in to comment.