13.6.14 • Published 2 months ago

yjs v13.6.14

Weekly downloads
7,478
License
MIT
Repository
github
Last release
2 months ago

Yjs

A CRDT framework with a powerful abstraction of shared data

Yjs is a CRDT implementation that exposes its internal data structure as shared types. Shared types are common data types like Map or Array with superpowers: changes are automatically distributed to other peers and merged without merge conflicts.

Yjs is network agnostic (p2p!), supports many existing rich text editors, offline editing, version snapshots, undo/redo and shared cursors. It scales well with an unlimited number of users and is well suited for even large documents.

:construction_worker_woman: If you are looking for professional support, please consider supporting this project via a "support contract" on GitHub Sponsors. I will attend your issues quicker and we can discuss questions and problems in regular video conferences. Otherwise you can find help on our community discussion board.

Sponsorship

Please contribute to the project financially - especially if your company relies on Yjs. Become a Sponsor

Professional Support

  • Support Contract with the Maintainer - By contributing financially to the open-source Yjs project, you can receive professional support directly from the author. This includes the opportunity for weekly video calls to discuss your specific challenges.
  • Synergy Codes - Specializing in consulting and developing real-time collaborative editing solutions for visual apps, Synergy Codes focuses on interactive diagrams, complex graphs, charts, and various data visualization types. Their expertise empowers developers to build engaging and interactive visual experiences leveraging the power of Yjs. See their work in action at Visual Collaboration Showcase.

Who is using Yjs

  • AFFiNE A local-first, privacy-first, open source knowledge base. 🏅
  • Cargo Site builder for designers and artists :star2:
  • Gitbook Knowledge management for technical teams :star2:
  • Evernote Note-taking app :star2:
  • Lessonspace Enterprise platform for virtual classrooms and online training :star2:
  • Dynaboard Build web apps collaboratively. :star:
  • Relm A collaborative gameworld for teamwork and community. :star:
  • Room.sh A meeting application with integrated collaborative drawing, editing, and coding tools. :star:
  • Nimbus Note A note-taking app designed by Nimbus Web. :star:
  • Pluxbox RadioManager A web-based app to collaboratively organize radio broadcasts. :star:
  • Sana A learning platform with collaborative text editing powered by Yjs.
  • Serenity Notes End-to-end encrypted collaborative notes app.
  • PRSM Collaborative mind-mapping and system visualisation. (source)
  • Alldone A next-gen project management and collaboration platform.
  • Living Spec A modern way for product teams to collaborate.
  • Slidebeamer Presentation app.
  • BlockSurvey End-to-end encryption for your forms/surveys.
  • Skiff Private, decentralized workspace.
  • JupyterLab Collaborative computational Notebooks
  • JupyterCad Extension to JupyterLab that enables collaborative editing of 3d FreeCAD Models.
  • Hyperquery A collaborative data workspace for sharing analyses, documentation, spreadsheets, and dashboards.
  • Nosgestesclimat The french carbon footprint calculator has a group P2P mode based on yjs
  • oorja.io Online meeting spaces extensible with collaborative apps, end-to-end encrypted.
  • LegendKeeper Collaborative campaign planner and worldbuilding app for tabletop RPGs.
  • IllumiDesk Build courses and content with A.I.
  • btw Open-source Medium alternative
  • AWS SageMaker Tools for building Machine Learning Models
  • linear Streamline issues, projects, and product roadmaps.

Table of Contents

Overview

This repository contains a collection of shared types that can be observed for changes and manipulated concurrently. Network functionality and two-way-bindings are implemented in separate modules.

Bindings

NameCursorsBindingDemo
ProseMirror                                                  y-prosemirrordemo
Quilly-quilldemo
CodeMirrory-codemirrordemo
Monacoy-monacodemo
Slateslate-yjsdemo
BlockSuite(native)demo
valtiovaltio-yjsdemo
immerimmer-yjsdemo
React / Vue / Svelte / MobXSyncedStoredemo
mobx-keystonemobx-keystone-yjsdemo

Providers

Setting up the communication between clients, managing awareness information, and storing shared data for offline usage is quite a hassle. Providers manage all that for you and are the perfect starting point for your collaborative app.

This list of providers is incomplete. Please open PRs to add your providers to this list!

Connection Providers

Persistence Providers

Ports

