35.2.15 • Published 2 months ago

repository-provider v35.2.15

Weekly downloads
2,922
License
BSD-2-Clause
Repository
github
Last release
2 months ago

npm License Typed with TypeScript bundlejs downloads GitHub Issues Build Status Styled with prettier Commitizen friendly Known Vulnerabilities Coverage Status

repository-provider

abstract interface to git repository providers like github, bitbucket, gitlab, gitea, ...

see list of avaliable implementations below

Example

import { Provider } from 'repository-provider';

const provider = new Provider({ /* access options as hosts and credentials */ });

const branch = await provider.branch('myuser/myrepo#myBranch');

for await (const entry of branch.entries('**/*.md')) {
  console.log(entry.name);
}

const readme = await branch.entry('README.md');

console.log(await readme.string);

Derived Providers

list by repository-provider keyword

API

Table of Contents

Application

Extends OwnedObject

definePropertiesFromOptions

  • See: Object.definedProperties()
  • See: Object.getOwnPropertyDescriptor()

Create properties from options and default options. Already present properties (direct) are skipped. The attribute list from the class will be applied to the options and merged with the given set of properties.

class aClass {
  static get attributes() {
    return { with_default: { default: 77 }};
  }
}

definePropertiesFromOptions(new aClass());
// equivalent to
Object.definedProperties(new aClass(),{ with_default: { value: 77 }})

Parameters

  • object Object target object
  • options Object as passed to object constructor. Used as values for the attributes. (optional, default {})
  • properties Object object properties (optional, default {})
  • attributes Object? attribute meta info (optional, default object.constructor.attributes)

defaultValues

Get default values.

Parameters

Returns Object filled with default values

optionJSON

Create json based on present options. In other words only produce key value pairs if value is defined.

Parameters

  • object Object
  • initial Object (optional, default {})
  • attributes Object to operator on (optional, default object.constructor.attributes)

Returns Object initial + defined values

mapAttributes

Rename attributes. Filters out null, undefined and empty strings.

mapAttributes({a:1},{a:"a'"}) // {"a'": 1}

Parameters

Returns Object keys renamed after mapping

mapAttributesInverse

Same as mapAttributes but with the inverse mapping. Filters out null, undefined and empty strings

Parameters

Returns Object keys renamed after mapping

default_attribute

default_attribute

Common attribute properties.

Type: AttributeDefinition

boolean_attribute

Type: AttributeDefinition

boolean_read_only_attribute

Type: AttributeDefinition

uuid_attribute

Type: AttributeDefinition

empty_attiribute

Type: AttributeDefinition

secret_attribute

Type: AttributeDefinition

count_attribute

Type: AttributeDefinition

size_attribute

Type: AttributeDefinition

name_attribute

Type: AttributeDefinition

url_attribute

Type: AttributeDefinition

description_attribute

The description of the object content.

Type: AttributeDefinition

id_attribute

Unique id within the provider.

Type: AttributeDefinition

state_attribute

Type: AttributeDefinition

body_attribute

The description of the pull request.

Type: AttributeDefinition

title_attribute

The one line description of the pull request.

Type: AttributeDefinition

priority_attribute

In case there are several providers able to support a given source which one sould be used ? this defines the order.

Type: AttributeDefinition

active_attribute

Type: AttributeDefinition

language_attribute

Type: AttributeDefinition

type_attribute

Type: AttributeDefinition

BaseObject

Creates an instance of BaseObject.

Parameters

Properties

updateAttributes

Takes values from options.

Parameters

update

Save object attributes in the backing store.

toString

Returns string fullName

fullName

Complete name in the hierachy.

Returns string

isWritable

By default cannot be written to.

Returns boolean false

equals

Check for equality

Parameters

Returns boolean true if other is present

type

Returns string type we represent

collectionName

Tag -> tags
Repository -> repositories

Returns string name of the collection holding us in the owner

attributes

Attributes definitions.

Returns Object

writableAttributes

User modifyable attributes.

Returns Object writable attributes

attributeMapping

Map attributes between external and internal representation.

Returns Object

BaseProvider

Extends BaseObject

equals

Parameters

  • other any

Returns boolean true if other provider is the same as the receiver

repositoryBases

All supported base urls. For github something like:

Returns Array[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) common base urls of all repositories

supportsBase

Does the provider support the base name.

Parameters

Returns boolean true if base is supported or base is undefined

normalizeRepositoryName

Bring a repository name into its normal form by removing any clutter. Like .git suffix or #branch names.

