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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## v2.7.2 - 08/26/2026

- Improvement: Refined request-scoped upgrade stream initialization for broader hosting compatibility.

## v2.7.1 - 08/20/2026

- Security: Hardened administrative REST endpoints and request validation.
Expand Down
1 change: 0 additions & 1 deletion classes/Base/Stream.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ public function start() {
// phpcs:disable WordPress.PHP.IniSet.Risky, WordPress.PHP.NoSilencedErrors.Discouraged
@ini_set( 'zlib.output_compression', '0' );
@ini_set( 'implicit_flush', '1' );
@ini_set( 'log_limit', '8096' );

@ob_end_clean();
set_time_limit( 0 );
Expand Down
4 changes: 2 additions & 2 deletions content-control.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Content Control
* Plugin URI: https://contentcontrolplugin.com/?utm_campaign=plugin-info&utm_source=php-file-header&utm_medium=plugin-ui&utm_content=plugin-uri
* Description: Restrict content to logged in/out users or specific user roles. Restrict access to certain parts of a page/post. Control the visibility of widgets.
* Version: 2.7.1
* Version: 2.7.2
* Author: Code Atlantic
* Author URI: https://code-atlantic.com/?utm_campaign=plugin-info&utm_source=php-file-header&utm_medium=plugin-ui&utm_content=author-uri
* Donate link: https://code-atlantic.com/donate/?utm_campaign=donations&utm_source=php-file-header&utm_medium=plugin-ui&utm_content=donate-link
Expand Down Expand Up @@ -32,7 +32,7 @@ function get_plugin_config() {
return [
'name' => 'Content Control',
'slug' => 'content-control',
'version' => '2.7.1',
'version' => '2.7.2',
'option_prefix' => 'content_control',
// Maybe remove this and simply prefix `name` with `'Popup Maker'`.
'text_domain' => 'content-control',
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "content-control",
"version": "2.7.1",
"version": "2.7.2",
"description": "",
"author": "Code Atlantic LLC",
"license": "GPL-2.0-or-later",
Expand Down
8 changes: 6 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Donate link: https://code-atlantic.com/donate/?utm_campaign=donations&utm_source
Tags: membership, access control, members only, content restriction, maintenance mode
Requires at least: 6.2
Tested up to: 7.1
Stable tag: 2.7.1
Stable tag: 2.7.2
Requires PHP: 7.4
License: GPL-2.0-or-later

Expand Down Expand Up @@ -110,6 +110,10 @@ Bugs can be reported either in our support forum or we are happy to accept PRs o

== Changelog ==

= v2.7.2 - 08/26/2026 =

* Improvement: Refined request-scoped upgrade stream initialization for broader hosting compatibility.

= v2.7.1 - 08/20/2026 =

* Security: Hardened administrative REST endpoints and request validation.
Expand Down Expand Up @@ -433,4 +437,4 @@ add_filter( 'content_control/query_filter_init_hook', function () {

= v1.0.0 =

- Initial Release
- Initial Release
Loading