New Features
Enables ability to migrate to Configurable Security Policies (CSP) on a per agent basis for accounts already using High-security mode (HSM).
When both HSM and CSP are enabled for an account, an agent (this version or later) can successfully connect with either
high_security: true
or the appropriatesecurity_policies_token
configured.high_security
has been added as part of the preconnect payload.
Improvements
The agent now allows installation on node v11 and v12.
This change relaxes the engines restriction to include Node v11 and v12. This does not constitute official support for those versions, and users on those versions may run into subtle incompatibilities. For those users who are interested in experimenting with the agent on v11 and v12, we are tracking relevant issues here: https://github.com/newrelic/node-newrelic/issues/279.
Fixes
Lambda invocations ended with promises will now be recorded properly.
Previously, the lambda instrumentation was not intercepting the promise resolution/rejection returned from a lambda handler. The instrumentation now properly observes the promise, and ends the transaction when the promise has finished.
Lambda invocations will only attempt to end the related transaction a single time.
In the event of two lambda response events (e.g. callback called, and a promise returned), the agent would attempt to end the transaction twice, producing an extraneous empty payload. The agent now limits itself to a single end call for a given transaction.
The agent will now properly end transactions in the face of uncaught exceptions while in serverless mode.
Improvements
Shim#require will now operate as expected.
Previously, the module interception code made the faulty assumption that a module's filepath would be resolved before the module load call was invoked. This caused the wrap filepath to be attributed to the modules being instrumented. This meant that attempted relative require calls using Shim#require would resolved from the incorrect path. The logic has been changed to keep a stack of the resolved filepaths, resolving the issue.
Shim#wrapReturn now uses ES6 proxies to wrap its methods.
This will accurately propagate look up and assignment onto the underlying wrapped function, while maintaining all previous functionality.
Updated versioned test configurations to reflect current engine support.
Moved third party notices to
THIRD_PARTY_NOTICES.md
Updates error message for license check to indicate all places that need to be updated.
New Features
serverless_mode
feature flag is now enabled by default.- Added
instrumentLoadedModule
method to the API, allowing end-users to manually apply an instrumentation to a loaded module. Useful for cases where some module needs to be loaded before newrelic
Improvements
- Removed older versions of Cassandra from versioned tests
- For debug/test runs, shimmer will now cleanup the __NR_shim property on instrumented methods. This leftover property did not result in any negative behaviors but cleaning up for thoroughness and to prevent potential confusion.
- Fixes
recordMiddleware
promise parenting for certain cases where child segments are created within resolving middlewarenext()
promises.
New Features
- Modifies
MiddlewareSpec
route property to allow functions. Defers route processing and segment naming until just before needed (each middleware invocation).
Improvements
- Fixed outdated
license
ref inpackage.json
. - Middleware instrumentation now honors
spec.appendPath
for more cases and will not pop paths when it has not appended a path.
New Features
Added
getStatusName
toNameState
.Now web transactions will be named after known status code messages (404, 405, and 501).
Added
appendPath
option to MiddlewareSpec.
Improvements
- Broke apart
integration
script test globs.
Fixes
- Fixed bug where agent would stop sending data to New Relic servers when a connectivity issue was encountered.
- The agent will no longer crash the process in the event of unexpected calls to the harvest callback.
Bug fixes
- Refactored config to log warning and disable distributed tracing if enabled in serverless mode, but missing required config setting.
- Serverless mode no longer sets different data collection limits.
- The agent will no longer crash the process in the event of unexpected calls to the harvest callback.
- Updated required config values when using distributed tracing in
serverless_mode
to only includeaccount_id
.
Bug fixes
The agent will now accurately filter out request parameters while operating under CSP or HSM.
You can find more information about this change in the Security Bulletin.
Improvements
- Agent now respects attribute type restrictions on trace/segment attributes, as well as error event/trace attributes.
Bug fixes
Fixes potential for
RangeError: Maximum call stack size exceeded
error on Transaction/Trace end.Custom events no longer accept attributes with invalid types.
The only attribute types accepted by the backend are
boolean
,string
, andnumber
; any attribute assigned to a custom event outside these types would be dropped on ingest. The agent now filters these attributes out, and logs out a helpful message detailing the issue.
Fixes
- Updated log message for not adding attributes and change the log level to debug.
- Fixed an issue where exclusive time would be improperly calculated in some cases.