Parameters

Returns (string | undefined) normalized name

normalizeGroupName

Bring a group name into its normal form by removing any clutter. Like .git suffix or #branch names.

Parameters

Returns (string | undefined) normalized name

areRepositoryNamesCaseSensitive

Are repository names case sensitive. Overwrite and return false if you want to have case insensitive repository lookup.

Returns boolean true

areGroupNamesCaseSensitive

Are repositroy group names case sensitive. Overwrite and return false if you want to have case insensitive group lookup.

Returns boolean true

parseName

Parses repository name and tries to split it into base, group, repository and branch.

Parameters

  • name string?
  • focus string where lies the focus if only one path component is given (optional, default "repository")

createRepository

Create a repository.

Parameters

Returns Promise<Repository>

list

List provider objects of a given type.

Parameters

Returns AsyncIterable<(Repository | PullRequest | Branch | Tag | Project | Milestone | Hook)> all matching repositories of the providers

projects

List projects.

Parameters

Returns AsyncIterable<Project> all matching projects of the provider

milestones

List milestones.

Parameters

Returns AsyncIterable<Milestone> all matching milestones of the provider

repositories

List repositories.

Parameters

Returns AsyncIterable<Repository> all matching repos of the provider

branches

List branches.

Parameters

Returns AsyncIterable<Branch> all matching branches of the provider

tags

List tags.

Parameters

Returns AsyncIterable<Tag> all matching tags of the provider

hooks

List hooks.

Parameters

Returns AsyncIterable<Hook> all matching hooks of the provider

pullRequests

List pull requests.

Parameters

Returns AsyncIterable<PullRequest> all matching pullRequests of the provider

name

Deliver the provider name.

Returns string class name by default

provider

We are our own provider.

Returns BaseProvider this

toJSON

List all defined entries from attributes.

Returns object

instanceIdentifier

Prefix used to form environment variables. 'GITHUB_' -> 'GITHUB_TOKEN'

Returns string identifier for environment options

optionsFromEnvironment

Extract options suitable for the constructor. Form the given set of environment variables. Object with the detected key value pairs is delivered.

Parameters

  • env Object? as from process.env
  • instanceIdentifier string part of variable name. (optional, default this.instanceIdentifier)

Returns (Object | undefined) undefined if no suitable environment variables have been found

areOptionsSufficcient

Check if given options are sufficient to create a provider.

Parameters

Returns boolean true if options ar sufficient to construct a provider

initialize

Creates a new provider for a given set of options.

Parameters

  • options Object additional options

    • options.instanceIdentifier string? name of the provider instance
    • options.description string?
  • env Object taken from process.env

Returns (BaseProvider | undefined) newly created provider or undefined if options are not sufficient to construct a provider

BaseProvider

Extends BaseObject

Parameters

Properties

equals

Parameters

  • other any

Returns boolean true if other provider is the same as the receiver

repositoryBases

All supported base urls. For github something like:

Returns Array[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) common base urls of all repositories

supportsBase

Does the provider support the base name.

Parameters

Returns boolean true if base is supported or base is undefined

normalizeRepositoryName

Bring a repository name into its normal form by removing any clutter. Like .git suffix or #branch names.

Parameters

Returns (string | undefined) normalized name

normalizeGroupName

Bring a group name into its normal form by removing any clutter. Like .git suffix or #branch names.

Parameters

Returns (string | undefined) normalized name

areRepositoryNamesCaseSensitive

Are repository names case sensitive. Overwrite and return false if you want to have case insensitive repository lookup.

Returns boolean true

areGroupNamesCaseSensitive

Are repositroy group names case sensitive. Overwrite and return false if you want to have case insensitive group lookup.

Returns boolean true

parseName

Parses repository name and tries to split it into base, group, repository and branch.

Parameters

  • name string?
  • focus string where lies the focus if only one path component is given (optional, default "repository")

createRepository

Create a repository.

Parameters

Returns Promise<Repository>

list

List provider objects of a given type.

Parameters

Returns AsyncIterable<(Repository | PullRequest | Branch | Tag | Project | Milestone | Hook)> all matching repositories of the providers

projects

List projects.

Parameters

Returns AsyncIterable<Project> all matching projects of the provider

milestones

List milestones.

Parameters

Returns AsyncIterable<Milestone> all matching milestones of the provider

repositories

List repositories.

Parameters

Returns AsyncIterable<Repository> all matching repos of the provider

branches

List branches.

Parameters

