File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
15
15
16
16
### Fixed
17
17
18
+ ## [ 1.0.4] - 2024-08-08
19
+
20
+ ### Changed
21
+
22
+ - Changed max_header_size from 8000 to the Apache default of 8190.
23
+
18
24
## [ 1.0.3] - 2024-08-07
19
25
20
26
### Added
@@ -35,6 +41,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
35
41
36
42
## [ 1.0.0] - 2024-08-02
37
43
44
+ [ 1.0.4 ] : https://github.com/basecom/magento2-csp-split-header/compare/v1.0.3...v1.0.4
38
45
[ 1.0.3 ] : https://github.com/basecom/magento2-csp-split-header/compare/v1.0.2...v1.0.3
39
46
[ 1.0.2 ] : https://github.com/basecom/magento2-csp-split-header/compare/v1.0.1...v1.0.2
40
47
[ 1.0.1 ] : https://github.com/basecom/magento2-csp-split-header/compare/v1.0.0...v1.0.1
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ no longer exceed the maximum permitted length of the web server.
50
50
| Config | Default Value | Description |
51
51
|-------------------------------------------------------------|----------------|------------------------------------------------------------|
52
52
| `basecom_csp_split_header/settings/header_splitting_enable` | 0 _(disabled)_ | enables (1) / disables (0) the splitting of the CSP header |
53
- | `basecom_csp_split_header/settings/max_header_size` | 8000 | maximum allowed header size |
53
+ | `basecom_csp_split_header/settings/max_header_size` | 8190 | maximum allowed header field size |
54
54
55
55
These values can be updated in the system configuration under `Basecom -> Content Security Policy -> Enable`.
56
56
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " basecom/magento2-csp-split-header" ,
3
- "version" : " 1.0.3 " ,
3
+ "version" : " 1.0.4 " ,
4
4
"description" : " Magento 2 module to split oversized CSP headers into multiple headers." ,
5
5
"type" : " magento2-module" ,
6
6
"license" : [
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
- <config xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : noNamespaceSchemaLocation =" urn:magento:module:Magento_Store:etc/config.xsd" >
2
+ <config xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : noNamespaceSchemaLocation =" urn:magento:module:Magento_Store:etc/config.xsd" >
3
4
<default >
4
5
<basecom_csp_split_header >
5
6
<settings >
6
7
<header_splitting_enable >0</header_splitting_enable >
7
- <max_header_size >8000 </max_header_size >
8
+ <max_header_size >8190 </max_header_size >
8
9
</settings >
9
10
</basecom_csp_split_header >
10
11
</default >
You can’t perform that action at this time.
0 commit comments