Skip to content

Commit

Permalink
Bump version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jceb committed Mar 7, 2024
1 parent a8eba6b commit b400481
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 33 deletions.
55 changes: 41 additions & 14 deletions CHANGELOG.md
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 -->
26 changes: 16 additions & 10 deletions package.json
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",
Expand All @@ -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"
Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -106,4 +112,4 @@
"webpack": "^5.90.3"
},
"packageManager": "[email protected]"
}
}
31 changes: 22 additions & 9 deletions src/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,31 @@
"type": "panel",
"name": "Service Dependency Graph",
"id": "service-dependency-graph-panel",
"info": {
"version": "1.0.0",
"info":
{
"version": "1.0.1",
"updated": "2024-03-07",
"description": "Service Dependency Graph panel for Grafana. Shows metric-based, dynamic dependency graph between services, indicates responsetime, load and error rate statistic for individual services and communication edges. Shows communication to external services, such as Web calls, database calls, message queues, LDAP calls, etc. Provides a details dialog for each selected service that shows statistics about incoming and outgoing traffic.",
"author": {
"author":
{
"name": "identinet GmbH",
"url": "https://www.identinet.io/"
},
"keywords": ["panel", "grafana", "plugin", "service-dependency-graph", "topology"],
"logos": {
"keywords":
[
"panel",
"grafana",
"plugin",
"service-dependency-graph",
"topology"
],
"logos":
{
"small": "img/novatec_sdg_panel_logo.svg",
"large": "img/novatec_sdg_panel_logo.svg"
},
"links": [
"links":
[
{
"name": "Project site",
"url": "https://github.com/identiops/service-dependency-graph-panel.git"
Expand All @@ -26,15 +37,17 @@
"url": "https://github.com/identiops/service-dependency-graph-panel/blob/master/LICENSE"
}
],
"screenshots": [
"screenshots":
[
{
"name": "Showcase",
"path": "img/data-example-1.png"
}
]
},
"dependencies": {
"dependencies":
{
"grafanaDependency": ">=10.3.3",
"plugins": []
}
}
}

0 comments on commit b400481

Please sign in to comment.