Varnish HTTP Purge - Version 5.1.2

Version Description

  • April 2022
  • Fix typo in readme
Download this release

Release Info

Developer Ipstenu
Plugin Icon 128x128 Varnish HTTP Purge
Version 5.1.2
Comparing to
See all releases

Code changes from version 5.1.1 to 5.1.2

Files changed (2) hide show
  1. readme.txt +7 -1
  2. varnish-http-purge.php +2 -2
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: Ipstenu, mikeschroder, techpriester, danielbachhuber
3
  Tags: proxy, purge, cache, varnish, nginx
4
  Requires at least: 5.0
5
  Tested up to: 6.0
6
- Stable tag: 5.1.1
7
  Requires PHP: 5.6
8
 
9
  Automatically empty proxy cached content when your site is modified.
@@ -247,9 +247,14 @@ This plugin is installed by default for _all_ DreamPress installs on DreamHost,
247
 
248
  == Changelog ==
249
 
 
 
 
 
250
  = 5.1.1 =
251
  * April 2022
252
  * Prevent two versions of the plugin from running at once.
 
253
 
254
  = 5.1 =
255
  * February 2022
@@ -268,3 +273,4 @@ This plugin is installed by default for _all_ DreamPress installs on DreamHost,
268
  5. Change Proxy IP address
269
  6. Activate Dev Mode
270
  7. Dev Mode Warning (24 hour notice)
 
3
  Tags: proxy, purge, cache, varnish, nginx
4
  Requires at least: 5.0
5
  Tested up to: 6.0
6
+ Stable tag: 5.1.2
7
  Requires PHP: 5.6
8
 
9
  Automatically empty proxy cached content when your site is modified.
247
 
248
  == Changelog ==
249
 
250
+ = 5.1.2 =
251
+ * April 2022
252
+ * Fix typo in readme
253
+
254
  = 5.1.1 =
255
  * April 2022
256
  * Prevent two versions of the plugin from running at once.
257
+ * Correct JSON
258
 
259
  = 5.1 =
260
  * February 2022
273
  5. Change Proxy IP address
274
  6. Activate Dev Mode
275
  7. Dev Mode Warning (24 hour notice)
276
+
varnish-http-purge.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Proxy Cache Purge
4
  * Plugin URI: https://github.com/ipstenu/varnish-http-purge/
5
  * Description: Automatically empty cached pages when content on your site is modified.
6
- * Version: 5.1.1
7
  * Author: Mika Epstein
8
  * Author URI: https://halfelf.org/
9
  * License: http://www.apache.org/licenses/LICENSE-2.0
@@ -1117,7 +1117,7 @@ if ( defined( 'WP_CLI' ) && WP_CLI ) {
1117
  }
1118
 
1119
  // Preventing people from forking this and hurting themselve by having two versions, though it may not work.
1120
- if ( ! class_exists( 'VarnishPurger' ) ) {
1121
  /*
1122
  * Settings Pages
1123
  *
3
  * Plugin Name: Proxy Cache Purge
4
  * Plugin URI: https://github.com/ipstenu/varnish-http-purge/
5
  * Description: Automatically empty cached pages when content on your site is modified.
6
+ * Version: 5.1.2
7
  * Author: Mika Epstein
8
  * Author URI: https://halfelf.org/
9
  * License: http://www.apache.org/licenses/LICENSE-2.0
1117
  }
1118
 
1119
  // Preventing people from forking this and hurting themselve by having two versions, though it may not work.
1120
+ if ( ! class_exists( 'VarnishStatus' ) ) {
1121
  /*
1122
  * Settings Pages
1123
  *