Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Changelog: Twilio Sync JavaScript SDK


(error)

Danger

Versions 2.x and below are End-of-Life as of July 16, 2023.

Functionality will cease to work properly for these versions. Please upgrade to the latest version. See: Versioning and Support Lifecycle.


Latest release: 3.x

latest-release-3x page anchor

During development, we recommend that you consume the libraries linked below in this section. These will automatically receive API-compatible improvements and bug fixes as we release them.

This release provides all the latest features of Twilio Sync in a single package. It is available on our CDN in full source(link takes you to an external page) and minified(link takes you to an external page) variants. The latest documentation(link takes you to an external page) is available too.

Sync is also published via NPM(link takes you to an external page), for use from within a browserified/web-packed code base. Use npm install --save twilio-sync to install the latest version.


Version history and changelog

version-history-and-changelog page anchor

You will find links to specific patch versions below. We recommend using these links for production deployments together with resource integrity checks to avoid accidental security issues.

Sync SDK for Javascript 3.3.3 (June 29, 2023)

sync-sdk-for-javascript-333-june-29-2023 page anchor

Changes

changes page anchor
  • Improve caching of Map and List items.

Sync SDK for Javascript 3.3.2 (April 25, 2023)

sync-sdk-for-javascript-332-april-25-2023 page anchor

Internal release only for Conversations. No changes.

Sync SDK for Javascript 3.3.1 (March 21, 2023)

sync-sdk-for-javascript-331-march-21-2023 page anchor

Internal release only for Conversations. No changes.

Sync SDK for Javascript 3.3.0 (February 22, 2023)

sync-sdk-for-javascript-330-february-22-2023 page anchor

Internal release only for Conversations. No changes.

Sync SDK for Javascript 3.2.2 (September 22, 2022)

sync-sdk-for-javascript-322-september-22-2022 page anchor
  • Internal dependencies update.

Sync SDK for Javascript 3.1.0 (March 3, 2022)

sync-sdk-for-javascript-310-march-3-2022 page anchor
  • Improve initialization time for instances with many sync entities.

Sync SDK for Javascript 3.0.6 (November 25, 2021)

sync-sdk-for-javascript-306-november-25-2021 page anchor
  • Remove the post-install script, which was known to cause installation problems.
  • Fix argument typing for Sync maps.
  • Bump Node required version to current LTS (14).

Sync SDK for Javascript 3.0.5 (October 19, 2021)

sync-sdk-for-javascript-305-october-19-2021 page anchor

Secure browser script link (recommended for production deployments)


_10
<script src="https://media.twiliocdn.com/sdk/js/sync/releases/3.0.5/twilio-sync.min.js"
_10
integrity="sha256-M715lCHKKLJrBCtSpsjvP4hInafwt8ZXbJfXR7RlwdQ="
_10
crossorigin="anonymous"></script>

Non-secure browser script link (recommended only for development)


_10
<script src="https://media.twiliocdn.com/sdk/js/sync/v3.0/twilio-sync.min.js"></script>

  • Default exports removed — they didn't work in the previous versions either.
  • Fixed polyfilling issues for IE11.
  • Fixed type resolution issues on Angular.
  • Fixed initialization problems on React Native.

Sync SDK for Javascript 3.0.1 (July 22, 2021)

sync-sdk-for-javascript-301-july-22-2021 page anchor

Secure browser script link (recommended for production deployments)


_10
<script src="https://media.twiliocdn.com/sdk/js/sync/releases/3.0.1/twilio-sync.min.js"
_10
integrity="sha256-V+3gBmUUB90uAwluzE5PEUip/165AsEUxPLXPK8qWxw="
_10
crossorigin="anonymous"></script>

Non-secure browser script link (recommended only for development)


_10
<script src="https://media.twiliocdn.com/sdk/js/sync/v3.0/twilio-sync.min.js"></script>

  • Fixes for exports that broke when adding the new build pipeline.

Note These changes are minimal and require only some textual replacement. The new build pipeline might have caused some side-effects, though, especially for customers migrating from 2.x. Please evaluate this new version before deploying to production, and open support tickets if you detect any inconsistencies.


