Skip to content

Commit 881323a

Browse files
committed
Merge branch 'release/2.6.1' into develop
2 parents b2ae6c1 + c4c132b commit 881323a

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## v2.6.1 - 03/15/2025
6+
57
* Improvement: Only fetch titles & ids when loading posts/taxonomy for the Restriction Editor. Reducing request overhead.
68
* Improvement: Ensure taxonomies are also removed from search appropriately.
79
* Improvement: Reduce memory footprint of overloaded object handling.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "code-atlantic/content-control",
3-
"version": "2.6.0",
3+
"version": "2.6.1",
44
"type": "wordpress-plugin",
55
"license": "GPL-2.0-or-later",
66
"homepage": "https://contentcontrolplugin.com/",

content-control.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Content Control
44
* Plugin URI: https://contentcontrolplugin.com/?utm_campaign=plugin-info&utm_source=php-file-header&utm_medium=plugin-ui&utm_content=plugin-uri
55
* 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.
6-
* Version: 2.6.0
6+
* Version: 2.6.1
77
* Author: Code Atlantic
88
* Author URI: https://code-atlantic.com/?utm_campaign=plugin-info&utm_source=php-file-header&utm_medium=plugin-ui&utm_content=author-uri
99
* Donate link: https://code-atlantic.com/donate/?utm_campaign=donations&utm_source=php-file-header&utm_medium=plugin-ui&utm_content=donate-link
@@ -30,7 +30,7 @@ function get_plugin_config() {
3030
return [
3131
'name' => 'Content Control',
3232
'slug' => 'content-control',
33-
'version' => '2.6.0',
33+
'version' => '2.6.1',
3434
'option_prefix' => 'content_control',
3535
// Maybe remove this and simply prefix `name` with `'Popup Maker'`.
3636
'text_domain' => 'content-control',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "content-control",
3-
"version": "2.6.0",
3+
"version": "2.6.1",
44
"description": "",
55
"author": "Code Atlantic LLC",
66
"license": "GPL-2.0-or-later",

readme.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Donate link: https://code-atlantic.com/donate/?utm_campaign=donations&utm_source
66
Tags: membership, access control, members only, content restriction, maintenance mode
77
Requires at least: 6.2
88
Tested up to: 6.7.2
9-
Stable tag: 2.6.0
9+
Stable tag: 2.6.1
1010
Requires PHP: 7.4
1111
License: GPLv3 (or later)
1212

@@ -110,6 +110,15 @@ Bugs can be reported either in our support forum or we are happy to accept PRs o
110110

111111
== Changelog ==
112112

113+
= v2.6.1 - 03/15/2025 =
114+
115+
* Improvement: Only fetch titles & ids when loading posts/taxonomy for the Restriction Editor. Reducing request overhead.
116+
* Improvement: Ensure taxonomies are also removed from search appropriately.
117+
* Improvement: Reduce memory footprint of overloaded object handling.
118+
* Tweak: Adjust rest intent when using search endpoint or arg for better detection.
119+
* Fix: Prevent undefined post type or taxonomy `public` arg from generating warning notices.
120+
* Fix: Prvent warnings due to translations being loaded too early.
121+
113122
= v2.6.0 - 03/11/2025 =
114123

115124
* Feature: Added new setting to control restricted content visibility in search results

0 commit comments

Comments
 (0)