Skip to content

Commit f8edc1e

Browse files
committed
Release v3.8.6
1 parent 22b988d commit f8edc1e

File tree

8 files changed

+34
-30
lines changed

8 files changed

+34
-30
lines changed

cloudflare.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Cloudflare
44
Plugin URI: https://blog.cloudflare.com/new-wordpress-plugin/
55
Description: Cloudflare speeds up and protects your WordPress site.
6-
Version: 3.8.5
6+
Version: 3.8.6
77
Author: Cloudflare, Inc.
88
License: BSD-3-Clause
99
*/

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"_comment": [
3131
"php-compatibility-install comes from https://github.com/wimg/PHPCompatibility/issues/102#issuecomment-255778195"
3232
],
33-
"version": "3.8.5",
33+
"version": "3.8.6",
3434
"config": {
3535
"platform": {
3636
"php": "5.6.40"

composer.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
},
2626
"locale": "en",
2727
"integrationName": "wordpress",
28-
"version": "3.8.5"
28+
"version": "3.8.6"
2929
}

readme.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: icyapril, manatarms, thillcf, deuill, epatryk
33
Tags: cloudflare, seo, ssl, ddos, speed, security, cdn, performance, free
44
Requires at least: 3.4
55
Tested up to: 5.5.1
6-
Stable tag: 3.8.5
6+
Stable tag: 3.8.6
77
License: BSD-3-Clause
88

99
All of Cloudflare’s performance and security benefits in a simple one-click install.
@@ -89,6 +89,10 @@ Yes, Cloudflare works with, and helps speed up your site even more, if you have
8989

9090
== Changelog ==
9191

92+
= 3.8.6 - 2020-11-19 =
93+
94+
* Add subdomain support for APO card
95+
9296
= 3.8.5 - 2020-10-15 =
9397

9498
* Added automatic purge cache on new comment

vendor/composer/installed.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1883,17 +1883,17 @@
18831883
},
18841884
{
18851885
"name": "symfony/polyfill-ctype",
1886-
"version": "v1.18.1",
1887-
"version_normalized": "1.18.1.0",
1886+
"version": "v1.19.0",
1887+
"version_normalized": "1.19.0.0",
18881888
"source": {
18891889
"type": "git",
18901890
"url": "https://github.com/symfony/polyfill-ctype.git",
1891-
"reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
1891+
"reference": "aed596913b70fae57be53d86faa2e9ef85a2297b"
18921892
},
18931893
"dist": {
18941894
"type": "zip",
1895-
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
1896-
"reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
1895+
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/aed596913b70fae57be53d86faa2e9ef85a2297b",
1896+
"reference": "aed596913b70fae57be53d86faa2e9ef85a2297b",
18971897
"shasum": ""
18981898
},
18991899
"require": {
@@ -1902,11 +1902,11 @@
19021902
"suggest": {
19031903
"ext-ctype": "For best performance"
19041904
},
1905-
"time": "2020-07-14T12:35:20+00:00",
1905+
"time": "2020-10-23T09:01:57+00:00",
19061906
"type": "library",
19071907
"extra": {
19081908
"branch-alias": {
1909-
"dev-master": "1.18-dev"
1909+
"dev-main": "1.19-dev"
19101910
},
19111911
"thanks": {
19121912
"name": "symfony/polyfill",

vendor/symfony/polyfill-ctype/bootstrap.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,35 +12,35 @@
1212
use Symfony\Polyfill\Ctype as p;
1313

1414
if (!function_exists('ctype_alnum')) {
15-
function ctype_alnum($text) { return p\Ctype::ctype_alnum($text); }
15+
function ctype_alnum($input) { return p\Ctype::ctype_alnum($input); }
1616
}
1717
if (!function_exists('ctype_alpha')) {
18-
function ctype_alpha($text) { return p\Ctype::ctype_alpha($text); }
18+
function ctype_alpha($input) { return p\Ctype::ctype_alpha($input); }
1919
}
2020
if (!function_exists('ctype_cntrl')) {
21-
function ctype_cntrl($text) { return p\Ctype::ctype_cntrl($text); }
21+
function ctype_cntrl($input) { return p\Ctype::ctype_cntrl($input); }
2222
}
2323
if (!function_exists('ctype_digit')) {
24-
function ctype_digit($text) { return p\Ctype::ctype_digit($text); }
24+
function ctype_digit($input) { return p\Ctype::ctype_digit($input); }
2525
}
2626
if (!function_exists('ctype_graph')) {
27-
function ctype_graph($text) { return p\Ctype::ctype_graph($text); }
27+
function ctype_graph($input) { return p\Ctype::ctype_graph($input); }
2828
}
2929
if (!function_exists('ctype_lower')) {
30-
function ctype_lower($text) { return p\Ctype::ctype_lower($text); }
30+
function ctype_lower($input) { return p\Ctype::ctype_lower($input); }
3131
}
3232
if (!function_exists('ctype_print')) {
33-
function ctype_print($text) { return p\Ctype::ctype_print($text); }
33+
function ctype_print($input) { return p\Ctype::ctype_print($input); }
3434
}
3535
if (!function_exists('ctype_punct')) {
36-
function ctype_punct($text) { return p\Ctype::ctype_punct($text); }
36+
function ctype_punct($input) { return p\Ctype::ctype_punct($input); }
3737
}
3838
if (!function_exists('ctype_space')) {
39-
function ctype_space($text) { return p\Ctype::ctype_space($text); }
39+
function ctype_space($input) { return p\Ctype::ctype_space($input); }
4040
}
4141
if (!function_exists('ctype_upper')) {
42-
function ctype_upper($text) { return p\Ctype::ctype_upper($text); }
42+
function ctype_upper($input) { return p\Ctype::ctype_upper($input); }
4343
}
4444
if (!function_exists('ctype_xdigit')) {
45-
function ctype_xdigit($text) { return p\Ctype::ctype_xdigit($text); }
45+
function ctype_xdigit($input) { return p\Ctype::ctype_xdigit($input); }
4646
}

vendor/symfony/polyfill-ctype/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"minimum-stability": "dev",
2929
"extra": {
3030
"branch-alias": {
31-
"dev-master": "1.18-dev"
31+
"dev-main": "1.19-dev"
3232
},
3333
"thanks": {
3434
"name": "symfony/polyfill",

0 commit comments

Comments
 (0)