Returns AsyncIterable<Branch> all matching branches of the provider

tags

List tags.

Parameters

Returns AsyncIterable<Tag> all matching tags of the provider

hooks

List hooks.

Parameters

Returns AsyncIterable<Hook> all matching hooks of the provider

pullRequests

List pull requests.

Parameters

Returns AsyncIterable<PullRequest> all matching pullRequests of the provider

name

Deliver the provider name.

Returns string class name by default

provider

We are our own provider.

Returns BaseProvider this

toJSON

List all defined entries from attributes.

Returns object

instanceIdentifier

Prefix used to form environment variables. 'GITHUB_' -> 'GITHUB_TOKEN'

Returns string identifier for environment options

optionsFromEnvironment

Extract options suitable for the constructor. Form the given set of environment variables. Object with the detected key value pairs is delivered.

Parameters

  • env Object? as from process.env
  • instanceIdentifier string part of variable name. (optional, default this.instanceIdentifier)

Returns (Object | undefined) undefined if no suitable environment variables have been found

areOptionsSufficcient

Check if given options are sufficient to create a provider.

Parameters

Returns boolean true if options ar sufficient to construct a provider

initialize

Creates a new provider for a given set of options.

Parameters

  • options Object additional options

    • options.instanceIdentifier string? name of the provider instance
    • options.description string?
  • env Object taken from process.env

Returns (BaseProvider | undefined) newly created provider or undefined if options are not sufficient to construct a provider

MessageDestination

Type: Object

Properties

name

Name of the provider.

messageDestination

To forward info/warn and error messages to

parsedName

Type: Object

Branch

Abstract branch.

Parameters

Properties

url

Deliver repository and branch url combined.

Returns string 'repoUrl#branch'

refType

Returns string heades

isWritable

Returns any true if not isArchived and isDisabled and isLocked and isProtected

isDefault

Are we the default branch.

Returns boolean true if name matches the repository default branch

delete

Delete the branch from the Repository.

Returns Promise\

commit

Commit entries.

Parameters

Returns Promise<(CommitResult | undefined)>

commitIntoPullRequest

Add commits into a pull request.

Parameters

  • commits (Commit | AsyncGenerator<Commit>) to be commited
  • options Object

    • options.pullRequestBranch (Branch | string) to commit into
    • options.dry boolean do not create a branch and do not commit only create dummy PR (optional, default false)
    • options.skipWithoutCommits boolean do not create a PR if no commits are given
    • options.bodyFromCommitMessages boolean generate body from commit messages
    • options.body string? body of the PR

Returns Promise<PullRequest>

removeEntries

Remove entries form the branch.

Parameters

  • entries AsyncIterable\

createPullRequest

Create a pull request.

Parameters

Returns Promise<PullRequest>

createBranch

Create a new Branch by cloning a given source branch. Simply calls Repository.createBranch() with the receiver as source branch

Parameters

Returns Promise<Branch> newly created branch (or already present old one with the same name)

CommitResult

Parameters

  • ref

Properties

Commit

Parameters

  • repository

Properties

Hook

Extends OwnedObject

Repository hook.

Issue

Extends OwnedObject

Milestone

Extends OwnedObject

MultiGroupProvider

Extends BaseProvider

Provider supporting serveral repository groups.

repository

Lookup a repository in the provider and all of its repository groups.

Parameters

Returns Promise<(Repository | undefined)>

branch

Lookup a branch.

Parameters

Returns Promise<(Branch | undefined)>

repositoryGroup

Lookup a repository group.

Parameters

Returns Promise<(RepositoryGroup | undefined)>

repositoryGroups

List groups.

Parameters

Returns AsyncIterable<RepositoryGroup> all matching repositories groups of the provider

createRepositoryGroup

Create a new repository group. If there is already a group for the given name it will be returend instead

Parameters

Returns Promise<RepositoryGroup>

addRepositoryGroup

Add a new repository group (not provider specific actions are executed).

Parameters

Returns RepositoryGroup

NamedObject

Extends BaseObject

Object with a name.

Parameters

Properties

displayName

Beautified name use for human displaying only.

Returns string human readable name

condensedName

Name with default parts removed

Returns string

fullCondensedName

Complete name in the hierachy.

Returns string

equals

Check for equality.

Parameters

Returns boolean true if names are equal and have the same provider

toJSON

Provided name and all defined attributes.

OwnedObject

Extends NamedObject

Parameters

  • owner
  • name
  • options
  • additionalProperties

delete

