Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@optimizely/optimizely-sdk

optimizely1.1mApache-2.05.3.4TypeScript support: included

JavaScript SDK for Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts

optimizely

readme

Optimizely JavaScript SDK

npm npm GitHub Actions Coveralls license

This repository houses the JavaScript SDK for use with Optimizely Feature Experimentation and Optimizely Full Stack (legacy).

Optimizely Feature Experimentation is an A/B testing and feature management tool for product development teams that enables you to experiment at every step. Using Optimizely Feature Experimentation allows for every feature on your roadmap to be an opportunity to discover hidden insights. Learn more at Optimizely.com, or see the developer documentation.

Optimizely Rollouts is free feature flags for development teams. You can easily roll out and roll back features in any application without code deploys, mitigating risk for every feature on your roadmap.


Get Started

For Browser applications, refer to the JavaScript SDK's developer documentation for detailed instructions on getting started with using the SDK within client-side applications.

For Node.js applications, refer to the JavaScript (Node) variant of the developer documentation.

For Edge Functions, we provide starter kits that utilize the Optimizely JavaScript SDK for the following platforms:

Note: We recommend using the Lite version of the sdk for edge platforms. These starter kits also use the Lite variant of the JavaScript SDK which excludes the datafile manager and event processor packages.

Prerequisites

Ensure the SDK supports all of the platforms you're targeting. In particular, the SDK targets modern ES5-compliant JavaScript environment. We officially support:

  • Node.js >= 16.0.0. By extension, environments like AWS Lambda, Google Cloud Functions, and Auth0 Webtasks are supported as well. Older Node.js releases likely work too (try npm test to validate for yourself), but are not formally supported.
  • Modern Web Browsers, such as Microsoft Edge 84+, Firefox 91+, Safari 13+, and Chrome 102+, Opera 76+

In addition, other environments are likely compatible but are not formally supported including:

  • Progressive Web Apps, WebViews, and hybrid mobile apps like those built with React Native and Apache Cordova.
  • Cloudflare Workers and Fly, both of which are powered by recent releases of V8.
  • Anywhere else you can think of that might embed a JavaScript engine. The sky is the limit; experiment everywhere! 🚀

Requirements

  • JavaScript (Browser): Modern web browser that is ES5-compliant.

  • JavaScript (Node): Node 16.0.0+

Install the SDK

Once you've validated that the SDK supports the platforms you're targeting, fetch the package from NPM:

Using npm:

npm install --save @optimizely/optimizely-sdk

Using yarn:

yarn add @optimizely/optimizely-sdk

Using pnpm:

pnpm add @optimizely/optimizely-sdk

Using deno (no installation required):

import optimizely from "npm:@optimizely/optimizely-sdk"

Use the JavaScript SDK (Browser)

See the Optimizely Feature Experimentation developer documentation for JavaScript (Browser) to learn how to set up your first JavaScript project and use the SDK for client-side applications.

Initialization (Browser)

The package has different entry points for different environments. The browser entry point is an ES module, which can be used with an appropriate bundler like Webpack or Rollup. Additionally, for ease of use during initial evaluations you can include a standalone umd bundle of the SDK in your web page by fetching it from unpkg:

<script src="https://unpkg.com/@optimizely/optimizely-sdk/dist/optimizely.browser.umd.min.js"></script>

<!-- You can also use the unminified version if necessary -->
<script src="https://unpkg.com/@optimizely/optimizely-sdk/dist/optimizely.browser.umd.js"></script>

When evaluated, that bundle assigns the SDK's exports to window.optimizelySdk. If you wish to use the asset locally (for example, if unpkg is down), you can find it in your local copy of the package at dist/optimizely.browser.umd.min.js. We do not recommend using this method in production settings as it introduces a third-party performance dependency.

As window.optimizelySdk should be a global variable at this point, you can continue to use it like so:

const optimizelyClient = window.optimizelySdk.createInstance({
  sdkKey: '<YOUR_SDK_KEY>',
  // datafile: window.optimizelyDatafile,
  // etc.
});

optimizelyClient.onReady().then(({ success, reason }) => {
  if (success) {
      // Create the Optimizely user context, make decisions, and more here!
  }
});

Regarding EventDispatchers: In Node.js and browser environments, the default EventDispatcher is powered by the http/s modules and by XMLHttpRequest, respectively. In all other environments, you must supply your own EventDispatcher.

Use the JavaScript SDK (Node)

See the Optimizely Feature Experimentation developer documentation for JavaScript (Node) to learn how to set up your first JavaScript project and use the SDK for server-side applications.

Initialization (Node)

The package has different entry points for different environments. The node entry point is CommonJS module.

const optimizelySdk = require('@optimizely/optimizely-sdk');

const optimizelyClient = optimizelySdk.createInstance({
  sdkKey: '<YOUR_SDK_KEY>',
  // datafile: window.optimizelyDatafile,
  // etc.
});

optimizelyClient.onReady().then(({ success, reason }) => {
  if (success) {
      // Create the Optimizely user context, make decisions, and more here!
  }
});

Regarding EventDispatchers: In Node.js environment, the default EventDispatcher is powered by the http/s module.

SDK Development

Unit Tests

There is a mix of testing paradigms used within the JavaScript SDK which include Mocha, Chai, Karma, and Jest, indicated by their respective *.tests.js and *.spec.ts filenames.

When contributing code to the SDK, aim to keep the percentage of code test coverage at the current level (Coveralls) or above.

To run unit tests on the primary JavaScript SDK package source code, you can take the following steps:

  1. On your command line or terminal, navigate to the ~/javascript-sdk/packages/optimizely-sdk directory.
  2. Ensure that you have run npm install to install all project dependencies.
  3. Run npm test to run all test files.
  4. (For cross-browser testing) Run npm run test-xbrowser to run tests in many browsers via BrowserStack.
  5. Resolve any tests that fail before continuing with your contribution.

This information is relevant only if you plan on contributing to the SDK itself.

# Prerequisite: Install dependencies.
npm install

# Run unit tests.
npm test

# Run unit tests in many browsers, currently via BrowserStack.
# For this to work, the following environment variables must be set:
#   - BROWSER_STACK_USERNAME
#   - BROWSER_STACK_PASSWORD
npm run test-xbrowser

/.github/workflows/javascript.yml contains the definitions for BROWSER_STACK_USERNAME and BROWSER_STACK_ACCESS_KEY used in the GitHub Actions CI pipeline. When developing locally, you must provide your own credentials in order to run npm run test-xbrowser. You can register for an account for free on the BrowserStack official website here.

Contributing

For more information regarding contributing to the Optimizely JavaScript SDK, please read Contributing.

Special Notes

Migrating from 4.x.x

This version represents a major version change and, as such, introduces some breaking changes. Please refer to the Changelog for more details.

Feature Management access

To access the Feature Management configuration in the Optimizely dashboard, please contact your Optimizely customer success manager.

