step-node-agent 3.25.1 → 3.25.3

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.
@@ -5,6 +5,21 @@ 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.15.0](https://github.com/inspect-js/is-core-module/compare/v2.14.0...v2.15.0) - 2024-07-17
9
+
10
+ ### Commits
11
+
12
+ - [New] add `node:sea` [`2819fb3`](https://github.com/inspect-js/is-core-module/commit/2819fb3eae312fa64643bc5430ebd06ec0f3fb88)
13
+
14
+ ## [v2.14.0](https://github.com/inspect-js/is-core-module/compare/v2.13.1...v2.14.0) - 2024-06-20
15
+
16
+ ### Commits
17
+
18
+ - [Dev Deps] update `@ljharb/eslint-config`, `aud`, `mock-property`, `npmignore`, `tape` [`0e43200`](https://github.com/inspect-js/is-core-module/commit/0e432006d97237cc082d41e6a593e87c81068364)
19
+ - [meta] add missing `engines.node` [`4ea3af8`](https://github.com/inspect-js/is-core-module/commit/4ea3af88891a1d4f96026f0ec0ef08c67cd1bd24)
20
+ - [New] add `test/mock_loader` [`e9fbd29`](https://github.com/inspect-js/is-core-module/commit/e9fbd2951383be070aeffb9ebbf3715237282610)
21
+ - [Deps] update `hasown` [`57f1940`](https://github.com/inspect-js/is-core-module/commit/57f1940947b3e368abdf529232d2f17d88909358)
22
+
8
23
  ## [v2.13.1](https://github.com/inspect-js/is-core-module/compare/v2.13.0...v2.13.1) - 2023-10-20
9
24
 
10
25
  ### Commits
@@ -89,6 +89,7 @@
89
89
  "node:readline/promises": ">= 17",
90
90
  "repl": true,
91
91
  "node:repl": [">= 14.18 && < 15", ">= 16"],
92
+ "node:sea": [">= 20.12 && < 21", ">= 21.7"],
92
93
  "smalloc": ">= 0.11.5 && < 3",
93
94
  "_stream_duplex": ">= 0.9.4",
94
95
  "node:_stream_duplex": [">= 14.18 && < 15", ">= 16"],
@@ -116,6 +117,8 @@
116
117
  "node:sys": [">= 14.18 && < 15", ">= 16"],
117
118
  "test/reporters": ">= 19.9 && < 20.2",
118
119
  "node:test/reporters": [">= 18.17 && < 19", ">= 19.9", ">= 20"],
120
+ "test/mock_loader": ">= 22.3",
121
+ "node:test/mock_loader": ">= 22.3",
119
122
  "node:test": [">= 16.17 && < 17", ">= 18"],
120
123
  "timers": true,
121
124
  "node:timers": [">= 14.18 && < 15", ">= 16"],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "is-core-module",
3
- "version": "2.13.1",
3
+ "version": "2.15.0",
4
4
  "description": "Is this specifier a node.js core module?",
5
5
  "main": "index.js",
6
6
  "sideEffects": false,
@@ -42,20 +42,20 @@
42
42
  },
43
43
  "homepage": "https://github.com/inspect-js/is-core-module",
44
44
  "dependencies": {
45
- "hasown": "^2.0.0"
45
+ "hasown": "^2.0.2"
46
46
  },
47
47
  "devDependencies": {
48
- "@ljharb/eslint-config": "^21.1.0",
49
- "aud": "^2.0.3",
48
+ "@ljharb/eslint-config": "^21.1.1",
49
+ "aud": "^2.0.4",
50
50
  "auto-changelog": "^2.4.0",
51
51
  "eslint": "=8.8.0",
52
52
  "in-publish": "^2.0.1",
53
- "mock-property": "^1.0.2",
54
- "npmignore": "^0.3.0",
53
+ "mock-property": "^1.0.3",
54
+ "npmignore": "^0.3.1",
55
55
  "nyc": "^10.3.2",
56
56
  "safe-publish-latest": "^2.0.0",
57
57
  "semver": "^6.3.1",
58
- "tape": "^5.7.1"
58
+ "tape": "^5.8.1"
59
59
  },
60
60
  "auto-changelog": {
61
61
  "output": "CHANGELOG.md",
@@ -69,5 +69,8 @@
69
69
  "ignore": [
70
70
  ".github"
71
71
  ]
72
+ },
73
+ "engines": {
74
+ "node": ">= 0.4"
72
75
  }
73
76
  }
@@ -83,10 +83,15 @@ test('core modules', function (t) {
83
83
  'v8/tools/tickprocessor',
84
84
  'v8/tools/profile'
85
85
  ];
86
+
86
87
  // see https://github.com/nodejs/node/issues/42785
87
88
  if (semver.satisfies(process.version, '>= 18')) {
88
89
  libs = libs.concat('node:test');
89
90
  }
91
+ if (semver.satisfies(process.version, '^20.12 || >= 21.7')) {
92
+ libs = libs.concat('node:sea');
93
+ }
94
+
90
95
  for (var i = 0; i < libs.length; ++i) {
91
96
  var mod = libs[i];
92
97
  if (excludeList.indexOf(mod) === -1) {
@@ -5,6 +5,21 @@ 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
+ ## [v1.13.2](https://github.com/inspect-js/object-inspect/compare/v1.13.1...v1.13.2) - 2024-06-21
9
+
10
+ ### Commits
11
+
12
+ - [readme] update badges [`8a51e6b`](https://github.com/inspect-js/object-inspect/commit/8a51e6bedaf389ec40cc4659e9df53e8543d176e)
13
+ - [Dev Deps] update `@ljharb/eslint-config`, `tape` [`ef05f58`](https://github.com/inspect-js/object-inspect/commit/ef05f58c9761a41416ab907299bf0fa79517014b)
14
+ - [Dev Deps] update `error-cause`, `has-tostringtag`, `tape` [`c0c6c26`](https://github.com/inspect-js/object-inspect/commit/c0c6c26c44cee6671f7c5d43d2b91d27c5c00d90)
15
+ - [Fix] Don't throw when `global` is not defined [`d4d0965`](https://github.com/inspect-js/object-inspect/commit/d4d096570f7dbd0e03266a96de11d05eb7b63e0f)
16
+ - [meta] add missing `engines.node` [`17a352a`](https://github.com/inspect-js/object-inspect/commit/17a352af6fe1ba6b70a19081674231eb1a50c940)
17
+ - [Dev Deps] update `globalthis` [`9c08884`](https://github.com/inspect-js/object-inspect/commit/9c08884aa662a149e2f11403f413927736b97da7)
18
+ - [Dev Deps] update `error-cause` [`6af352d`](https://github.com/inspect-js/object-inspect/commit/6af352d7c3929a4cc4c55768c27bf547a5e900f4)
19
+ - [Dev Deps] update `npmignore` [`94e617d`](https://github.com/inspect-js/object-inspect/commit/94e617d38831722562fa73dff4c895746861d267)
20
+ - [Dev Deps] update `mock-property` [`2ac24d7`](https://github.com/inspect-js/object-inspect/commit/2ac24d7e58cd388ad093c33249e413e05bbfd6c3)
21
+ - [Dev Deps] update `tape` [`46125e5`](https://github.com/inspect-js/object-inspect/commit/46125e58f1d1dcfb170ed3d1ea69da550ea8d77b)
22
+
8
23
  ## [v1.13.1](https://github.com/inspect-js/object-inspect/compare/v1.13.0...v1.13.1) - 2023-10-19
9
24
 
10
25
  ### Commits
@@ -244,7 +244,10 @@ module.exports = function inspect_(obj, options, depth, seen) {
244
244
  if (typeof window !== 'undefined' && obj === window) {
245
245
  return '{ [object Window] }';
246
246
  }
247
- if (obj === global) {
247
+ if (
248
+ (typeof globalThis !== 'undefined' && obj === globalThis)
249
+ || (typeof global !== 'undefined' && obj === global)
250
+ ) {
248
251
  return '{ [object globalThis] }';
249
252
  }
250
253
  if (!isDate(obj) && !isRegExp(obj)) {
@@ -1,31 +1,33 @@
1
1
  {
2
2
  "name": "object-inspect",
3
- "version": "1.13.1",
3
+ "version": "1.13.2",
4
4
  "description": "string representations of objects in node and the browser",
5
5
  "main": "index.js",
6
6
  "sideEffects": false,
7
7
  "devDependencies": {
8
- "@ljharb/eslint-config": "^21.1.0",
8
+ "@ljharb/eslint-config": "^21.1.1",
9
9
  "@pkgjs/support": "^0.0.6",
10
10
  "auto-changelog": "^2.4.0",
11
11
  "core-js": "^2.6.12",
12
- "error-cause": "^1.0.6",
12
+ "error-cause": "^1.0.8",
13
13
  "es-value-fixtures": "^1.4.2",
14
14
  "eslint": "=8.8.0",
15
15
  "for-each": "^0.3.3",
16
16
  "functions-have-names": "^1.2.3",
17
17
  "glob": "=10.3.7",
18
- "globalthis": "^1.0.3",
19
- "has-tostringtag": "^1.0.0",
18
+ "globalthis": "^1.0.4",
19
+ "has-symbols": "^1.0.3",
20
+ "has-tostringtag": "^1.0.2",
20
21
  "in-publish": "^2.0.1",
21
22
  "jackspeak": "=2.1.1",
22
23
  "make-arrow-function": "^1.2.0",
23
- "mock-property": "^1.0.2",
24
- "npmignore": "^0.3.0",
24
+ "mock-property": "^1.0.3",
25
+ "npmignore": "^0.3.1",
25
26
  "nyc": "^10.3.2",
26
27
  "safe-publish-latest": "^2.0.0",
28
+ "safer-buffer": "^2.1.2",
27
29
  "string.prototype.repeat": "^1.0.0",
28
- "tape": "^5.7.1"
30
+ "tape": "^5.8.1"
29
31
  },
30
32
  "scripts": {
31
33
  "prepack": "npmignore --auto --commentLines=autogenerated",
@@ -95,5 +97,8 @@
95
97
  "./test-core-js.js"
96
98
  ]
97
99
  },
98
- "support": true
100
+ "support": true,
101
+ "engines": {
102
+ "node": ">= 0.4"
103
+ }
99
104
  }
@@ -1,15 +1,13 @@
1
- # object-inspect <sup>[![Version Badge][2]][1]</sup>
1
+ # object-inspect <sup>[![Version Badge][npm-version-svg]][package-url]</sup>
2
2
 
3
3
  string representations of objects in node and the browser
4
4
 
5
5
  [![github actions][actions-image]][actions-url]
6
6
  [![coverage][codecov-image]][codecov-url]
7
- [![dependency status][5]][6]
8
- [![dev dependency status][7]][8]
9
7
  [![License][license-image]][license-url]
10
8
  [![Downloads][downloads-image]][downloads-url]
11
9
 
12
- [![npm badge][11]][1]
10
+ [![npm badge][npm-badge-png]][package-url]
13
11
 
14
12
  # example
15
13
 
@@ -69,13 +67,13 @@ npm install object-inspect
69
67
 
70
68
  MIT
71
69
 
72
- [1]: https://npmjs.org/package/object-inspect
73
- [2]: https://versionbadg.es/inspect-js/object-inspect.svg
74
- [5]: https://david-dm.org/inspect-js/object-inspect.svg
75
- [6]: https://david-dm.org/inspect-js/object-inspect
76
- [7]: https://david-dm.org/inspect-js/object-inspect/dev-status.svg
77
- [8]: https://david-dm.org/inspect-js/object-inspect#info=devDependencies
78
- [11]: https://nodei.co/npm/object-inspect.png?downloads=true&stars=true
70
+ [package-url]: https://npmjs.org/package/object-inspect
71
+ [npm-version-svg]: https://versionbadg.es/inspect-js/object-inspect.svg
72
+ [deps-svg]: https://david-dm.org/inspect-js/object-inspect.svg
73
+ [deps-url]: https://david-dm.org/inspect-js/object-inspect
74
+ [dev-deps-svg]: https://david-dm.org/inspect-js/object-inspect/dev-status.svg
75
+ [dev-deps-url]: https://david-dm.org/inspect-js/object-inspect#info=devDependencies
76
+ [npm-badge-png]: https://nodei.co/npm/object-inspect.png?downloads=true&stars=true
79
77
  [license-image]: https://img.shields.io/npm/l/object-inspect.svg
80
78
  [license-url]: LICENSE
81
79
  [downloads-image]: https://img.shields.io/npm/dm/object-inspect.svg
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "step-node-agent",
3
- "version": "3.25.1",
3
+ "version": "3.25.3",
4
4
  "description": "The official STEP Agent implementation for Node.js",
5
5
  "main": "index.js",
6
6
  "scripts": {