There are several Yjs-compatible ports to other programming languages.

  • y-octo - Rust implementation by AFFiNE
  • y-crdt - Rust implementation with multiple language bindings to other languages
  • ycs - .Net compatible C# implementation.

Getting Started

Install Yjs and a provider with your favorite package manager:

npm i yjs y-websocket

Start the y-websocket server:

PORT=1234 node ./node_modules/y-websocket/bin/server.js

Example: Observe types

import * as Y from 'yjs';

const doc = new Y.Doc();
const yarray = doc.getArray('my-array')
yarray.observe(event => {
  console.log('yarray was modified')
})
// every time a local or remote client modifies yarray, the observer is called
yarray.insert(0, ['val']) // => "yarray was modified"

Example: Nest types

Remember, shared types are just plain old data types. The only limitation is that a shared type must exist only once in the shared document.

const ymap = doc.getMap('map')
const foodArray = new Y.Array()
foodArray.insert(0, ['apple', 'banana'])
ymap.set('food', foodArray)
ymap.get('food') === foodArray // => true
ymap.set('fruit', foodArray) // => Error! foodArray is already defined

Now you understand how types are defined on a shared document. Next you can jump to the demo repository or continue reading the API docs.

Example: Using and combining providers

Any of the Yjs providers can be combined with each other. So you can sync data over different network technologies.

In most cases you want to use a network provider (like y-websocket or y-webrtc) in combination with a persistence provider (y-indexeddb in the browser). Persistence allows you to load the document faster and to persist data that is created while offline.

For the sake of this demo we combine two different network providers with a persistence provider.

import * as Y from 'yjs'
import { WebrtcProvider } from 'y-webrtc'
import { WebsocketProvider } from 'y-websocket'
import { IndexeddbPersistence } from 'y-indexeddb'

const ydoc = new Y.Doc()

// this allows you to instantly get the (cached) documents data
const indexeddbProvider = new IndexeddbPersistence('count-demo', ydoc)
indexeddbProvider.whenSynced.then(() => {
  console.log('loaded data from indexed db')
})

// Sync clients with the y-webrtc provider.
const webrtcProvider = new WebrtcProvider('count-demo', ydoc)

// Sync clients with the y-websocket provider
const websocketProvider = new WebsocketProvider(
  'wss://demos.yjs.dev', 'count-demo', ydoc
)

// array of numbers which produce a sum
const yarray = ydoc.getArray('count')

// observe changes of the sum
yarray.observe(event => {
  // print updates when the data changes
  console.log('new sum: ' + yarray.toArray().reduce((a,b) => a + b))
})

// add 1 to the sum
yarray.push([1]) // => "new sum: 1"

API

import * as Y from 'yjs'

Shared Types

Y.Doc

const doc = new Y.Doc()

Y.Doc Events

Document Updates

Changes on the shared document are encoded into document updates. Document updates are commutative and idempotent. This means that they can be applied in any order and multiple times.

Example: Listen to update events and apply them on remote client

const doc1 = new Y.Doc()
const doc2 = new Y.Doc()

doc1.on('update', update => {
  Y.applyUpdate(doc2, update)
})

doc2.on('update', update => {
  Y.applyUpdate(doc1, update)
})

// All changes are also applied to the other document
doc1.getArray('myarray').insert(0, ['Hello doc2, you got this?'])
doc2.getArray('myarray').get(0) // => 'Hello doc2, you got this?'

Yjs internally maintains a state vector that denotes the next expected clock from each client. In a different interpretation it holds the number of structs created by each client. When two clients sync, you can either exchange the complete document structure or only the differences by sending the state vector to compute the differences.

Example: Sync two clients by exchanging the complete document structure

const state1 = Y.encodeStateAsUpdate(ydoc1)
const state2 = Y.encodeStateAsUpdate(ydoc2)
Y.applyUpdate(ydoc1, state2)
Y.applyUpdate(ydoc2, state1)

Example: Sync two clients by computing the differences

This example shows how to sync two clients with the minimal amount of exchanged data by computing only the differences using the state vector of the remote client. Syncing clients using the state vector requires another roundtrip, but can save a lot of bandwidth.

const stateVector1 = Y.encodeStateVector(ydoc1)
const stateVector2 = Y.encodeStateVector(ydoc2)
const diff1 = Y.encodeStateAsUpdate(ydoc1, stateVector2)
const diff2 = Y.encodeStateAsUpdate(ydoc2, stateVector1)
Y.applyUpdate(ydoc1, diff2)
Y.applyUpdate(ydoc2, diff1)

