From ef23d5451442b833b338f4690be8972f9de3340f Mon Sep 17 00:00:00 2001 From: MichaelBengtsson Date: Tue, 16 Jan 2024 07:27:22 +0100 Subject: [PATCH 1/3] Update KEC package to remove required flag from setting --- composer.lock | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/composer.lock b/composer.lock index 0f020d2..6f2510a 100644 --- a/composer.lock +++ b/composer.lock @@ -71,16 +71,16 @@ }, { "name": "krokedil/klarna-express-checkout", - "version": "1.2.0", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/krokedil/klarna-express-checkout.git", - "reference": "ecb80460ebf7570337c2b01afe138302b1645bc4" + "reference": "617307a03c8a93ec40981394327d2f002c770680" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/krokedil/klarna-express-checkout/zipball/ecb80460ebf7570337c2b01afe138302b1645bc4", - "reference": "ecb80460ebf7570337c2b01afe138302b1645bc4", + "url": "https://api.github.com/repos/krokedil/klarna-express-checkout/zipball/617307a03c8a93ec40981394327d2f002c770680", + "reference": "617307a03c8a93ec40981394327d2f002c770680", "shasum": "" }, "require": { @@ -136,10 +136,10 @@ ], "description": "A Klarna Express Checkout solution for WooCommerce", "support": { - "source": "https://github.com/krokedil/klarna-express-checkout/tree/1.2.0", + "source": "https://github.com/krokedil/klarna-express-checkout/tree/1.2.1", "issues": "https://github.com/krokedil/klarna-express-checkout/issues" }, - "time": "2024-01-12T10:49:27+00:00" + "time": "2024-01-16T06:25:48+00:00" }, { "name": "krokedil/woocommerce", @@ -322,12 +322,12 @@ "source": { "type": "git", "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", - "reference": "1703a6bd5a80f2bfef7cd2166cc86b915617b8bb" + "reference": "ff2765d764b8feac7d9c7c71f5948d679d44a3a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/1703a6bd5a80f2bfef7cd2166cc86b915617b8bb", - "reference": "1703a6bd5a80f2bfef7cd2166cc86b915617b8bb", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/ff2765d764b8feac7d9c7c71f5948d679d44a3a8", + "reference": "ff2765d764b8feac7d9c7c71f5948d679d44a3a8", "shasum": "" }, "require": { @@ -395,7 +395,7 @@ "type": "open_collective" } ], - "time": "2024-01-11T23:26:22+00:00" + "time": "2024-01-15T09:13:36+00:00" }, { "name": "wp-coding-standards/wpcs", From b7442a278e88960d856fe8a24d2922850f96aa66 Mon Sep 17 00:00:00 2001 From: MichaelBengtsson Date: Tue, 16 Jan 2024 07:30:29 +0100 Subject: [PATCH 2/3] Version 3.3.1 --- klarna-payments-for-woocommerce.php | 4 ++-- package.json | 2 +- readme.txt | 5 ++++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/klarna-payments-for-woocommerce.php b/klarna-payments-for-woocommerce.php index 5ace64c..19e4b6d 100644 --- a/klarna-payments-for-woocommerce.php +++ b/klarna-payments-for-woocommerce.php @@ -5,7 +5,7 @@ * Description: Provides Klarna Payments as payment method to WooCommerce. * Author: klarna * Author URI: https://www.klarna.com/ - * Version: 3.3.0 + * Version: 3.3.1 * Text Domain: klarna-payments-for-woocommerce * Domain Path: /languages * @@ -39,7 +39,7 @@ /** * Required minimums and constants */ -define( 'WC_KLARNA_PAYMENTS_VERSION', '3.3.0' ); +define( 'WC_KLARNA_PAYMENTS_VERSION', '3.3.1' ); define( 'WC_KLARNA_PAYMENTS_MIN_PHP_VER', '7.4.0' ); define( 'WC_KLARNA_PAYMENTS_MIN_WC_VER', '5.6.0' ); define( 'WC_KLARNA_PAYMENTS_MAIN_FILE', __FILE__ ); diff --git a/package.json b/package.json index 3a602da..f05e73d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "klarna-payments-for-woocommerce", - "version": "3.2.2", + "version": "3.3.1", "description": "Klarna Payments for WooCommerce", "main": "gulpfile.js", "repository": "https://github.com/krokedil/klarna-payments-for-woocommerce.git", diff --git a/readme.txt b/readme.txt index d6e0ec1..1a552bd 100644 --- a/readme.txt +++ b/readme.txt @@ -7,7 +7,7 @@ Tested up to: 6.4.2 Requires PHP: 7.4 WC requires at least: 5.6.0 WC tested up to: 8.5.0 -Stable tag: 3.3.0 +Stable tag: 3.3.1 License: GPLv3 or later License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -51,6 +51,9 @@ For help setting up and configuring Klarna Payments for WooCommerce please refer == Changelog == += 2024.01.16 - version 3.3.1 = +* Fix - Remove the required flag from the KEC client identifier setting. + = 2024.01.15 - version 3.3.0 = * Feature - Added support for Klarna Express Checkout. * Feature - Added support for Post Purchase Upsell. From 954638f0a1a3e2114886b71844ec7c3fcaa5d2f0 Mon Sep 17 00:00:00 2001 From: MichaelBengtsson Date: Tue, 16 Jan 2024 07:31:30 +0100 Subject: [PATCH 3/3] Update klarna-payments-for-woocommerce.php --- klarna-payments-for-woocommerce.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/klarna-payments-for-woocommerce.php b/klarna-payments-for-woocommerce.php index 19e4b6d..abc1f7a 100644 --- a/klarna-payments-for-woocommerce.php +++ b/klarna-payments-for-woocommerce.php @@ -12,7 +12,7 @@ * WC requires at least: 5.6.0 * WC tested up to: 8.3.1 * - * Copyright (c) 2017-2023 Krokedil + * Copyright (c) 2017-2024 Krokedil * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by