Sync SDK for Javascript 3.0.0 (July 16, 2021) Deprecated, use 3.0.1

sync-sdk-for-javascript-300-july-16-2021-deprecated-use-301 page anchor

Secure browser script link (recommended for production deployments)


_10
<script src="https://media.twiliocdn.com/sdk/js/sync/releases/3.0.0/twilio-sync.min.js"
_10
integrity="sha256-I0M5Rlc2nP5g3hG8HoJ/Mfz9qKdlrG5Y6lFjOc8y94Q="
_10
crossorigin="anonymous"></script>

Non-secure browser script link (recommended only for development)


_10
<script src="https://media.twiliocdn.com/sdk/js/sync/v3.0/twilio-sync.min.js"></script>

  • New Rollup -based build, removing dependency on Gulp , which produces a more optimized package and resolves some build pipeline vulnerabilities.
  • New documentation based on TypeDoc .
  • Stronger type checks in the sources.
  • New import paths for types (import from the bundle directly, not from lib).
  • New names for imported types. See the documentation for details of the renames.

Note These changes are minimal and require only some textual replacement. The new build pipeline might have caused some side-effects, though, especially for customers migrating from 2.x. Please evaluate this new version before deploying to production, and open support tickets if you detect any inconsistencies.


Sync SDK for Javascript 2.0.1 (March 8, 2021)

sync-sdk-for-javascript-201-march-8-2021 page anchor
  • Reverted the change that required the argument of InstantQuery.search to be a non-empty string. It now accepts any string.

Sync SDK for Javascript 2.0.0 (February 17, 2021)

sync-sdk-for-javascript-200-february-17-2021 page anchor
  • Breaking Stream's value field was renamed data .
  • Added startup registrations to allow subscribing to events during Twilsock connection, without using twilio-notifications.js dependency.
  • Reduces Sync dependencies, improves startup time.
  • Added runtime validation for InstantQuery.search , now the parameter is validated to be a non-empty string before making a call to the back-end.
  • Connection will not automatically start if you pass your own instance of Twilsock via options. Nothing changes if you simply create SyncClient with default options - it will work as usual.

Sync SDK for Javascript 1.0.0 (January 18, 2021)

sync-sdk-for-javascript-100-january-18-2021 page anchor
  • The getter for the data of Document was renamed from Document.value to Document.data .
  • The getters for the data of ListItem and MapItem were renamed from ListItem.value / MapItem.value to ListItem.data / MapItem.data .
  • The itemUpdated events for Map and List now expose the value previousItemData , which is a snapshot of the previous data of the item.
  • The itemRemoved events for Map and List had their value property renamed previousItemData .
  • The previousItemData value for itemRemoved events (for Map and List ) is now also available to local users upon removal.
  • The updated and removed events for Document now expose the value previousData , which is a snapshot of the previous data of the document.
  • Documentation improvements.

Sync SDK for Javascript 0.13.0 (December 9, 2020)

sync-sdk-for-javascript-0130-december-9-2020 page anchor
  • Internal changes and bug fixes.

Sync SDK for Javascript 0.12.4 (October 16, 2020)

sync-sdk-for-javascript-0124-october-16-2020 page anchor
  • Dependency bumps.

Sync SDK for Javascript 0.12.3 (October 6, 2020)

sync-sdk-for-javascript-0123-october-6-2020 page anchor
  • Dependency bumps.

Sync SDK for Javascript 0.12.2 (April 27, 2020)

sync-sdk-for-javascript-0122-april-27-2020 page anchor
  • Connection errors are reported with more details about what actually happened.
  • SDK type is now filled as "sync" to be compatible with mobile SDKs.

Sync SDK for Javascript 0.12.1 (April 16, 2020)

sync-sdk-for-javascript-0121-april-16-2020 page anchor
  • Logger name is now set to "twilio-sync" .
  • Client metadata now gets filled if not provided by the user application to the Sync SDK.
  • Added validation to the id attribute in OpenOptions to be a string.
  • Added validation to ttl attribute in OpenOptions to be a number.

