Skip to content

Latest commit

 

History

History
173 lines (86 loc) · 4.06 KB

CHANGELOG.md

File metadata and controls

173 lines (86 loc) · 4.06 KB

Change Log

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

1.0.0 (2018-12-19)

Chores

  • rxjs: update rxjs to latest version (96d67a2)
  • rxjs: update rxjs to latest version (e9f1781)

BREAKING CHANGES

  • rxjs: RxJS is updated to a new major version, this means all clients need to update as well

Closes DCOS-46038.

  • rxjs: RxJS is updated to a new major version, this means all clients need to update as well

Closes DCOS-46038.

0.2.6 (2018-12-18)

0.2.5 (2018-08-28)

0.2.4 (2018-08-15)

0.2.3 (2018-06-27)

0.2.2 (2018-06-27)

0.2.1 (2018-03-27)

0.2.0 (2018-02-21)

Features

  • stream/index: remove retry(-1) (2ef5dfd)

BREAKING CHANGES

  • stream/index: stream won't retry automatically when connection drops From now on you should implement the retry mechanism in your application.

Before:

stream({ type: "SUBSCRIBE" }).subscribe(...);

After:

stream({ type: "SUBSCRIBE" }).retry(-1).subscribe(...);

0.1.10 (2018-01-09)

Bug Fixes

  • readRecordioRecords: copy strings to avoid meamory leak (05cf1fa)

0.1.9 (2017-12-14)

0.1.8 (2017-11-27)

Bug Fixes

  • stream: remove arbitrary timeout (ef5ae42)

0.1.7 (2017-11-24)

0.1.6 (2017-11-16)

0.1.5 (2017-11-07)

Features

  • request: switch from json to raw text response (b3af5da)

BREAKING CHANGES

  • request: Switching from parsed JSON to raw text response as a return value for request function.

As stream function returns raw text and not JSON we've made a decision to unify the interface

Before:

request({...}).subscribe((jsonData) => ...);

After:

request({...}).map(data => JSON.parse(data)).subscribe((jsonData) => ...);

0.1.4 (2017-11-03)

Features

  • allow changing mesos URL (ba46693)
  • stream: increase timeout interval to be 30 seconds (81f0129)

BREAKING CHANGES

  • baseUrl argument changes its behaviour Instead of being a baseUrl it is becomming a complete url:

Before:

request({...}, "base/url") stream({...}, "base/url")

After:

stream({...}, "base/url/mesos/api/v1") request({...}, "base/url/mesos/api/v1")