Example: Syncing clients without loading the Y.Doc

It is possible to sync clients and compute delta updates without loading the Yjs document to memory. Yjs exposes an API to compute the differences directly on the binary document updates.

// encode the current state as a binary buffer
let currentState1 = Y.encodeStateAsUpdate(ydoc1)
let currentState2 = Y.encodeStateAsUpdate(ydoc2)
// now we can continue syncing clients using state vectors without using the Y.Doc
ydoc1.destroy()
ydoc2.destroy()

const stateVector1 = Y.encodeStateVectorFromUpdate(currentState1)
const stateVector2 = Y.encodeStateVectorFromUpdate(currentState2)
const diff1 = Y.diffUpdate(currentState1, stateVector2)
const diff2 = Y.diffUpdate(currentState2, stateVector1)

// sync clients
currentState1 = Y.mergeUpdates([currentState1, diff2])
currentState2 = Y.mergeUpdates([currentState2, diff1])

Obfuscating Updates

If one of your users runs into a weird bug (e.g. the rich-text editor throws error messages), then you don't have to request the full document from your user. Instead, they can obfuscate the document (i.e. replace the content with meaningless generated content) before sending it to you. Note that someone might still deduce the type of content by looking at the general structure of the document. But this is much better than requesting the original document.

Obfuscated updates contain all the CRDT-related data that is required for merging. So it is safe to merge obfuscated updates.

const ydoc = new Y.Doc()
// perform some changes..
ydoc.getText().insert(0, 'hello world')
const update = Y.encodeStateAsUpdate(ydoc)
// the below update contains scrambled data
const obfuscatedUpdate = Y.obfuscateUpdate(update)
const ydoc2 = new Y.Doc()
Y.applyUpdate(ydoc2, obfuscatedUpdate)
ydoc2.getText().toString() // => "00000000000"

Using V2 update format

Yjs implements two update formats. By default you are using the V1 update format. You can opt-in into the V2 update format which provides much better compression. It is not yet used by all providers. However, you can already use it if you are building your own provider. All below functions are available with the suffix "V2". E.g. Y.applyUpdateY.applyUpdateV2. Also when listening to updates you need to specifically need listen for V2 events e.g. yDoc.on('updateV2', …). We also support conversion functions between both formats: Y.convertUpdateFormatV1ToV2 & Y.convertUpdateFormatV2ToV1.

Update API

Relative Positions

When working with collaborative documents, we often need to work with positions. Positions may represent cursor locations, selection ranges, or even assign a comment to a range of text. Normal index-positions (expressed as integers) are not convenient to use because the index-range is invalidated as soon as a remote change manipulates the document. Relative positions give you a powerful API to express positions.

A relative position is fixated to an element in the shared document and is not affected by remote changes. I.e. given the document "a|c", the relative position is attached to c. When a remote user modifies the document by inserting a character before the cursor, the cursor will stay attached to the character c. insert(1, 'x')("a|c") = "ax|c". When the relative position is set to the end of the document, it will stay attached to the end of the document.

Example: Transform to RelativePosition and back

const relPos = Y.createRelativePositionFromTypeIndex(ytext, 2)
const pos = Y.createAbsolutePositionFromRelativePosition(relPos, doc)
pos.type === ytext // => true
pos.index === 2 // => true

Example: Send relative position to remote client (json)

const relPos = Y.createRelativePositionFromTypeIndex(ytext, 2)
const encodedRelPos = JSON.stringify(relPos)
// send encodedRelPos to remote client..
const parsedRelPos = JSON.parse(encodedRelPos)
const pos = Y.createAbsolutePositionFromRelativePosition(parsedRelPos, remoteDoc)
pos.type === remoteytext // => true
pos.index === 2 // => true

Example: Send relative position to remote client (Uint8Array)

const relPos = Y.createRelativePositionFromTypeIndex(ytext, 2)
const encodedRelPos = Y.encodeRelativePosition(relPos)
// send encodedRelPos to remote client..
const parsedRelPos = Y.decodeRelativePosition(encodedRelPos)
const pos = Y.createAbsolutePositionFromRelativePosition(parsedRelPos, remoteDoc)
pos.type === remoteytext // => true
pos.index === 2 // => true

Y.UndoManager

