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
@@ -33,7 +33,6 @@ code, the source code can be found at [https://github.com/newrelic/node-newrelic
33
33
  * [json-bigint](#json-bigint)
34
34
  * [json-stringify-safe](#json-stringify-safe)
35
35
  * [module-details-from-path](#module-details-from-path)
36
- * [readable-stream](#readable-stream)
37
36
  * [require-in-the-middle](#require-in-the-middle)
38
37
  * [semver](#semver)
39
38
  * [winston-transport](#winston-transport)
@@ -45,17 +44,16 @@ code, the source code can be found at [https://github.com/newrelic/node-newrelic
45
44
  * [@matteo.collina/tspl](#matteocollinatspl)
46
45
  * [@newrelic/eslint-config](#newreliceslint-config)
47
46
  * [@newrelic/newrelic-oss-cli](#newrelicnewrelic-oss-cli)
48
- * [@newrelic/test-utilities](#newrelictest-utilities)
49
47
  * [@octokit/rest](#octokitrest)
50
48
  * [@slack/bolt](#slackbolt)
51
49
  * [@smithy/eventstream-codec](#smithyeventstream-codec)
52
50
  * [@smithy/util-utf8](#smithyutil-utf8)
53
51
  * [ajv](#ajv)
54
- * [async](#async)
55
52
  * [aws-sdk](#aws-sdk)
56
53
  * [borp](#borp)
57
54
  * [c8](#c8)
58
55
  * [clean-jsdoc-theme](#clean-jsdoc-theme)
56
+ * [colors](#colors)
59
57
  * [commander](#commander)
60
58
  * [conventional-changelog-conventionalcommits](#conventional-changelog-conventionalcommits)
61
59
  * [conventional-changelog-writer](#conventional-changelog-writer)
@@ -66,13 +64,14 @@ code, the source code can be found at [https://github.com/newrelic/node-newrelic
66
64
  * [git-raw-commits](#git-raw-commits)
67
65
  * [glob](#glob)
68
66
  * [got](#got)
69
- * [husky](#husky)
70
67
  * [jsdoc](#jsdoc)
71
68
  * [lint-staged](#lint-staged)
72
69
  * [lockfile-lint](#lockfile-lint)
70
+ * [log-update](#log-update)
73
71
  * [nock](#nock)
74
72
  * [protobufjs](#protobufjs)
75
73
  * [proxyquire](#proxyquire)
74
+ * [readline](#readline)
76
75
  * [rimraf](#rimraf)
77
76
  * [self-cert](#self-cert)
78
77
  * [should](#should)
@@ -95,7 +94,7 @@ code, the source code can be found at [https://github.com/newrelic/node-newrelic
95
94
 
96
95
  ### @apm-js-collab/tracing-hooks
97
96
 
98
- This product includes source derived from [@apm-js-collab/tracing-hooks](https://github.com/apm-js-collab/tracing-hooks) ([v0.6.0](https://github.com/apm-js-collab/tracing-hooks/tree/v0.6.0)), distributed under the [Apache-2.0 License](https://github.com/apm-js-collab/tracing-hooks/blob/v0.6.0/LICENSE):
97
+ This product includes source derived from [@apm-js-collab/tracing-hooks](https://github.com/apm-js-collab/tracing-hooks) ([v0.7.0](https://github.com/apm-js-collab/tracing-hooks/tree/v0.7.0)), distributed under the [Apache-2.0 License](https://github.com/apm-js-collab/tracing-hooks/blob/v0.7.0/LICENSE):
99
98
 
100
99
  ```
101
100
 
@@ -514,7 +513,7 @@ This product includes source derived from [@grpc/grpc-js](https://github.com/grp
514
513
 
515
514
  ### @grpc/proto-loader
516
515
 
517
- This product includes source derived from [@grpc/proto-loader](https://github.com/grpc/grpc-node) ([v0.7.15](https://github.com/grpc/grpc-node/tree/v0.7.15)), distributed under the [Apache-2.0 License](https://github.com/grpc/grpc-node/blob/v0.7.15/LICENSE):
516
+ This product includes source derived from [@grpc/proto-loader](https://github.com/grpc/grpc-node) ([v0.8.1](https://github.com/grpc/grpc-node/tree/v0.8.1)), distributed under the [Apache-2.0 License](https://github.com/grpc/grpc-node/blob/v0.8.1/LICENSE):
518
517
 
519
518
  ```
520
519
  Apache License
@@ -723,7 +722,7 @@ This product includes source derived from [@grpc/proto-loader](https://github.co
723
722
 
724
723
  ### @newrelic/security-agent
725
724
 
726
- This product includes source derived from [@newrelic/security-agent](https://github.com/newrelic/csec-node-agent) ([v3.0.2](https://github.com/newrelic/csec-node-agent/tree/v3.0.2)), distributed under the [UNKNOWN License](https://github.com/newrelic/csec-node-agent/blob/v3.0.2/LICENSE):
725
+ This product includes source derived from [@newrelic/security-agent](https://github.com/newrelic/csec-node-agent) ([v3.0.3](https://github.com/newrelic/csec-node-agent/tree/v3.0.3)), distributed under the [UNKNOWN License](https://github.com/newrelic/csec-node-agent/blob/v3.0.3/LICENSE):
727
726
 
728
727
  ```
729
728
  ## New Relic Software License v1.0
@@ -769,7 +768,7 @@ This license terminates when the Software stops being provided by New Relic or w
769
768
 
770
769
  ### @opentelemetry/api-logs
771
770
 
772
- This product includes source derived from [@opentelemetry/api-logs](https://github.com/open-telemetry/opentelemetry-js) ([v0.203.0](https://github.com/open-telemetry/opentelemetry-js/tree/v0.203.0)), distributed under the [Apache-2.0 License](https://github.com/open-telemetry/opentelemetry-js/blob/v0.203.0/LICENSE):
771
+ This product includes source derived from [@opentelemetry/api-logs](https://github.com/open-telemetry/opentelemetry-js) ([v0.217.0](https://github.com/open-telemetry/opentelemetry-js/tree/v0.217.0)), distributed under the [Apache-2.0 License](https://github.com/open-telemetry/opentelemetry-js/blob/v0.217.0/LICENSE):
773
772
 
774
773
  ```
775
774
  Apache License
@@ -1187,7 +1186,7 @@ This product includes source derived from [@opentelemetry/api](https://github.co
1187
1186
 
1188
1187
  ### @opentelemetry/core
1189
1188
 
1190
- This product includes source derived from [@opentelemetry/core](https://github.com/open-telemetry/opentelemetry-js) ([v2.6.1](https://github.com/open-telemetry/opentelemetry-js/tree/v2.6.1)), distributed under the [Apache-2.0 License](https://github.com/open-telemetry/opentelemetry-js/blob/v2.6.1/LICENSE):
1189
+ This product includes source derived from [@opentelemetry/core](https://github.com/open-telemetry/opentelemetry-js) ([v2.7.1](https://github.com/open-telemetry/opentelemetry-js/tree/v2.7.1)), distributed under the [Apache-2.0 License](https://github.com/open-telemetry/opentelemetry-js/blob/v2.7.1/LICENSE):
1191
1190
 
1192
1191
  ```
1193
1192
  Apache License
@@ -1396,7 +1395,7 @@ This product includes source derived from [@opentelemetry/core](https://github.c
1396
1395
 
1397
1396
  ### @opentelemetry/exporter-metrics-otlp-proto
1398
1397
 
1399
- This product includes source derived from [@opentelemetry/exporter-metrics-otlp-proto](https://github.com/open-telemetry/opentelemetry-js) ([v0.201.1](https://github.com/open-telemetry/opentelemetry-js/tree/v0.201.1)), distributed under the [Apache-2.0 License](https://github.com/open-telemetry/opentelemetry-js/blob/v0.201.1/LICENSE):
1398
+ This product includes source derived from [@opentelemetry/exporter-metrics-otlp-proto](https://github.com/open-telemetry/opentelemetry-js) ([v0.217.0](https://github.com/open-telemetry/opentelemetry-js/tree/v0.217.0)), distributed under the [Apache-2.0 License](https://github.com/open-telemetry/opentelemetry-js/blob/v0.217.0/LICENSE):
1400
1399
 
1401
1400
  ```
1402
1401
  Apache License
@@ -1605,7 +1604,7 @@ This product includes source derived from [@opentelemetry/exporter-metrics-otlp-
1605
1604
 
1606
1605
  ### @opentelemetry/resources
1607
1606
 
1608
- This product includes source derived from [@opentelemetry/resources](https://github.com/open-telemetry/opentelemetry-js) ([v2.6.1](https://github.com/open-telemetry/opentelemetry-js/tree/v2.6.1)), distributed under the [Apache-2.0 License](https://github.com/open-telemetry/opentelemetry-js/blob/v2.6.1/LICENSE):
1607
+ This product includes source derived from [@opentelemetry/resources](https://github.com/open-telemetry/opentelemetry-js) ([v2.7.1](https://github.com/open-telemetry/opentelemetry-js/tree/v2.7.1)), distributed under the [Apache-2.0 License](https://github.com/open-telemetry/opentelemetry-js/blob/v2.7.1/LICENSE):
1609
1608
 
1610
1609
  ```
1611
1610
  Apache License
@@ -1814,7 +1813,7 @@ This product includes source derived from [@opentelemetry/resources](https://git
1814
1813
 
1815
1814
  ### @opentelemetry/sdk-logs
1816
1815
 
1817
- This product includes source derived from [@opentelemetry/sdk-logs](https://github.com/open-telemetry/opentelemetry-js) ([v0.203.0](https://github.com/open-telemetry/opentelemetry-js/tree/v0.203.0)), distributed under the [Apache-2.0 License](https://github.com/open-telemetry/opentelemetry-js/blob/v0.203.0/LICENSE):
1816
+ This product includes source derived from [@opentelemetry/sdk-logs](https://github.com/open-telemetry/opentelemetry-js) ([v0.217.0](https://github.com/open-telemetry/opentelemetry-js/tree/v0.217.0)), distributed under the [Apache-2.0 License](https://github.com/open-telemetry/opentelemetry-js/blob/v0.217.0/LICENSE):
1818
1817
 
1819
1818
  ```
1820
1819
  Apache License
@@ -2023,7 +2022,7 @@ This product includes source derived from [@opentelemetry/sdk-logs](https://gith
2023
2022
 
2024
2023
  ### @opentelemetry/sdk-metrics
2025
2024
 
2026
- This product includes source derived from [@opentelemetry/sdk-metrics](https://github.com/open-telemetry/opentelemetry-js) ([v2.6.1](https://github.com/open-telemetry/opentelemetry-js/tree/v2.6.1)), distributed under the [Apache-2.0 License](https://github.com/open-telemetry/opentelemetry-js/blob/v2.6.1/LICENSE):
2025
+ This product includes source derived from [@opentelemetry/sdk-metrics](https://github.com/open-telemetry/opentelemetry-js) ([v2.7.1](https://github.com/open-telemetry/opentelemetry-js/tree/v2.7.1)), distributed under the [Apache-2.0 License](https://github.com/open-telemetry/opentelemetry-js/blob/v2.7.1/LICENSE):
2027
2026
 
2028
2027
  ```
2029
2028
  Apache License
@@ -2232,7 +2231,7 @@ This product includes source derived from [@opentelemetry/sdk-metrics](https://g
2232
2231
 
2233
2232
  ### @opentelemetry/sdk-trace-base
2234
2233
 
2235
- This product includes source derived from [@opentelemetry/sdk-trace-base](https://github.com/open-telemetry/opentelemetry-js) ([v2.6.1](https://github.com/open-telemetry/opentelemetry-js/tree/v2.6.1)), distributed under the [Apache-2.0 License](https://github.com/open-telemetry/opentelemetry-js/blob/v2.6.1/LICENSE):
2234
+ This product includes source derived from [@opentelemetry/sdk-trace-base](https://github.com/open-telemetry/opentelemetry-js) ([v2.7.1](https://github.com/open-telemetry/opentelemetry-js/tree/v2.7.1)), distributed under the [Apache-2.0 License](https://github.com/open-telemetry/opentelemetry-js/blob/v2.7.1/LICENSE):
2236
2235
 
2237
2236
  ```
2238
2237
  Apache License
@@ -2501,7 +2500,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2501
2500
 
2502
2501
  ### https-proxy-agent
2503
2502
 
2504
- This product includes source derived from [https-proxy-agent](https://github.com/TooTallNate/proxy-agents) ([v7.0.6](https://github.com/TooTallNate/proxy-agents/tree/v7.0.6)), distributed under the [MIT License](https://github.com/TooTallNate/proxy-agents/blob/v7.0.6/LICENSE):
2503
+ This product includes source derived from [https-proxy-agent](https://github.com/TooTallNate/proxy-agents) ([v9.0.0](https://github.com/TooTallNate/proxy-agents/tree/v9.0.0)), distributed under the [MIT License](https://github.com/TooTallNate/proxy-agents/blob/v9.0.0/LICENSE):
2505
2504
 
2506
2505
  ```
2507
2506
  (The MIT License)
@@ -2530,7 +2529,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2530
2529
 
2531
2530
  ### import-in-the-middle
2532
2531
 
2533
- This product includes source derived from [import-in-the-middle](https://github.com/nodejs/import-in-the-middle) ([v1.15.0](https://github.com/nodejs/import-in-the-middle/tree/v1.15.0)), distributed under the [Apache-2.0 License](https://github.com/nodejs/import-in-the-middle/blob/v1.15.0/LICENSE):
2532
+ This product includes source derived from [import-in-the-middle](https://github.com/nodejs/import-in-the-middle) ([v3.0.1](https://github.com/nodejs/import-in-the-middle/tree/v3.0.1)), distributed under the [Apache-2.0 License](https://github.com/nodejs/import-in-the-middle/blob/v3.0.1/LICENSE):
2534
2533
 
2535
2534
  ```
2536
2535
  Apache License
@@ -2817,64 +2816,9 @@ SOFTWARE.
2817
2816
 
2818
2817
  ```
2819
2818
 
2820
- ### readable-stream
2821
-
2822
- This product includes source derived from [readable-stream](https://github.com/nodejs/readable-stream) ([v3.6.2](https://github.com/nodejs/readable-stream/tree/v3.6.2)), distributed under the [MIT License](https://github.com/nodejs/readable-stream/blob/v3.6.2/LICENSE):
2823
-
2824
- ```
2825
- Node.js is licensed for use as follows:
2826
-
2827
- """
2828
- Copyright Node.js contributors. All rights reserved.
2829
-
2830
- Permission is hereby granted, free of charge, to any person obtaining a copy
2831
- of this software and associated documentation files (the "Software"), to
2832
- deal in the Software without restriction, including without limitation the
2833
- rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
2834
- sell copies of the Software, and to permit persons to whom the Software is
2835
- furnished to do so, subject to the following conditions:
2836
-
2837
- The above copyright notice and this permission notice shall be included in
2838
- all copies or substantial portions of the Software.
2839
-
2840
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2841
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2842
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2843
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2844
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2845
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
2846
- IN THE SOFTWARE.
2847
- """
2848
-
2849
- This license applies to parts of Node.js originating from the
2850
- https://github.com/joyent/node repository:
2851
-
2852
- """
2853
- Copyright Joyent, Inc. and other Node contributors. All rights reserved.
2854
- Permission is hereby granted, free of charge, to any person obtaining a copy
2855
- of this software and associated documentation files (the "Software"), to
2856
- deal in the Software without restriction, including without limitation the
2857
- rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
2858
- sell copies of the Software, and to permit persons to whom the Software is
2859
- furnished to do so, subject to the following conditions:
2860
-
2861
- The above copyright notice and this permission notice shall be included in
2862
- all copies or substantial portions of the Software.
2863
-
2864
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2865
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2866
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2867
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2868
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2869
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
2870
- IN THE SOFTWARE.
2871
- """
2872
-
2873
- ```
2874
-
2875
2819
  ### require-in-the-middle
2876
2820
 
2877
- This product includes source derived from [require-in-the-middle](https://github.com/nodejs/require-in-the-middle) ([v7.5.2](https://github.com/nodejs/require-in-the-middle/tree/v7.5.2)), distributed under the [MIT License](https://github.com/nodejs/require-in-the-middle/blob/v7.5.2/LICENSE):
2821
+ This product includes source derived from [require-in-the-middle](https://github.com/nodejs/require-in-the-middle) ([v8.0.1](https://github.com/nodejs/require-in-the-middle/tree/v8.0.1)), distributed under the [MIT License](https://github.com/nodejs/require-in-the-middle/blob/v8.0.1/LICENSE):
2878
2822
 
2879
2823
  ```
2880
2824
  The MIT License (MIT)
@@ -2905,7 +2849,7 @@ SOFTWARE.
2905
2849
 
2906
2850
  ### semver
2907
2851
 
2908
- This product includes source derived from [semver](https://github.com/npm/node-semver) ([v7.7.4](https://github.com/npm/node-semver/tree/v7.7.4)), distributed under the [ISC License](https://github.com/npm/node-semver/blob/v7.7.4/LICENSE):
2852
+ This product includes source derived from [semver](https://github.com/npm/node-semver) ([v7.8.0](https://github.com/npm/node-semver/tree/v7.8.0)), distributed under the [ISC License](https://github.com/npm/node-semver/blob/v7.8.0/LICENSE):
2909
2853
 
2910
2854
  ```
2911
2855
  The ISC License
@@ -2961,7 +2905,7 @@ SOFTWARE.
2961
2905
 
2962
2906
  ### @aws-sdk/client-s3
2963
2907
 
2964
- This product includes source derived from [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3) ([v3.1019.0](https://github.com/aws/aws-sdk-js-v3/tree/v3.1019.0)), distributed under the [Apache-2.0 License](https://github.com/aws/aws-sdk-js-v3/blob/v3.1019.0/LICENSE):
2908
+ This product includes source derived from [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3) ([v3.1045.0](https://github.com/aws/aws-sdk-js-v3/tree/v3.1045.0)), distributed under the [Apache-2.0 License](https://github.com/aws/aws-sdk-js-v3/blob/v3.1045.0/LICENSE):
2965
2909
 
2966
2910
  ```
2967
2911
  Apache License
@@ -3170,7 +3114,7 @@ This product includes source derived from [@aws-sdk/client-s3](https://github.co
3170
3114
 
3171
3115
  ### @aws-sdk/s3-request-presigner
3172
3116
 
3173
- This product includes source derived from [@aws-sdk/s3-request-presigner](https://github.com/aws/aws-sdk-js-v3) ([v3.1019.0](https://github.com/aws/aws-sdk-js-v3/tree/v3.1019.0)), distributed under the [Apache-2.0 License](https://github.com/aws/aws-sdk-js-v3/blob/v3.1019.0/LICENSE):
3117
+ This product includes source derived from [@aws-sdk/s3-request-presigner](https://github.com/aws/aws-sdk-js-v3) ([v3.1045.0](https://github.com/aws/aws-sdk-js-v3/tree/v3.1045.0)), distributed under the [Apache-2.0 License](https://github.com/aws/aws-sdk-js-v3/blob/v3.1045.0/LICENSE):
3174
3118
 
3175
3119
  ```
3176
3120
  Apache License
@@ -3823,215 +3767,6 @@ This product includes source derived from [@newrelic/newrelic-oss-cli](https://g
3823
3767
  limitations under the License.
3824
3768
  ```
3825
3769
 
3826
- ### @newrelic/test-utilities
3827
-
3828
- This product includes source derived from [@newrelic/test-utilities](https://github.com/newrelic/node-test-utilities) ([v10.0.0](https://github.com/newrelic/node-test-utilities/tree/v10.0.0)), distributed under the [Apache-2.0 License](https://github.com/newrelic/node-test-utilities/blob/v10.0.0/LICENSE):
3829
-
3830
- ```
3831
- Apache License
3832
- Version 2.0, January 2004
3833
- http://www.apache.org/licenses/
3834
-
3835
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
3836
-
3837
- 1. Definitions.
3838
-
3839
- "License" shall mean the terms and conditions for use, reproduction,
3840
- and distribution as defined by Sections 1 through 9 of this document.
3841
-
3842
- "Licensor" shall mean the copyright owner or entity authorized by
3843
- the copyright owner that is granting the License.
3844
-
3845
- "Legal Entity" shall mean the union of the acting entity and all
3846
- other entities that control, are controlled by, or are under common
3847
- control with that entity. For the purposes of this definition,
3848
- "control" means (i) the power, direct or indirect, to cause the
3849
- direction or management of such entity, whether by contract or
3850
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
3851
- outstanding shares, or (iii) beneficial ownership of such entity.
3852
-
3853
- "You" (or "Your") shall mean an individual or Legal Entity
3854
- exercising permissions granted by this License.
3855
-
3856
- "Source" form shall mean the preferred form for making modifications,
3857
- including but not limited to software source code, documentation
3858
- source, and configuration files.
3859
-
3860
- "Object" form shall mean any form resulting from mechanical
3861
- transformation or translation of a Source form, including but
3862
- not limited to compiled object code, generated documentation,
3863
- and conversions to other media types.
3864
-
3865
- "Work" shall mean the work of authorship, whether in Source or
3866
- Object form, made available under the License, as indicated by a
3867
- copyright notice that is included in or attached to the work
3868
- (an example is provided in the Appendix below).
3869
-
3870
- "Derivative Works" shall mean any work, whether in Source or Object
3871
- form, that is based on (or derived from) the Work and for which the
3872
- editorial revisions, annotations, elaborations, or other modifications
3873
- represent, as a whole, an original work of authorship. For the purposes
3874
- of this License, Derivative Works shall not include works that remain
3875
- separable from, or merely link (or bind by name) to the interfaces of,
3876
- the Work and Derivative Works thereof.
3877
-
3878
- "Contribution" shall mean any work of authorship, including
3879
- the original version of the Work and any modifications or additions
3880
- to that Work or Derivative Works thereof, that is intentionally
3881
- submitted to Licensor for inclusion in the Work by the copyright owner
3882
- or by an individual or Legal Entity authorized to submit on behalf of
3883
- the copyright owner. For the purposes of this definition, "submitted"
3884
- means any form of electronic, verbal, or written communication sent
3885
- to the Licensor or its representatives, including but not limited to
3886
- communication on electronic mailing lists, source code control systems,
3887
- and issue tracking systems that are managed by, or on behalf of, the
3888
- Licensor for the purpose of discussing and improving the Work, but
3889
- excluding communication that is conspicuously marked or otherwise
3890
- designated in writing by the copyright owner as "Not a Contribution."
3891
-
3892
- "Contributor" shall mean Licensor and any individual or Legal Entity
3893
- on behalf of whom a Contribution has been received by Licensor and
3894
- subsequently incorporated within the Work.
3895
-
3896
- 2. Grant of Copyright License. Subject to the terms and conditions of
3897
- this License, each Contributor hereby grants to You a perpetual,
3898
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
3899
- copyright license to reproduce, prepare Derivative Works of,
3900
- publicly display, publicly perform, sublicense, and distribute the
3901
- Work and such Derivative Works in Source or Object form.
3902
-
3903
- 3. Grant of Patent License. Subject to the terms and conditions of
3904
- this License, each Contributor hereby grants to You a perpetual,
3905
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
3906
- (except as stated in this section) patent license to make, have made,
3907
- use, offer to sell, sell, import, and otherwise transfer the Work,
3908
- where such license applies only to those patent claims licensable
3909
- by such Contributor that are necessarily infringed by their
3910
- Contribution(s) alone or by combination of their Contribution(s)
3911
- with the Work to which such Contribution(s) was submitted. If You
3912
- institute patent litigation against any entity (including a
3913
- cross-claim or counterclaim in a lawsuit) alleging that the Work
3914
- or a Contribution incorporated within the Work constitutes direct
3915
- or contributory patent infringement, then any patent licenses
3916
- granted to You under this License for that Work shall terminate
3917
- as of the date such litigation is filed.
3918
-
3919
- 4. Redistribution. You may reproduce and distribute copies of the
3920
- Work or Derivative Works thereof in any medium, with or without
3921
- modifications, and in Source or Object form, provided that You
3922
- meet the following conditions:
3923
-
3924
- (a) You must give any other recipients of the Work or
3925
- Derivative Works a copy of this License; and
3926
-
3927
- (b) You must cause any modified files to carry prominent notices
3928
- stating that You changed the files; and
3929
-
3930
- (c) You must retain, in the Source form of any Derivative Works
3931
- that You distribute, all copyright, patent, trademark, and
3932
- attribution notices from the Source form of the Work,
3933
- excluding those notices that do not pertain to any part of
3934
- the Derivative Works; and
3935
-
3936
- (d) If the Work includes a "NOTICE" text file as part of its
3937
- distribution, then any Derivative Works that You distribute must
3938
- include a readable copy of the attribution notices contained
3939
- within such NOTICE file, excluding those notices that do not
3940
- pertain to any part of the Derivative Works, in at least one
3941
- of the following places: within a NOTICE text file distributed
3942
- as part of the Derivative Works; within the Source form or
3943
- documentation, if provided along with the Derivative Works; or,
3944
- within a display generated by the Derivative Works, if and
3945
- wherever such third-party notices normally appear. The contents
3946
- of the NOTICE file are for informational purposes only and
3947
- do not modify the License. You may add Your own attribution
3948
- notices within Derivative Works that You distribute, alongside
3949
- or as an addendum to the NOTICE text from the Work, provided
3950
- that such additional attribution notices cannot be construed
3951
- as modifying the License.
3952
-
3953
- You may add Your own copyright statement to Your modifications and
3954
- may provide additional or different license terms and conditions
3955
- for use, reproduction, or distribution of Your modifications, or
3956
- for any such Derivative Works as a whole, provided Your use,
3957
- reproduction, and distribution of the Work otherwise complies with
3958
- the conditions stated in this License.
3959
-
3960
- 5. Submission of Contributions. Unless You explicitly state otherwise,
3961
- any Contribution intentionally submitted for inclusion in the Work
3962
- by You to the Licensor shall be under the terms and conditions of
3963
- this License, without any additional terms or conditions.
3964
- Notwithstanding the above, nothing herein shall supersede or modify
3965
- the terms of any separate license agreement you may have executed
3966
- with Licensor regarding such Contributions.
3967
-
3968
- 6. Trademarks. This License does not grant permission to use the trade
3969
- names, trademarks, service marks, or product names of the Licensor,
3970
- except as required for reasonable and customary use in describing the
3971
- origin of the Work and reproducing the content of the NOTICE file.
3972
-
3973
- 7. Disclaimer of Warranty. Unless required by applicable law or
3974
- agreed to in writing, Licensor provides the Work (and each
3975
- Contributor provides its Contributions) on an "AS IS" BASIS,
3976
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
3977
- implied, including, without limitation, any warranties or conditions
3978
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
3979
- PARTICULAR PURPOSE. You are solely responsible for determining the
3980
- appropriateness of using or redistributing the Work and assume any
3981
- risks associated with Your exercise of permissions under this License.
3982
-
3983
- 8. Limitation of Liability. In no event and under no legal theory,
3984
- whether in tort (including negligence), contract, or otherwise,
3985
- unless required by applicable law (such as deliberate and grossly
3986
- negligent acts) or agreed to in writing, shall any Contributor be
3987
- liable to You for damages, including any direct, indirect, special,
3988
- incidental, or consequential damages of any character arising as a
3989
- result of this License or out of the use or inability to use the
3990
- Work (including but not limited to damages for loss of goodwill,
3991
- work stoppage, computer failure or malfunction, or any and all
3992
- other commercial damages or losses), even if such Contributor
3993
- has been advised of the possibility of such damages.
3994
-
3995
- 9. Accepting Warranty or Additional Liability. While redistributing
3996
- the Work or Derivative Works thereof, You may choose to offer,
3997
- and charge a fee for, acceptance of support, warranty, indemnity,
3998
- or other liability obligations and/or rights consistent with this
3999
- License. However, in accepting such obligations, You may act only
4000
- on Your own behalf and on Your sole responsibility, not on behalf
4001
- of any other Contributor, and only if You agree to indemnify,
4002
- defend, and hold each Contributor harmless for any liability
4003
- incurred by, or claims asserted against, such Contributor by reason
4004
- of your accepting any such warranty or additional liability.
4005
-
4006
- END OF TERMS AND CONDITIONS
4007
-
4008
- APPENDIX: How to apply the Apache License to your work.
4009
-
4010
- To apply the Apache License to your work, attach the following
4011
- boilerplate notice, with the fields enclosed by brackets "[]"
4012
- replaced with your own identifying information. (Don't include
4013
- the brackets!) The text should be enclosed in the appropriate
4014
- comment syntax for the file format. We also recommend that a
4015
- file or class name and description of purpose be included on the
4016
- same "printed page" as the copyright notice for easier
4017
- identification within third-party archives.
4018
-
4019
- Copyright [yyyy] [name of copyright owner]
4020
-
4021
- Licensed under the Apache License, Version 2.0 (the "License");
4022
- you may not use this file except in compliance with the License.
4023
- You may obtain a copy of the License at
4024
-
4025
- http://www.apache.org/licenses/LICENSE-2.0
4026
-
4027
- Unless required by applicable law or agreed to in writing, software
4028
- distributed under the License is distributed on an "AS IS" BASIS,
4029
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
4030
- See the License for the specific language governing permissions and
4031
- limitations under the License.
4032
-
4033
- ```
4034
-
4035
3770
  ### @octokit/rest
4036
3771
 
4037
3772
  This product includes source derived from [@octokit/rest](https://github.com/octokit/rest.js) ([v18.12.0](https://github.com/octokit/rest.js/tree/v18.12.0)), distributed under the [MIT License](https://github.com/octokit/rest.js/blob/v18.12.0/LICENSE):
@@ -4511,7 +4246,7 @@ Apache License
4511
4246
 
4512
4247
  ### ajv
4513
4248
 
4514
- This product includes source derived from [ajv](https://github.com/ajv-validator/ajv) ([v6.14.0](https://github.com/ajv-validator/ajv/tree/v6.14.0)), distributed under the [MIT License](https://github.com/ajv-validator/ajv/blob/v6.14.0/LICENSE):
4249
+ This product includes source derived from [ajv](https://github.com/ajv-validator/ajv) ([v6.15.0](https://github.com/ajv-validator/ajv/tree/v6.15.0)), distributed under the [MIT License](https://github.com/ajv-validator/ajv/blob/v6.15.0/LICENSE):
4515
4250
 
4516
4251
  ```
4517
4252
  The MIT License (MIT)
@@ -4537,33 +4272,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
4537
4272
  SOFTWARE.
4538
4273
 
4539
4274
 
4540
- ```
4541
-
4542
- ### async
4543
-
4544
- This product includes source derived from [async](https://github.com/caolan/async) ([v3.2.6](https://github.com/caolan/async/tree/v3.2.6)), distributed under the [MIT License](https://github.com/caolan/async/blob/v3.2.6/LICENSE):
4545
-
4546
- ```
4547
- Copyright (c) 2010-2018 Caolan McMahon
4548
-
4549
- Permission is hereby granted, free of charge, to any person obtaining a copy
4550
- of this software and associated documentation files (the "Software"), to deal
4551
- in the Software without restriction, including without limitation the rights
4552
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
4553
- copies of the Software, and to permit persons to whom the Software is
4554
- furnished to do so, subject to the following conditions:
4555
-
4556
- The above copyright notice and this permission notice shall be included in
4557
- all copies or substantial portions of the Software.
4558
-
4559
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4560
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
4561
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
4562
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
4563
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
4564
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
4565
- THE SOFTWARE.
4566
-
4567
4275
  ```
4568
4276
 
4569
4277
  ### aws-sdk
@@ -4829,7 +4537,7 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
4829
4537
 
4830
4538
  ### clean-jsdoc-theme
4831
4539
 
4832
- This product includes source derived from [clean-jsdoc-theme](https://github.com/ankitskvmdam/clean-jsdoc-theme) ([v4.3.0](https://github.com/ankitskvmdam/clean-jsdoc-theme/tree/v4.3.0)), distributed under the [MIT License](https://github.com/ankitskvmdam/clean-jsdoc-theme/blob/v4.3.0/LICENSE):
4540
+ This product includes source derived from [clean-jsdoc-theme](https://github.com/ankitskvmdam/clean-jsdoc-theme) ([v4.3.2](https://github.com/ankitskvmdam/clean-jsdoc-theme/tree/v4.3.2)), distributed under the [MIT License](https://github.com/ankitskvmdam/clean-jsdoc-theme/blob/v4.3.2/LICENSE):
4833
4541
 
4834
4542
  ```
4835
4543
  MIT License
@@ -4856,6 +4564,39 @@ SOFTWARE.
4856
4564
 
4857
4565
  ```
4858
4566
 
4567
+ ### colors
4568
+
4569
+ This product includes source derived from [colors](https://github.com/Marak/colors.js) ([v1.4.0](https://github.com/Marak/colors.js/tree/v1.4.0)), distributed under the [MIT License](https://github.com/Marak/colors.js/blob/v1.4.0/LICENSE):
4570
+
4571
+ ```
4572
+ MIT License
4573
+
4574
+ Original Library
4575
+ - Copyright (c) Marak Squires
4576
+
4577
+ Additional Functionality
4578
+ - Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
4579
+
4580
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4581
+ of this software and associated documentation files (the "Software"), to deal
4582
+ in the Software without restriction, including without limitation the rights
4583
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
4584
+ copies of the Software, and to permit persons to whom the Software is
4585
+ furnished to do so, subject to the following conditions:
4586
+
4587
+ The above copyright notice and this permission notice shall be included in
4588
+ all copies or substantial portions of the Software.
4589
+
4590
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4591
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
4592
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
4593
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
4594
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
4595
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
4596
+ THE SOFTWARE.
4597
+
4598
+ ```
4599
+
4859
4600
  ### commander
4860
4601
 
4861
4602
  This product includes source derived from [commander](https://github.com/tj/commander.js) ([v7.2.0](https://github.com/tj/commander.js/tree/v7.2.0)), distributed under the [MIT License](https://github.com/tj/commander.js/blob/v7.2.0/LICENSE):
@@ -5133,35 +4874,6 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
5133
4874
 
5134
4875
  ```
5135
4876
 
5136
- ### husky
5137
-
5138
- This product includes source derived from [husky](https://github.com/typicode/husky) ([v6.0.0](https://github.com/typicode/husky/tree/v6.0.0)), distributed under the [MIT License](https://github.com/typicode/husky/blob/v6.0.0/LICENSE):
5139
-
5140
- ```
5141
- MIT License
5142
-
5143
- Copyright (c) 2021 typicode
5144
-
5145
- Permission is hereby granted, free of charge, to any person obtaining a copy
5146
- of this software and associated documentation files (the "Software"), to deal
5147
- in the Software without restriction, including without limitation the rights
5148
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5149
- copies of the Software, and to permit persons to whom the Software is
5150
- furnished to do so, subject to the following conditions:
5151
-
5152
- The above copyright notice and this permission notice shall be included in all
5153
- copies or substantial portions of the Software.
5154
-
5155
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
5156
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
5157
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
5158
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
5159
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
5160
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
5161
- SOFTWARE.
5162
-
5163
- ```
5164
-
5165
4877
  ### jsdoc
5166
4878
 
5167
4879
  This product includes source derived from [jsdoc](https://github.com/jsdoc/jsdoc) ([v4.0.5](https://github.com/jsdoc/jsdoc/tree/v4.0.5)), distributed under the [Apache-2.0 License](https://github.com/jsdoc/jsdoc/blob/v4.0.5/LICENSE.md):
@@ -5499,6 +5211,23 @@ This product includes source derived from [lockfile-lint](https://github.com/lir
5499
5211
  limitations under the License.
5500
5212
  ```
5501
5213
 
5214
+ ### log-update
5215
+
5216
+ This product includes source derived from [log-update](https://github.com/sindresorhus/log-update) ([v8.0.0](https://github.com/sindresorhus/log-update/tree/v8.0.0)), distributed under the [MIT License](https://github.com/sindresorhus/log-update/blob/v8.0.0/license):
5217
+
5218
+ ```
5219
+ MIT License
5220
+
5221
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
5222
+
5223
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5224
+
5225
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
5226
+
5227
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5228
+
5229
+ ```
5230
+
5502
5231
  ### nock
5503
5232
 
5504
5233
  This product includes source derived from [nock](https://github.com/nock/nock) ([v11.8.0](https://github.com/nock/nock/tree/v11.8.0)), distributed under the [MIT License](https://github.com/nock/nock/blob/v11.8.0/LICENSE):
@@ -5530,7 +5259,7 @@ SOFTWARE.
5530
5259
 
5531
5260
  ### protobufjs
5532
5261
 
5533
- This product includes source derived from [protobufjs](https://github.com/protobufjs/protobuf.js) ([v7.5.4](https://github.com/protobufjs/protobuf.js/tree/v7.5.4)), distributed under the [BSD-3-Clause License](https://github.com/protobufjs/protobuf.js/blob/v7.5.4/LICENSE):
5262
+ This product includes source derived from [protobufjs](https://github.com/protobufjs/protobuf.js) ([v7.5.7](https://github.com/protobufjs/protobuf.js/tree/v7.5.7)), distributed under the [BSD-3-Clause License](https://github.com/protobufjs/protobuf.js/blob/v7.5.7/LICENSE):
5534
5263
 
5535
5264
  ```
5536
5265
  This license applies to all parts of protobuf.js except those files
@@ -5606,6 +5335,14 @@ OTHER DEALINGS IN THE SOFTWARE.
5606
5335
 
5607
5336
  ```
5608
5337
 
5338
+ ### readline
5339
+
5340
+ This product includes source derived from [readline](https://github.com/maleck13/readline) ([v1.3.0](https://github.com/maleck13/readline/tree/v1.3.0)), distributed under the [UNKNOWN License](https://github.com/maleck13/readline/blob/v1.3.0/README.md):
5341
+
5342
+ ```
5343
+ undefined
5344
+ ```
5345
+
5609
5346
  ### rimraf
5610
5347
 
5611
5348
  This product includes source derived from [rimraf](https://github.com/isaacs/rimraf) ([v2.7.1](https://github.com/isaacs/rimraf/tree/v2.7.1)), distributed under the [ISC License](https://github.com/isaacs/rimraf/blob/v2.7.1/LICENSE):
@@ -5962,7 +5699,7 @@ This product includes source derived from [@datadog/pprof](https://github.com/Da
5962
5699
 
5963
5700
  ### @newrelic/fn-inspect
5964
5701
 
5965
- This product includes source derived from [@newrelic/fn-inspect](https://github.com/newrelic-forks/node-fn-inspect) ([v4.4.0](https://github.com/newrelic-forks/node-fn-inspect/tree/v4.4.0)), distributed under the [MIT License](https://github.com/newrelic-forks/node-fn-inspect/blob/v4.4.0/LICENSE):
5702
+ This product includes source derived from [@newrelic/fn-inspect](https://github.com/newrelic-forks/node-fn-inspect) ([v5.0.0](https://github.com/newrelic-forks/node-fn-inspect/tree/v5.0.0)), distributed under the [MIT License](https://github.com/newrelic-forks/node-fn-inspect/blob/v5.0.0/LICENSE):
5966
5703
 
5967
5704
  ```
5968
5705
  Copyright 2022 Contrast Security, Inc
@@ -5988,7 +5725,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5988
5725
 
5989
5726
  ### @newrelic/native-metrics
5990
5727
 
5991
- This product includes source derived from [@newrelic/native-metrics](https://github.com/newrelic/node-native-metrics) ([v12.0.0](https://github.com/newrelic/node-native-metrics/tree/v12.0.0)), distributed under the [Apache-2.0 License](https://github.com/newrelic/node-native-metrics/blob/v12.0.0/LICENSE):
5728
+ This product includes source derived from [@newrelic/native-metrics](https://github.com/newrelic/node-native-metrics) ([v13.0.0](https://github.com/newrelic/node-native-metrics/tree/v13.0.0)), distributed under the [Apache-2.0 License](https://github.com/newrelic/node-native-metrics/blob/v13.0.0/LICENSE):
5992
5729
 
5993
5730
  ```
5994
5731
  Apache License