Sync SDK for Javascript 0.12.0 (January 21, 2020)

sync-sdk-for-javascript-0120-january-21-2020 page anchor
  • LiveQuery can now automatically restore current state of the record set after being offline for a short period of time. It's an internal functional change which requires no special adoption (no API compatibility issue whatsoever), but it might affect network traffic due to LiveQuery now fetching updates which could have happened while SDK was offline.

Sync SDK for Javascript 0.11.5 (November 21, 2019)

sync-sdk-for-javascript-0115-november-21-2019 page anchor
  • Deleted legacy code to make event handling more clean and consistent with iOS and Android SDKs, a non-functional change.

Sync SDK for Javascript 0.11.4 (September 12, 2019)

sync-sdk-for-javascript-0114-september-12-2019 page anchor
  • Fixed issues appearing in restrictive browser environments, enabling SDK operation without session storage.

Sync SDK for Javascript 0.11.2 (June 20, 2019)

sync-sdk-for-javascript-0112-june-20-2019 page anchor
  • Introduced connectionError event.
  • Fixed a bug, where recovery after partial network degradations did not result in the websocket reconnect.

Sync SDK for Javascript 0.11.1 (May 21, 2019)

sync-sdk-for-javascript-0111-may-21-2019 page anchor
  • Removed a redundant external dependency ( backoff package) and replaced it with operation-retrier package, reducing the SDK footprint.
  • Fixed a bug, where the timed out requests were retried excessively, generating additional network traffic.

Sync SDK for Javascript 0.11.0 (May 10, 2019)

sync-sdk-for-javascript-0110-may-10-2019 page anchor
  • New close method has been introduced on every Sync primitive (Document, List, Map, Stream, LiveQuery). It can be called at any time to denote that the work on the Sync entity is concluded. Copies of the same Sync entity are reference counted and can be "closed" independently of one another. "Closed" Sync object accepts neither mutation operations nor service events. Once the last copy is closed, SDK unsubscribes from further service events pertaining to this Sync entity, which eventually stops the physical inflow of updates over the network.

Sync SDK for Javascript 0.10.4 (April 19, 2019)

sync-sdk-for-javascript-0104-april-19-2019 page anchor
  • This release mostly contains cosmetic changes (internal non-functional modifications) and cleanup activities:
    • Removed two external dependencies: karibu and rfc6902 .
    • Deleted legacy code, also reshuffled build scripts and code structure, a non-functional change.
    • Cleaned up documentation — no more references to private constructors.
    • Moved LiveQuery language documentation to a web page, hence a new link in Sync Client documentation that now points to it.

Sync SDK for Javascript 0.10.2 (March 29, 2019)

sync-sdk-for-javascript-0102-march-29-2019 page anchor
  • This release includes numerous bugfixes for the LiveQuery/InstantQuery objects that drive Flex:
    • Improved error reporting in case of incorrect query expression syntax.
    • Improved query parsing logic.
    • Reduced SDK size by moving some key functionality to the backend.
    • Integrated an updated version of websocket (Twilsock) library containing a fix for dropping timed out requests.

Sync SDK for Javascript 0.9.2 (February 15, 2019)

sync-sdk-for-javascript-092-february-15-2019 page anchor
  • This release includes numerous bugfixes for the LiveQuery / InstantQuery objects that drive Flex:
  • Improved error reporting and handling in case of incorrect query expression syntax.
  • Added simple validation of indexName parameter passed to constructors.
  • Improved query parsing logic to detect invalid syntax better.
  • Minor updates to documentation.

Sync SDK for Javascript 0.9.1 (January 7, 2019)

sync-sdk-for-javascript-091-january-7-2019 page anchor
  • Added Client.liveQuery() method to fetch a record set and subscribe to it using an SQL-like syntax, receiving updates matching this query in the future.
  • Added Client.instantQuery() method to fetch a record set without subscribing to it.

