Skip to content

Commit

Permalink
Merge pull request #93 from grafana/prep-0.0.18
Browse files Browse the repository at this point in the history
Prepare v0.0.18 release
  • Loading branch information
K-Phoen authored Sep 24, 2024
2 parents 59cbc3b + bd346ba commit 8607722
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to the "grafana-vscode" extension will be documented in this file.

## v0.0.18
- Fix support for Grafana Cloud (#87)
- Support library panels (#90)
- Support grizzly dashboards (#91)
- Support HTTP API-style dashboards (#92)

## v0.0.17
- Add /api/datasource/uid/* proxy endpoint
- Remove preferences warning popup
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"displayName": "Grafana",
"description": "Grafana Editor",
"icon": "public/grafana_icon.png",
"version": "0.0.17",
"version": "0.0.18",
"license": "Apache-2.0",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/grafana.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,6 @@ export class Resource {
break;
}

return fs.promises.writeFile(this.filename, content)
return fs.promises.writeFile(this.filename, content);
}
}

0 comments on commit 8607722

Please sign in to comment.