Removes the receiver from the owner.

equals

Check for equality.

Parameters

Returns boolean true if receiver and owner are equal

homePageURL

Url of home page.

Returns string as provided from the owner

issuesURL

Url of issue tracking system.

Returns (string | undefined) as provided from the repository

isLocked

Forwarded from the owner.

Returns boolean

isArchived

Forwarded from the owner.

Returns boolean

isDisabled

Forwarded from the owner.

Returns boolean

api

API as given by the owner.

Returns string url

slug

API as given by the owner.

Returns string url

url

URL as given by the owner.

Returns string url

provider

The provider we live in.

Returns BaseProvider

identifier

Short human readable identifier with provider and branch.

Returns string

fullName

Returns string name with owner name

trace

Forwarded to the owner.

Parameters

  • args ...any

info

Forwarded to the owner.

Parameters

  • args ...any

warn

Forwarded to the owner.

Parameters

  • args ...any

error

Forwarded to the owner.

Parameters

  • args ...any

debug

Forwarded to the owner.

Parameters

  • args ...any

addMethodName

Method name to be called to register one instance in the owner. sample: Application => _addApplication

Returns string

deleteMethodName

Method name to be called to unregister one instance in the owner. sample: Application => _deleteApplication

Returns string

OwnedObject

Extends NamedObject

Named Object registering itself in the owner.

Parameters

  • owner
  • name
  • options
  • additionalProperties

delete

Removes the receiver from the owner.

equals

Check for equality.

Parameters

Returns boolean true if receiver and owner are equal

homePageURL

Url of home page.

Returns string as provided from the owner

issuesURL

Url of issue tracking system.

Returns (string | undefined) as provided from the repository

isLocked

Forwarded from the owner.

Returns boolean

isArchived

Forwarded from the owner.

Returns boolean

isDisabled

Forwarded from the owner.

Returns boolean

api

API as given by the owner.

Returns string url

slug

API as given by the owner.

Returns string url

url

URL as given by the owner.

Returns string url

provider

The provider we live in.

Returns BaseProvider

identifier

Short human readable identifier with provider and branch.

Returns string

fullName

Returns string name with owner name

trace

Forwarded to the owner.

Parameters

  • args ...any

info

Forwarded to the owner.

Parameters

  • args ...any

warn

Forwarded to the owner.

Parameters

  • args ...any

error

Forwarded to the owner.

Parameters

  • args ...any

debug

Forwarded to the owner.

Parameters

  • args ...any

addMethodName

Method name to be called to register one instance in the owner. sample: Application => _addApplication

Returns string

deleteMethodName

Method name to be called to unregister one instance in the owner. sample: Application => _deleteApplication

Returns string

Project

Extends OwnedObject

PullRequest

Extends OwnedObject

Abstract pull request. Repository#addPullRequest

Parameters

Properties

fullName

Name of the PR together with the repository.

Returns string PR full name

url

URL of the pull request.

Returns string url

repository

Returns Repository destination repository

delete

Delete the pull request from the Repository.

Returns Promise

merge

Merge the pu

35.2.15

2 months ago

35.2.12

3 months ago

35.2.14

3 months ago

35.2.13

3 months ago

35.2.11

3 months ago

35.2.10

3 months ago

35.2.8

3 months ago

35.2.9

3 months ago

35.2.7

3 months ago

35.1.0

3 months ago

35.2.0

3 months ago

35.2.1

3 months ago

35.2.2

3 months ago

35.2.3

3 months ago

35.2.4

3 months ago

35.2.5

3 months ago

35.2.6

3 months ago

35.0.2

3 months ago

35.0.3

3 months ago

35.0.4

3 months ago

35.0.1

3 months ago

35.0.0

3 months ago

34.1.0

4 months ago

34.0.3

5 months ago

34.0.1

6 months ago

34.0.2

6 months ago

34.0.0

6 months ago

33.0.3

7 months ago

33.0.4

6 months ago

33.0.1

7 months ago

33.0.2

7 months ago

32.7.18

12 months ago

32.7.19

11 months ago

33.0.0

9 months ago

32.7.29

10 months ago

32.7.28

10 months ago

32.7.25

11 months ago

32.7.24

11 months ago

32.7.27

11 months ago

32.7.26

11 months ago

32.7.21

11 months ago

32.7.20

11 months ago

32.7.23

11 months ago

32.7.22

11 months ago

32.7.0

1 year ago

32.7.1

1 year ago

32.7.4

1 year ago

