File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
All notable changes to this project will be documented in this file.
3
3
4
+ ## [ 0.1.0] - 2023-09-06
5
+ #### Fixed
6
+ * HSTS set to 1 year instead of 2 years by default (#18 )
7
+ * New default ` X-XSS-Protection: 0 ` , see #19
8
+
4
9
## [ 0.0.11] - 2022-03-18
5
10
#### Fixed
6
11
* Sending HSTS header no longer requires building with OpenSSL #12
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Connection: keep-alive
27
27
X-Content-Type-Options: nosniff
28
28
X-XSS-Protection: 0
29
29
Referrer-Policy: strict-origin-when-cross-origin
30
- Strict-Transport-Security: max-age=63072000 ; includeSubDomains; preload</b >
30
+ Strict-Transport-Security: max-age=31536000 ; includeSubDomains; preload</b >
31
31
</pre >
32
32
33
33
In general, the module features sending security HTTP headers in a way that better conforms to the standards.
You can’t perform that action at this time.
0 commit comments