Releases: evervault/evervault-node
Releases · evervault/evervault-node
Release list
v6.4.0
v6.3.3
Patch Changes
- ac219ff: upgrade axios dependency to 1.9.0
v6.3.2
v6.3.1
Patch Changes
-
947115b: Correct logic for parsing domains from URLs supplied to the http request function: add fallback support for path alongisde pathname.
Fix bug in parsing raw strings supplied to request to URLs by correcting object keys.
v6.3.0
Minor Changes
-
720476d: Extend Relay outbound/forward proxy support in Node to include the ability to filter requests by path using
decryptionDomains.Requests can be filtered at the path level by appending an absolute or wildcard path to the decryption domains option, following similar wildcard logic to the domains
themselves. For example:// Existing behaviour will be observed, proxying requests to the host 'api.com'. const ev = new Evervault('app_uuid', 'api_key', { decryptionDomains: ['api.com'], }); // Will only proxy requests to host 'api.com' which have a path starting with '/users/'. const ev = new Evervault('app_uuid', 'api_key', { decryptionDomains: ['api.com/users/*'], }); // Will only proxy requests to host 'api.com' which have an exact path of '/settings'. const ev = new Evervault('app_uuid', 'api_key', { decryptionDomains: ['api.com/settings'], });
This change is compatible with the existing hostname wildcard behaviour of
decryptionDomains.
v6.2.3
Patch Changes
- dc32ede: Add axios dependency
v6.2.2
Patch Changes
- 945920d: Remove phin as a dependency as it is unmaintained
v6.2.1
Patch Changes
- 1538ebe: fix app key header name
v6.2.0
Minor Changes
- 1d40263: Encrypt with just app id
v6.1.0
Minor Changes
- 14748f9: Replace ASN.1 encoding library
- f3db4d3: Added
createEnclaveHttpsAgentto return anEnclaveAgentclass which extends https.Agent to manage HTTPS connections. This Agent can be passed into HTTP clients like Axios to attest a connection to an Enclave.
Patch Changes
- ca97124: remove unused code