Note These functions are only accessible to Flex developers, cannot be used on a regular Sync service instances.


Sync SDK for Javascript 0.8.6 (December 7, 2018)

sync-sdk-for-javascript-086-december-7-2018 page anchor
  • Fixed a connectivity bug that caused unhandled promise rejections.

Sync SDK for Javascript 0.8.5 (October 17, 2018)

sync-sdk-for-javascript-085-october-17-2018 page anchor
  • Integrating an updated version of websocket ( Twilsock ) library containing several fixes for reconnect issues on iOS.

Sync SDK for Javascript 0.8.4 (July 6, 2018)

sync-sdk-for-javascript-084-july-6-2018 page anchor
  • Fixed a syntax error which was causing applications with JS Sync SDK to crash in mobile browsers.

Sync SDK for Javascript 0.8.3 (June 25, 2018)

sync-sdk-for-javascript-083-june-25-2018 page anchor
  • Improve diagnostics, start adding timestamps to log lines.
  • Fix a transport bug where some of early requests could fail when sent before SDK initialization completes.

Sync SDK for Javascript 0.8.1 (May 21, 2018)

sync-sdk-for-javascript-081-may-21-2018 page anchor
  • Dramatically improved bandwidth use compared with previous versions ("Pre-authenticated Twilsock").
  • Knock-on performance improvements from more efficient bandwidth usage.
  • Removed HTTP fallback; all traffic is now directed over the websocket.
  • Introduced simplified terminal URL configuration. For traffic shaping, you can now control websocket termination with a stanza like the below:

_10
let sync = new SyncClient(token, {
_10
twilsock: { uri: 'wss://mycustomproxy.org/v3/wsconnect' }
_10
});

  • Default logging level has been reduced to "silent". Override by supplying the logLevel option, e.g.

_10
let sync = new SyncClient(token, { logLevel: 'debug' });


Sync SDK for JavaScript 0.7.4 (January 16, 2017)

sync-sdk-for-javascript-074-january-16-2017 page anchor
  • Exposed dateUpdated attribute in Documents, Lists, Maps, and update it in browser session cache timely.

Sync SDK for JavaScript 0.7.2 (January 9, 2017)

sync-sdk-for-javascript-072-january-9-2017 page anchor
  • Fixed Map itemRemoved event payload for local events.
  • Improved SyncError exception description and logging.

Sync SDK for JavaScript 0.7.1 (December 21, 2017)

sync-sdk-for-javascript-071-december-21-2017 page anchor
  • This release included only minor internal improvements and documentation clarifications.

Sync SDK for JavaScript 0.7.0 (November 27, 2017)

sync-sdk-for-javascript-070-november-27-2017 page anchor

This release introduces some backwards incompatible changes. Please refer to more detailed release notes to help with migrating.

  • Provided more control over how SDK handles object opening and creation, via OpenOptions parameter.
  • Enabled configuring automatic garbage collection via TTL parameters(link takes you to an external page) for objects and collection items.
  • Removed document.get() method, use document.value instead.
  • Simplified emitted events, by combining local and remote events under the same name, differentiated by isLocal flag.
  • Renamed collectionRemoved event to removed .
  • Started automatically merging multiple state update events into single one, if they occur rapidly.
  • Fixed requested page size validation on the client side.
  • Made object subscription cancellation handling more robust.
  • Enabled returning null from mutator functions, gracefully abandoning data change operations.

Sync SDK for JavaScript 0.6.0 (September 15, 2017)

sync-sdk-for-javascript-060-september-15-2017 page anchor

This release adds support for Message Streams with the Stream(link takes you to an external page) class.


Sync SDK for JavaScript 0.5.10 (August 21, 2017)

sync-sdk-for-javascript-0510-august-21-2017 page anchor
  • This release extends and improves on the API documentation of Sync Objects and the events they fire.

Sync SDK for JavaScript 0.5.9 (July 31, 2017)

sync-sdk-for-javascript-059-july-31-2017 page anchor
  • itemRemovedRemotely events now include the body of the removed item.
  • Internal improvements for resiliency.

