Releases: wingify/vwo-node-sdk
Releases · wingify/vwo-node-sdk
Version 1.73.0
- 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
Retry mechanism for HTTP calls
Version 1.71.0
Fixed issue where integrations callback was missing in the typescript definitions file.
Version 1.70.1
v1.70.1 1.70.1
Version 1.70.0
Fixing Retry on failed network calls
Version 1.69.0
Fix for Unsupported URL in React native env
Version 1.68.0
v1.68.0 1.68.0
Version 1.64.3
Added better logging and retries in XHRUtil
v1.64.2
Added better logging in XHRUtil onError handler
Version 1.64.0
Fixed issue with Advanced implementation of MEG