@signalk/streams 1.19.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/s3.js +9 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signalk/streams",
3
- "version": "1.19.0",
3
+ "version": "2.0.0",
4
4
  "description": "Utilities for handling streams of Signal K data",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/s3.js CHANGED
@@ -15,7 +15,15 @@
15
15
  */
16
16
 
17
17
  var Transform = require('stream').Transform
18
- const AWS = require('aws-sdk')
18
+ /*
19
+ aws-sdk is not included in dependencies because of the
20
+ persistent deprecation warnings caused by its transitive
21
+ dependencies. This feature is not in wide use, especially
22
+ not in signalk-server where people encounter the scary looking
23
+ deprecation warnings.
24
+ Known to work with ^2.413.0
25
+ */
26
+ const AWS = require('aws-sdk')
19
27
  const debug = require('debug')('signalk:streams:s3-provider')
20
28
 
21
29
  function S3Provider ({ bucket, prefix }) {