update to state of the art

This commit is contained in:
s2
2020-10-10 15:18:01 +02:00
parent cf251a170f
commit 4cdcfd167c
1526 changed files with 48132 additions and 7268 deletions

View File

@@ -1,6 +1,6 @@
ISC License
Copyright (c) 2019, Nicolai Kamenzky and contributors
Copyright (c) 2020, Nicolai Kamenzky and contributors
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above

View File

@@ -10,6 +10,14 @@
[![Dependency Status](https://img.shields.io/david/request/request-promise-native.svg?style=flat-square&maxAge=2592000)](https://david-dm.org/request/request-promise-native)
[![Known Vulnerabilities](https://snyk.io/test/npm/request-promise-native/badge.svg?style=flat-square&maxAge=2592000)](https://snyk.io/test/npm/request-promise-native)
# Deprecated!
As of Feb 11th 2020, [`request`](https://github.com/request/request) is fully deprecated. No new changes are expected to land. In fact, none have landed for some time. This package is also deprecated because it depends on `request`.
Fyi, here is the [reasoning of `request`'s deprecation](https://github.com/request/request/issues/3142) and a [list of alternative libraries](https://github.com/request/request/issues/3143).
---
This package is similar to [`request-promise`](https://www.npmjs.com/package/request-promise) but uses native ES6+ promises.
Please refer to the [`request-promise` documentation](https://www.npmjs.com/package/request-promise). Everything applies to `request-promise-native` except the following:
@@ -49,6 +57,8 @@ If you want to debug a test you should use `gulp test-without-coverage` to run a
## Change History
- v1.0.9 (2020-07-21)
- Security fix: bumped `request-promise-core` which bumps `lodash` to `^4.17.19` following [this advisory](https://www.npmjs.com/advisories/1523).
- v1.0.8 (2019-11-03)
- Security fix: bumped `request-promise-core` which bumps `lodash` to `^4.17.15`. See [vulnerabilty reports](https://snyk.io/vuln/search?q=lodash&type=npm).
*(Thanks to @aw-davidson for reporting this in issue [#49](https://github.com/request/request-promise-native/issues/49).)*

View File

@@ -1,33 +1,30 @@
{
"_args": [
[
"request-promise-native@1.0.8",
"D:\\Projects\\vanillajs-seed"
]
],
"_development": true,
"_from": "request-promise-native@1.0.8",
"_id": "request-promise-native@1.0.8",
"_from": "request-promise-native@^1.0.8",
"_id": "request-promise-native@1.0.9",
"_inBundle": false,
"_integrity": "sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ==",
"_integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==",
"_location": "/request-promise-native",
"_phantomChildren": {},
"_phantomChildren": {
"psl": "1.8.0",
"punycode": "2.1.1"
},
"_requested": {
"type": "version",
"type": "range",
"registry": true,
"raw": "request-promise-native@1.0.8",
"raw": "request-promise-native@^1.0.8",
"name": "request-promise-native",
"escapedName": "request-promise-native",
"rawSpec": "1.0.8",
"rawSpec": "^1.0.8",
"saveSpec": null,
"fetchSpec": "1.0.8"
"fetchSpec": "^1.0.8"
},
"_requiredBy": [
"/jsdom"
],
"_resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.8.tgz",
"_spec": "1.0.8",
"_where": "D:\\Projects\\vanillajs-seed",
"_resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz",
"_shasum": "e407120526a5efdc9a39b28a5679bf47b9d9dc28",
"_spec": "request-promise-native@^1.0.8",
"_where": "D:\\Projects\\vanillajs-seed\\node_modules\\jsdom",
"author": {
"name": "Nicolai Kamenzky",
"url": "https://github.com/analog-nico"
@@ -35,11 +32,13 @@
"bugs": {
"url": "https://github.com/request/request-promise-native/issues"
},
"bundleDependencies": false,
"dependencies": {
"request-promise-core": "1.1.3",
"request-promise-core": "1.1.4",
"stealthy-require": "^1.1.1",
"tough-cookie": "^2.3.3"
},
"deprecated": "request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142",
"description": "The simplified HTTP request client 'request' with Promise support. Powered by native ES6 promises.",
"devDependencies": {
"body-parser": "~1.15.2",
@@ -86,5 +85,5 @@
"test": "gulp ci",
"test-publish": "gulp ci-no-cov"
},
"version": "1.0.8"
"version": "1.0.9"
}