32.7.5

1 year ago

32.7.2

1 year ago

32.7.3

1 year ago

32.7.8

12 months ago

32.7.9

12 months ago

32.7.6

1 year ago

32.7.7

12 months ago

32.6.5

1 year ago

32.6.6

1 year ago

32.6.3

1 year ago

32.6.4

1 year ago

32.6.9

1 year ago

32.6.7

1 year ago

32.6.8

1 year ago

32.6.12

1 year ago

32.6.10

1 year ago

32.6.11

1 year ago

32.7.17

12 months ago

32.7.14

12 months ago

32.7.13

12 months ago

32.7.16

12 months ago

32.7.15

12 months ago

32.7.10

12 months ago

32.7.12

12 months ago

32.7.11

12 months ago

32.3.16

1 year ago

32.3.15

1 year ago

32.3.14

1 year ago

32.3.13

1 year ago

32.3.12

1 year ago

32.3.11

1 year ago

32.3.10

1 year ago

32.3.19

1 year ago

32.3.18

1 year ago

32.3.17

1 year ago

32.3.21

1 year ago

32.3.20

1 year ago

32.6.1

1 year ago

32.6.2

1 year ago

32.6.0

1 year ago

32.4.10

1 year ago

32.5.2

1 year ago

32.5.0

1 year ago

32.5.1

1 year ago

32.4.0

1 year ago

32.4.3

1 year ago

32.4.4

1 year ago

32.4.1

1 year ago

32.4.2

1 year ago

32.4.7

1 year ago

32.4.8

1 year ago

32.4.5

1 year ago

32.4.6

1 year ago

32.4.9

1 year ago

32.3.0

1 year ago

32.3.1

1 year ago

32.3.4

1 year ago

32.3.5

1 year ago

32.3.2

1 year ago

32.3.3

1 year ago

32.3.8

1 year ago

32.3.9

1 year ago

32.3.6

1 year ago

32.3.7

1 year ago

32.2.1

1 year ago

32.2.2

1 year ago

32.2.3

1 year ago

32.2.0

2 years ago

31.1.0

2 years ago

31.1.1

2 years ago

31.1.2

2 years ago

31.1.3

2 years ago

30.3.4

2 years ago

30.3.2

2 years ago

30.3.3

2 years ago

30.3.0

2 years ago

30.3.1

2 years ago

31.0.0

2 years ago

31.0.1

2 years ago

30.2.0

2 years ago

30.1.2

2 years ago

30.1.3

2 years ago

30.1.0

2 years ago

30.1.1

2 years ago

30.0.1

2 years ago

30.0.2

2 years ago

30.0.0

2 years ago

29.2.3

2 years ago

29.2.1

2 years ago

29.2.2

2 years ago

32.1.0

2 years ago

32.0.0

2 years ago

32.0.3

2 years ago

32.0.4

2 years ago

32.0.1

2 years ago

32.0.2

2 years ago

32.0.5

2 years ago

32.0.6

2 years ago

31.2.0

2 years ago

31.2.1

2 years ago

31.2.2

2 years ago

31.2.3

2 years ago

31.2.4

2 years ago

31.2.5

2 years ago

31.2.6

2 years ago

31.2.7

2 years ago

31.2.8

2 years ago

31.2.9

2 years ago

28.3.10

2 years ago

28.3.11

2 years ago

28.3.12

2 years ago

28.3.13

2 years ago

28.3.14

2 years ago

28.3.15

2 years ago

28.1.0

2 years ago

28.1.1

2 years ago

28.3.1

2 years ago

28.3.2

2 years ago

28.3.0

2 years ago

28.3.5

2 years ago

28.3.6

2 years ago

28.3.3

2 years ago

28.3.4

2 years ago

28.3.9

2 years ago

28.3.7

2 years ago

28.3.8

2 years ago

29.2.0

2 years ago

28.2.0

2 years ago

28.2.1

2 years ago

29.0.0

2 years ago

28.4.0

2 years ago

28.4.1

2 years ago

28.4.2

2 years ago

28.4.3

2 years ago

29.1.4

2 years ago

29.1.5

2 years ago

29.1.0

2 years ago

29.1.1

2 years ago

29.1.2

2 years ago

29.1.3

2 years ago

27.0.4

2 years ago

27.0.6

2 years ago

27.0.5

2 years ago

28.0.0

2 years ago

27.0.3

2 years ago

26.1.3

2 years ago

26.1.2

2 years ago

26.1.1

2 years ago

