-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dependencies update and 8.0.0-beta.1 release (#85)
* bump base64-js, pako, ws, remove proto generated files * chore: bump bignumber.js * chore: bring back proto generated code into repo * chore: bump gulp * refactor: remove text-encoding * chore: bump sse.js * chore: move away from gulp-eslint in favor of regular eslint * chore: move mocha out of gulp * chore: limit CI matrix * chore: simplify version * chore: replace browserify with webpack * fix: mark ws as external * chore: fix changelog * chore: fix version * chore: drop node 11 * improv: move to axios from request * fix: docs * fix: PR feedback
- Loading branch information
1 parent
5ff308a
commit 48ce058
Showing
24 changed files
with
3,771 additions
and
13,360 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"presets": [ | ||
"@splunk/babel-preset" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Officially we support latest-1 for Chrome, FireFox, Safari, and Edge | ||
# Using the list below though to ensure maximum compatibility at minimal cost | ||
|
||
defaults | ||
not IE 11 | ||
not IE_Mob 11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module.exports = { | ||
"extends": "eslint:recommended", | ||
"env": { | ||
"browser": true, | ||
"commonjs": true, | ||
"es2021": true, | ||
"node": true, | ||
"mocha": true | ||
}, | ||
"overrides": [ | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": "latest" | ||
}, | ||
"rules": { | ||
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }], | ||
"no-prototype-builtins": ["off"] | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Migrating between versions | ||
|
||
## 8.0.0 from 7.x | ||
|
||
If you are using the `proxy` field of the `options` argument of `new signalfx.Ingest()`: | ||
- the value of `proxy` will be in the format: `http://<USER>:<PASSWORD>@<HOST>:<PORT>` | ||
- it must be restructured into an object as such: | ||
```js | ||
{ | ||
protocol: 'http(s)', | ||
host: '<HOST>', | ||
port: PORT, | ||
auth: { | ||
username: '<USER>', | ||
password: '<PASSWORD>' | ||
} | ||
}, | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.