Yjs ships with an Undo/Redo manager for selective undo/redo of changes on a Yjs type. The changes can be optionally scoped to transaction origins.

const ytext = doc.getText('text')
const undoManager = new Y.UndoManager(ytext)

ytext.insert(0, 'abc')
undoManager.undo()
ytext.toString() // => ''
undoManager.redo()
ytext.toString() // => 'abc'

Example: Stop Capturing

UndoManager merges Undo-StackItems if they are created within time-gap smaller than options.captureTimeout. Call um.stopCapturing() so that the next StackItem won't be merged.

// without stopCapturing
ytext.insert(0, 'a')
ytext.insert(1, 'b')
undoManager.undo()
ytext.toString() // => '' (note that 'ab' was removed)
// with stopCapturing
ytext.insert(0, 'a')
undoManager.stopCapturing()
ytext.insert(0, 'b')
undoManager.undo()
ytext.toString() // => 'a' (note that only 'b' was removed)

Example: Specify tracked origins

Every change on the shared document has an origin. If no origin was specified, it defaults to null. By specifying trackedOrigins you can selectively specify which changes should be tracked by UndoManager. The UndoManager instance is always added to trackedOrigins.

class CustomBinding {}

const ytext = doc.getText('text')
const undoManager = new Y.UndoManager(ytext, {
  trackedOrigins: new Set([42, CustomBinding])
})

ytext.insert(0, 'abc')
undoManager.undo()
ytext.toString() // => 'abc' (does not track because origin `null` and not part
                 //           of `trackedTransactionOrigins`)
ytext.delete(0, 3) // revert change

doc.transact(() => {
  ytext.insert(0, 'abc')
}, 42)
undoManager.undo()
ytext.toString() // => '' (tracked because origin is an instance of `trackedTransactionorigins`)

doc.transact(() => {
  ytext.insert(0, 'abc')
}, 41)
undoManager.undo()
ytext.toString() // => 'abc' (not tracked because 41 is not an instance of
                 //        `trackedTransactionorigins`)
ytext.delete(0, 3) // revert change

doc.transact(() => {
  ytext.insert(0, 'abc')
}, new CustomBinding())
undoManager.undo()
ytext.toString() // => '' (tracked because origin is a `CustomBinding` and
                 //        `CustomBinding` is in `trackedTransactionorigins`)

Example: Add additional information to the StackItems

When undoing or redoing a previous action, it is often expected to restore additional meta information like the cursor location or the view on the document. You can assign meta-information to Undo-/Redo-StackItems.

const ytext = doc.getText('text')
const undoManager = new Y.UndoManager(ytext, {
  trackedOrigins: new Set([42, CustomBinding])
})

undoManager.on('stack-item-added', event => {
  // save the current cursor location on the stack-item
  event.stackItem.meta.set('cursor-location', getRelativeCursorLocation())
})

undoManager.on('stack-item-popped', event => {
  // restore the current cursor location on the stack-item
  restoreCursorLocation(event.stackItem.meta.get('cursor-location'))
})

Yjs CRDT Algorithm

Conflict-free replicated data types (CRDT) for collaborative editing are an alternative approach to operational transformation (OT). A very simple differentiation between the two approaches is that OT attempts to transform index positions to ensure convergence (all clients end up with the same content), while CRDTs use mathematical models that usually do not involve index transformations, like linked lists. OT is currently the de-facto standard for shared editing on text. OT approaches that support shared editing without a central source of truth (a central server) require too much bookkeeping to be viable in practice. CRDTs are better suited for distributed systems, provide additional guarantees that the document can be synced with remote clients, and do not require a central source of truth.

Yjs implements a modified version of the algorithm described in this paper. This article explains a simple optimization on the CRDT model and gives more insight about the performance characteristics in Yjs. More information about the specific implementation is available in INTERNALS.md and in this walkthrough of the Yjs codebase.

CRDTs that are suitable for shared text editing suffer from the fact that they only grow in size. There are CRDTs that do not grow in size, but they do not have the characteristics that are benificial for shared text editing (like intention preservation). Yjs implements many improvements to the original algorithm that diminish the trade-off that the document only grows in size. We can't garbage collect deleted structs (tombstones) while ensuring a unique order of the structs. But we can 1. merge preceeding structs into a single struct to reduce the amount of meta information, 2. we can delete content from the struct if it is deleted, and 3. we can garbage collect tombstones if we don't care about the order of the structs anymore (e.g. if the parent was deleted).