26.1.0

2 years ago

26.0.3

2 years ago

26.0.2

2 years ago

26.0.1

2 years ago

26.0.0

2 years ago

26.3.1

2 years ago

26.3.0

2 years ago

26.2.0

2 years ago

27.0.0

2 years ago

27.0.2

2 years ago

27.0.1

2 years ago

26.5.0

2 years ago

26.4.5

2 years ago

26.4.4

2 years ago

26.4.3

2 years ago

26.4.2

2 years ago

26.4.1

2 years ago

26.4.0

2 years ago

26.7.5

2 years ago

26.7.6

2 years ago

26.7.3

2 years ago

26.7.4

2 years ago

26.7.1

2 years ago

26.7.2

2 years ago

26.7.0

2 years ago

26.6.2

2 years ago

26.6.1

2 years ago

26.6.0

2 years ago

25.5.13

2 years ago

25.5.9

2 years ago

25.5.8

2 years ago

25.5.11

2 years ago

25.5.12

2 years ago

25.5.10

2 years ago

25.5.7

3 years ago

25.5.6

3 years ago

25.5.5

3 years ago

25.5.4

3 years ago

25.5.3

3 years ago

25.5.1

3 years ago

25.5.2

3 years ago

25.5.0

3 years ago

25.4.1

3 years ago

25.4.0

3 years ago

25.3.3

3 years ago

25.3.2

3 years ago

25.3.4

3 years ago

25.3.1

3 years ago

25.3.0

3 years ago

25.2.11

3 years ago

25.2.10

3 years ago

25.2.8

3 years ago

25.2.7

3 years ago

25.2.9

3 years ago

25.2.4

3 years ago

25.2.6

3 years ago

25.2.5

3 years ago

25.2.3

3 years ago

25.2.2

3 years ago

25.2.1

3 years ago

25.2.0

3 years ago

25.1.5

3 years ago

25.1.4

3 years ago

25.1.6

3 years ago

25.1.3

3 years ago

25.1.2

3 years ago

25.1.1

3 years ago

25.1.0

3 years ago

25.0.12

3 years ago

25.0.11

3 years ago

25.0.10

3 years ago

25.0.6

3 years ago

25.0.5

3 years ago

25.0.8

3 years ago

25.0.7

3 years ago

25.0.9

3 years ago

25.0.4

3 years ago

25.0.3

3 years ago

25.0.2

3 years ago

25.0.1

3 years ago

25.0.0

3 years ago

24.8.7

3 years ago

24.8.5

3 years ago

24.8.6

3 years ago

24.8.4

3 years ago

24.8.3

3 years ago

24.8.2

3 years ago

24.8.1

3 years ago

24.8.0

3 years ago

24.7.6

3 years ago

24.7.5

3 years ago

24.7.4

3 years ago

24.7.3

3 years ago

24.7.2

3 years ago

24.7.1

3 years ago

24.7.0

3 years ago

24.6.3

3 years ago

24.6.2

3 years ago

24.6.1

3 years ago

24.6.0

3 years ago

24.5.0

3 years ago

24.4.1

3 years ago

24.3.0

3 years ago

24.4.0

3 years ago

24.2.3

3 years ago

24.2.2

3 years ago

24.2.1

3 years ago

24.2.0

3 years ago

24.1.0

3 years ago

24.0.0

4 years ago

23.22.0

4 years ago

23.21.7

4 years ago

23.21.6

4 years ago

23.21.5

4 years ago

23.21.4

4 years ago

23.21.3

4 years ago

23.21.2

4 years ago

23.21.1

4 years ago

23.21.0

4 years ago

23.20.0

4 years ago

23.19.0

4 years ago

23.18.0

4 years ago

23.17.0

4 years ago

23.16.3

4 years ago

23.16.1

4 years ago

23.16.2

4 years ago

23.15.3

4 years ago

23.16.0

4 years ago

23.15.2

4 years ago

23.15.1

4 years ago

23.15.0

4 years ago

23.14.0

4 years ago

23.13.4

4 years ago

23.13.1

4 years ago

23.13.2

4 years ago

23.13.3

4 years ago

23.13.0

4 years ago

23.12.2

4 years ago

23.12.1

4 years ago

23.12.0

4 years ago

23.11.1

4 years ago

23.11.0

4 years ago

23.10.1

4 years ago

23.10.0

4 years ago

23.9.0

4 years ago

23.7.1

4 years ago

23.7.3

4 years ago

23.7.2

4 years ago

