Releases: evervault/evervault-node
Releases · evervault/evervault-node
v6.4.0
v6.3.3
v6.3.2
v6.3.1
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
v6.2.2
v6.2.1
v6.2.0
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