newrelic 12.18.2 → 12.20.0
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/NEWS.md +43 -0
- package/THIRD_PARTY_NOTICES.md +674 -25
- package/lib/agent.js +5 -15
- package/lib/collector/facts.js +5 -1
- package/lib/config/default.js +21 -0
- package/lib/context-manager/context.js +1 -1
- package/lib/instrumentation/@azure/functions.js +10 -4
- package/lib/instrumentation/core/http.js +6 -0
- package/lib/instrumentation/redis.js +1 -0
- package/lib/otel/bootstrap-metrics.js +58 -0
- package/lib/otel/context.js +7 -3
- package/lib/otel/fake-span.js +4 -4
- package/lib/otel/sampler.js +32 -0
- package/lib/otel/segments/consumer.js +6 -0
- package/lib/otel/segments/server.js +6 -0
- package/lib/otel/setup.js +25 -3
- package/lib/serverless/aws-lambda.js +15 -2
- package/lib/shimmer.js +3 -2
- package/lib/utilization/common.js +11 -4
- package/lib/utilization/gcp-info.js +13 -9
- package/package.json +6 -2
package/NEWS.md
CHANGED
|
@@ -1,3 +1,46 @@
|
|
|
1
|
+
### v12.20.0 (2025-05-27)
|
|
2
|
+
|
|
3
|
+
#### Features
|
|
4
|
+
|
|
5
|
+
* Added support for OTEL metrics API ([#3109](https://github.com/newrelic/node-newrelic/pull/3109)) ([4a57721](https://github.com/newrelic/node-newrelic/commit/4a5772142817afd7ffda0659bad5c9328263fbd0))
|
|
6
|
+
|
|
7
|
+
#### Bug fixes
|
|
8
|
+
|
|
9
|
+
* Fixed common.getKeys logic ([#3114](https://github.com/newrelic/node-newrelic/pull/3114)) ([01d4fa5](https://github.com/newrelic/node-newrelic/commit/01d4fa586e0bc9d9eefdbc416d94f8e4b2ad6504))
|
|
10
|
+
* Fixed Google Cloud Run hostname issue ([#3111](https://github.com/newrelic/node-newrelic/pull/3111)) ([e233fb7](https://github.com/newrelic/node-newrelic/commit/e233fb722760a7683a78145d2953d40b22a27f3a))
|
|
11
|
+
|
|
12
|
+
#### Documentation
|
|
13
|
+
|
|
14
|
+
* Updated compatibility report ([#3106](https://github.com/newrelic/node-newrelic/pull/3106)) ([3c47406](https://github.com/newrelic/node-newrelic/commit/3c47406257ee76d47a878bb71bce902e11211e3a))
|
|
15
|
+
|
|
16
|
+
#### Miscellaneous chores
|
|
17
|
+
|
|
18
|
+
* Added event source type to txn name for Lambda APM Mode ([#3110](https://github.com/newrelic/node-newrelic/pull/3110)) ([ddc2e2a](https://github.com/newrelic/node-newrelic/commit/ddc2e2ad962d72c0dd99f0c16436e7f64e23dce0))
|
|
19
|
+
|
|
20
|
+
### v12.19.0 (2025-05-20)
|
|
21
|
+
|
|
22
|
+
#### Features
|
|
23
|
+
|
|
24
|
+
* Added Azure Function HTTP streaming support ([#3070](https://github.com/newrelic/node-newrelic/pull/3070)) ([9865e1c](https://github.com/newrelic/node-newrelic/commit/9865e1c4d47c2a41fef20f83eb810eee8559bea2))
|
|
25
|
+
|
|
26
|
+
#### Code refactoring
|
|
27
|
+
|
|
28
|
+
* Added check to only set a FakeSpan if `transaction.agent.otelSpanKey` exists ([#3071](https://github.com/newrelic/node-newrelic/pull/3071)) ([b0c1ac1](https://github.com/newrelic/node-newrelic/commit/b0c1ac141be17e4aa1d845a810e60743dc08863d))
|
|
29
|
+
|
|
30
|
+
#### Documentation
|
|
31
|
+
|
|
32
|
+
* Updated compatibility report ([#3074](https://github.com/newrelic/node-newrelic/pull/3074)) ([7dc9aad](https://github.com/newrelic/node-newrelic/commit/7dc9aad20a1cf201de9dd946913daab8e3d23e54))
|
|
33
|
+
|
|
34
|
+
#### Miscellaneous chores
|
|
35
|
+
|
|
36
|
+
* Fixed `redis` legacy test suite ([#3077](https://github.com/newrelic/node-newrelic/pull/3077)) ([ec39925](https://github.com/newrelic/node-newrelic/commit/ec399254d277e36e1120dcf43542819f1ce8d475))
|
|
37
|
+
* Updated security agent ([#3098](https://github.com/newrelic/node-newrelic/pull/3098)) ([48ed8cb](https://github.com/newrelic/node-newrelic/commit/48ed8cb53f5331966bb39065f1b157754a51414e))
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
#### Tests
|
|
41
|
+
|
|
42
|
+
* Added cross agent otel bridge tests ([#3057](https://github.com/newrelic/node-newrelic/pull/3057)) ([1526bed](https://github.com/newrelic/node-newrelic/commit/1526bed9cf0f99481cf26ded2ebd43a0fcd720ae))
|
|
43
|
+
|
|
1
44
|
### v12.18.2 (2025-04-30)
|
|
2
45
|
|
|
3
46
|
#### Bug fixes
|