newrelic 13.19.2 → 14.0.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.
Files changed (111) hide show
  1. package/NEWS.md +115 -0
  2. package/THIRD_PARTY_NOTICES.md +82 -345
  3. package/api.js +85 -0
  4. package/lib/agent.js +12 -9
  5. package/lib/attributes.js +1 -2
  6. package/lib/collector/api.js +2 -20
  7. package/lib/collector/http-agents.js +4 -1
  8. package/lib/collector/remote-method.js +3 -1
  9. package/lib/config/default.js +43 -21
  10. package/lib/config/index.js +20 -190
  11. package/lib/context-manager/async-local-context-manager.js +3 -9
  12. package/lib/db/statement-matcher.js +1 -1
  13. package/lib/errors/index.js +0 -2
  14. package/lib/instrumentation/@prisma/client.js +12 -2
  15. package/lib/instrumentation/core/domain.js +2 -13
  16. package/lib/instrumentation/core/globals.js +0 -1
  17. package/lib/instrumentation/core/http-outbound.js +14 -31
  18. package/lib/instrumentation/core/http.js +17 -70
  19. package/lib/instrumentation/core/http2.js +2 -11
  20. package/lib/instrumentation/koa/nr-hooks.js +0 -12
  21. package/lib/instrumentations.js +0 -4
  22. package/lib/llm-events/ai-agent.js +28 -0
  23. package/lib/llm-events/google-genai/chat-completion-message.js +6 -3
  24. package/lib/message-broker-description.js +29 -12
  25. package/lib/metrics/names.js +14 -8
  26. package/lib/metrics/recorders/apollo-resolver.js +40 -0
  27. package/lib/metrics/recorders/http.js +0 -2
  28. package/lib/metrics/recorders/http_external.js +1 -25
  29. package/lib/shim/message-shim/index.js +4 -4
  30. package/lib/shim/shim.js +2 -40
  31. package/lib/shim/transaction-shim.js +10 -130
  32. package/lib/subscriber-configs.js +5 -0
  33. package/lib/subscribers/amqplib/consume.js +1 -1
  34. package/lib/subscribers/apollo-server/config.js +52 -0
  35. package/lib/subscribers/apollo-server/constants.js +49 -0
  36. package/lib/subscribers/apollo-server/request.js +355 -0
  37. package/lib/subscribers/apollo-server/resolve.js +242 -0
  38. package/lib/subscribers/aws-sdk/config.js +41 -3
  39. package/lib/subscribers/aws-sdk/core-send.js +16 -0
  40. package/lib/subscribers/aws-sdk/middleware/bedrock/index.js +3 -4
  41. package/lib/subscribers/aws-sdk/middleware/dynamodb/index.js +2 -3
  42. package/lib/subscribers/aws-sdk/middleware/nr-specific/attributes.js +2 -2
  43. package/lib/subscribers/aws-sdk/middleware/nr-specific/headers.js +3 -3
  44. package/lib/subscribers/aws-sdk/middleware/sns/index.js +3 -4
  45. package/lib/subscribers/aws-sdk/middleware/sqs/index.js +11 -15
  46. package/lib/subscribers/aws-sdk/utils/attach-headers.js +1 -1
  47. package/lib/subscribers/azure-functions/azure-handler-base.js +138 -0
  48. package/lib/subscribers/azure-functions/background-handler.js +29 -0
  49. package/lib/subscribers/azure-functions/config.js +44 -0
  50. package/lib/subscribers/azure-functions/http-handler.js +58 -0
  51. package/lib/subscribers/azure-functions/index.js +74 -0
  52. package/lib/subscribers/azure-functions/logger.js +72 -0
  53. package/lib/subscribers/base.js +8 -29
  54. package/lib/subscribers/bluebird/config.js +1 -1
  55. package/lib/subscribers/bluebird/instrumentation.js +3 -7
  56. package/lib/subscribers/cassandra-driver/config.js +5 -5
  57. package/lib/subscribers/connect/config.js +42 -0
  58. package/lib/subscribers/connect/use.js +31 -0
  59. package/lib/subscribers/dc-base.js +45 -4
  60. package/lib/subscribers/fastify/config.js +2 -2
  61. package/lib/subscribers/fastify/index.js +1 -1
  62. package/lib/subscribers/google-adk/agent-run-async.js +118 -0
  63. package/lib/subscribers/google-adk/config.js +59 -0
  64. package/lib/subscribers/google-adk/tool-run-async.js +87 -0
  65. package/lib/subscribers/grpcjs/client.js +3 -12
  66. package/lib/subscribers/grpcjs/server.js +2 -2
  67. package/lib/subscribers/kafkajs/client-constructor.js +349 -0
  68. package/lib/subscribers/kafkajs/config.js +25 -0
  69. package/lib/subscribers/kafkajs/utils/record-data-metrics.js +48 -0
  70. package/lib/subscribers/kafkajs/utils/record-linking-metrics.js +30 -0
  71. package/lib/{instrumentation/kafkajs → subscribers/kafkajs/utils}/record-method-metric.js +3 -2
  72. package/lib/subscribers/langgraph/graph-stream.js +2 -1
  73. package/lib/subscribers/message-consumer-tools.js +161 -0
  74. package/lib/subscribers/message-consumer.js +43 -61
  75. package/lib/subscribers/message-producer.js +2 -3
  76. package/lib/subscribers/middleware-wrapper.js +7 -7
  77. package/lib/subscribers/mysql/config.js +1 -33
  78. package/lib/subscribers/mysql/connection-query.js +72 -3
  79. package/lib/subscribers/mysql/pool-get-connection.js +0 -1
  80. package/lib/subscribers/mysql2/config.js +14 -56
  81. package/lib/subscribers/mysql2/connection-execute.js +2 -2
  82. package/lib/subscribers/mysql2/pool-get-connection.js +0 -2
  83. package/lib/subscribers/nestjs/config.js +1 -1
  84. package/lib/subscribers/undici/index.js +6 -31
  85. package/lib/symbols.js +1 -0
  86. package/lib/transaction/index.js +16 -82
  87. package/lib/transaction/trace/index.js +148 -67
  88. package/lib/transaction/trace/segment-tree.js +7 -15
  89. package/lib/transaction/trace/segment.js +24 -28
  90. package/lib/transaction/tracer/index.js +71 -29
  91. package/lib/util/attributes.js +1 -70
  92. package/lib/util/hashes.js +0 -30
  93. package/lib/util/logger.js +1 -1
  94. package/package.json +19 -25
  95. package/lib/config/lasp.js +0 -106
  96. package/lib/instrumentation/@azure/functions.js +0 -323
  97. package/lib/instrumentation/connect.js +0 -83
  98. package/lib/instrumentation/fastify/spec-builders.js +0 -103
  99. package/lib/instrumentation/fastify.js +0 -100
  100. package/lib/instrumentation/kafkajs/consumer.js +0 -145
  101. package/lib/instrumentation/kafkajs/index.js +0 -34
  102. package/lib/instrumentation/kafkajs/producer.js +0 -83
  103. package/lib/instrumentation/kafkajs/record-linking-metrics.js +0 -17
  104. package/lib/instrumentation/kafkajs.js +0 -7
  105. package/lib/instrumentation/koa/route-instrumentation.js +0 -31
  106. package/lib/subscribers/mysql/pool-namespace-query.js +0 -19
  107. package/lib/subscribers/mysql/pool-query.js +0 -41
  108. package/lib/subscribers/mysql2/pool-namespace-query.js +0 -19
  109. package/lib/subscribers/mysql2/pool-query.js +0 -19
  110. package/lib/transaction/trace/exclusive-time-calculator.js +0 -143
  111. package/lib/util/cat.js +0 -305
