From f87c35474f9df13fe8ab8ca5123ae34d52481aea Mon Sep 17 00:00:00 2001 From: David Parker Date: Fri, 2 Aug 2024 12:41:36 -0400 Subject: [PATCH] Changelog and version numbers --- CHANGELOG.txt | 10 ++++++++++ classes/gateways/class.pmprogateway_stripe.php | 2 +- package.json | 2 +- pages/billing.php | 4 ++-- paid-memberships-pro.php | 4 ++-- readme.txt | 12 +++++++++++- 6 files changed, 27 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c8085e69d..afd0b90f6 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,14 @@ == Changelog == += 3.1.2 - 2024-08-02 = +* ENHANCEMENT: Added an admin notice on PMPro settings pages when using Stripe without a webhook set up. #3103 (@dparker1005) +* ENHANCEMENT: Added a new filter `pmpro_stripe_card_element_style` to allow developers to customize the Stripe card element style. #3099 (@kimcoleman) +* ENHANCEMENT: Improved the styling of bulleted lists. #3095 (@kimcoleman) +* BUG FIX: Fixed an issue where Braintree checkouts would fail due to the `CardType` field not being present in the payment form. #3102 (@JarrydLong) +* BUG FIX: Fixed an issue where billing updates could fail for some gateways. #3102, #3106 (@JarrydLong, @dparker1005) +* BUG FIX: Fixed PHP errors when showing a "no access" message and there is not a levels page or checkout page set. #3096 (@kimcoleman) +* BUG FIX: Fixed an issue where checkouts would fail when using the Stripe payment request button and reCAPTCHA v3. #3094 (@dparker1005) +* REFACTOR: Updated doc block for the `pmpro_set_expiration_date()` function to allow `null` as a valid value for the `$enddate` parameter. #3098 (@ZebulanStanphill) + = 3.1.1 - 2024-07-29 = * ENHANCEMENT: Added autocomplete functionality for name and billing fields on the checkout page. #3081 (@andrewlimaza) * ENHANCEMENT: Improved the field structure and styling for checkbox and radio user fields. #3077 (@kimcoleman) diff --git a/classes/gateways/class.pmprogateway_stripe.php b/classes/gateways/class.pmprogateway_stripe.php index bff0d16c0..fbcbca67d 100644 --- a/classes/gateways/class.pmprogateway_stripe.php +++ b/classes/gateways/class.pmprogateway_stripe.php @@ -1255,7 +1255,7 @@ public static function update_option_pmpro_stripe_payment_flow( $old_value ) { /** * If Stripe is the current gateway but webhooks are not set up, show an admin notice. * - * @since TBD + * @since 3.1.2 */ public static function show_stripe_webhook_setup_notice() { // If Stripe isn't the current gateway, we don't need to show the notice. diff --git a/package.json b/package.json index 05a6115dd..678d2baff 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "paid-memberships-pro", - "version": "3.1.1", + "version": "3.1.2", "description": "WordPress Membership Plugin", "directories": { "test": "tests" diff --git a/pages/billing.php b/pages/billing.php index 7107c6d7f..8a66b2b3c 100644 --- a/pages/billing.php +++ b/pages/billing.php @@ -1,12 +1,12 @@