This repository has been archived by the owner on May 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
57 additions
and
81 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 |
---|---|---|
@@ -1,8 +1,15 @@ | ||
[0.5.1] | ||
# 0.7.0 | ||
## Features / Enhancements | ||
- Add support for bearer token in export/import of dashboard | ||
- Document API key usage | ||
|
||
New Features: | ||
- Store/Upload/Download dashboards in S3. | ||
## Bug fixes | ||
- Updated vulnerable dependencies | ||
- Fix missing folder in local dashboard summarize | ||
- Fix logging causing an exception in case of missing response | ||
|
||
Breaking Changes: | ||
- `wizzy export new-dashboard` is changed to `wizzy export dashboard`. | ||
- `wizzy datasource` commands are using names now instead of ids. | ||
## Breaking changes | ||
- Now requires at least Node 8 | ||
|
||
## Know bugs | ||
- Local commands are still broken |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,25 +1,26 @@ | ||
{ | ||
"name": "wizzy", | ||
"version": "0.6.0", | ||
"version": "0.7.0", | ||
"description": "Lets you automate Grafana interaction", | ||
"main": "index.js", | ||
"scripts": { | ||
"lint": "eslint --ext .js .", | ||
"test": "nyc --reporter=html --reporter=text mocha --recursive", | ||
"coverage": "nyc report --reporter=text-lcov | coveralls" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/utkarshcmu/wizzy.git" | ||
"url": "git+https://github.com/grafana-wizzy/wizzy.git" | ||
}, | ||
"keywords": [ | ||
"Grafana" | ||
], | ||
"author": "Utkarsh Bhatnagar <[email protected]> (https://github.com/utkarshcmu)", | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/utkarshcmu/wizzy/issues" | ||
"url": "https://github.com/grafana-wizzy/wizzy/issues" | ||
}, | ||
"homepage": "https://github.com/utkarshcmu/wizzy#readme", | ||
"homepage": "https://github.com/grafana-wizzy/wizzy", | ||
"bin": { | ||
"wizzy": "src/index.js" | ||
}, | ||
|