From 67a9fa64a74ded9490a4c319ec1ebd00457b451d Mon Sep 17 00:00:00 2001 From: Tim Carr Date: Wed, 13 Nov 2024 10:20:38 +0800 Subject: [PATCH] 1.8.9 --- .github/workflows/coding-standards.yml | 2 +- .github/workflows/test.yml | 2 +- languages/woocommerce-convertkit.pot | 4 ++-- readme.txt | 8 ++++++-- woocommerce-convertkit.php | 6 +++--- 5 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index e447ce7..f6d0f47 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -35,7 +35,7 @@ jobs: # Defines the WordPress and PHP Versions matrix to run tests on. strategy: matrix: - wp-versions: [ '6.7-RC4' ] #[ '6.1.1', 'latest' ] + wp-versions: [ 'latest' ] #[ '6.1.1', 'latest' ] php-versions: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ] #[ '7.3', '7.4', '8.0', '8.1' ] # Steps to install, configure and run tests diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a4b7c05..047406c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -52,7 +52,7 @@ jobs: strategy: fail-fast: false matrix: - wp-versions: [ '6.7-RC4' ] #[ '6.1.1', 'latest' ] + wp-versions: [ 'latest' ] #[ '6.1.1', 'latest' ] php-versions: [ '7.4', '8.0', '8.1', '8.2', '8.3' ] #[ '7.4', '8.0', '8.1' ] # Folder names within the 'tests' folder to run tests in parallel. diff --git a/languages/woocommerce-convertkit.pot b/languages/woocommerce-convertkit.pot index 6e4bbca..c0daf67 100644 --- a/languages/woocommerce-convertkit.pot +++ b/languages/woocommerce-convertkit.pot @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Kit (formerly ConvertKit) for WooCommerce plugin. msgid "" msgstr "" -"Project-Id-Version: Kit (formerly ConvertKit) for WooCommerce 1.8.8\n" +"Project-Id-Version: Kit (formerly ConvertKit) for WooCommerce 1.8.9\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/convertkit-woocommerce\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2024-10-08T06:34:08+00:00\n" +"POT-Creation-Date: 2024-11-13T02:00:55+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.10.0\n" "X-Domain: woocommerce-convertkit\n" diff --git a/readme.txt b/readme.txt index 6fefe83..ab8614c 100644 --- a/readme.txt +++ b/readme.txt @@ -3,9 +3,9 @@ Contributors: nathanbarry, growdev, travisnorthcutt, convertkit Donate link: https://kit.com Tags: email, marketing, embed form, convertkit, capture Requires at least: 5.0 -Tested up to: 6.6.2 +Tested up to: 6.7 Requires PHP: 5.6.20 -Stable tag: 1.8.8 +Stable tag: 1.8.9 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -46,6 +46,10 @@ No. You must first have an account on kit.com, but you do not have to use a paid == Changelog == +### 1.8.9 2024-11-13 +* Added: OAuth: Issue site-specific Access and Refresh Token when using the same Kit account on multiple WordPress sites +* Updated: ConvertKit WordPress Libraries to 2.0.5 + ### 1.8.8 2024-10-08 * Fix: Kit branding tweaks and secondary button colors diff --git a/woocommerce-convertkit.php b/woocommerce-convertkit.php index 1d79351..ffd5b5f 100755 --- a/woocommerce-convertkit.php +++ b/woocommerce-convertkit.php @@ -9,13 +9,13 @@ * Plugin Name: Kit (formerly ConvertKit) for WooCommerce * Plugin URI: https://www.kit.com * Description: Integrates WooCommerce with Kit, allowing customers to be automatically sent to your Kit account. - * Version: 1.8.8 + * Version: 1.8.9 * Author: Kit * Author URI: https://www.kit.com * Text Domain: woocommerce-convertkit * * WC requires at least: 3.0 - * WC tested up to: 9.3.3 + * WC tested up to: 9.4.1 */ // Bail if Plugin is already loaded. @@ -28,7 +28,7 @@ define( 'CKWC_PLUGIN_FILE', plugin_basename( __FILE__ ) ); define( 'CKWC_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); define( 'CKWC_PLUGIN_PATH', __DIR__ ); -define( 'CKWC_PLUGIN_VERSION', '1.8.7' ); +define( 'CKWC_PLUGIN_VERSION', '1.8.9' ); define( 'CKWC_OAUTH_CLIENT_ID', 'L0kyADsB3WP5zO5MvUpXQU64gIntQg9BBAIme17r_7A' ); define( 'CKWC_OAUTH_CLIENT_REDIRECT_URI', 'https://app.kit.com/wordpress/redirect' );