step-node-agent 3.22.2 → 3.22.4
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.
- package/node_modules/has/package.json +1 -4
- package/node_modules/has/src/index.js +5 -2
- package/node_modules/has/test/index.js +6 -0
- package/node_modules/is-core-module/CHANGELOG.md +7 -0
- package/node_modules/is-core-module/core.json +3 -3
- package/node_modules/is-core-module/package.json +5 -5
- package/node_modules/resolve/bin/resolve +1 -1
- package/node_modules/resolve/lib/core.js +1 -3
- package/node_modules/resolve/lib/core.json +4 -4
- package/node_modules/resolve/package.json +7 -7
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "has",
|
|
3
3
|
"description": "Object.prototype.hasOwnProperty.call shortcut",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.4",
|
|
5
5
|
"homepage": "https://github.com/tarruda/has",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Thiago de Arruda",
|
|
@@ -29,9 +29,6 @@
|
|
|
29
29
|
}
|
|
30
30
|
],
|
|
31
31
|
"main": "./src",
|
|
32
|
-
"dependencies": {
|
|
33
|
-
"function-bind": "^1.1.1"
|
|
34
|
-
},
|
|
35
32
|
"devDependencies": {
|
|
36
33
|
"@ljharb/eslint-config": "^12.2.1",
|
|
37
34
|
"eslint": "^4.19.1",
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var hasOwnProperty = {}.hasOwnProperty;
|
|
4
|
+
var call = Function.prototype.call;
|
|
4
5
|
|
|
5
|
-
module.exports =
|
|
6
|
+
module.exports = call.bind ? call.bind(hasOwnProperty) : function (O, P) {
|
|
7
|
+
return call.call(hasOwnProperty, O, P);
|
|
8
|
+
};
|
|
@@ -6,5 +6,11 @@ var has = require('../');
|
|
|
6
6
|
test('has', function (t) {
|
|
7
7
|
t.equal(has({}, 'hasOwnProperty'), false, 'object literal does not have own property "hasOwnProperty"');
|
|
8
8
|
t.equal(has(Object.prototype, 'hasOwnProperty'), true, 'Object.prototype has own property "hasOwnProperty"');
|
|
9
|
+
t['throws'](function () {
|
|
10
|
+
has(null, 'throws');
|
|
11
|
+
}, TypeError, 'calling has on null throws TypeError');
|
|
12
|
+
t['throws'](function () {
|
|
13
|
+
has(void 0, 'throws');
|
|
14
|
+
}, TypeError, 'calling has on undefined throws TypeError');
|
|
9
15
|
t.end();
|
|
10
16
|
});
|
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [v2.13.0](https://github.com/inspect-js/is-core-module/compare/v2.12.1...v2.13.0) - 2023-08-05
|
|
9
|
+
|
|
10
|
+
### Commits
|
|
11
|
+
|
|
12
|
+
- [Dev Deps] update `@ljharb/eslint-config`, `aud`, `semver`, `tape` [`c75b263`](https://github.com/inspect-js/is-core-module/commit/c75b263d047cb53430c3970107e5eb64d6cd6c0c)
|
|
13
|
+
- [New] `node:test/reporters` and `wasi`/`node:wasi` are in v18.17 [`d76cbf8`](https://github.com/inspect-js/is-core-module/commit/d76cbf8e9b208acfd98913fed5a5f45cb15fe5dc)
|
|
14
|
+
|
|
8
15
|
## [v2.12.1](https://github.com/inspect-js/is-core-module/compare/v2.12.0...v2.12.1) - 2023-05-16
|
|
9
16
|
|
|
10
17
|
### Commits
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
"sys": [">= 0.4 && < 0.7", ">= 0.8"],
|
|
116
116
|
"node:sys": [">= 14.18 && < 15", ">= 16"],
|
|
117
117
|
"test/reporters": ">= 19.9 && < 20.2",
|
|
118
|
-
"node:test/reporters": [">= 19.9", ">= 20"],
|
|
118
|
+
"node:test/reporters": [">= 18.17 && < 19", ">= 19.9", ">= 20"],
|
|
119
119
|
"node:test": [">= 16.17 && < 17", ">= 18"],
|
|
120
120
|
"timers": true,
|
|
121
121
|
"node:timers": [">= 14.18 && < 15", ">= 16"],
|
|
@@ -149,8 +149,8 @@
|
|
|
149
149
|
"node:v8": [">= 14.18 && < 15", ">= 16"],
|
|
150
150
|
"vm": true,
|
|
151
151
|
"node:vm": [">= 14.18 && < 15", ">= 16"],
|
|
152
|
-
"wasi": [">= 13.4 && < 13.5", ">= 20"],
|
|
153
|
-
"node:wasi": ">= 20",
|
|
152
|
+
"wasi": [">= 13.4 && < 13.5", ">= 18.17 && < 19", ">= 20"],
|
|
153
|
+
"node:wasi": [">= 18.17 && < 19", ">= 20"],
|
|
154
154
|
"worker_threads": ">= 11.7",
|
|
155
155
|
"node:worker_threads": [">= 14.18 && < 15", ">= 16"],
|
|
156
156
|
"zlib": ">= 0.5",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "is-core-module",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.13.0",
|
|
4
4
|
"description": "Is this specifier a node.js core module?",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"has": "^1.0.3"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@ljharb/eslint-config": "^21.0
|
|
49
|
-
"aud": "^2.0.
|
|
48
|
+
"@ljharb/eslint-config": "^21.1.0",
|
|
49
|
+
"aud": "^2.0.3",
|
|
50
50
|
"auto-changelog": "^2.4.0",
|
|
51
51
|
"eslint": "=8.8.0",
|
|
52
52
|
"in-publish": "^2.0.1",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"npmignore": "^0.3.0",
|
|
55
55
|
"nyc": "^10.3.2",
|
|
56
56
|
"safe-publish-latest": "^2.0.0",
|
|
57
|
-
"semver": "^6.3.
|
|
58
|
-
"tape": "^5.6.
|
|
57
|
+
"semver": "^6.3.1",
|
|
58
|
+
"tape": "^5.6.6"
|
|
59
59
|
},
|
|
60
60
|
"auto-changelog": {
|
|
61
61
|
"output": "CHANGELOG.md",
|
|
@@ -11,7 +11,7 @@ if (
|
|
|
11
11
|
!process.argv
|
|
12
12
|
|| process.argv.length < 2
|
|
13
13
|
|| (process.argv[1] !== __filename && fs.statSync(process.argv[1]).ino !== fs.statSync(__filename).ino)
|
|
14
|
-
|| (process.env._ && path.resolve(process.env._) !== __filename)
|
|
14
|
+
|| (process.env.npm_lifecycle_event !== 'npx' && process.env._ && fs.realpathSync(path.resolve(process.env._)) !== __filename)
|
|
15
15
|
)
|
|
16
16
|
) {
|
|
17
17
|
console.error('Error: `resolve` must be run directly as an executable');
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var isCoreModule = require('is-core-module');
|
|
4
|
-
var
|
|
5
|
-
var fs = require('fs');
|
|
6
|
-
var data = JSON.parse(String(fs.readFileSync(path.join(path.dirname(require.resolve('is-core-module/package.json')), 'core.json'))));
|
|
4
|
+
var data = require('./core.json');
|
|
7
5
|
|
|
8
6
|
var core = {};
|
|
9
7
|
for (var mod in data) { // eslint-disable-line no-restricted-syntax
|
|
@@ -114,8 +114,8 @@
|
|
|
114
114
|
"node:string_decoder": [">= 14.18 && < 15", ">= 16"],
|
|
115
115
|
"sys": [">= 0.4 && < 0.7", ">= 0.8"],
|
|
116
116
|
"node:sys": [">= 14.18 && < 15", ">= 16"],
|
|
117
|
-
"test/reporters":
|
|
118
|
-
"node:test/reporters": [">= 19.9", ">= 20"],
|
|
117
|
+
"test/reporters": ">= 19.9 && < 20.2",
|
|
118
|
+
"node:test/reporters": [">= 18.17 && < 19", ">= 19.9", ">= 20"],
|
|
119
119
|
"node:test": [">= 16.17 && < 17", ">= 18"],
|
|
120
120
|
"timers": true,
|
|
121
121
|
"node:timers": [">= 14.18 && < 15", ">= 16"],
|
|
@@ -149,8 +149,8 @@
|
|
|
149
149
|
"node:v8": [">= 14.18 && < 15", ">= 16"],
|
|
150
150
|
"vm": true,
|
|
151
151
|
"node:vm": [">= 14.18 && < 15", ">= 16"],
|
|
152
|
-
"wasi": [">= 13.4 && < 13.5", ">= 20"],
|
|
153
|
-
"node:wasi": ">= 20",
|
|
152
|
+
"wasi": [">= 13.4 && < 13.5", ">= 18.17 && < 19", ">= 20"],
|
|
153
|
+
"node:wasi": [">= 18.17 && < 19", ">= 20"],
|
|
154
154
|
"worker_threads": ">= 11.7",
|
|
155
155
|
"node:worker_threads": [">= 14.18 && < 15", ">= 16"],
|
|
156
156
|
"zlib": ">= 0.5",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "resolve",
|
|
3
3
|
"description": "resolve like require.resolve() on behalf of files asynchronously and synchronously",
|
|
4
|
-
"version": "1.22.
|
|
4
|
+
"version": "1.22.6",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git://github.com/browserify/resolve.git"
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@ljharb/eslint-config": "^21.0
|
|
34
|
-
"array.prototype.map": "^1.0.
|
|
35
|
-
"aud": "^2.0.
|
|
33
|
+
"@ljharb/eslint-config": "^21.1.0",
|
|
34
|
+
"array.prototype.map": "^1.0.6",
|
|
35
|
+
"aud": "^2.0.3",
|
|
36
36
|
"copy-dir": "^1.3.0",
|
|
37
37
|
"eclint": "^2.8.1",
|
|
38
38
|
"eslint": "=8.8.0",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"object-keys": "^1.1.1",
|
|
44
44
|
"rimraf": "^2.7.1",
|
|
45
45
|
"safe-publish-latest": "^2.0.0",
|
|
46
|
-
"semver": "^6.3.
|
|
46
|
+
"semver": "^6.3.1",
|
|
47
47
|
"tap": "0.4.13",
|
|
48
|
-
"tape": "^5.6.
|
|
48
|
+
"tape": "^5.6.6",
|
|
49
49
|
"tmp": "^0.0.31"
|
|
50
50
|
},
|
|
51
51
|
"license": "MIT",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"url": "https://github.com/sponsors/ljharb"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"is-core-module": "^2.
|
|
61
|
+
"is-core-module": "^2.13.0",
|
|
62
62
|
"path-parse": "^1.0.7",
|
|
63
63
|
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
64
64
|
},
|