File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,14 @@ All notable changes to this project will be documented in this file.
13
13
- ` mitre ` : Filters the rules by mitre requirement
14
14
- ` tsc ` : Filters the rules by tsc requirement
15
15
16
+ ## [ v3.13.0]
17
+
18
+ - Increase the maximum allowed size of the files to be uploaded from 1MB to 10MB. This change applies to:
19
+ * ` POST /manager/files `
20
+ * ` POST /cluster/:node_id/files `
21
+ * ` POST /agents/groups/:group_id/configuration `
22
+ * ` POST /agents/groups/:group_id/files/:file_name `
23
+
16
24
## [ v3.12.3]
17
25
18
26
There are no changes for Wazuh API in this version.
Original file line number Diff line number Diff line change @@ -167,8 +167,8 @@ if (config.python) {
167
167
// Body
168
168
app . use ( bodyParser . json ( ) ) ;
169
169
app . use ( bodyParser . urlencoded ( { extended : true } ) ) ;
170
- app . use ( bodyParser . text ( { type :"application/xml" , limit :"1mb " } ) ) ;
171
- app . use ( bodyParser . raw ( { type :"application/octet-stream" , limit :"1mb " } ) ) ;
170
+ app . use ( bodyParser . text ( { type :"application/xml" , limit :"10mb " } ) ) ;
171
+ app . use ( bodyParser . raw ( { type :"application/octet-stream" , limit :"10mb " } ) ) ;
172
172
173
173
174
174
/**
You can’t perform that action at this time.
0 commit comments