Skip to content

Commit

Permalink
Merge pull request #2723 from woocommerce/release/3.1.15
Browse files Browse the repository at this point in the history
Release/3.1.15
  • Loading branch information
rawdreeg authored Apr 16, 2024
2 parents 028d1fc + 20eaaa9 commit e26c9ec
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 9 deletions.
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
*** Facebook for WooCommerce Changelog ***

= 3.1.15 - 2024-04-16 =
* Tweak - Replace the middleware URL from connect.woocommerce.com to api.woocommerce.com/integrations.
* Tweak - Test environment setup to resolve notice.

= 3.1.14 - 2024-04-03 =
* Fix - Remove facebook_messenger_deprecation_warning notice on deactivation.
* Tweak - Insert pixel-event-placeholder element via vanilla JS.
Expand Down
4 changes: 2 additions & 2 deletions facebook-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Description: Grow your business on Facebook! Use this official plugin to help sell more of your products using Facebook. After completing the setup, you'll be ready to create ads that promote your products and you can also create a shop section on your Page where customers can browse your products on Facebook.
* Author: Facebook
* Author URI: https://www.facebook.com/
* Version: 3.1.14
* Version: 3.1.15
* Requires at least: 5.6
* Text Domain: facebook-for-woocommerce
* Tested up to: 6.5
Expand Down Expand Up @@ -44,7 +44,7 @@ class WC_Facebook_Loader {
/**
* @var string the plugin version. This must be in the main plugin file to be automatically bumped by Woorelease.
*/
const PLUGIN_VERSION = '3.1.14'; // WRCS: DEFINED_VERSION.
const PLUGIN_VERSION = '3.1.15'; // WRCS: DEFINED_VERSION.

// Minimum PHP version required by this plugin.
const MINIMUM_PHP_VERSION = '7.4.0';
Expand Down
6 changes: 3 additions & 3 deletions includes/Handlers/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ class Connection {
const OAUTH_URL = 'https://facebook.com/dialog/oauth';

/** @var string WooCommerce connection proxy URL */
const PROXY_URL = 'https://connect.woocommerce.com/auth/facebook/';
const PROXY_URL = 'https://api.woocommerce.com/integrations/auth/facebook/';

/** @var string WooCommerce connection for APP Store login URL */
const APP_STORE_LOGIN_URL = 'https://connect.woocommerce.com/app-store-login/facebook/';
const APP_STORE_LOGIN_URL = 'https://api.woocommerce.com/integrations/app-store-login/facebook/';

/** @var string WooCommerce connection authentication URL */
const CONNECTION_AUTHENTICATION_URL = 'https://connect.woocommerce.com/auth/facebookcommerce/';
const CONNECTION_AUTHENTICATION_URL = 'https://api.woocommerce.com/integrations/auth/facebookcommerce/';

/** @var string the Standard Auth type */
const AUTH_TYPE_STANDARD = 'standard';
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
@@ -1,6 +1,6 @@
{
"name": "facebook-for-woocommerce",
"version": "3.1.14",
"version": "3.1.15",
"author": "Facebook",
"homepage": "https://woo.com/products/facebook/",
"license": "GPL-2.0",
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: facebook, automattic, woothemes
Tags: facebook, woocommerce, marketing, product catalog feed, pixel
Requires at least: 4.4
Tested up to: 6.5
Stable tag: 3.1.14
Stable tag: 3.1.15
Requires PHP: 5.6 or greater
MySQL: 5.6 or greater
License: GPLv2 or later
Expand Down Expand Up @@ -40,6 +40,10 @@ When opening a bug on GitHub, please give us as many details as possible.

== Changelog ==

= 3.1.15 - 2024-04-16 =
* Tweak - Replace the middleware URL from connect.woocommerce.com to api.woocommerce.com/integrations.
* Tweak - Test environment setup to resolve notice.

= 3.1.14 - 2024-04-03 =
* Fix - Remove facebook_messenger_deprecation_warning notice on deactivation.
* Tweak - Insert pixel-event-placeholder element via vanilla JS.
Expand Down
2 changes: 1 addition & 1 deletion tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
load_plugins();
} );

tests_add_filter( 'setup_theme', function () {
tests_add_filter( 'init', function () {
install_woocommerce();
} );

Expand Down

0 comments on commit e26c9ec

Please sign in to comment.