Credits

@optimizely/optimizely-sdk is developed and maintained by Optimizely and many contributors. If you're interested in learning more about what Optimizely Feature Experimentation can do for your company you can visit the official Optimizely Feature Experimentation product page here to learn more.

First-party code (under packages/optimizely-sdk/lib/, packages/datafile-manager/lib, packages/datafile-manager/src, packages/datafile-manager/__test__, packages/event-processor/src, packages/event-processor/__tests__, packages/logging/src, packages/logging/__tests__, packages/utils/src, packages/utils/__tests__) is copyright Optimizely, Inc. and contributors, licensed under Apache 2.0.

Other Optimizely SDKs

changelog

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[5.3.4] - Jun 28, 2024

Changed

  • crypto and text encoder polyfill addition for React native (#936)

[5.3.3] - Jun 06, 2024

Changed

  • queueMicroTask fallback addition for embedded environments / unsupported platforms (#933)

[5.3.2] - May 20, 2024

Changed

  • Added public facing API for ODP integration information (#930)

[5.3.1] - May 20, 2024

Changed

  • Fix Memory Leak: Closed http request after getting response to release memory immediately (node) (#927)

[5.3.1-rc.1] - May 13, 2024

Changed

  • Fix Memory Leak: Closed http request after getting response to release memory immediately (node) (#927)

[5.3.0] - April 8, 2024

Changed

  • Refactor: ODP corrections #920 including
    • ODPManager should not be running and scheduling timer if ODP is not integrated to the project (which causes memory leak if one sdk instance is created per request)
    • CreateUserContext should work even when called before the datafile is downloaded and should send the identify ODP events after datafile download completes
    • Other automatic odp events (vuid registration, client initialized) should also be sent after datafile is available and should not be dropped if batching is disabled.
    • [see PR for more]

[5.2.1] - March 25, 2024

Bug fixes

  • Fix: empty segments collection is valid (#916)
  • Update vulnerable dependencies (#918)

[5.2.0] - March 18, 2024

New Features

  • Add persistentCacheProvider option to createInstance to allow providing custom persistent cache implementation in react native (#914)

[5.1.0] - March 1, 2024

New Features

  • Add explicit entry points for node, browser and react_native, allowing imports like import optimizelySdk from '@optimizely/optimizely-sdk/node', import optimizelySdk from '@optimizely/optimizely-sdk/browser', import optimizelySdk from '@optimizely/optimizely-sdk/react_native' (#905)

Changed

  • Log an error in DatafileManager when datafile fetch fails (#904)

[5.0.1] - February 20, 2024

Bug fixes

  • Improved conditional ODP instantiation when odpOptions.disabled: true is used (#902)

Changed

  • Updated Dependabot alerts (#896)
  • Updated several devDependencies (#898, #900, #901)

[5.0.0] - January 19, 2024

New Features

The 5.0.0 release introduces a new primary feature, Advanced Audience Targeting enabled through integration with Optimizely Data Platform (ODP) (#765, #775, #776, #777, #778, #786, #789, #790, #797, #799, #808).

You can use ODP, a high-performance Customer Data Platform (CDP), to easily create complex real-time segments (RTS) using first-party and 50+ third-party data sources out of the box. You can create custom schemas that support the user attributes important for your business, and stitch together user behavior done on different devices to better understand and target your customers for personalized user experiences. ODP can be used as a single source of truth for these segments in any Optimizely or 3rd party tool.

With ODP accounts integrated into Optimizely projects, you can build audiences using segments pre-defined in ODP. The SDK will fetch the segments for given users and make decisions using the segments. For access to ODP audience targeting in your Feature Experimentation account, please contact your Customer Success Manager.

This version includes the following changes:

  • New API added to OptimizelyUserContext:

    • fetchQualifiedSegments(): this API will retrieve user segments from the ODP server. The fetched segments will be used for audience evaluation. The fetched data will be stored in the local cache to avoid repeated network delays.

    • When an OptimizelyUserContext is created, the SDK will automatically send an identify request to the ODP server to facilitate observing user activities.

  • New APIs added to OptimizelyClient:

    • sendOdpEvent(): customers can build/send arbitrary ODP events that will bind user identifiers and data to user profiles in ODP.

    • createUserContext() with anonymous user IDs: user-contexts can be created without a userId. The SDK will create and use a persistent VUID specific to a device when userId is not provided.

For details, refer to our documentation pages:

Additionally, a handful of major package updates are also included in this release including murmurhash, uuid, and others. For more information, check out the Breaking Changes section below. (#892, #762)

Breaking Changes

  • ODPManager in the SDK is enabled by default. Unless an ODP account is integrated into the Optimizely projects, most ODPManager functions will be ignored. If needed, ODPManager can be disabled when OptimizelyClient is instantiated.
  • Updated murmurhash dependency to version 2.0.1.
  • Updated uuid dependency to version 9.0.1.
  • Dropped support for the following browser versions.
    • All versions of Microsof Internet Explorer.
    • Chrome versions earlier than 102.0.
    • Microsoft Edge versions earlier than 84.0.
    • Firefox versions earlier than 91.0.
    • Opera versions earlier than 76.0.
    • Safari versions earlier than 13.0.
  • Dropped support for Node JS versions earlier than 16.

Changed

  • Updated createUserContext's userId parameter to be optional due to the Browser variation's use of the new vuid field. Note: The Node variation of the SDK does not use the new vuid field and you should pass in a userId when within the context of the Node variant.

[4.10.0] - October 11, 2023

New Features

  • Add support for configurable closing event dispatcher, and dispatching events using sendBeacon in the browser on instance close (#876, #874, #873)

[5.0.0-beta5] - September 1, 2023

Changed

  • Exported logging related types and values from the package entrypoint (#858)
  • Removed /lib directory from the published pacakage (#862)

[5.0.0-beta4] - August 22, 2023

New Features

  • Added support for configurable user agent parser for ODP (#854)

Bug fixes

  • Fixed typescript compilation failure due to missing types (#856)

[5.0.0-beta3] - August 18, 2023

Bug fixes

  • Fixed odp event sending not working for Europe and Asia-Pacific regions (#852)

Changed

  • Remove 1 second polling floor to allow datafile polling at any frequency but for intervals under 30 seconds, log a warning (#841).

[5.0.0-beta2] - July 19, 2023

Performance Improvements

  • Improved OptimizelyConfig class instantiation performance from O(n^2) to O(n) where n = number of feature flags (#828)

Bug fixes

  • Fixed ODP config update issue on datafile update (#830)

[4.9.4] - June 8, 2023

Performance Improvements

  • Improve OptimizelyConfig class instantiation performance from O(n^2) to O(n) where n = number of feature flags (#829)

5.0.0-beta

May 4, 2023

New Features

The 5.0.0-beta release introduces a new primary feature, Advanced Audience Targeting enabled through integration with Optimizely Data Platform (ODP) (#765, #775, #776, #777, #778, #786, #789, #790, #797, #799, #808).

You can use ODP, a high-performance Customer Data Platform (CDP), to easily create complex real-time segments (RTS) using first-party and 50+ third-party data sources out of the box. You can create custom schemas that support the user attributes important for your business, and stitch together user behavior done on different devices to better understand and target your customers for personalized user experiences. ODP can be used as a single source of truth for these segments in any Optimizely or 3rd party tool.

With ODP accounts integrated into Optimizely projects, you can build audiences using segments pre-defined in ODP. The SDK will fetch the segments for given users and make decisions using the segments. For access to ODP audience targeting in your Feature Experimentation account, please contact your Customer Success Manager.

This version includes the following changes:

  • New API added to OptimizelyUserContext:

    • fetchQualifiedSegments(): this API will retrieve user segments from the ODP server. The fetched segments will be used for audience evaluation. The fetched data will be stored in the local cache to avoid repeated network delays.

    • When an OptimizelyUserContext is created, the SDK will automatically send an identify request to the ODP server to facilitate observing user activities.

  • New APIs added to OptimizelyClient:

    • sendOdpEvent(): customers can build/send arbitrary ODP events that will bind user identifiers and data to user profiles in ODP.

    • createUserContext() with anonymous user IDs: user-contexts can be created without a userId. The SDK will create and use a persistent VUID specific to a device when userId is not provided.

For details, refer to our documentation pages:

Additionally, a handful of major package updates are also included in this release including murmurhash, uuid, and others. For more information, check out the Breaking Changes section below. (#762)

Breaking Changes

  • ODPManager in the SDK is enabled by default. Unless an ODP account is integrated into the Optimizely projects, most ODPManager functions will be ignored. If needed, ODPManager can be disabled when OptimizelyClient is instantiated.
  • Updated murmurhash dependency to version 2.0.1.
  • Updated uuid dependency to version 8.3.2.
  • Dropped support for the following browser versions.
    • All versions of Microsof Internet Explorer.
    • Chrome versions earlier than 102.0.
    • Microsoft Edge versions earlier than 84.0.
    • Firefox versions earlier than 91.0.
    • Opera versions earlier than 76.0.
    • Safari versions earlier than 13.0.
  • Dropped support for Node JS versions earlier than 14.

Changed

  • Updated createUserContext's userId parameter to be optional due to the Browser variation's use of the new vuid field. Note: The Node variation of the SDK does not use the new vuid field and you should pass in a userId when within the context of the Node variant.

[4.9.3] - March 17, 2023

Changed

  • Updated README.md and package.json files to reflect that this SDK supports both Optimizely Feature Experimentation and Optimizely Full Stack (#803).

[4.9.2] - June 27, 2022

Changed

  • Add package.json script for running Karma tests locally using Chrome (#651).
  • Replaced explicit typescript typings with auto generated ones (#745).
  • Integrated code from utils package into optimizely-sdk (#749).
  • Added ODP Segments support in Audience Evaluation (#765).

[4.9.1] - January 18, 2022

Bug fixes

  • Fixed typescript compilation issue introduced by 4.9.0 (#733)

[4.9.0] - January 14, 2022

New Features

  • Add a set of new APIs for overriding and managing user-level flag, experiment and delivery rule decisions. These methods can be used for QA and automated testing purposes. They are an extension of the OptimizelyUserContext interface (#705, #727, #729, #730):

    • setForcedDecision
    • getForcedDecision
    • removeForcedDecision
    • removeAllForcedDecisions
  • For details, refer to our documentation pages: OptimizelyUserContext and Forced Decision methods.

[4.8.0] - November 29, 2021

New Features

  • Added a Lite bundle which does not include Data file manager and Event Processor packages. This reduces the bundle size up to 20% and is helpful for some platforms (such as edge service providers) that do not need extended functionality offered by these packages.
  • Removed Client engine validation in the SDK to allow tracking events from new clients without modifying SDK code.

Performance Improvements

  • Reduced SDK client initialization time by removing OptimizelyConfig creation from initialization. The OptimizelyConfig object is now created on the first call to getOptimizelyConfig API.
  • Made Improvements to logging mechanism. The SDK no longer concatenates and formats messages which do not qualify for the log level set by the user.

Changed

  • Updated json-schema package version to 0.4.0 to fix a high-severity vulnerability (Prototype Pollution).

[4.8.0-beta.2] - November 1, 2021

New Features

  • Removed Client engine validation in the SDK to allow tracking events from new clients without modifying SDK code.

[4.8.0-beta] - October 18, 2021

New Features

  • Added a Lite bundle which does not include Data file manager and Event Processor packages. This reduces the bundle size up to 20% and is helpful for some platforms (such as edge service providers) that do not need extended functionality offered by these packages.

Performance Improvements

  • Reduced SDK client initialization time by removing OptimizelyConfig creation from initialization. The OptimizelyConfig object is now created on the first call to getOptimizelyConfig API.
  • Made Improvements to logging mechanism. The SDK now no longer concatenates and formats messages which do not qualify for the log level set by the user.

[4.7.0] - September 15, 2021

New Features

Bug fixes

  • Followed experimentIds order of experiments inside featuresMap of OptimizelyConfig (#701)

Deprecated

  • OptimizelyFeature.experimentsMap of OptimizelyConfig is deprecated as of this release. Please use OptimizelyFeature.experimentRules and OptimizelyFeature.deliveryRules (#698)

[4.6.2] - July 15, 2021

Bug fixes

  • Fixed incorrect impression event payload in projects containing multiple flags with dublicate key rules (#690)

[4.6.1] - July 8, 2021

Bug fixes

  • Bumped event-processor packages to version 0.8.2
  • Fixed serving incorrect variation issue in projects containing multiple flags with same key rules (#687)

[4.6.0] - May 27, 2021

New Features

  • Added support for multiple concurrent prioritized experiments per flag (#664)

Bug fixes

  • Fixed the issue of forced-variation and whitelist not working properly with exclusion group experiments (#664)
  • Bumped datafile-manager and event-processor packages to version 0.8.1.

[4.5.1] - March 2, 2021

Bug fixes

  • Refactored TypeScript type definitions to have OptimizelyUserContext and OptimizelyDecision imported from shared_types to provide isolation from internal modules (#655)

[4.5.0] - February 17, 2021

New Features

[4.5.0-beta] - February 10, 2021

New Features

[4.4.3] - November 23, 2020

Bug fixes

  • Refactored TypeScript type definitions to have OptimizelyOptions imported from shared_types to provide isolation from internal modules (#629)

[4.4.2] - November 19, 2020

Bug fixes

  • In Optimizely class, use any type when assigning the return value of setTimeout. This is to allow it to type check regardless of whether it uses the browser or Node version of setTimeout (PR #623), (Issue #622)
  • Allowed to pass string type logLevel to createInstance. (PR #627), (Issue #614)
  • Excluded suppressImplicitAnyIndexErrors from TSconfig and resolved reported TS compiler issues (PR #616), (Issue #613)
  • Refactored TypeScript type definitions to only import from shared_types to provide isolation from internal modules (#625)

New Features

  • Added enabled field to decision metadata structure to support upcoming application-controlled introduction of tracking for non-experiment Flag decisions (#619)

[4.4.1] - November 5, 2020

Bug fixes

  • Allowed using --isolatedModules flag in TSConfig file by fixing exports in event processor (#610)
  • Fixed strictNullChecks type errors (#611)

[4.4.0] - November 2, 2020

New Features

  • Added support sending impression events every time a decision is made (#599)

[4.3.4] - October 8, 2020

Bug fixes

  • The prior version (4.3.3) was erroneously published with the wrong content. This version contains up-to-date content, with no new changes.

[4.3.3] - October 7, 2020

Bug fixes

  • Exported OptimizelyVariable, OptimizelyVariation, OptimizelyExperiment, OptimizelyFeature, UserProfileService, and UserProfile types from TypeScript type definitions (#594)

[4.3.2] - October 6, 2020

Bug fixes

  • Fixed return type of getAllFeatureVariables method and dispatchEvent method signature of EventDispatcher interface in TypeScript type definitions (#576)
  • Don't log an error message when initialized with sdkKey, but no datafile (#589)

[4.3.1] - October 5, 2020

Bug fixes

  • Exported OptimizelyConfig and UserAttributes type in TypeScript type definitions (#587)

[4.3.0] - October 1, 2020

New Features

  • Added support for version audience evaluation (#517)
  • Add datafile accessor (#564)

[4.2.1] - August 10, 2020

Bug fixes

  • Remove incorrect warning about invalid variation ID when user not bucketed into experiment or feature rollout (#549)

[4.2.0] - July 31, 2020

New Features

  • Better offline support in React Native apps:
    • Persist downloaded datafiles in local storage for use in subsequent SDK initializations (#430)
    • Persist pending impression & conversion events in local storage (#517, #532)

Bug fixes

  • Fixed log messages for Targeted Rollouts (#515)

[4.1.0] - July 7, 2020

New Features

  • Added support for JSON feature variables: new methods getFeatureVariableJSON and getAllFeatureVariables (#467, #470)
  • Added support for authenticated datafiles when running in Node.js. Pass datafileAccessToken within datafileOptions to request an authenticated datafile using the token (#498, #502):
    const optimizelySDK = require('@optimizely/optimizely-sdk');
    var optimizelyClientInstance = optimizely.createInstance({
      sdkKey: '<Your SDK key>',
      datafileOptions: {
        datafileAccessToken: '<Your datafile access token>',
      }
    });

Bug fixes

  • Fixed audience evaluation log level: changed from INFO to DEBUG (#496)
  • Temporarily disabled React Native FSC tests (#514)
  • Changed getFeatureVariableJson to getFeatureVariableJSON (#516)

[4.1.0-beta] - June 16, 2020

New Features

  • Added support for JSON feature variables: new methods getFeatureVariableJSON and getAllFeatureVariables (#467, #470)
  • Added support for authenticated datafiles when running in Node.js. Pass datafileAccessToken within datafileOptions to request an authenticated datafile using the token (#498, #502):
    const optimizelySDK = require('@optimizely/optimizely-sdk');
    var optimizelyClientInstance = optimizely.createInstance({
      sdkKey: '<Your SDK key>',
      datafileOptions: {
        datafileAccessToken: '<Your datafile access token>',
      }
    });

Bug fixes

  • Fixed audience evaluation log level: changed from INFO to DEBUG (#496)

[4.0.0] - April 30, 2020

New Features

  • Removed lodash dependency
  • ES module entry point for the browser - "module" property of package.json points to dist/optimizely.browser.es.min.js (#445)

Breaking Changes

  • Removed Promise polyfill from browser entry point (417).
  • Changed functionality of JSON schema validation in all entry points (442).

    • Previously, skipJSONValidation flag was used by the user to specify whether the JSON object should be validated.
    • Now, skipJSONValidation has been removed entirely from all entry points. Instead, a user will need to import jsonSchemaValidator from @optimizely/optimizely-sdk/dist/optimizely.json_schema_validator.min.js and pass it to createInstance to perform validation as shown below: `js const optimizelySDK = require('@optimizely/optimizely-sdk'); const jsonSchemaValidator = require('@optimizely/optimizely-sdk/dist/optimizely.json_schema_validator.min');

    // Require JSON schema validation for the datafile var optimizelyClientInstance = optimizely.createInstance({ datafile: datafile, jsonSchemaValidator: jsonSchemaValidator, }); `

  • Dropped support for Node.js version <8 (#456)

Bug fixes

  • Changed track() to log a warning instead of an error when the event isn't in the datafile (#418)
  • Fixed return type for close method in TypeScript type definitions (#410)
  • Node.js datafile manager uses gzip,deflate compression for requests (#456)

[4.0.0-rc.2] - April 24, 2020

Bug fixes

  • Allow multiple instances to be created from the same datafile object (#462)

[4.0.0-rc.1] - April 17, 2020

New Features

  • ES module entry point for the browser - "module" property of package.json points to dist/optimizely.browser.es.min.js (#445)

Breaking Changes:

  • Dropped support for Node.js version <8 (#456)

Bug fixes

  • Node.js datafile manager uses gzip,deflate compression for requests (#456)

[4.0.0-alpha.1] - March 4, 2020

Breaking Changes:

  • Removed Promise polyfill from browser entry point (417).
  • Changed functionality of JSON schema validation in all entry points (442).

    • Previously, skipJSONValidation flag was used by the user to specify whether the JSON object should be validated.
    • Now, skipJSONValidation has been removed entirely from all entry points. Instead, a user will need to import jsonSchemaValidator from @optimizely/optimizely-sdk/dist/optimizely.json_schema_validator.min.js and pass it to createInstance to perform validation as shown below:
    const optimizelySDK = require('@optimizely/optimizely-sdk');
    const jsonSchemaValidator = require('@optimizely/optimizely-sdk/dist/optimizely.json_schema_validator.min');
    
    // Require JSON schema validation for the datafile
    var optimizelyClientInstance = optimizely.createInstance({
      datafile: datafile,
      jsonSchemaValidator: jsonSchemaValidator,
    });

[3.6.0-alpha.1] - March 4, 2020

New Features

  • Changed track() to log a warning instead of an error when the event isn't in the datafile (#418)

[3.5.0] - February 20th, 2020

Bug fixes

  • Fixed default event dispatcher not used in React Native entry point (#383)
  • Fixed errors in getOptimizelyConfig TypeScript type definitions (#406)

New Features

  • Promise returned from close tracks the state of in-flight event dispatcher requests (#404)

[3.4.1] - January 28th, 2020

Bug fixes

  • Added getOptimizelyConfig and related types to TypeScript type definitions(#390).

[3.4.0] - January 21th, 2020

Bug fixes

  • Fixed incorrect payload for decision notification triggered by calling getVariation on a feature test in a mutex group(#375).

New Features

  • Added a new API to get project configuration static data.
    • Call getOptimizelyConfig() to get a snapshot of project configuration static data.
    • It returns an OptimizelyConfig instance which includes a datafile revision number, all experiments, and feature flags mapped by their key values.
    • Added caching for getOptimizelyConfig - OptimizelyConfig object will be cached and reused for the lifetime of the datafile.
    • For details, refer to our documentation page: https://docs.developers.optimizely.com/full-stack/docs/optimizelyconfig-javascript-node.

Removed Features

  • Removed support for 'launched' experiment status
    • Previously, experiments with status 'running' or 'launched' would return non-null variations from activate and getVariation, and generate impression events from activate
    • Now, only 'running' experiments will return non-null variations and generate impressions

[3.4.0-beta] - December 18th, 2019

Bug fixes

  • Fixed incorrect payload for decision notification triggered by calling getVariation on a feature test in a mutex group(#375)

New Features

[3.3.2] - November 14th, 2019

Bug fixes

  • Fixed error message that was being logged when a user was bucketed into empty space in an experiment or a mutual exclusion group. This is not an error. With the fix, the message indicates that the user was not included in any experiment (#366).

[3.3.1] - October 25th, 2019

Bug fixes

  • Fixed full screen error dialog appearing in local development for React Native apps when using the default logger. We now provide a default logger for React Native that does not call console.error.

[3.3.0] - September 25th, 2019

New Features

  • Added support for event batching via the event processor.
    • Events generated by methods like activate, track, and isFeatureEnabled will be held in a queue until the configured batch size is reached, or the configured flush interval has elapsed. Then, they will be combined into a request and sent to the event dispatcher.
    • To configure event batching, include the eventBatchSize and eventFlushInterval number properties in the object you pass to createInstance.
    • Event batching is enabled by default. eventBatchSize defaults to 10. eventFlushInterval defaults to 30000 in Node and 1000 in browsers.
  • Added localStorage mitigation against lost events in the browser
    • When event requests are dispatched, they are written to localStorage, and when a response is received, they are removed from localStorage.
    • When the SDK is initialized for the first time in the browser, if any requests remain in localStorage, they will be sent, and removed from localStorage when a response is received.
  • Updated the close method to return a Promise representing the process of closing the instance. When close is called, any events waiting to be sent as part of a batched event request will be immediately batched and sent to the event dispatcher.
    • If any such requests were sent to the event dispatcher, close returns a Promise that fulfills after the event dispatcher calls the response callback for each request. Otherwise, close returns an immediately-fulfilled Promise.
    • The Promise returned from close is fulfilled with a result object containing success (boolean) and reason (string, only when success is false) properties. In the result object, success is true if all events in the queue at the time close was called were combined into requests, sent to the event dispatcher, and the event dispatcher called the callbacks for each request. success is false if an unexpected error was encountered during the close process.
  • Added non-typed getFeatureVariable method (#298) as a more idiomatic approach to getting values of feature variables.
    • Typed getFeatureVariable methods will still be available for use.

[3.3.0-beta] - August 21th, 2019

New Features

  • Added support for event batching via the event processor.
    • Events generated by methods like activate, track, and isFeatureEnabled will be held in a queue until the configured batch size is reached, or the configured flush interval has elapsed. Then, they will be combined into a request and sent to the event dispatcher.
    • To configure event batching, include the eventBatchSize and eventFlushInterval number properties in the object you pass to createInstance.
    • Event batching is enabled by default. eventBatchSize defaults to 10. eventFlushInterval defaults to 30000 in Node and 1000 in browsers.
  • Added localStorage mitigation against lost events in the browser
    • When event requests are dispatched, they are written to localStorage, and when a response is received, they are removed from localStorage.
    • When the SDK is initialized for the first time in the browser, if any requests remain in localStorage, they will be sent, and removed from localStorage when a response is received.
  • Updated the close method to return a Promise representing the process of closing the instance. When close is called, any events waiting to be sent as part of a batched event request will be immediately batched and sent to the event dispatcher.
    • If any such requests were sent to the event dispatcher, close returns a Promise that fulfills after the event dispatcher calls the response callback for each request. Otherwise, close returns an immediately-fulfilled Promise.
    • The Promise returned from close is fulfilled with a result object containing success (boolean) and reason (string, only when success is false) properties. In the result object, success is true if all events in the queue at the time close was called were combined into requests, sent to the event dispatcher, and the event dispatcher called the callbacks for each request. success is false if an unexpected error was encountered during the close process.
  • Added non-typed getFeatureVariable method (#298) as a more idiomatic approach to getting values of feature variables.
    • Typed getFeatureVariable methods will still be available for use.

[3.2.2] - August 20th, 2019

Bug fixes

  • Dont use pendingEventsDispatcher with user defined eventDispatcher (#289) Note: This was supposed to be released in 3.2.1 but did not make it into the release.
  • Updated lodash dependency to ^4.17.11 to address security vulnerabilities (#296)

[3.2.1] - July 1st, 2019

Changed

  • Updated lodash dependency to ^4.17.11 to address security vulnerabilities (#296)

[3.2.0] - May 30th, 2019

New Features

  • Added support for automatic datafile management (#261), (#266), (#267), (#268), (#270), (#272)

    • To use automatic datafile management, include sdkKey as a string property in the options object you pass to createInstance.
    • When sdkKey is provided, the SDK instance will download the datafile associated with that sdkKey immediately upon construction. When the download completes, the SDK instance will update itself to use the downloaded datafile.
    • Use the onReady method to wait until the download is complete and the SDK is ready to use.
    • Customize datafile management behavior by passing a datafileOptions object within the options you pass to createInstance.
      • Enable automatic updates by passing autoUpdate: true. Periodically (on the provided update interval), the SDK instance will download the datafile and update itself. Use this to ensure that the SDK instance is using a fresh datafile reflecting changes recently made to your experiment or feature configuration.
    • Add a notification listener for the OPTIMIZELY_CONFIG_UPDATE notification type to be notified when an instance updates its Optimizely config after obtaining a new datafile.
    • Stop active downloads and cancel recurring downloads by calling the close method

    Create an instance with datafile management enabled

    const optimizely = require('@optimizely/optimizely-sdk');
    const optimizelyClientInstance = optimizely.createInstance({
      sdkKey: '12345', // Provide the sdkKey of your desired environment here
    });

    Use onReady to wait until optimizelyClientInstance has a datafile

    const optimizely = require('@optimizely/optimizely-sdk');
    const optimizelyClientInstance = optimizely.createInstance({
      sdkKey: '12345',
    });
    optimizelyClientInstance.onReady().then(() => {
      // optimizelyClientInstance is ready to use, with datafile downloaded from the Optimizely CDN
    });

    Enable automatic updates, add notification listener for OPTIMIZELY_CONFIG_UPDATE notification type, and stop automatic updates

    const optimizely = require('@optimizely/optimizely-sdk');
    const optimizelyClientInstance = optimizely.createInstance({
      sdkKey: '12345',
      datafileOptions: {
        autoUpdate: true,
        updateInterval: 600000, // 10 minutes in milliseconds
      },
    });
    optimizelyClientInstance.notificationCenter.addNotificationListener(
      optimizely.enums.NOTIFICATION_TYPES.OPTIMIZELY_CONFIG_UPDATE,
      () => {
        // optimizelyClientInstance has updated its Optimizely config
      }
    );
    // Stop automatic updates - optimizelyClientInstance will use whatever datafile it currently has from now on
    optimizelyClientInstance.close();

Changed

  • Forced variation logic has been moved from the project config module to the decision service. Prefixes for forced-variation-related log messages will reflect this change (#261).
  • Update TypeScript definitions to account for new methods (onReady, close) and new properties on object accepted by createInstance (datafileOptions, sdkKey), (#263), (#278)
  • Allow react-sdk to be passed in as clientEngine (#279)

Bug Fixes:

  • Add logging message for optimizely.track() (#281)

[3.2.0-beta] - May 16th, 2019

Bug Fixes:

  • Clear timeout created in onReady call for timeout promise as soon as project config manager's ready promise fulfills

New Features

  • Added 60 second timeout for all datafile requests

Changed

  • Updated datafile request polling behavior:
    • Start update interval timer immediately after request
    • When update interval timer fires during request, wait until request completes, then immediately start next request
  • Update TypeScript definitions to account for new methods (onReady, close) and new properties on object accepted by createInstance (datafileOptions, sdkKey)

[3.2.0-alpha] - April 26nd, 2019

New Features

  • Added support for automatic datafile management
    • To use automatic datafile management, include sdkKey as a string property in the options object you pass to createInstance.
    • When sdkKey is provided, the SDK instance will download the datafile associated with that sdkKey immediately upon construction. When the download completes, the SDK instance will update itself to use the downloaded datafile.
    • Use the onReady method to wait until the download is complete and the SDK is ready to use.
    • Customize datafile management behavior by passing a datafileOptions object within the options you pass to createInstance.
      • Enable automatic updates by passing autoUpdate: true. Periodically (on the provided update interval), the SDK instance will download the datafile and update itself. Use this to ensure that the SDK instance is using a fresh datafile reflecting changes recently made to your experiment or feature configuration.
    • Add a notification listener for the OPTIMIZELY_CONFIG_UPDATE notification type to be notified when an instance updates its Optimizely config after obtaining a new datafile.
    • Stop active downloads and cancel pending downloads by calling the close method

Create an instance with datafile management enabled

const optimizely = require('@optimizely/optimizely-sdk');
const optimizelyClientInstance = optimizely.createInstance({
  sdkKey: '12345', // Provide the sdkKey of your desired environment here
});

Use onReady to wait until optimizelyClientInstance has a datafile

const optimizely = require('@optimizely/optimizely-sdk');
const optimizelyClientInstance = optimizely.createInstance({
  sdkKey: '12345',
});
optimizelyClientInstance.onReady().then(() => {
  // optimizelyClientInstance is ready to use, with datafile downloaded from the Optimizely CDN
});

Enable automatic updates, add notification listener for OPTIMIZELY_CONFIG_UPDATE notification type, and stop automatic updates

const optimizely = require('@optimizely/optimizely-sdk');
const optimizelyClientInstance = optimizely.createInstance({
  sdkKey: '12345',
  datafileOptions: {
    autoUpdate: true,
    updateInterval: 600000, // 10 minutes in milliseconds
  },
});
optimizelyClientInstance.notificationCenter.addNotificationListener(
  optimizely.enums.NOTIFICATION_TYPES.OPTIMIZELY_CONFIG_UPDATE,
  () => {
    // optimizelyClientInstance has updated its Optimizely config
  }
);
// Stop automatic updates - optimizelyClientInstance will use whatever datafile it currently has from now on
optimizelyClientInstance.close();

Changed

  • Forced variation logic has been moved from the project config module to the decision service. Prefixes for forced-variation-related log messages will reflect this change.

[3.1.0] - April 22nd, 2019

New Features:

  • Introduced Decision notification listener to be able to record:
    • Variation assignments for users activated in an experiment.
    • Feature access for users.
    • Feature variable value for users.

Changed

  • New APIs for setting logger and logLevel on the optimizelySDK singleton (#232)
  • logger and logLevel are now set globally for all instances of Optimizely. If you were passing different loggers to individual instances of Optimizely, logging behavior may now be different.

Setting a ConsoleLogger

var optimizelySDK = require('@optimizely/optimizely-sdk');

// logger and logLevel are now set on the optimizelySDK singleton
optimizelySDK.setLogger(optimizelySDK.logging.createLogger());

// valid levels: 'DEBUG', 'INFO', 'WARN', 'ERROR'
optimizelySDK.setLogLevel('WARN');
// enums can also be used
optimizelySDK.setLogLevel(optimizelySDK.enums.LOG_LEVEL.ERROR);

Disable logging

var optimizelySDK = require('@optimizely/optimizely-sdk');

optimizelySDK.setLogger(null);

Bug Fixes

  • Feature variable APIs now return default variable value when featureEnabled property is false. (#249)

Deprecated

  • Activate notification listener is deprecated as of this release. Recommendation is to use the new Decision notification listener. Activate notification listener will be removed in the next major release.

[3.1.0-beta1] - March 5th, 2019

Changed

  • New APIs for setting logger and logLevel on the optimizelySDK singleton (#232)
  • logger and logLevel are now set globally for all instances of Optimizely. If you were passing different loggers to individual instances of Optimizely, logging behavior may now be different.

Setting a ConsoleLogger

var optimizelySDK = require('@optimizely/optimizely-sdk');

// logger and logLevel are now set on the optimizelySDK singleton
optimizelySDK.setLogger(optimizelySDK.logging.createLogger());

// valid levels: 'DEBUG', 'INFO', 'WARN', 'ERROR'
optimizelySDK.setLogLevel('WARN');
// enums can also be used
optimizelySDK.setLogLevel(optimizely.enums.LOG_LEVEL.ERROR);

Disable logging

var optimizelySDK = require('@optimizely/optimizely-sdk');

optimizelySDK.setLogger(null);

[3.0.1] - February 21, 2019

Changed

  • Expose default loggers, errorHandlers, eventDispatcher and enums on top level require.
  • createLogger and createNoOpLogger are available as methods on optimizelySdk.logging
  • Added optimizelySdk.errorHandler
  • Added optimizelySdk.eventDispatcher
  • Added optimizelySdk.enums

[3.0.0] - February 13, 2019

The 3.0 release improves event tracking and supports additional audience targeting functionality.

New Features:

  • Event tracking (#207):
    • The track method now dispatches its conversion event unconditionally, without first determining whether the user is targeted by a known experiment that uses the event. This may increase outbound network traffic.
    • In Optimizely results, conversion events sent by 3.0 SDKs don't explicitly name the experiments and variations that are currently targeted to the user. Instead, conversions are automatically attributed to variations that the user has previously seen, as long as those variations were served via 3.0 SDKs or by other clients capable of automatic attribution, and as long as our backend actually received the impression events for those variations.
    • Altogether, this allows you to track conversion events and attribute them to variations even when you don't know all of a user's attribute values, and even if the user's attribute values or the experiment's configuration have changed such that the user is no longer affected by the experiment. As a result, you may observe an increase in the conversion rate for previously-instrumented events. If that is undesirable, you can reset the results of previously-running experiments after upgrading to the 3.0 SDK.
    • This will also allow you to attribute events to variations from other Optimizely projects in your account, even though those experiments don't appear in the same datafile.
    • Note that for results segmentation in Optimizely results, the user attribute values from one event are automatically applied to all other events in the same session, as long as the events in question were actually received by our backend. This behavior was already in place and is not affected by the 3.0 release.
  • Support for all types of attribute values, not just strings (#174, #204).
    • All values are passed through to notification listeners.
    • Strings, booleans, and valid numbers are passed to the event dispatcher and can be used for Optimizely results segmentation. A valid number is a finite number in the inclusive range [-2⁵³, 2⁵³].
    • Strings, booleans, and valid numbers are relevant for audience conditions.
  • Support for additional matchers in audience conditions (#174):
    • An exists matcher that passes if the user has a non-null value for the targeted user attribute and fails otherwise.
    • A substring matcher that resolves if the user has a string value for the targeted attribute.
    • gt (greater than) and lt (less than) matchers that resolve if the user has a valid number value for the targeted attribute. A valid number is a finite number in the inclusive range [-2⁵³, 2⁵³].
    • The original (exact) matcher can now be used to target booleans and valid numbers, not just strings.
  • Support for A/B tests, feature tests, and feature rollouts whose audiences are combined using "and" and "not" operators, not just the "or" operator (#175)
  • Updated Pull Request template and commit message guidelines (#183).
  • Support for sticky bucketing. You can pass an $opt_experiment_bucket_map attribute to ensure that the user gets a specific variation (#179).
  • Support for bucketing IDs when evaluating feature rollouts, not just when evaluating A/B tests and feature tests (#200).
  • TypeScript declarations (#199).

Breaking Changes:

  • Conversion events sent by 3.0 SDKs don't explicitly name the experiments and variations that are currently targeted to the user, so these events are unattributed in raw events data export. You must use the new results export to determine the variations to which events have been attributed.
  • Previously, notification listeners were only given string-valued user attributes because only strings could be passed into various method calls. That is no longer the case. You may pass non-string attribute values, and if you do, you must update your notification listeners to be able to receive whatever values you pass in (#174, #204).
  • Drops window.optimizelyClient from the bundled build. Now, window.optimizelySdk can be used instead. (#189).

Bug Fixes:

  • Experiments and features can no longer activate when a negatively targeted attribute has a missing, null, or malformed value (#174).
    • Audience conditions (except for the new exists matcher) no longer resolve to false when they fail to find an legitimate value for the targeted user attribute. The result remains null (unknown). Therefore, an audience that negates such a condition (using the "not" operator) can no longer resolve to true unless there is an unrelated branch in the condition tree that itself resolves to true.
  • setForcedVariation now treats an empty variation key as invalid and does not reset the variation (#185).
  • You can now specify 0 as the revenue or value for a conversion event when using the track method. Previously, 0 was withheld and would not appear in your data export (#213).
  • The existence of a feature test in an experimentation group no longer causes A/B tests in the same group to activate the same feature (#194).

[2.3.1] - November 14, 2018

Fixed

  • fix(bundling): Publish the unminified UMD bundle along with the minified one. (#187)

[2.3.0] - November 14, 2018

New Features

  • Allow sticky bucketing via passing in attributes.$opt_experiment_bucket_map, this more easily allows customers to do some async data fetching and ensure a user gets a specific variation.
const userId = '123'
const expId = '456'
const variationId = '678'
const userAttributes = {
  $opt_experiment_bucket_map: {
    [expId]: {
      variation_id: variationId
    }
  }
}

var selectedVariationKey = optimizelyClient.activate('experiment-1', userId, userAttributes);

[2.2.0] - September 26, 2018

Fixed

  • Track and activate should not remove null attributes (#168)
  • Track attributes with valid attribute types (#166)
  • Prevent SDK from initializing if the datafile version in invalid (#161)
  • Updating lerna to latest version (#160)

Changed

  • Change invalid experiment key to debug level (#165)

[2.1.3] - August 21, 2018

Fixed

  • Send all decisions for the same event in one snapshot. (#155)
  • Give Node.js consumers the unbundled package (#133)

Deprecated

  • The UMD build of the SDK now assigns the SDK namespace object to window.optimizelySdk rather than to window.optimizelyClient. The old name still works, but on its first access a deprecation warning is logged to the console. The alias will be removed in the 3.0.0 release. (#152)

[2.1.2] - June 25, 2018

Fixed

  • Failure to log success message when event dispatched (#123)
  • Fix: Don't call success message when event fails to send (#123)

[2.0.5] - June 25, 2018

Fixed

  • Failure to log success message when event dispatched (#123)
  • Fix: Don't call success message when event fails to send (#123)

2.1.1

June 19, 2018

  • Fix: send impression event for Feature Test with Feature disabled (#117)

2.0.4

June 19, 2018

  • Fix: send impression event for Feature Test with Feature disabled (#117)

2.1.0

May 24, 2018

  • Introduces support for bot filtering.

2.0.3

May 24, 2018

  • Remove request dependency (#98)
  • Add package-lock.json (#100)
  • Input validation in Activate, Track, and GetVariation methods (#91 by @mfahadahmed)

2.0.1

April 16th, 2018

  • Improve browser entry point by pointing to the browser index file instead of the webpack-compiled bundle. (@DullReferenceException in #88)

2.0.0

April 11th, 2018

This major release of the Optimizely SDK introduces APIs for Feature Management. It also introduces some breaking changes listed below.

New Features

  • Introduces the isFeatureEnabled API to determine whether to show a feature to a user or not.
var enabled = optimizelyClient.isFeatureEnabled('my_feature_key', 'user_1', userAttributes);
  • You can also get all the enabled features for the user by calling the following method which returns a list of strings representing the feature keys:
var enabledFeatures = optimizelyClient.getEnabledFeatures('user_1', userAttributes);
  • Introduces Feature Variables to configure or parameterize your feature. There are four variable types: Integer, String, Double, Boolean.
var stringVariable = optimizelyClient.getFeatureVariableString('my_feature_key', 'string_variable_key', 'user_1');
var integerVariable = optimizelyClient.getFeatureVariableInteger('my_feature_key', 'integer_variable_key', 'user_1');
var doubleVariable = optimizelyClient.getFeatureVariableDouble('my_feature_key', 'double_variable_key', 'user_1');
var booleanVariable = optimizelyClient.getFeatureVariableBoolean('my_feature_key', 'boolean_variable_key', 'user_1');

Breaking changes

  • The track API with revenue value as a stand-alone parameter has been removed. The revenue value should be passed in as an entry of the event tags map. The key for the revenue tag is revenue and will be treated by Optimizely as the key for analyzing revenue data in results.
var eventTags = {
  'revenue': 1200
};

optimizelyClient.track('event_key', 'user_id', userAttributes, eventTags);
  • The package name has changed from optimizely-client-sdk to optimizely-sdk as we have consolidated both Node and JavaScript SDKs into one.

2.0.0-beta1

March 29th, 2018

This major release of the Optimizely SDK introduces APIs for Feature Management. It also introduces some breaking changes listed below.

New Features

  • Introduces the isFeatureEnabled API to determine whether to show a feature to a user or not.
var enabled = optimizelyClient.isFeatureEnabled('my_feature_key', 'user_1', userAttributes);
  • You can also get all the enabled features for the user by calling the following method which returns a list of strings representing the feature keys:
var enabledFeatures = optimizelyClient.getEnabledFeatures('user_1', userAttributes);
  • Introduces Feature Variables to configure or parameterize your feature. There are four variable types: Integer, String, Double, Boolean.
var stringVariable = optimizelyClient.getFeatureVariableString('my_feature_key', 'string_variable_key', 'user_1');
var integerVariable = optimizelyClient.getFeatureVariableInteger('my_feature_key', 'integer_variable_key', 'user_1');
var doubleVariable = optimizelyClient.getFeatureVariableDouble('my_feature_key', 'double_variable_key', 'user_1');
var booleanVariable = optimizelyClient.getFeatureVariableBoolean('my_feature_key', 'boolean_variable_key', 'user_1');

Breaking changes

  • The track API with revenue value as a stand-alone parameter has been removed. The revenue value should be passed in as an entry of the event tags map. The key for the revenue tag is revenue and will be treated by Optimizely as the key for analyzing revenue data in results.
var eventTags = {
  'revenue': 1200
};

optimizelyClient.track('event_key', 'user_id', userAttributes, eventTags);
  • The package name has changed from optimizely-client-sdk to optimizely-sdk as we have consolidated both Node and JavaScript SDKs into one.

1.6.0

  • Bump optimizely-server-sdk to version 1.5.0, which includes:
    • Implemented IP anonymization.
    • Implemented bucketing IDs.
    • Implemented notification listeners.

1.5.1

  • Bump optimizely-server-sdk to version 1.4.2, which includes:
    • Bug fix to filter out undefined values in attributes and event tags
    • Remove a duplicated test

1.5.0

  • Bump optimizely-server-sdk to version 1.4.0, which includes:
    • Add support for numeric metrics.
    • Add getForcedVariation and setForcedVariation methods for client-side variation setting
    • Bug fix for filtering out null attribute and event tag values

1.4.3

  • Default skipJSONValidation to true
  • Bump optimizely-server-sdk to version 1.3.3, which includes:
    • Removed JSON Schema Validator from Optimizely constructor
    • Updated SDK to use new event endpoint
    • Minor bug fixes

1.4.2

  • Minor performance improvements.

1.4.1

  • Switched to karma/browserstack for cross-browser testing
  • Removed es6-promise
  • Bump optimizely-server-sdk to version 1.3.1, which includes:
    • Minor performance improvements.

1.4.0

  • Reduce lodash footprint.
  • Bump optimizely-server-sdk to version 1.3.0, which includes:
    • Introduced user profile service.
    • Minor performance and readibility improvements.

1.3.5

  • Bump optimizely-server-sdk to version 1.2.3, which includes:
    • Switched to json-schema library which has a smaller footprint.
    • Refactored order of bucketing logic.
    • Refactor lodash dependencies.
    • Fixed error on validation for objects with undefined values for attributes.

1.3.4

  • Bump optimizely-server-sdk to version 1.2.2, which includes:
    • Use the 'name' field for tracking event tags instead of 'id'.

1.3.3

  • Include index.js in package.json files to make sure it gets published regardless of node environment.

1.3.2

  • Bump to 1.3.2 to re-publish to npm

1.3.1

  • Bump optimizely-server-sdk to version 1.2.1, which includes:
    • Gracefully handle empty traffic allocation ranges.

1.3.0

  • Bump optimizely-server-sdk to version 1.2.0, which includes:
    • Introduce support for event tags.
    • Add optional eventTags argument to track method signature.
    • Removed optional eventValue argument from track method signature.
    • Removed optional sessionId argument from activate and track method signatures.
    • Allow log level config on createInstance method.

1.2.2

  • Remove .npmignore to consolidate with .gitignore.
  • Add dist and lib directories to "files" in package.json.

1.2.1

  • Fix webpack build error.

1.2.0

  • Bump optimizely-server-sdk to version 1.1.0, which includes:
    • Add optional sessionId argument to activate and track method signatures.
    • Add sessionId and revision to event ticket.
    • Add 'Launched' status where user gets bucketed but event is not sent to Optimizely.

1.1.1

  • Bump to optimizely-server-sdk to version 1.0.1, which includes:
    • Fix bug so conversion event is not sent if user is not bucketed into any experiment.
    • Bump bluebird version from 3.3.5 to 3.4.6.
    • Update event endpoint from p13nlog.dz.optimizely to logx.optimizely.

1.1.0

  • Add global variable name export for use in non-CommonJS environments
  • Remove redundant lodash core dependency to reduce bundle bloat

1.0.0

  • Introduce support for Full Stack projects in Optimizely X with no breaking changes from previous version.
  • Introduce more graceful exception handling in instantiation and core methods.
  • Update whitelisting to take precedence over audience condition evaluation.
  • Fix bug activating/tracking with attributes not in the datafile.

0.1.4

  • Add functionality for New Optimizely endpoint.

0.1.3

  • Add environment detection to event builder so it can distinguish between events sent from node or the browser.

0.1.2

  • Add CORS param to prevent browsers from logging cors errors in the console when dispatching events.

0.1.1

  • Remove percentageIncluded field from JSON schema, which is not needed.

0.1.0

  • Beta release of the Javascript SDK for our Optimizely testing solution