chantorak
chantorak
To allow using proxies, added the option to pass a hpagent instance to got.get
Added insertOne, marked insert as deprecated.
Using mongo: ``` etl.file('test.csv') .pipe(etl.csv()) .pipe(etl.collect(10)) .pipe(etl.mongo.insert(collection)); ``` Will result in: ``` (node:62919) DeprecationWarning: collection.insert is deprecated. Use insertOne, insertMany or bulkWrite instead. ```
# Issue ## Environment Binaries: Node: 16.15.1 - C:\Program Files\nodejs\node.EXE npm: 8.11.0 - C:\Program Files\nodejs\npm.CMD npmPackages: hapi-swagger: ^14.5.4 => 14.5.4 ## Steps to Reproduce ```js server.route({ method: 'POST', path: '/',...