Skip to content

Commit

Permalink
Merge pull request #218 from woocommerce/release/1.6.3
Browse files Browse the repository at this point in the history
Release/1.6.3
  • Loading branch information
dkotter authored May 2, 2024
2 parents 81b4f31 + 781ad1d commit 690ada9
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 7 deletions.
7 changes: 7 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
*** PayFast Changelog ***

= 1.6.3 - 2024-05-02 =
* Fix - Enforce amount match check for all payments in the Payfast ITN handler.
* Dev - Bump WooCommerce "tested up to" version 8.7.
* Dev - Bump WooCommerce minimum supported version to 8.5.
* Dev - Bump WordPress "tested up to" version 6.5.
* Dev - Bump WordPress minimum supported version to 6.3.

= 1.6.2 - 2024-03-25 =
* Dev - Bump WooCommerce "tested up to" version 8.6.
* Dev - Bump WooCommerce minimum supported version to 8.4.
Expand Down
4 changes: 2 additions & 2 deletions 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,7 +1,7 @@
{
"name": "woocommerce-gateway-payfast",
"title": "WooCommerce Gateway Payfast",
"version": "1.6.2",
"version": "1.6.3",
"license": "GPL-3.0",
"homepage": "https://wordpress.org/plugins/woocommerce-payfast-gateway/",
"repository": {
Expand Down
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: credit card, payfast, payment request, woocommerce, automattic
Requires at least: 6.3
Tested up to: 6.5
Requires PHP: 7.4
Stable tag: 1.6.2
Stable tag: 1.6.3
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -38,6 +38,13 @@ If you get stuck, you can ask for help in the Plugin Forum.

== Changelog ==

= 1.6.3 - 2024-05-02 =
* Fix - Enforce amount match check for all payments in the Payfast ITN handler.
* Dev - Bump WooCommerce "tested up to" version 8.7.
* Dev - Bump WooCommerce minimum supported version to 8.5.
* Dev - Bump WordPress "tested up to" version 6.5.
* Dev - Bump WordPress minimum supported version to 6.3.

= 1.6.2 - 2024-03-25 =
* Dev - Bump WooCommerce "tested up to" version 8.6.
* Dev - Bump WooCommerce minimum supported version to 8.4.
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/specs/payment-flow/subscription-payment.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ test.describe( 'Verify Payfast Subscription Payment Process - @foundational', as
const payfastPaymentMethod = await checkoutBlock.locator(
'label[for="radio-control-wc-payment-method-options-payfast"]' );
await payfastPaymentMethod.click();
await checkoutBlock.getByRole( 'button', {name: 'Place Order'} ).click();
await checkoutBlock.locator( 'button.wc-block-components-checkout-place-order-button' ).click();
await waitForURL;

// Pay on Payfast checkout page.
Expand Down
4 changes: 2 additions & 2 deletions woocommerce-gateway-payfast.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Description: Receive payments using the South African Payfast payments provider.
* Author: WooCommerce
* Author URI: https://woocommerce.com/
* Version: 1.6.2
* Version: 1.6.3
* Requires at least: 6.3
* Tested up to: 6.5
* WC requires at least: 8.5
Expand All @@ -19,7 +19,7 @@

defined( 'ABSPATH' ) || exit;

define( 'WC_GATEWAY_PAYFAST_VERSION', '1.6.2' ); // WRCS: DEFINED_VERSION.
define( 'WC_GATEWAY_PAYFAST_VERSION', '1.6.3' ); // WRCS: DEFINED_VERSION.
define( 'WC_GATEWAY_PAYFAST_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
define( 'WC_GATEWAY_PAYFAST_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );

Expand Down

0 comments on commit 690ada9

Please sign in to comment.