You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,23 @@
1
1
Changelog
2
2
=========
3
3
4
+
#### 0.6.1 (2014-08-22)
5
+
6
+
* The internal event emitter wasn't set up properly, causing errors about the upload stream object no having the .emit and/or .once methods. This bug impacted versions 0.5.0 and 0.6.0. Fixes issue #10.
7
+
4
8
#### 0.6.0 (2014-08-15)
5
9
6
10
* Fix for mismatch between documentation and reality in the maxPartSize() and concurrentParts() options.
7
11
* New feature: part size and concurrect part helpers can be chained now.
12
+
**Warning, this version has a critical bug. It is recommended that you use 0.6.1 instead*
8
13
9
14
### 0.5.0 (2014-08-11)
10
15
11
16
* Added client caching to reuse an existing s3 client rather than creating a new one for each upload. Fixes #6
12
17
* Updated the maxPartSize to be a hard limit instead of a soft one so that generated ETAG are consistent to to the reliable size of the uploaded parts. Fixes #7
13
18
* Added this file. Fixes #8
14
19
* New feature: concurrent part uploads. Now you can optionally enable concurrent part uploads if you wish to allow your application to drain the source stream more quickly and absorb some of the bottle neck when uploading to S3.
20
+
**Warning, this version has a critical bug. It is recommended that you use 0.6.1 instead*
Copy file name to clipboardExpand all lines: README.md
+2-10Lines changed: 2 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,17 +6,9 @@ A pipeable write stream which uploads to Amazon S3 using the multipart file uplo
6
6
7
7
### Changelog
8
8
9
-
#### 0.6.0 (2014-08-15)
9
+
#### 0.6.1 (2014-08-15)
10
10
11
-
* Fix for mismatch between documentation and reality in the maxPartSize() and concurrentParts() options.
12
-
* New feature: part size and concurrect part helpers can be chained now.
13
-
14
-
#### 0.5.0 (2014-08-11)
15
-
16
-
* Added client caching to reuse an existing s3 client rather than creating a new one for each upload. Fixes #6
17
-
* Updated the maxPartSize to be a hard limit instead of a soft one so that generated ETAG's are consistent due to the reliable size of the uploaded parts. Fixes #7
18
-
* Added a changelog.md file. Fixes #8
19
-
* New feature: concurrent part uploads. Now you can optionally enable concurrent part uploads if you wish to allow your application to drain the source stream more quickly and absorb some of the backpressure from a fast incoming stream when uploading to S3.
11
+
Fix for an issue with the internal event emitter being improperly attached. This issue caused crashs in v0.5.0 and v0.6.0, so it is recommended that you upgrade to v0.6.1 if you are using one of the affected versions.
0 commit comments