diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a1c5720..67637ed9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/classes/Base/Stream.php b/classes/Base/Stream.php index 5a6f77f7..18788e3d 100644 --- a/classes/Base/Stream.php +++ b/classes/Base/Stream.php @@ -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 ); diff --git a/content-control.php b/content-control.php index 21fb837d..4b5ea54f 100644 --- a/content-control.php +++ b/content-control.php @@ -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 @@ -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', diff --git a/package-lock.json b/package-lock.json index 069ddad8..ca19694e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "content-control", - "version": "2.7.1", + "version": "2.7.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "content-control", - "version": "2.7.1", + "version": "2.7.2", "license": "GPL-2.0-or-later", "workspaces": [ "./packages/*" diff --git a/package.json b/package.json index 10d48eac..3793258f 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/readme.txt b/readme.txt index 5afe1a36..39d4bd29 100644 --- a/readme.txt +++ b/readme.txt @@ -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 @@ -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. @@ -433,4 +437,4 @@ add_filter( 'content_control/query_filter_init_hook', function () { = v1.0.0 = -- Initial Release \ No newline at end of file +- Initial Release