-
Notifications
You must be signed in to change notification settings - Fork 0
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
3 changed files
with
79 additions
and
33 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,25 +1,52 @@ | ||
# Change Log | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## [1.0.1] - 2024-03-07 | ||
|
||
## v4.0.2 | ||
### Miscellaneous Tasks | ||
|
||
Bug fix in icon path | ||
- Install pnpm with the right node version | ||
- Correct plugin configuration | ||
- Fix URL of identiops | ||
- Reformat code | ||
- Add release and build tasks | ||
|
||
## [1.0.0] - 2024-03-07 | ||
|
||
## v4.0.1 | ||
### #37 | ||
|
||
SumTimings now working as expected | ||
Response Time Health now dsiplayed in node statistics | ||
External Icons now use the correct path | ||
- TypeError: Cannot read property 'emit' of undefined (#45) | ||
|
||
### #41 | ||
|
||
## v4.0.0 | ||
- Dummy data should not rely on the correct column namings | ||
|
||
Ported project to react. | ||
aggregationType is not needed as template variable anymore. | ||
Unit type of data now can be choosen. | ||
Tables of Incoming/Outgoing Statistics are now sortable. | ||
Settings needed for the dummy data to be displayed is now filled in automatically when dummy data is activated. | ||
Service Icons can now be customized for both Internal and External Services. | ||
### #43 | ||
|
||
- [BUG] - Service icon is hidden by baseline symbol | ||
|
||
### #46 | ||
|
||
- [Question] - How to send URL variables in backend URL ? (#47) | ||
|
||
### #57 | ||
|
||
- Make headers sortable in incoming/outgoing statistics | ||
|
||
### #61 | ||
|
||
- Remove requirement for "aggregationType" template variable | ||
|
||
### Bugfix | ||
|
||
- Timings as Sums works now as expected | ||
- Statistics can now be displayed without drilldown link | ||
- Fixed sourceComponent value in dummy settings | ||
|
||
### Miscellaneous Tasks | ||
|
||
- Add flake configuration and set package locks | ||
- Bump plugin to latest version of grafana plugin and migrate to identiops | ||
|
||
<!-- generated by git-cliff --> |
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,9 +1,10 @@ | ||
{ | ||
"name": "service-dependency-graph-panel", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Service Dependency Graph panel for Grafana", | ||
"main": "src/module.js", | ||
"scripts": { | ||
"scripts": | ||
{ | ||
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production", | ||
"dev": "webpack -w -c ./.config/webpack/webpack.config.ts --env development", | ||
"test": "jest --watch --onlyChanged", | ||
|
@@ -16,14 +17,16 @@ | |
"server": "docker-compose up --build", | ||
"sign": "npx --yes @grafana/sign-plugin@latest" | ||
}, | ||
"keywords": [ | ||
"keywords": | ||
[ | ||
"grafana", | ||
"plugin", | ||
"service-dependency-graph", | ||
"topology" | ||
], | ||
"repository": "github:grafana/identiops/service-dependency-graph-panel", | ||
"contributors": [ | ||
"contributors": | ||
[ | ||
{ | ||
"name": "identinet GmbH", | ||
"url": "https://identiops.com" | ||
|
@@ -34,11 +37,13 @@ | |
} | ||
], | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"bugs": | ||
{ | ||
"url": "https://github.com/identiops/service-dependency-graph-panel/issues", | ||
"email": "[email protected]" | ||
}, | ||
"devDependencies": { | ||
"devDependencies": | ||
{ | ||
"@babel/core": "^7.21.4", | ||
"@grafana/e2e": "10.3.3", | ||
"@grafana/e2e-selectors": "10.3.3", | ||
|
@@ -76,13 +81,14 @@ | |
"webpack-cli": "^5.1.4", | ||
"webpack-livereload-plugin": "^3.0.2" | ||
}, | ||
"engines": { | ||
"engines": | ||
{ | ||
"node": ">=20" | ||
}, | ||
"dependencies": { | ||
"dependencies": | ||
{ | ||
"@emotion/css": "11.10.6", | ||
"@grafana/data": "10.3.3", | ||
"@grafana/runtime": "10.3.3", | ||
"@grafana/ui": "10.3.3", | ||
"@grafana/schema": "10.3.3", | ||
"react": "18.2.0", | ||
|
@@ -106,4 +112,4 @@ | |
"webpack": "^5.90.3" | ||
}, | ||
"packageManager": "[email protected]" | ||
} | ||
} |
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