Skip to content

Commit 4ffb997

Browse files
Update version and add changelog entries for release 9.3.0
1 parent 0c6e65e commit 4ffb997

34 files changed

+57
-125
lines changed

changelog.txt

+26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
*** WooPayments Changelog ***
22

3+
= 9.3.0 - 2025-04-30 =
4+
* Add - Add dedicated onboarding REST API endpoint for disabling test drive account, when possible.
5+
* Add - Transaction Fees breakdown component in the Payment details.
6+
* Fix - fix: ensuring that Google Pay/Apple Pay buttons hide on shortcode cart & checkout when totals go to 0
7+
* Fix - fix: Multibanco payment instructions font size adjustment on some block-based themes (e.g.: Twenty-Twenty-Four, Twenty-Twenty-Three)
8+
* Fix - Fix a bug when the notice after downloading CSV that was mispositioned.
9+
* Fix - Fixed inconsistent spacing between "Add to Cart" button and express checkout buttons on product pages.
10+
* Fix - Fixes a styling issue when the payment method has a tooltip next to it, it was shifting the logo to the right.
11+
* Fix - Fix for validation issue with POST params in some cases generating account session.
12+
* Fix - Improve styling of the Embedded components to be closer to WPDS.
13+
* Fix - Improve subscriptions code compatibility to avoid causing fatal errors.
14+
* Fix - Remove the referrer check to update the fraud protection settings
15+
* Update - Add dedicated onboarding REST API endpoint for resetting onboarding, when possible.
16+
* Update - Advanced fraud protection settings redesign.
17+
* Update - chore: removed notices about the JCB capability request. JCB will be automatically requested for every new and existing merchant, regardless of the merchant country.
18+
* Update - Include a failure message in the order notes when Stripe Billing subscription renewal has failed.
19+
* Update - On the payment settings page, change the "Credit/Debit Cards" icon to a more generic icon and add a static list of card brands below the "Credit/Debit Cards" element.
20+
* Update - Remove progressive onboarding eligibility check during embedded KYC session creation
21+
* Update - Simplified refund handling with clear errors and standard reasons to aid resolution.
22+
* Update - Updated the Stripe locales list.
23+
* Update - Update log file format for better compatibility with the WooCommerce log viewer.
24+
* Dev - Add Cursor config folder to .gitignore
25+
* Dev - Bump WC tested up to version to 9.8.1
26+
* Dev - Merged WC_REST_Payments_Payment_Intents_Create_Controller back into WC_REST_Payments_Payment_Intents_Controller after confirming that the issue that caused the split was solved.
27+
* Dev - Replace WCPay in messages with WooPayments
28+
329
= 9.2.1 - 2025-04-23 =
430
* Update - Update account session creation route definition to use POST rather than GET.
531

changelog/add-1342-transaction-breakdown-block

-4
This file was deleted.

changelog/add-cursor-config-folder-to-gitignore

-4
This file was deleted.

changelog/chore-e2e-users-config

-5
This file was deleted.

changelog/chore-remove-codeowners-file

-5
This file was deleted.

changelog/chore-remove-jcb-capability-notices

-4
This file was deleted.

changelog/dev-bump-wc-version-9-8-1

-4
This file was deleted.

changelog/dev-fix-account-session

-4
This file was deleted.

changelog/dev-update-messages-to-replace-wcpay-to-woopayments

-4
This file was deleted.

changelog/fix-10673-fraud-protection-settings-referer-check

-4
This file was deleted.

changelog/fix-e2e-blocks-billing-address-form

-5
This file was deleted.

changelog/fix-ece-on-free-coupon

-4
This file was deleted.

changelog/fix-multibanco-order-received-page-font-size-on-block-theme

-4
This file was deleted.

changelog/fix-notice-after-downloading-csv-looks-weird-on-mobile

-4
This file was deleted.

changelog/fix-payment-method-with-a-tooltip-has-right-shifted

-4
This file was deleted.

changelog/fix-woopmnt-4909-tweak-embedded-components-style

-4
This file was deleted.

changelog/update-WOOPLUG-3802-receive-country-code-for-test-drive-account

-5
This file was deleted.

changelog/update-WOOPMNT-4933-stripe-locales

-4
This file was deleted.

changelog/update-disable-test-mode-account-api

-4
This file was deleted.

changelog/update-onboarding-apis-for-account

-4
This file was deleted.

changelog/update-payment-intents-controller-class