23.8.0

4 years ago

23.7.0

4 years ago

23.6.6

4 years ago

23.6.5

4 years ago

23.6.4

4 years ago

23.6.2

4 years ago

23.6.1

4 years ago

23.6.3

4 years ago

23.6.0

4 years ago

23.5.0

4 years ago

23.4.0

4 years ago

23.3.0

4 years ago

23.2.1

4 years ago

23.2.0

4 years ago

23.1.4

4 years ago

23.1.3

4 years ago

23.1.2

4 years ago

23.1.1

4 years ago

23.1.0

4 years ago

23.0.0

4 years ago

22.2.1

4 years ago

22.2.0

4 years ago

22.1.3

4 years ago

22.1.2

4 years ago

22.1.1

4 years ago

22.1.0

4 years ago

22.0.1

4 years ago

22.0.0

4 years ago

21.0.7

4 years ago

21.0.6

4 years ago

21.0.5

4 years ago

21.0.4

4 years ago

21.0.3

4 years ago

21.0.2

4 years ago

21.0.1

4 years ago

21.0.0

4 years ago

20.1.3

4 years ago

20.1.2

4 years ago

20.1.0

4 years ago

20.1.1

4 years ago

19.5.0

4 years ago

20.0.0

4 years ago

19.4.0

4 years ago

19.3.0

4 years ago

19.2.2

4 years ago

19.2.1

4 years ago

19.2.0

4 years ago

19.1.1

4 years ago

19.1.0

4 years ago

19.0.2

4 years ago

19.0.1

4 years ago

19.0.0

4 years ago

18.5.2

4 years ago

18.5.1

4 years ago

18.5.0

4 years ago

18.4.0

4 years ago

18.2.0

4 years ago

18.3.0

4 years ago

18.1.0

4 years ago

18.0.0

4 years ago

17.2.0

4 years ago

17.1.1

4 years ago

17.1.0

4 years ago

17.0.2

4 years ago

17.0.1

4 years ago

17.0.0

4 years ago

16.17.6

4 years ago

16.17.4

4 years ago

16.17.5

4 years ago

16.17.3

4 years ago

16.17.2

4 years ago

16.17.1

4 years ago

16.17.0

4 years ago

16.16.1

4 years ago

16.16.2

4 years ago

16.16.0

4 years ago

16.15.1

4 years ago

16.15.0

4 years ago

16.14.1

4 years ago

16.14.0

4 years ago

16.13.1

4 years ago

16.13.0

4 years ago

16.12.4

4 years ago

16.12.3

4 years ago

16.12.2

4 years ago

16.12.1

4 years ago

16.12.0

4 years ago

16.11.3

4 years ago

16.11.2

4 years ago

16.11.1

4 years ago

16.11.0

4 years ago

16.10.3

4 years ago

16.10.2

4 years ago

16.10.1

4 years ago

16.10.0

4 years ago

16.9.0

4 years ago

16.8.6

5 years ago

16.8.5

5 years ago

16.8.4

5 years ago

16.8.3

5 years ago

16.8.2

5 years ago

16.8.1

5 years ago

16.8.0

5 years ago

16.7.9

5 years ago

16.7.8

5 years ago

16.7.7

5 years ago

16.7.6

5 years ago

16.7.5

5 years ago

16.7.4

5 years ago

16.7.3

5 years ago

16.7.2

5 years ago

16.7.1

5 years ago

16.7.0

5 years ago

16.6.1

5 years ago

16.6.0

5 years ago

16.5.5

5 years ago

16.5.4

5 years ago

16.5.3

5 years ago

16.5.2

5 years ago

16.5.1

5 years ago

16.5.0

5 years ago

16.4.0

5 years ago

16.3.0

5 years ago

16.2.0

5 years ago

16.1.1

5 years ago

16.1.0

5 years ago

16.0.4

5 years ago

16.0.3

5 years ago

16.0.2

5 years ago

16.0.1

5 years ago

16.0.0

5 years ago

15.1.1

5 years ago

15.1.0

5 years ago

15.0.0

5 years ago

14.8.1

5 years ago

14.8.0

5 years ago

14.7.4

5 years ago

14.7.3

5 years ago

14.7.2

5 years ago

14.7.1

5 years ago

14.7.0

5 years ago

14.6.1

5 years ago

14.6.0

5 years ago

14.5.0

5 years ago

14.4.0

5 years ago

14.3.0

5 years ago

14.2.1

5 years ago

14.2.0

5 years ago

