Skip to content

Commit 114ceb9

Browse files
committed
Version and changelog update.
1 parent 4fbf862 commit 114ceb9

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.txt

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
== Changelog ==
2+
= 2.4.3 - 2020-08-25
3+
* SECURITY: Fixed a cross-site scripting vulnerability in the code that updates the Required Membership settings on a post. This vulnerability could have been used in conjunction with other security vulnerabilities to trick an admin into editing the membership settings for a page, potentially exposing members only content to non-members. It is unlikely that there was any active exploitation of this vulnerability. This issue may also have shown up as a bug on some sites using page builders, where the membership settings for a post would be cleared out when editing a post. (Thanks to the wp.org plugin review team for catching this issue.)
4+
* SECURITY: Better escaping of variables shown in the Require Membership meta box and related SQL queries.
5+
* BUG FIX/ENHANCEMENT: Renamed the Vietnamese language files to match what is expected.
6+
27
= 2.4.2 - 2020-08-24
38
* SECURITY: Updated the PMPro REST API endpoints accessed via the GET method to also require appropriate capabilities to access. The membership confirmation text will be hidden from non-members and non-admins. The endpoints to check a user's level or access to a post require the pmpro_edit_memberships capability now. You should make sure your API users have the appropriate capabilities to use the API. You can use the pmpro_rest_api_route_capabilities filter and/or pmpro_rest_api_permissions filter to change this behavior.
49
* BUG FIX: Fixed issues with the PMPro REST API endpoints, including the discount code and checkout level endpoints.

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.4.2
6+
* Version: 2.4.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.4.2' );
19+
define( 'PMPRO_VERSION', '2.4.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-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: strangerstudios, kimannwall, andrewza, dlparker1005, paidmembershi
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
55
Tested up to: 5.5
6-
Stable tag: 2.4.2
6+
Stable tag: 2.4.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,11 @@ Not sure? You can find out by doing a bit a research.
153153
8. Membership Account page, display all sections or show specific sections using shortcode attributes.
154154

155155
== Changelog ==
156+
= 2.4.3 - 2020-08-25
157+
* SECURITY: Fixed a cross-site scripting vulnerability in the code that updates the Required Membership settings on a post. This vulnerability could have been used in conjunction with other security vulnerabilities to trick an admin into editing the membership settings for a page, potentially exposing members only content to non-members. It is unlikely that there was any active exploitation of this vulnerability. This issue may also have shown up as a bug on some sites using page builders, where the membership settings for a post would be cleared out when editing a post. (Thanks to the wp.org plugin review team for catching this issue.)
158+
* SECURITY: Better escaping of variables shown in the Require Membership meta box and related SQL queries.
159+
* BUG FIX/ENHANCEMENT: Renamed the Vietnamese language files to match what is expected.
160+
156161
= 2.4.2 - 2020-08-24
157162
* SECURITY: Updated the PMPro REST API endpoints accessed via the GET method to also require appropriate capabilities to access. The membership confirmation text will be hidden from non-members and non-admins. The endpoints to check a user's level or access to a post require the pmpro_edit_memberships capability now. You should make sure your API users have the appropriate capabilities to use the API. You can use the pmpro_rest_api_route_capabilities filter and/or pmpro_rest_api_permissions filter to change this behavior.
158163
* BUG FIX: Fixed issues with the PMPro REST API endpoints, including the discount code and checkout level endpoints.

0 commit comments

Comments
 (0)