File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 2
2
### Unreleased
3
3
4
4
5
+ ### [ 1.1.0] - 2022-06-23
6
+
7
+ - fix: boundary marker corruption issue haraka/Haraka #3068
8
+
9
+
10
+
5
11
## 1.0.0 - 2022-06-23
6
12
7
13
- Import from Haraka
8
14
- convert tests to mocha
9
15
16
+ [ 1.1.0 ] : https://github.com/haraka/message-stream/releases/tag/1.1.0
Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ class MessageStream extends Stream {
292
292
this . read_ce . fill ( line ) ;
293
293
}
294
294
// Check for data left in the buffer
295
- if ( buf . length > 0 ) {
295
+ if ( buf . length > 0 && this . headers_found_eoh ) {
296
296
this . read_ce . fill ( buf ) ;
297
297
}
298
298
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " haraka-message-stream" ,
3
- "version" : " 1.0 .0" ,
3
+ "version" : " 1.1 .0" ,
4
4
"description" : " Haraka message stream library" ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments