Skip to content

Releases: evervault/evervault-node

v6.4.0

Choose a tag to compare

@evervault-dependencies evervault-dependencies released this 03 Mar 15:01
61ea23f

Minor Changes

  • 5db642b: Introduce agent parameters to SDK constructor to allow greater networking control from the Node SDK

Patch Changes

  • 5db642b: Bumping axios to fix vulnerability

v6.3.3

Choose a tag to compare

@evervault-dependencies evervault-dependencies released this 03 Jun 12:57
e99ef27

Patch Changes

  • ac219ff: upgrade axios dependency to 1.9.0

v6.3.2

Choose a tag to compare

@evervault-dependencies evervault-dependencies released this 30 May 14:03
d92bab5

Patch Changes

  • 3685050: Correct axios response type for file decrypt requests.
  • ffc9036: security patches for axios

v6.3.1

Choose a tag to compare

@evervault-dependencies evervault-dependencies released this 19 Feb 12:16
6bfb8af

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

Choose a tag to compare

@evervault-dependencies evervault-dependencies released this 18 Feb 09:41
8378a2b

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

Choose a tag to compare

@DeirdreCleary DeirdreCleary released this 06 Aug 13:16
bc3891c

Patch Changes

v6.2.2

Choose a tag to compare

@DeirdreCleary DeirdreCleary released this 29 Jul 10:58
0b38fe3

Patch Changes

  • 945920d: Remove phin as a dependency as it is unmaintained

v6.2.1

Choose a tag to compare

@DeirdreCleary DeirdreCleary released this 24 Jul 11:06
5062c97

Patch Changes

v6.2.0

Choose a tag to compare

@DeirdreCleary DeirdreCleary released this 18 Jul 09:49
b90cb49

Minor Changes

  • 1d40263: Encrypt with just app id

v6.1.0

Choose a tag to compare

@DeirdreCleary DeirdreCleary released this 18 Jul 09:42
ae2d0b9

Minor Changes

  • 14748f9: Replace ASN.1 encoding library
  • f3db4d3: Added createEnclaveHttpsAgent to return an EnclaveAgent class 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