getstream
Advanced tools
Comparing version 6.1.2 to 6.1.3
@@ -8,2 +8,14 @@ # CHANGELOG | ||
## [6.1.2](https://github.com/GetStream/stream-js/releases/tag/v6.1.2) - 2020-09-03 | ||
### Fixed | ||
- Correct `AggregatedActivityEnriched` type ([#374](https://github.com/GetStream/stream-js/pull/374)). | ||
- Add `maxBodyLength: Infinity` option to axios file upload requests ([#375](https://github.com/GetStream/stream-js/pull/375)). | ||
### Chore | ||
- Bump dependencies ([#375](https://github.com/GetStream/stream-js/pull/375)). | ||
## [6.1.1](https://github.com/GetStream/stream-js/releases/tag/v6.1.1) - 2020-09-02 | ||
@@ -20,3 +32,3 @@ | ||
- Support follow counting ([#369](https://github.com/GetStream/stream-js/pull/369)). By default, | ||
only server side auth is allowed. Contact support to enable for client side auth support for specific feed groups. | ||
only server side auth is allowed. Contact support to enable for client side auth support for specific feed groups. | ||
@@ -23,0 +35,0 @@ ## [6.0.0](https://github.com/GetStream/stream-js/releases/tag/6.0.0) - 2020-08-26 |
@@ -513,3 +513,3 @@ "use strict"; | ||
if (options.enrich) { | ||
if (options.enrich !== undefined) { | ||
var result = options.enrich; | ||
@@ -516,0 +516,0 @@ delete options.enrich; |
@@ -14,3 +14,3 @@ { | ||
"license": "BSD-3-Clause", | ||
"version": "6.1.2", | ||
"version": "6.1.3", | ||
"scripts": { | ||
@@ -17,0 +17,0 @@ "transpile": "babel src --out-dir lib --extensions '.ts'", |
@@ -501,3 +501,3 @@ /// <reference path="../types/modules.d.ts" /> | ||
) { | ||
if (options.enrich) { | ||
if (options.enrich !== undefined) { | ||
const result = options.enrich; | ||
@@ -504,0 +504,0 @@ delete options.enrich; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
778313
15309