Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,23 @@
"node": true
},
"rules": {
"strict": 0,
"arrow-body-style": [0],
"arrow-parens": [0],
"camelcase": [0],
"class-methods-use-this": [0],
"comma-dangle": [0],
"eqeqeq": [1],
"flowtype-errors/show-errors": 2,
"max-len": [0],
"camelcase": [0],
"quotes": [2, "double"],
"prefer-arrow-callback": [0],
"new-cap": [0],
"no-underscore-dangle": [0],
"arrow-body-style" : [0],
"no-param-reassign" : [0],
"no-console": [0],
"eqeqeq": [1],
"no-param-reassign": [0],
"no-underscore-dangle": [0],
"no-unused-vars": [1],
"prefer-arrow-callback": [1],
"prefer-destructuring": [0],
"class-methods-use-this": [0],
"flowtype-errors/show-errors": 2,
"quotes": [2, "double"],
"spaced-comment": ["error", "always", { "markers": [":", "::"] }],
"no-use-before-define": ["error", { "classes": false }]
},
Expand Down
2 changes: 1 addition & 1 deletion .flowconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ flow-typed
all=warn

[options]
include_warnings=true
include_warnings=false
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
# CHANGELOG

## 2.0.0-rc1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ouch, I caused some confusion here, the version 2.0.0 was already published and tagged in this repository. I should have put a separate entry in the changelog to make it clear, but since there were no changes comparing to beta.3 I forgot doing so. I will cleanup the situation.

* add `debug` - Logs all calls to the REST api when active.
* tweak Flow types
* be more strict with code style, enforce flow, prettier + lint at each commit.
* fix CHANGELOG to be consistent with actual code behaviour for `firehoseEventsArray`

## 2.0.0-beta.3
* fix missing flow types
* documentation adjustments

## 2.0.0-beta.2
* adds experimental `logsArray` and `firehoseEventsArray` to additionally capture log lines and firehose events to separate arrays.
CAUTION: this does not disable normal behaviour of the libary
* adds experimental `logsArray` and `firehoseEventsArray` to capture log lines and firehose events to separate arrays.
CAUTION: this DOES disable normal behaviour of the libary
* fix retry callback errors

## 2.0.0-beta.1
Expand Down
Loading