Examples:

  1. If a user inserts elements in sequence, the struct will be merged into a single struct. E.g. text.insert(0, 'a'), text.insert(1, 'b'); is first represented as two structs ([{id: {client, clock: 0}, content: 'a'}, {id: {client, clock: 1}, content: 'b'}) and then merged into a single struct: [{id: {client, clock: 0}, content: 'ab'}].
  2. When a struct that contains content (e.g. ItemString) is deleted, the struct will be replaced with an ItemDeleted that does not contain content anymore.
  3. When a type is deleted, all child elements are transformed to GC structs. A GC struct only denotes the existence of a struct and that it is deleted. GC structs can always be merged with other GC structs if the id's are adjacent.

Especially when working on structured content (e.g. shared editing on ProseMirror), these improvements yield very good results when benchmarking random document edits. In practice they show even better results, because users usually edit text in sequence, resulting in structs that can easily be merged. The benchmarks show that even in the worst case scenario that a user edits text from right to left, Yjs achieves good performance even for huge documents.

State Vector

Yjs has the ability to exchange only the differences when syncing two clients. We use lamport timestamps to identify structs and to track in which order a client created them. Each struct has an struct.id = { client: number, clock: number} that uniquely identifies a struct. We define the next expected clock by each client as the state vector. This data structure is similar to the version vectors data structure. But we use state vectors only to describe the state of the local document, so we can compute the missing struct of the remote client. We do not use it to track causality.

License and Author

Yjs and all related projects are MIT licensed.

Yjs is based on my research as a student at the RWTH i5. Now I am working on Yjs in my spare time.

Fund this project by donating on GitHub Sponsors or hiring me as a contractor for your collaborative app.

brbytes-editor@dxos/react-clientsveltyjs@hocuspocus/leveldb@dxos/document@dxos/editor@dxos/editor-core@dxos/editor-pady-slaterealtime-core@phil-cd/frontendtest2blockit-texteditory-soliddemotestpublish@textea/yodaslexical-lib-demotiptap-liblexical-toolbar-verbum@everything-registry/sub-chunk-3205@paiondata/lexical-playgroundamarpanchal-report-publish@asyncworklfow/sdk@ant-design/pro-editor@ant-design/pro-flow@ant-design/pro-flow-editorguodu-tiptap@a-la-fois/api@a-la-fois/doc-client@a-la-fois/doc-handler@zxr3680166/simple-mind-mapabobaker-rte@alkuip/forms@selfcommunity/react-ui@rwth-acis/las2peer-project-service-frontend@rolebase/editor@wirelineio/document@wirelineio/editor@wirelineio/framework@wirelineio/yjs-helpers@symphony-rtc/client@wordpress/sync@nextcloud/text@nexteditorjs/nexteditor-yjs@nitrolab/lexical-playground@netless/app-quill@opensumi/ide-collaboration@markflowy/editor@paddim8/svelte-lexical@ohs/lexical-playground@zhaopengme/myeditor@bentwnghk/chat@becomes/cms-ui@braneframe/plugin-drawingbetter-plate-yjs@braneframe/plugin-sketch@campaign-buddy/form-generator@campaign-buddy/synced-form-generatorimmer-yjs-typedjotai-yjs@cocreate/quill@codepod/api@codepod/ui@codepod/yjsipfs-iiif-dbblocknote-coreblocknote-next-coreipdwc3-simple-mind-map@cpchain-foundation/editorcaja-asia-editorcursor-chatmeshroomdaifo-editordaifo-test-editordirewolf-elementsdirewolf-modelermindmap-editormind-map-thinnutriaodoc-editoropen-websitescodepodlexical-svelte-runeslexical-playgroundlexical-playground-wllexitorcodocs@dianshu/editor@difizen/libro-shared-modelneural_compressor_ext_lab_customizedneural_compressor_ext_lab_customized_2new-lexical-rtenetmeshhydria@casual-simulation/aux-common@casual-simulation/aux-records@casual-simulation/aux-runtime@casual-simulation/casual-apiary@casual-simulation/casual-apiary-redisnoodle-editor
13.6.13

2 months ago

13.6.14

2 months ago

13.6.12

2 months ago

13.6.11

3 months ago

13.6.10

5 months ago

13.6.9

5 months ago

14.0.0-1

10 months ago

13.6.8

7 months ago

13.6.6

10 months ago

13.6.7

9 months ago

13.6.4

10 months ago

13.6.5

10 months ago

13.6.2

11 months ago

13.6.3

10 months ago

13.5.52

1 year ago

13.5.53

1 year ago

13.5.50

1 year ago

13.5.51

1 year ago

13.5.45

1 year ago

13.5.46

1 year ago

13.5.49

1 year ago

13.5.47

1 year ago

13.5.48

1 year ago

13.6.0

12 months ago

13.6.1

12 months ago

13.5.43

1 year ago

13.5.44

1 year ago

13.5.42

2 years ago

14.0.0-0

2 years ago

13.5.39

2 years ago

13.5.41

2 years ago

13.5.40

2 years ago

13.5.38

2 years ago

13.5.36

2 years ago

13.5.37

2 years ago

13.5.29

2 years ago

13.5.34

2 years ago

13.5.35

2 years ago

13.5.32

2 years ago

13.5.33

2 years ago

13.5.30

2 years ago

13.5.31

2 years ago

13.5.28

2 years ago

13.5.23

2 years ago

13.5.24

2 years ago

13.5.27

2 years ago

13.5.25

2 years ago

13.5.26

2 years ago

13.6.0-2

2 years ago

13.6.0-1

2 years ago

13.6.0-0

2 years ago

13.5.19

2 years ago

13.5.21

2 years ago

13.5.22

2 years ago

13.5.20

2 years ago

13.5.18

2 years ago

13.5.17

2 years ago

13.5.13

3 years ago

13.5.16

3 years ago

13.5.14

3 years ago

13.5.12

3 years ago

13.5.11

3 years ago

13.5.10

3 years ago

13.5.9

3 years ago

13.5.8

3 years ago

13.5.6

3 years ago

13.5.5

3 years ago

13.5.4

3 years ago

13.5.3

3 years ago

13.5.2

3 years ago

13.5.1

3 years ago

13.5.0

3 years ago

13.4.13

3 years ago

13.4.14

3 years ago

13.4.12

3 years ago

13.4.11

3 years ago

13.4.8

3 years ago

13.4.9

3 years ago

13.4.7

3 years ago

13.4.6

3 years ago

13.4.5

3 years ago

13.4.4

3 years ago

13.4.3

3 years ago

13.4.2

3 years ago

13.4.1

4 years ago

13.4.0

4 years ago

13.4.0-0

4 years ago

13.3.2

4 years ago

13.3.1

4 years ago

13.3.0

4 years ago

13.2.0

4 years ago

13.1.1

4 years ago

13.1.0

4 years ago

13.0.8

4 years ago

13.0.7

4 years ago

13.0.6

4 years ago

13.0.5

4 years ago

13.0.4

4 years ago

13.0.3

4 years ago

13.0.2

4 years ago

13.0.1

4 years ago

13.0.0

4 years ago

13.0.0-108

4 years ago

13.0.0-107

4 years ago

13.0.0-106

4 years ago

13.0.0-105

4 years ago

13.0.0-104

4 years ago

13.0.0-103

4 years ago

13.0.0-102

4 years ago

13.0.0-101

5 years ago

13.0.0-100

5 years ago

13.0.0-99

5 years ago

13.0.0-98

5 years ago

13.0.0-97

5 years ago

13.0.0-96

5 years ago

13.0.0-95

5 years ago

13.0.0-94

5 years ago

13.0.0-93

5 years ago

13.0.0-92

5 years ago

13.0.0-91

5 years ago

13.0.0-90

5 years ago

13.0.0-89

5 years ago

13.0.0-88

5 years ago

13.0.0-87

5 years ago

13.0.0-86

5 years ago

13.0.0-85

5 years ago

13.0.0-84

5 years ago

13.0.0-83

5 years ago

13.0.0-82

5 years ago

13.0.0-81

5 years ago

13.0.0-80

5 years ago

13.0.0-78

5 years ago

13.0.0-77

5 years ago

13.0.0-76

5 years ago

13.0.0-75

5 years ago

13.0.0-74

5 years ago

13.0.0-73

5 years ago

13.0.0-72

5 years ago

13.0.0-71

5 years ago

13.0.0-70

5 years ago

13.0.0-69

5 years ago

13.0.0-68

5 years ago

13.0.0-67

5 years ago

13.0.0-66

6 years ago

13.0.0-65

6 years ago

13.0.0-63

6 years ago

13.0.0-62

6 years ago

13.0.0-61

6 years ago

13.0.0-60

6 years ago

13.0.0-59

6 years ago

13.0.0-58

6 years ago

13.0.0-57

6 years ago

13.0.0-56

6 years ago

13.0.0-55

6 years ago

13.0.0-54

6 years ago

13.0.0-53

6 years ago

13.0.0-52

6 years ago

13.0.0-51

6 years ago

13.0.0-50

6 years ago

13.0.0-49

6 years ago

13.0.0-48

6 years ago

13.0.0-47

6 years ago

13.0.0-46

6 years ago

13.0.0-43

6 years ago

13.0.0-42

6 years ago

13.0.0-41

6 years ago

13.0.0-40

6 years ago

13.0.0-39

6 years ago

13.0.0-38

6 years ago

13.0.0-37

6 years ago

13.0.0-36

6 years ago

13.0.0-35

6 years ago

13.0.0-34

6 years ago

13.0.0-33

6 years ago

13.0.0-32

6 years ago

13.0.0-30

6 years ago

13.0.0-29

6 years ago

13.0.0-28

6 years ago

13.0.0-27

6 years ago

13.0.0-26

6 years ago

13.0.0-25

6 years ago

13.0.0-24

6 years ago

13.0.0-23

6 years ago

13.0.0-22

7 years ago

13.0.0-21

7 years ago

13.0.0-20

7 years ago

13.0.0-19

7 years ago

13.0.0-18

7 years ago

13.0.0-17

7 years ago

13.0.0-16

7 years ago

13.0.0-15

7 years ago

13.0.0-13

7 years ago

12.3.3

7 years ago

13.0.0-12

7 years ago

13.0.0-11

7 years ago

13.0.0-10

7 years ago

13.0.0-9

7 years ago

13.0.0-8

7 years ago

13.0.0-7

7 years ago

13.0.0-6

7 years ago

13.0.0-5

7 years ago

12.3.2

7 years ago

13.0.0-4

7 years ago

13.0.0-3

7 years ago

13.0.0-2

7 years ago

13.0.0-0

7 years ago

12.3.1

7 years ago

12.3.0

7 years ago

12.2.1

7 years ago

12.2.0

7 years ago

12.1.7

7 years ago

12.1.6

7 years ago

12.1.5

7 years ago

12.1.4

7 years ago

12.1.3

7 years ago

12.1.2

7 years ago

12.1.1

7 years ago

12.1.0

7 years ago

12.0.4

8 years ago

12.0.3

8 years ago

12.0.2

8 years ago

11.2.6

8 years ago

12.0.1

8 years ago

12.0.0

8 years ago

11.2.5

8 years ago

11.2.4

8 years ago

11.2.2

8 years ago

11.2.1

8 years ago

11.2.0

8 years ago

11.1.0

8 years ago

11.0.4

8 years ago

11.0.3

8 years ago

11.0.2

8 years ago

11.0.1

8 years ago

11.0.0

8 years ago

10.0.3

8 years ago

10.0.2

8 years ago

10.0.0

8 years ago

9.0.4

8 years ago

9.0.3

8 years ago

9.0.2

8 years ago

9.0.1

8 years ago

0.8.28

8 years ago

0.8.27

8 years ago

0.8.26

8 years ago

0.8.25

8 years ago

0.8.23

8 years ago

0.8.22

8 years ago

0.8.21

8 years ago

0.8.19

8 years ago

0.8.18

8 years ago

0.8.17

8 years ago

0.8.16

8 years ago

0.8.15

8 years ago

0.8.14

8 years ago

0.8.13

8 years ago

0.8.12

8 years ago

0.8.10

8 years ago

0.8.9

8 years ago

0.8.8

8 years ago

0.8.7

8 years ago

0.8.6

8 years ago

0.8.5

8 years ago

0.8.4

8 years ago

0.8.3

8 years ago

0.8.2

8 years ago

0.8.1

8 years ago

0.7.7

8 years ago

0.7.6

8 years ago

0.7.3

8 years ago

0.7.2

8 years ago

0.7.1

8 years ago

0.5.3

9 years ago

0.5.2

9 years ago

0.5.0

9 years ago

0.4.1

9 years ago

0.4.0

9 years ago

0.3.2

9 years ago

0.3.1

9 years ago

0.3.0

9 years ago