-4
This file was deleted.

changelog/update-route-definition

-4
This file was deleted.

changelog/update-settings-page-show-individual-card-brands

-4
This file was deleted.

changelog/update-woopmnt-4905-fraud-settings-redesign

-4
This file was deleted.

changelog/update-woopmt-4706-remove-po-eligible-api-request

-4
This file was deleted.

changelog/woopmnt-4601-stipe-billing-when-a-renewal-invoice-fails-fetch-the-reason

-4
This file was deleted.

changelog/woopmnt-4892-handle-more-refund-failure-reason-codes-in-refund-notes

-4
This file was deleted.

changelog/woopmnt-4899-update-logging-format-to-be-more-compatible-with-woo-core

-4
This file was deleted.

changelog/woopmnt-4914-fatal-errors-with-is_duplicate_site-and

-4
This file was deleted.

changelog/woopmnt-4919-express-checkout-container-spacing

-4
This file was deleted.

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "woocommerce-payments",
3-
"version": "9.2.1",
3+
"version": "9.3.0",
44
"main": "webpack.config.js",
55
"author": "Automattic",
66
"license": "GPL-3.0-or-later",

readme.txt

+27-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: woocommerce payments, apple pay, credit card, google pay, payment, payment
44
Requires at least: 6.0
55
Tested up to: 6.7
66
Requires PHP: 7.3
7-
Stable tag: 9.2.1
7+
Stable tag: 9.3.0
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -87,6 +87,32 @@ You can read our Terms of Service and other policies [here](https://woocommerce.
8787

8888
== Changelog ==
8989

90+
= 9.3.0 - 2025-04-30 =
91+
* Add - Add dedicated onboarding REST API endpoint for disabling test drive account, when possible.
92+
* Add - Transaction Fees breakdown component in the Payment details.
93+
* Fix - fix: ensuring that Google Pay/Apple Pay buttons hide on shortcode cart & checkout when totals go to 0
94+
* Fix - fix: Multibanco payment instructions font size adjustment on some block-based themes (e.g.: Twenty-Twenty-Four, Twenty-Twenty-Three)
95+
* Fix - Fix a bug when the notice after downloading CSV that was mispositioned.
96+
* Fix - Fixed inconsistent spacing between "Add to Cart" button and express checkout buttons on product pages.
97+
* Fix - Fixes a styling issue when the payment method has a tooltip next to it, it was shifting the logo to the right.
98+
* Fix - Fix for validation issue with POST params in some cases generating account session.
99+
* Fix - Improve styling of the Embedded components to be closer to WPDS.
100+
* Fix - Improve subscriptions code compatibility to avoid causing fatal errors.
101+
* Fix - Remove the referrer check to update the fraud protection settings
102+
* Update - Add dedicated onboarding REST API endpoint for resetting onboarding, when possible.
103+
* Update - Advanced fraud protection settings redesign.
104+
* Update - chore: removed notices about the JCB capability request. JCB will be automatically requested for every new and existing merchant, regardless of the merchant country.
105+
* Update - Include a failure message in the order notes when Stripe Billing subscription renewal has failed.
106+
* Update - On the payment settings page, change the "Credit/Debit Cards" icon to a more generic icon and add a static list of card brands below the "Credit/Debit Cards" element.
107+
* Update - Remove progressive onboarding eligibility check during embedded KYC session creation
108+
* Update - Simplified refund handling with clear errors and standard reasons to aid resolution.
109+
* Update - Updated the Stripe locales list.
110+
* Update - Update log file format for better compatibility with the WooCommerce log viewer.
111+
* Dev - Add Cursor config folder to .gitignore
112+
* Dev - Bump WC tested up to version to 9.8.1
113+
* Dev - Merged WC_REST_Payments_Payment_Intents_Create_Controller back into WC_REST_Payments_Payment_Intents_Controller after confirming that the issue that caused the split was solved.
114+
* Dev - Replace WCPay in messages with WooPayments
115+
90116
= 9.2.1 - 2025-04-23 =
91117
* Update - Update account session creation route definition to use POST rather than GET.
92118

woocommerce-payments.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* WC tested up to: 9.8.1
1212
* Requires at least: 6.0
1313
* Requires PHP: 7.3
14-
* Version: 9.2.1
14+
* Version: 9.3.0
1515
* Requires Plugins: woocommerce
1616
*
1717
* @package WooCommerce\Payments

0 commit comments

Comments
 (0)