Sync SDK for JavaScript 0.5.8 (June 19, 2017)

sync-sdk-for-javascript-058-june-19-2017 page anchor
  • An item-caching bug was fixed, in which the Sync SDK would diverge on very volatile objects
  • Internal retry handling was tweaked

Sync SDK for JavaScript 0.5.7 (May 31, 2017)

sync-sdk-for-javascript-057-may-31-2017 page anchor
  • This release corrects a variety of issues in the .mutate() If-Match concurrency update functions. If you're using this feature on any Sync object this release is critical .

Sync SDK for JavaScript 0.5.6 (May 15, 2017)

sync-sdk-for-javascript-056-may-15-2017 page anchor
  • This release corrects handling of non-alphanumeric map UniqueNames and map keys.

Sync SDK for JavaScript 0.5.5 (May 12, 2017)

sync-sdk-for-javascript-055-may-12-2017 page anchor
  • This release includes improvements to connection recovery.

Sync SDK for JavaScript 0.5.4 (May 24, 2017)

sync-sdk-for-javascript-054-may-24-2017 page anchor
  • This release includes improvements to performance over weak connections.

Sync SDK for JavaScript 0.5.3 (March 24, 2017)

sync-sdk-for-javascript-053-march-24-2017 page anchor
  • You can now disable the Sync SDK's use of the session cache it with the below incantation. This may be useful if you need to conserve space.

_10
new Twilio.Sync.Client(/* token */, { Sync: { enableSessionStorage: false } })

  • Documents reverted to an old state if a browser tab was refreshed or clicked-through.
  • An object deleted on one SDK could somehow still be reconstituted on another client.
  • Map and List items were sometimes not properly deleted among collaborating Sync clients.

Sync SDK for JavaScript 0.5.1 (March 17, 2017)

sync-sdk-for-javascript-051-march-17-2017 page anchor
  • This patch release fixes a bug in which the automated session cache became unreasonably stale, yielding extraneous update events on new page-loads. The cache should now be neatly updated on each page-load.

Sync SDK for JavaScript 0.5.0 (March 16, 2017)

sync-sdk-for-javascript-050-march-16-2017 page anchor
  • Automatic Session Cache This change brings dramatic speed increases for Sync re-initialization across page loads (e.g. if your user clicks through a link), particularly with many objects in play. No API change required.
  • Connection Recovery Efficiency If the Twilsock connection should rupture, recovery of state upon reconnect is now dramatically more efficient. To a lesser extent, the same benefit should apply to cold starts (those not benefiting from the session cache), especially with many objects in play.
  • Token endpoint_id no longer required It is no longer necessary to provide an endpoint_id field when minting your access tokens; Sync will automatically fingerprint a new endpoint in each browser tab. This change is backwards compatible: if you don't revise your backend code, the endpoint ID will simply be ignored.
  • Token Refresh Improved Updating the token in your running Sync SDK will no longer cause a reconnect; the same connection will persist. Reachability webhooks, accordingly, will not fire on token refreshes.
  • A vexing bug rarely observed in Edge and Internet Explorer in which sync initialization failed silently has been squashed.
  • Handling of retries in the face of rate-limiting (HTTP 429) or overloads (HTTP 503) has been significantly improved.

Sync SDK for JavaScript 0.3.0 (Oct 25, 2016)

sync-sdk-for-javascript-030-oct-25-2016 page anchor

Breaking Change: Sync client constructor now expects the token directly, not an AccessManager. Example:


_10
syncClient = new Twilio.Sync.Client(tokenResponse.token);

  • Removes: AccessManager requirement. AccessManager is now only required for token lifecycle management, not for Sync client initialization.
  • Fixed bug where local connection state not always firing on connection state changes

Sync SDK for JavaScript 0.2.6 (Aug 15, 2016)

sync-sdk-for-javascript-026-aug-15-2016 page anchor
  • Adds update method to documents, lists and maps. Method allows for convenient updating of specific keys in the JSON data stored in Sync.

Rate this page: