Cloudflare - Version 3.0.2

Version Description

  • 2016-09-16 =

Fixed

  • Disabled HTTP/2 Server Push which was leading to 520 and 502 errors for some websites.
Download this release

Release Info

Developer furkan811
Plugin Icon 128x128 Cloudflare
Version 3.0.2
Comparing to
See all releases

Code changes from version 3.0.1 to 3.0.2

Files changed (4) hide show
  1. cloudflare.php +3 -2
  2. composer.json +1 -1
  3. config.js +1 -1
  4. readme.txt +7 -1
cloudflare.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: CloudFlare
4
  Plugin URI: http://www.cloudflare.com/wiki/CloudFlareWordPressPlugin
5
  Description: CloudFlare integrates your blog with the CloudFlare platform.
6
- Version: 3.0.1
7
  Author: John Wineman, Furkan Yilmaz, Junade Ali (CloudFlare Team)
8
  License: BSD-3-Clause
9
  */
@@ -36,4 +36,5 @@ add_action('wp_ajax_cloudflare_proxy', array('\CF\Hooks\Init', 'initProxy'));
36
  add_action('init', array('\CF\Hooks\AutomaticCache', 'init'));
37
 
38
  // Enable HTTP2 Server Push
39
- add_action('init', array('\CF\Hooks\HTTP2ServerPush', 'init'));
 
3
  Plugin Name: CloudFlare
4
  Plugin URI: http://www.cloudflare.com/wiki/CloudFlareWordPressPlugin
5
  Description: CloudFlare integrates your blog with the CloudFlare platform.
6
+ Version: 3.0.2
7
  Author: John Wineman, Furkan Yilmaz, Junade Ali (CloudFlare Team)
8
  License: BSD-3-Clause
9
  */
36
  add_action('init', array('\CF\Hooks\AutomaticCache', 'init'));
37
 
38
  // Enable HTTP2 Server Push
39
+ // Removed until the problems are indentified and fixed
40
+ // add_action('init', array('\CF\Hooks\HTTP2ServerPush', 'init'));
composer.json CHANGED
@@ -12,7 +12,7 @@
12
  "CF\\": "src/"
13
  }
14
  },
15
- "version": "3.0.1",
16
  "scripts": {
17
  "test": "vendor/bin/phpunit",
18
  "format": "vendor/bin/phpcs -n --standard=PSR2 --extensions=php,live.php src/",
12
  "CF\\": "src/"
13
  }
14
  },
15
+ "version": "3.0.2",
16
  "scripts": {
17
  "test": "vendor/bin/phpunit",
18
  "format": "vendor/bin/phpcs -n --standard=PSR2 --extensions=php,live.php src/",
config.js CHANGED
@@ -27,5 +27,5 @@
27
  "locale": "en",
28
  "integrationName": "wordpress",
29
  "useHostAPILogin": false,
30
- "version": "3.0.1"
31
  }
27
  "locale": "en",
28
  "integrationName": "wordpress",
29
  "useHostAPILogin": false,
30
+ "version": "3.0.2"
31
  }
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: jwineman, furkan811, IcyApril
3
  Tags: cloudflare, seo, ssl, ddos, speed, security, cdn, performance, free
4
  Requires at least: 3.4
5
  Tested up to: 4.6
6
- Stable tag: 3.0.1
7
  License: BSD-3-Clause
8
 
9
  All of CloudFlare’s performance and security benefits in a simple one-click install of recommended settings specifically developed for WordPress.
@@ -84,6 +84,12 @@ Make sure that the php5-curl extension is installed on your system.
84
 
85
  == Changelog ==
86
 
 
 
 
 
 
 
87
  = 3.0.1 - 2016-09-16 =
88
 
89
  *Fixed*
3
  Tags: cloudflare, seo, ssl, ddos, speed, security, cdn, performance, free
4
  Requires at least: 3.4
5
  Tested up to: 4.6
6
+ Stable tag: 3.0.2
7
  License: BSD-3-Clause
8
 
9
  All of CloudFlare’s performance and security benefits in a simple one-click install of recommended settings specifically developed for WordPress.
84
 
85
  == Changelog ==
86
 
87
+ = 3.0.2 - 2016-09-16 =
88
+
89
+ *Fixed*
90
+
91
+ * Disabled HTTP/2 Server Push which was leading to 520 and 502 errors for some websites.
92
+
93
  = 3.0.1 - 2016-09-16 =
94
 
95
  *Fixed*