Skip to content

Commit a8dd348

Browse files
committed
version and changelog
1 parent 6d2cdae commit a8dd348

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
== Changelog ==
2+
= 2.5.3 - 2021-01-26 =
3+
* SECURITY: Fixed indirect object reference vulnerability where order information, including customer names, email addresses, and order numbers could be accessed by non-admin WordPress users. (Thanks, WP Plugins Team)
4+
* SECURITY: Now checking ReCAPTCHA validation before enabling the submit button on the checkout form when using ReCAPTCHA v2. This helps to keep bad actors from testing credit cards on your checkout page. We were already doing a similar check when using ReCAPTCHA v3. Further updates to rate limit credit card failures are planned.
5+
26
= 2.5.2 - 2020-10-23 =
37
* BUG FIX: Fixed issue where the RECAPTCHA library wasn't being loaded early enough to validate at checkout.
48
* BUG FIX: Fixed issue where code in the Stripe class was unsetting some required fields, even if Stripe was not being used at checkout.

paid-memberships-pro.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Paid Memberships Pro
44
* Plugin URI: https://www.paidmembershipspro.com
55
* Description: The most complete member management and membership subscriptions plugin for WordPress.
6-
* Version: 2.5.2
6+
* Version: 2.5.3
77
* Author: Stranger Studios
88
* Author URI: https://www.strangerstudios.com
99
* Text Domain: paid-memberships-pro
@@ -16,7 +16,7 @@
1616
*/
1717

1818
// version constant
19-
define( 'PMPRO_VERSION', '2.5.2' );
19+
define( 'PMPRO_VERSION', '2.5.3' );
2020
define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
2121
define( 'PMPRO_MIN_PHP_VERSION', '5.6' );
2222

readme.txt

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: strangerstudios, kimannwall, andrewza, dlparker1005, paidmembershipspro
33
Tags: memberships, members, subscriptions, ecommerce, user registration, member, membership, e-commerce, paypal, stripe, braintree, authorize.net, payflow, restrict access, restrict content, directory
44
Requires at least: 4
5-
Tested up to: 5.5.3
6-
Stable tag: 2.5.2
5+
Tested up to: 5.6
6+
Stable tag: 2.5.3
77

88
Get Paid with Paid Memberships Pro: The most complete member management and membership subscriptions plugin for your WordPress site.
99

@@ -153,6 +153,10 @@ Not sure? You can find out by doing a bit a research.
153153
9. Membership Account page, display all sections or show specific sections using shortcode attributes.
154154

155155
== Changelog ==
156+
= 2.5.3 - 2021-01-26 =
157+
* SECURITY: Fixed indirect object reference vulnerability where order information, including customer names, email addresses, and order numbers could be accessed by non-admin WordPress users. (Thanks, WP Plugins Team)
158+
* SECURITY: Now checking ReCAPTCHA validation before enabling the submit button on the checkout form when using ReCAPTCHA v2. This helps to keep bad actors from testing credit cards on your checkout page. We were already doing a similar check when using ReCAPTCHA v3. Further updates to rate limit credit card failures are planned.
159+
156160
= 2.5.2 - 2020-10-23 =
157161
* BUG FIX: Fixed issue where the RECAPTCHA library wasn't being loaded early enough to validate at checkout.
158162
* BUG FIX: Fixed issue where code in the Stripe class was unsetting some required fields, even if Stripe was not being used at checkout.

0 commit comments

Comments
 (0)