Skip to content

Commit 6946181

Browse files
Merge pull request #373 from rtCamp/release/2.3.0
[v2.3.0] Bump Plugin Version and Update Readme Files
2 parents d60281e + 3503b75 commit 6946181

File tree

6 files changed

+221
-110
lines changed

6 files changed

+221
-110
lines changed

README.md

+33-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
**Requires at least:** 3.0
99

10-
**Tested up to:** 6.1
10+
**Tested up to:** 6.7
1111

12-
**Stable tag:** 2.2.5
12+
**Stable tag:** 2.3.0
1313

1414
**License:** GPLv2 or later (of-course)
1515

@@ -113,6 +113,18 @@ define( 'RT_WP_NGINX_HELPER_REDIS_PORT', '6000' );
113113
define( 'RT_WP_NGINX_HELPER_REDIS_PREFIX', 'page-cache:' );
114114
```
115115

116+
**Q. Can I override the redis socket path, username, password?**
117+
118+
Yes, you can force override the redis socket path, username, password by defining constant in wp-config.php. For example:
119+
120+
```php
121+
define( 'RT_WP_NGINX_HELPER_REDIS_UNIX_SOCKET', '/var/run/redis/redis.sock' );
122+
123+
define( 'RT_WP_NGINX_HELPER_REDIS_USERNAME', 'admin' );
124+
125+
define( 'RT_WP_NGINX_HELPER_REDIS_PASSWORD', 'admin' );
126+
```
127+
116128
### FAQ - Nginx Map ###
117129

118130
**Q. My multisite already uses `WPMU_ACCEL_REDIRECT`. Do I still need Nginx Map?**
@@ -123,6 +135,16 @@ Definitely. `WPMU_ACCEL_REDIRECT` reduces the load on PHP, but it still ask Word
123135

124136
Most likely yes. A wordpress plugin, if not using explicitly any Apache-only mod, should work on Nginx. Some plugin may need some extra work.
125137

138+
139+
### FAQ - WP-CLI ###
140+
141+
**Q. How can I update the options using WP-CLI?**
142+
143+
```shell
144+
wp option patch update rt_wp_nginx_helper_options <option_name> <option_value>
145+
```
146+
147+
126148
### Still need help! ###
127149

128150
Please post your problem in [our free support forum](https://github.com/rtCamp/nginx-helper/issues).
@@ -139,6 +161,15 @@ Please post your problem in [our free support forum](https://github.com/rtCamp/n
139161

140162
## Changelog ##
141163

164+
### 2.3.0 ###
165+
166+
* Disable the purge functionality when importing data. [#52](https://github.com/rtCamp/nginx-helper/pull/52) - by [Vedant Gandhi](https://github.com/Vedant-Gandhi)
167+
* Added option to preload cache for all Post and Pages. [#47](https://github.com/rtCamp/nginx-helper/pull/47) - by [Vedant Gandhi](https://github.com/Vedant-Gandhi)
168+
* Added the capability to purge Amp URL's. [#135](https://github.com/rtCamp/nginx-helper/pull/135) - by [Vedant Gandhi](https://github.com/Vedant-Gandhi)
169+
* Add support for adding Username, Password support for Redis. It also includes the support for Unix Socket Path for Redis along with Database selection. [#343](https://github.com/rtCamp/nginx-helper/pull/343),[#350](https://github.com/rtCamp/nginx-helper/pull/350) - by [Vedant Gandhi](https://github.com/Vedant-Gandhi)
170+
* Add capability to allow modifying options using WP-CLI. [#307](https://github.com/rtCamp/nginx-helper/pull/307) - by [Vedant Gandhi](https://github.com/Vedant-Gandhi)
171+
* Fix the plugin crash issue due to internationalization after upgrading to WordPress Version 6.7. [#364](https://github.com/rtCamp/nginx-helper/pull/364) - by [Vedant Gandhi](https://github.com/Vedant-Gandhi)
172+
142173
### 2.2.5 ###
143174

144175
* Add the capability to enable/disable purging of feeds. [#281](https://github.com/rtCamp/nginx-helper/issues/281) - by [Amaan Khan](https://github.com/pathan-amaankhan)

includes/class-nginx-helper.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class Nginx_Helper {
7777
public function __construct() {
7878

7979
$this->plugin_name = 'nginx-helper';
80-
$this->version = '2.2.5';
80+
$this->version = '2.3.0';
8181
$this->minimum_wp = '3.0';
8282

8383
if ( ! $this->required_wp_version() ) {

languages/nginx-helper.mo

1 Byte
Binary file not shown.

0 commit comments

Comments
 (0)