14.1.1

5 years ago

14.1.0

5 years ago

14.0.0

5 years ago

13.2.0

5 years ago

13.1.7

5 years ago

13.1.6

5 years ago

13.1.5

5 years ago

13.1.4

5 years ago

13.1.3

5 years ago

13.1.2

5 years ago

13.1.1

5 years ago

13.1.0

5 years ago

13.0.3

5 years ago

13.0.2

5 years ago

13.0.1

5 years ago

13.0.0

5 years ago

12.7.0

5 years ago

12.6.0

5 years ago

12.5.3

5 years ago

12.5.2

5 years ago

12.5.1

5 years ago

12.5.0

5 years ago

12.4.2

5 years ago

12.4.1

5 years ago

12.4.0

5 years ago

12.3.0

5 years ago

12.2.2

5 years ago

12.2.1

5 years ago

12.2.0

5 years ago

12.1.0

5 years ago

12.0.0

5 years ago

11.0.0

5 years ago

10.0.1

5 years ago

10.0.0

5 years ago

9.0.4

5 years ago

9.0.3

5 years ago

9.0.2

5 years ago

9.0.1

5 years ago

9.0.0

5 years ago

8.6.3

5 years ago

8.6.2

5 years ago

8.6.1

5 years ago

8.6.0

5 years ago

8.5.0

5 years ago

8.4.1

5 years ago

8.4.0

5 years ago

8.3.1

5 years ago

8.3.0

5 years ago

8.2.0

5 years ago

8.1.1

5 years ago

8.1.0

5 years ago

8.0.1

5 years ago

8.0.0

5 years ago

7.2.2

5 years ago

7.2.1

5 years ago

7.2.0

5 years ago

7.1.0

5 years ago

7.0.1

5 years ago

7.0.0

6 years ago

6.1.0

6 years ago

6.0.0

6 years ago

5.7.5

6 years ago

5.7.4

6 years ago

5.7.3

6 years ago

5.7.2

6 years ago

5.7.1

6 years ago

5.7.0

6 years ago

5.6.0

6 years ago

5.5.0

6 years ago

5.4.0

6 years ago

5.3.0

6 years ago

5.2.6

6 years ago

5.2.5

6 years ago

5.2.4

6 years ago

5.2.3

6 years ago

5.2.2

6 years ago

5.2.1

6 years ago

5.2.0

6 years ago

5.1.2

6 years ago

5.1.1

6 years ago

5.1.0

6 years ago

5.0.1

6 years ago

5.0.0

6 years ago

4.0.1

6 years ago

4.0.0

6 years ago

3.9.1

6 years ago

3.9.0

6 years ago

3.8.3

6 years ago

3.8.2

6 years ago

3.8.1

6 years ago

3.8.0

6 years ago

3.7.0

6 years ago

3.6.3

6 years ago

3.6.2

6 years ago

3.6.1

6 years ago

3.6.0

6 years ago

3.5.1

6 years ago

3.5.0

6 years ago

3.4.1

6 years ago

3.4.0

6 years ago

3.3.2

6 years ago

3.3.1

6 years ago

3.3.0

6 years ago

3.2.0

6 years ago

3.1.0

6 years ago

3.0.3

6 years ago

3.0.2

6 years ago

3.0.1

6 years ago

3.0.0

6 years ago

2.24.1

6 years ago

2.24.0

6 years ago

2.23.1

6 years ago

2.23.0

6 years ago

2.22.0

6 years ago

2.21.0

6 years ago

2.20.1

6 years ago

2.20.0

6 years ago

2.19.0

6 years ago

2.18.0

6 years ago

2.17.1

6 years ago

2.17.0

6 years ago

2.16.0

6 years ago

2.15.1

6 years ago

2.15.0

6 years ago

2.14.0

6 years ago

2.13.0

6 years ago

2.12.0

6 years ago

2.11.1

6 years ago

2.11.0

6 years ago

2.10.1

6 years ago

2.10.0

6 years ago

2.9.0

6 years ago

2.8.0

6 years ago

2.7.0

6 years ago

2.6.1

6 years ago

2.6.0

6 years ago

2.5.2

6 years ago

2.5.1

6 years ago

2.5.0

6 years ago

2.4.3

6 years ago

2.4.2

6 years ago

2.4.1

6 years ago

2.4.0

6 years ago

2.3.2

6 years ago

2.3.1

6 years ago

2.3.0

6 years ago

2.2.1

6 years ago

2.2.0

6 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago