Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,18 @@ https://www.youtube.com/watch?v=dJrykKQGDcs

## Changelog ##

### 4.7.12
* FIXED
* Fixed authorization checks for media, albums, comments and activity privacy so actions are limited to permitted users.
* Fixed privacy enforcement for media returned by the JSON API.
* Fixed insufficient validation and sanitization of upload targets, album selection and query parameters.
* Fixed missing capability and nonce verification on administrative AJAX actions.
* Fixed PHP 8 warnings reported on page load.

* ENHANCEMENT
* Improved compliance with WordPress plugin coding and security standards.
* Removed development-only files from the distributed plugin package.

### 4.7.11
* FIXED
* Security enhancement: Improved data validation and sanitization for media queries and search filters.
Expand Down
14 changes: 14 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
== Changelog ==

= 4.7.12 [August 18, 2026] =

* FIXED
* Fixed authorization checks for media, albums, comments and activity privacy so actions are limited to permitted users.
* Fixed privacy enforcement for media returned by the JSON API.
* Fixed insufficient validation and sanitization of upload targets, album selection and query parameters.
* Fixed missing capability and nonce verification on administrative AJAX actions.
* Fixed PHP 8 warnings reported on page load.

* ENHANCEMENT
* Improved compliance with WordPress plugin coding and security standards.
* Removed development-only files from the distributed plugin package.


= 4.7.11 [July 20, 2026] =

* FIXED
Expand Down
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: rtMedia for WordPress, BuddyPress and bbPress
* Plugin URI: https://rtmedia.io/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
* Description: This plugin adds missing media rich features like photos, videos and audio uploading to BuddyPress which are essential if you are building social network, seriously!
* Version: 4.7.11
* Version: 4.7.12
* Requires at least: 4.9.6
* Text Domain: buddypress-media
* Author: rtCamp
Expand All @@ -26,7 +26,7 @@
/**
* The version of the plugin
*/
define( 'RTMEDIA_VERSION', '4.7.11' );
define( 'RTMEDIA_VERSION', '4.7.12' );
}

if ( ! defined( 'RTMEDIA_PATH' ) ) {
Expand Down
Loading