package/NEWS.md CHANGED
@@ -1,3 +1,118 @@
1
+ ### v14.0.0 (2026-05-18)
2
+ #### ⚠ BREAKING CHANGES
3
+
4
+ This version of the Node.js agent is a SemVer MAJOR update and contains the following breaking changes. MAJOR versions may drop support for language runtimes that have reached End-of-Life according to the maintainer. Additionally, MAJOR versions may drop support for and remove certain instrumentation. For more details on these changes please see the [migration guide](https://docs.newrelic.com/docs/apm/agents/nodejs-agent/installation-configuration/update-nodejs-agent/).
5
+
6
+ * Dropped support for Node.js 20
7
+ * Migrated `@apollo/sever` instrumentation from a plugin(`@newrelic/apollo-server-plugin`) to traditional instrumentation
8
+ * Removed Cross Application Tracing(CAT) functionality
9
+ * Removed support for License, Application, and Security Policies(LASP)
10
+ * Removed instrumentation for `koa-route`
11
+ * Removed instrumentation for `koa-router`
12
+ * Removed `shim.prefixRouteParameters` as the logic was previously moved to when a transaction ends
13
+ * Removed creating `MySQL Pool#query` segments
14
+ * Removed `shim.argsToArray`
15
+ * Updated minimum supported version of `@nestjs/cli` and `@nestjs/core` to `10.0.0`
16
+ * Updated minimum supported version of `next` to 14
17
+ * Updated minimum supported version of `bluebird` to `3.0.0`
18
+ * Updated minimum supported version of `mysql2` to `3.0.0`
19
+ * Updated minimum supported version for `cassandra-driver` to `4.0.0`
20
+ * Dropped support for `fastify` 3.x
21
+ * Updated `config.distributed_tracing.exclude_newrelic_header` to be set to `true` by default
22
+
23
+ #### Features
24
+
25
+ * Dropped support for `fastify` 3.x ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([720979b](https://github.com/newrelic/node-newrelic/commit/720979bccb65c93a143d1e069a32904bff78f02b))
26
+ * Dropped support for Node.js 20 ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([5306223](https://github.com/newrelic/node-newrelic/commit/530622314532e3c7eb4d8c3685e0b1974df61b8f))
27
+ * Migrated `@apollo/sever` instrumentation from a plugin(`@newrelic/apollo-server-plugin`) to traditional instrumentation ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([736e0a4](https://github.com/newrelic/node-newrelic/commit/736e0a40b78224e32e263a3aa0264c150d29982d))
28
+ * Removed `shim.argsToArray` ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([9183d29](https://github.com/newrelic/node-newrelic/commit/9183d29c456aba6ad003bc0a365c14d9b5d3044c))
29
+ * Removed `shim.prefixRouteParameters` as the logic was previously moved to when a transaction ends ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([9f1408e](https://github.com/newrelic/node-newrelic/commit/9f1408e26b168733644b3c9160dc45726c4b0034))
30
+ * Removed creating `MySQL Pool#query` segments ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([1d5a6dd](https://github.com/newrelic/node-newrelic/commit/1d5a6dde7f5c1280079cdca859cc5a2fc3121556))
31
+ * Removed Cross Application Tracing(CAT) functionality ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([a87ed4d](https://github.com/newrelic/node-newrelic/commit/a87ed4dbd3aad072de81475601844efebd8353ac))
32
+ * Removed instrumentation for `koa-route` ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([40c10d9](https://github.com/newrelic/node-newrelic/commit/40c10d90fdebd08dba7bb8e99856def93093267a))
33
+ * Removed instrumentation for `koa-router` ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([038ecc7](https://github.com/newrelic/node-newrelic/commit/038ecc749a0fd5d2cdd0ba6b5b0c9537f04a3208))
34
+ * Removed support for License, Application, and Security Policies(LASP) ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([bc09485](https://github.com/newrelic/node-newrelic/commit/bc094850bd18daf6be047615ad71c4dc13a7ec85))
35
+ * Updated `config.distributed_tracing.exclude_newrelic_header` to be set to `true` by default ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([774ce08](https://github.com/newrelic/node-newrelic/commit/774ce0805ddefd4a6e89d8635183d31e2d7e1d3a))
36
+ * Updated minimum supported version for `cassandra-driver` to `4.0.0` ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([419337a](https://github.com/newrelic/node-newrelic/commit/419337a78d126467cbf4fc70b94ec293fb919bbf))
37
+ * Updated minimum supported version of `@nestjs/cli` and `@nestjs/core` to `10.0.0` ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([120e6de](https://github.com/newrelic/node-newrelic/commit/120e6deef05c940baea52656dd04fdd992e9061d))
38
+ * Updated minimum supported version of `bluebird` to `3.0.0` ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([369f920](https://github.com/newrelic/node-newrelic/commit/369f920a86b81980552fe97c708b1aeb3a70771f))
39
+ * Updated minimum supported version of `mysql2` to `3.0.0` ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([2861406](https://github.com/newrelic/node-newrelic/commit/2861406c6d9d41f71dab2332d1fd22c27ddfda7c))
40
+ * Updated minimum supported version of `next` to 14 ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([80c5c0c](https://github.com/newrelic/node-newrelic/commit/80c5c0ca1ffdf2c2fa6d4abf74c8b7c3e2024a2e))
41
+
42
+ #### Code refactoring
43
+
44
+ * Updated how exclusive time and trace total time is calculated ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([b227ed6](https://github.com/newrelic/node-newrelic/commit/b227ed6975b077a8e16cffafc781a14d55636059))
45
+ * Updated instances of `tracer.bindFunction` with `tracer.runInContext` to improve performance in hot paths ([#3811](https://github.com/newrelic/node-newrelic/pull/3811)) ([5d77085](https://github.com/newrelic/node-newrelic/commit/5d77085b89e98bb1e09a9206a5d5656cdc410c2d))
46
+
47
+ #### Documentation
48
+
49
+ * Updated compatibility report ([#3990](https://github.com/newrelic/node-newrelic/pull/3990)) ([f3bb380](https://github.com/newrelic/node-newrelic/commit/f3bb380770e575e1ef3600e6601ddbf944b189ea))
50
+
51
+ #### Miscellaneous chores
52
+
53
+ * Removed `husky` in lieu of git hooks, added security hardened options to `npm install` ([#3988](https://github.com/newrelic/node-newrelic/pull/3988)) ([e3a7dda](https://github.com/newrelic/node-newrelic/commit/e3a7ddaee58f393cf347d812fed6b4c6ab1505f0))
54
+ * Updated production dependencies to the latest ([#3996](https://github.com/newrelic/node-newrelic/pull/3996)) ([b710bac](https://github.com/newrelic/node-newrelic/commit/b710bacff2231c8038b792ac4c7a570991566835))
55
+
56
+ #### Tests
57
+
58
+ * Added `minSupported` to the nest js versioned tests package.json to ensure the compatibility report will show we support `@nestjs/core` ([#3982](https://github.com/newrelic/node-newrelic/pull/3982)) ([bfa4aa1](https://github.com/newrelic/node-newrelic/commit/bfa4aa1d7b1fa60b8ac0da221f132124fb31ea6d))
59
+ * Added prisma 7 tests ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([116ee9c](https://github.com/newrelic/node-newrelic/commit/116ee9cd006d378afba1922d8daa27e213d1f6ab))
60
+ * Moved versioned test runner code from `@newrelic/test-utilties` to agent ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([d4f9a0c](https://github.com/newrelic/node-newrelic/commit/d4f9a0ce27364b7cfb723fa6a7c56a5ccdc07b68))
61
+ * Removed `@newrelic/test-utilities` ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([1751147](https://github.com/newrelic/node-newrelic/commit/1751147503c9ff971208c2977912d7298e9e923f))
62
+ * Decrease smoke-like esm tests' sample size ([#3986](https://github.com/newrelic/node-newrelic/pull/3986)) ([40669fb](https://github.com/newrelic/node-newrelic/commit/40669fbc157d65b53a4e5b7c22061ede7f26e630))
63
+ * Fixed `test/lib/get-package-version.js` ([#3993](https://github.com/newrelic/node-newrelic/pull/3993)) ([5d31f08](https://github.com/newrelic/node-newrelic/commit/5d31f08fb542f7b58bf89457f8a30255511ee9e0))
64
+ * Fixed version lookup issue in aws-sdk-v3 tests ([#3992](https://github.com/newrelic/node-newrelic/pull/3992)) ([7be3f4a](https://github.com/newrelic/node-newrelic/commit/7be3f4ab5a69fa7563752f584704e59cf6a863d2))
65
+ * Restructure `aws-sdk-v3` test runner to use `groupedDependencies` ([#3984](https://github.com/newrelic/node-newrelic/pull/3984)) ([fc67490](https://github.com/newrelic/node-newrelic/commit/fc674909e176f0f5305a0798c14d3c8447e58155))
66
+ * Updated a few versioned test stanzas to reduce the number of combinations it runs ([#3991](https://github.com/newrelic/node-newrelic/pull/3991)) ([d606305](https://github.com/newrelic/node-newrelic/commit/d6063055ebd034deabd2f2c3f1acba8162a5bd44))
67
+
68
+ #### Continuous integration
69
+
70
+ * Added `contents: write` to `post-release` to allow commit/push of api docs ([#3978](https://github.com/newrelic/node-newrelic/pull/3978)) ([90c4e61](https://github.com/newrelic/node-newrelic/commit/90c4e61ac304715dc0848aad091ec1725e057367))
71
+ * Updated remaining actions so they are running on Node 24 ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([ea21934](https://github.com/newrelic/node-newrelic/commit/ea21934a7b638855610ff193e88d15f8b910d8a8))
72
+ * Updated version of `actions/download-artifact` to v8 ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([54a58b9](https://github.com/newrelic/node-newrelic/commit/54a58b95bb8b5a15d7f7b340a9c8da2a3d3e88a9))
73
+ * Updated versions of actions to ensure they are running on node 24 ([#3980](https://github.com/newrelic/node-newrelic/pull/3980)) ([6302002](https://github.com/newrelic/node-newrelic/commit/630200223d03e39249e359563727900a70ce15cf))
74
+
75
+ ### v13.20.0 (2026-05-12)
76
+
77
+ #### Features
78
+
79
+ * Added instrumentation for Google ADK `BaseAgent.runAsync` ([#3905](https://github.com/newrelic/node-newrelic/pull/3905)) ([c6c51d5](https://github.com/newrelic/node-newrelic/commit/c6c51d56d24f59badef2de7b4710b87496080196))
80
+ * Instrument Google ADK `FunctionTool.runAsync` ([#3935](https://github.com/newrelic/node-newrelic/pull/3935)) ([57f9ed7](https://github.com/newrelic/node-newrelic/commit/57f9ed72dd905687a348d7d3bb3dcd39bfeedd53))
81
+ * Updated `@azure/functions` instrumentation to subscriber type ([#3915](https://github.com/newrelic/node-newrelic/pull/3915)) ([227e779](https://github.com/newrelic/node-newrelic/commit/227e779696f6b1e5c267884035b299233cef8cba))
82
+ * Updated how license keys are redacted in logs ([#3945](https://github.com/newrelic/node-newrelic/pull/3945)) ([6289502](https://github.com/newrelic/node-newrelic/commit/6289502ba49d88b8746ac8a42a34e5c2069f0d84))
83
+
84
+ #### Bug fixes
85
+
86
+ * Updated `connect` instrumentation queries to handle file restructure in `<3.4.0` ([#3923](https://github.com/newrelic/node-newrelic/pull/3923)) ([00b615c](https://github.com/newrelic/node-newrelic/commit/00b615c160c7251d1177482cf69a54e14d4d32a5))
87
+ * Updated `tracer.bindFunction` to touch segment if a promise is fulfilled or rejected ([#3967](https://github.com/newrelic/node-newrelic/pull/3967)) ([712db61](https://github.com/newrelic/node-newrelic/commit/712db6197e4a6a07c7f8e7a24d25f52141cfb236))
88
+ * Updated aws sdk v3 instrumentation to handle using `@smithy/smithy-client` 4.13.0+ ([#3965](https://github.com/newrelic/node-newrelic/pull/3965)) ([5e0fe24](https://github.com/newrelic/node-newrelic/commit/5e0fe249b011d6a269ca809827e7fb8f5d457ec9))
89
+
90
+ #### Code refactoring
91
+
92
+ * Removed reliance on `AsyncLocalStorage.enterWith` for undici, domain and `process._fatalException` instrumentation ([#3894](https://github.com/newrelic/node-newrelic/pull/3894)) ([612b449](https://github.com/newrelic/node-newrelic/commit/612b449f25d4a39fca399fa20058c74cd7e2b6c6))
93
+
94
+ #### Documentation
95
+
96
+ * Updated compatibility report ([#3941](https://github.com/newrelic/node-newrelic/pull/3941)) ([214b353](https://github.com/newrelic/node-newrelic/commit/214b3539cffad2397523d88aade40ccec3e3b7d2)) ([#3934](https://github.com/newrelic/node-newrelic/pull/3934)) ([5a962d4](https://github.com/newrelic/node-newrelic/commit/5a962d45485fad2c43001d20301542419279958d)) ([#3909](https://github.com/newrelic/node-newrelic/pull/3909)) ([ad6fa8a](https://github.com/newrelic/node-newrelic/commit/ad6fa8a2aac2e96c4d013c009055e9d757172a58))
97
+
98
+ #### Miscellaneous chores
99
+
100
+ * Added log line when `max_trace_segments` is hit ([#3933](https://github.com/newrelic/node-newrelic/pull/3933)) ([46b9238](https://github.com/newrelic/node-newrelic/commit/46b9238d057c84d63d61c23585b8078a4da453b2))
101
+ * Comment out `assertSegmentDuration` for `client-dynamodb` test ([#3972](https://github.com/newrelic/node-newrelic/pull/3972)) ([590cd3e](https://github.com/newrelic/node-newrelic/commit/590cd3e32e74d8c1c89d56d58bfb314c12050ab4))
102
+ * Fix issue with amqplib tests ([#3969](https://github.com/newrelic/node-newrelic/pull/3969)) ([a770000](https://github.com/newrelic/node-newrelic/commit/a770000447ecc2215b94472fcef022ee0ee7c5fb))
103
+ * Refactored Connect instrumentation to subscriber type ([#3912](https://github.com/newrelic/node-newrelic/pull/3912)) ([e5d87b7](https://github.com/newrelic/node-newrelic/commit/e5d87b7a97138c953cf4016440272c443c304119))
104
+ * Refactored kafkajs instrumentation to subscriber type ([#3958](https://github.com/newrelic/node-newrelic/pull/3958)) ([72e383c](https://github.com/newrelic/node-newrelic/commit/72e383c91ec26cdfd06ebb505b358623df829bd4))
105
+ * Remove `actualTime` vs `segmentDuration` assertion in `memcached` tests ([#3932](https://github.com/newrelic/node-newrelic/pull/3932)) ([98c50e0](https://github.com/newrelic/node-newrelic/commit/98c50e00bbf470cf2aedffe36f499525f0d335fe))
106
+ * Updated `@apm-js-collab/tracing-hooks` to `0.7.0` ([#3949](https://github.com/newrelic/node-newrelic/pull/3949)) ([5c99cd1](https://github.com/newrelic/node-newrelic/commit/5c99cd182796fdacfcfea45467eba6efce12b17d))
107
+
108
+ #### Tests
109
+
110
+ * Added `assertSegmentDuration` custom assertion and added it to `memcached` tests ([#3875](https://github.com/newrelic/node-newrelic/pull/3875)) ([b28d866](https://github.com/newrelic/node-newrelic/commit/b28d86688637ba4f1e74a243539dbea70e925e57))
111
+
112
+ #### Continuous integration
113
+
114
+ * Applied least-privilege model to all workflows to appease CodeQL ([#3961](https://github.com/newrelic/node-newrelic/pull/3961)) ([237d5b9](https://github.com/newrelic/node-newrelic/commit/237d5b9fe93e12e03601372886dc87c576116097))
115
+
1
116
  ### v13.19.2 (2026-04-20)
2
117
 
3
118
  #### Bug fixes