@instana/shared-metrics 4.31.0 → 5.0.1
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/CHANGELOG.md +35 -0
- package/package.json +6 -3
- package/addons/linux/arm64/glibc/120/event-loop-stats.tar.gz +0 -0
- package/addons/linux/arm64/glibc/120/gcstats.js.tar.gz +0 -0
- package/addons/linux/arm64/glibc/131/event-loop-stats.tar.gz +0 -0
- package/addons/linux/arm64/glibc/131/gcstats.js.tar.gz +0 -0
- package/addons/linux/arm64/musl/120/event-loop-stats.tar.gz +0 -0
- package/addons/linux/arm64/musl/120/gcstats.js.tar.gz +0 -0
- package/addons/linux/arm64/musl/131/event-loop-stats.tar.gz +0 -0
- package/addons/linux/arm64/musl/131/gcstats.js.tar.gz +0 -0
- package/addons/linux/s390x/glibc/120/event-loop-stats.tar.gz +0 -0
- package/addons/linux/s390x/glibc/120/gcstats.js.tar.gz +0 -0
- package/addons/linux/s390x/glibc/131/event-loop-stats.tar.gz +0 -0
- package/addons/linux/s390x/glibc/131/gcstats.js.tar.gz +0 -0
- package/addons/linux/x64/glibc/120/event-loop-stats.tar.gz +0 -0
- package/addons/linux/x64/glibc/120/gcstats.js.tar.gz +0 -0
- package/addons/linux/x64/glibc/131/event-loop-stats.tar.gz +0 -0
- package/addons/linux/x64/glibc/131/gcstats.js.tar.gz +0 -0
- package/addons/linux/x64/musl/120/event-loop-stats.tar.gz +0 -0
- package/addons/linux/x64/musl/120/gcstats.js.tar.gz +0 -0
- package/addons/linux/x64/musl/131/event-loop-stats.tar.gz +0 -0
- package/addons/linux/x64/musl/131/gcstats.js.tar.gz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [5.0.1](https://github.com/instana/nodejs/compare/v5.0.0...v5.0.1) (2025-12-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instana/shared-metrics
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [5.0.0](https://github.com/instana/nodejs/compare/v4.31.0...v5.0.0) (2025-12-16)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* enforced Node.js 18.19 as the minimum supported version ([#2151](https://github.com/instana/nodejs/issues/2151)) ([5d688e2](https://github.com/instana/nodejs/commit/5d688e22ff03a6e4721a0363011002801a1ee045))
|
|
20
|
+
* removed prebuilds for non-lts versions ([#2148](https://github.com/instana/nodejs/issues/2148)) ([2f32603](https://github.com/instana/nodejs/commit/2f32603e53fe546a3a9d07eba4f2dd9b02160c83))
|
|
21
|
+
* removed support for experimental loader flag ([#2153](https://github.com/instana/nodejs/issues/2153)) ([7e9a24a](https://github.com/instana/nodejs/commit/7e9a24a60b5afd0c73b3213df0f033d6554e388d))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### BREAKING CHANGES
|
|
25
|
+
|
|
26
|
+
* Dropped support for Node.js versions below 18.19
|
|
27
|
+
* - Removed support for --experimental-loader
|
|
28
|
+
- Removed support for esm-loader.mjs
|
|
29
|
+
|
|
30
|
+
Migration Recommendations:
|
|
31
|
+
|
|
32
|
+
- Replace --experimental-loader with --import
|
|
33
|
+
- Use esm-register.mjs instead of esm-loader.mjs
|
|
34
|
+
|
|
35
|
+
e.g. --import /path/to/instana/node_modules/@instana/collector/esm-register.mjs
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
# [4.31.0](https://github.com/instana/nodejs/compare/v4.30.1...v4.31.0) (2025-12-08)
|
|
7
42
|
|
|
8
43
|
**Note:** Version bump only for package @instana/shared-metrics
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instana/shared-metrics",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"description": "Internal metrics plug-in package for Node.js monitoring with Instana",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Bastian Krol",
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
"addons/linux",
|
|
14
14
|
"CHANGELOG.md"
|
|
15
15
|
],
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=18.19.0"
|
|
18
|
+
},
|
|
16
19
|
"publishConfig": {
|
|
17
20
|
"access": "public"
|
|
18
21
|
},
|
|
@@ -59,7 +62,7 @@
|
|
|
59
62
|
},
|
|
60
63
|
"license": "MIT",
|
|
61
64
|
"dependencies": {
|
|
62
|
-
"@instana/core": "
|
|
65
|
+
"@instana/core": "5.0.1",
|
|
63
66
|
"detect-libc": "^2.1.2",
|
|
64
67
|
"event-loop-lag": "^1.4.0",
|
|
65
68
|
"semver": "^7.7.3",
|
|
@@ -72,5 +75,5 @@
|
|
|
72
75
|
"event-loop-stats": "1.4.1",
|
|
73
76
|
"gcstats.js": "1.0.0"
|
|
74
77
|
},
|
|
75
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "77fa60d1e6d88a852540f0e88ff3a8b2e36826ac"
|
|
76
79
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|