Skip to content

Commit 60bf21d

Browse files
committed
v1.19.1
1 parent 88fdc6e commit 60bf21d

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ Donate link: https://www.paypal.me/Dimitar81
66

77
Requires at least: 3.2
88

9-
Tested up to: 6.2.2
9+
Tested up to: 6.3.1
1010

1111
Requires PHP: 5.3
1212

13-
Stable tag: 1.19.0
13+
Stable tag: 1.19.1
1414

1515
License: GPLv2 or later
1616

@@ -81,6 +81,12 @@ These HTTP headers are being used in production services by popular websites as
8181
Updates are on they way, so stay tuned at [@DimitarIvanov](https://twitter.com/DimitarIvanov)
8282

8383
## Changelog
84+
#### 1.19.1
85+
*Release Date - 2nd September, 2023*
86+
87+
* Added "clientHints" directive to "Clear-Site-Data" header
88+
* Added "credentialless" directive to "Cross-Origin-Embedder-Policy" header
89+
8490
#### 1.19.0
8591
*Release Date - 7th July, 2023*
8692

http-headers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: HTTP Headers
44
Plugin URI: https://github.com/riverside/http-headers
55
Description: A plugin for HTTP headers management including security, access-control (CORS), caching, compression, and authentication.
6-
Version: 1.19.0
6+
Version: 1.19.1
77
Author: Dimitar Ivanov
88
Author URI: https://github.com/riverside
99
License: GPLv2 or later

views/clear-site-data.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
<?php
3030
$items = array(
3131
'cache' => 'bool',
32+
'clientHints' => 'bool',
3233
'cookies' => 'bool',
3334
'storage' => 'bool',
3435
'executionContexts' => 'bool',

views/cross-origin-embedder-policy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<?php do_settings_sections( 'http-headers-coep' ); ?>
2929
<select name="hh_cross_origin_embedder_policy_value" class="http-header-value"<?php echo $cross_origin_embedder_policy == 1 ? NULL : ' readonly'; ?>>
3030
<?php
31-
$items = array('unsafe-none', 'require-corp');
31+
$items = array('unsafe-none', 'require-corp', 'credentialless');
3232
$cross_origin_embedder_policy_value = get_option('hh_cross_origin_embedder_policy_value');
3333
foreach ($items as $item) {
3434
?><option value="<?php echo $item; ?>"<?php selected($cross_origin_embedder_policy_value, $item); ?>><?php echo $item; ?></option><?php

0 commit comments

Comments
 (0)