Skip to content

Releases: wingify/vwo-node-sdk

Version 1.73.0

18 Aug 20:45

Choose a tag to compare

  • Added support for redirecting all network calls through a custom proxy URL for browser environments. This feature allows users to route all SDK network requests (settings, tracking, etc.) through their own proxy server. This is particularly useful for bypassing ad-blockers that may interfere with VWO's default network requests.
const settingsFile = await vwoSdk.getSettingsFile(accountId, sdkKey, null, { proxyUrl: 'http://localhost:3000' });

// If you are not calling getSettingsFile and are using locally stored settings, 
// you can pass the proxyUrl directly in the launch method.
const clientInstance = vwoSdk.launch({
  settingsFile: localSettings,       // local json parsed settings
  proxyUrl: 'http://localhost:3000', // your custome proxy url here
});

Version 1.72.0

26 Feb 15:40

Choose a tag to compare

Retry mechanism for HTTP calls

Version 1.71.0

04 Dec 17:04

Choose a tag to compare

Fixed issue where integrations callback was missing in the typescript definitions file.

Version 1.70.1

07 Oct 08:49

Choose a tag to compare

v1.70.1

1.70.1

Version 1.70.0

18 Jul 13:19

Choose a tag to compare

Fixing Retry on failed network calls

Version 1.69.0

06 Jun 04:34

Choose a tag to compare

Fix for Unsupported URL in React native env

Version 1.68.0

15 Feb 12:05

Choose a tag to compare

v1.68.0

1.68.0

Version 1.64.3

02 Jan 08:18

Choose a tag to compare

Added better logging and retries in XHRUtil

v1.64.2

19 Dec 11:38

Choose a tag to compare

Added better logging in XHRUtil onError handler

Version 1.64.0

20 Nov 15:45

Choose a tag to compare

Fixed issue with Advanced implementation of MEG