newrelic 13.3.1 → 13.3.2
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 +28 -6
- package/lib/instrumentation/core/http-outbound.js +1 -1
- package/package.json +1 -1
package/NEWS.md
CHANGED
|
@@ -1,9 +1,30 @@
|
|
|
1
|
-
### v13.3.
|
|
2
|
-
|
|
3
|
-
#### Bug fixes
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
|
|
1
|
+
### v13.3.2 (2025-09-10)
|
|
2
|
+
|
|
3
|
+
#### Bug fixes
|
|
4
|
+
|
|
5
|
+
* Added defensive code for obtaining `protocol` in outbound http calls ([#3367](https://github.com/newrelic/node-newrelic/pull/3367)) ([ecda4e8](https://github.com/newrelic/node-newrelic/commit/ecda4e8fd3e2b4695bd900ba56f11babff186269))
|
|
6
|
+
|
|
7
|
+
#### Code refactoring
|
|
8
|
+
|
|
9
|
+
* Benchmark test names ([#3357](https://github.com/newrelic/node-newrelic/pull/3357)) ([229ff0d](https://github.com/newrelic/node-newrelic/commit/229ff0d1f1926ae937b8a1c54975c5ee8b1f0d2c))
|
|
10
|
+
|
|
11
|
+
#### Documentation
|
|
12
|
+
|
|
13
|
+
* Updated compatibility report ([#3351](https://github.com/newrelic/node-newrelic/pull/3351)) ([cf9f95d](https://github.com/newrelic/node-newrelic/commit/cf9f95db6339db793a15f9d19e2a29832bcb917e))
|
|
14
|
+
|
|
15
|
+
#### Continuous integration
|
|
16
|
+
|
|
17
|
+
* Benchmark tests run on push on main ([#3359](https://github.com/newrelic/node-newrelic/pull/3359)) ([c0f81c3](https://github.com/newrelic/node-newrelic/commit/c0f81c3562312c83330825c9c6fcdb969ab4da74))
|
|
18
|
+
* Changed NUGET_SOURCE workflow to variable ([#3364](https://github.com/newrelic/node-newrelic/pull/3364)) ([10692db](https://github.com/newrelic/node-newrelic/commit/10692db65ce0c3218d6ab2d494f0ab7f426ff817))
|
|
19
|
+
* Fix benchmark workflow ([#3365](https://github.com/newrelic/node-newrelic/pull/3365)) ([7da99b5](https://github.com/newrelic/node-newrelic/commit/7da99b5fd4c20d817222ffa66e08166f1c8a1785))
|
|
20
|
+
* Updated the `GH_RELEASE_TOKEN` to point to our bot user PAT instead of python agent ([#3363](https://github.com/newrelic/node-newrelic/pull/3363)) ([06eb5c1](https://github.com/newrelic/node-newrelic/commit/06eb5c1be0da5ffea4853e521223a711cc7b1805))
|
|
21
|
+
|
|
22
|
+
### v13.3.1 (2025-09-09)
|
|
23
|
+
|
|
24
|
+
#### Bug fixes
|
|
25
|
+
|
|
26
|
+
* Default `requestParameters` to an object to avoid crash in `transaction.addRequestParameters` ([#3361](https://github.com/newrelic/node-newrelic/pull/3361)) ([ecd0d1d](https://github.com/newrelic/node-newrelic/commit/ecd0d1db70f9e9b3011af08ffe99ea3d6d56def9))
|
|
27
|
+
|
|
7
28
|
### v13.3.0 (2025-09-08)
|
|
8
29
|
|
|
9
30
|
#### Features
|
|
@@ -7863,3 +7884,4 @@ Special thanks to Ryan Copley (@RyanCopley) for the contribution.
|
|
|
7863
7884
|
|
|
7864
7885
|
|
|
7865
7886
|
|
|
7887
|
+
|
|
@@ -269,7 +269,7 @@ function applySegment({ opts, makeRequest, host, port, hostname, segment, config
|
|
|
269
269
|
obfuscatedPath = request.path
|
|
270
270
|
}
|
|
271
271
|
|
|
272
|
-
const proto = parsed
|
|
272
|
+
const proto = parsed?.protocol || opts.protocol || 'http:'
|
|
273
273
|
|
|
274
274
|
segment.captureExternalAttributes({
|
|
275
275
|
protocol: proto,
|