Skip to content

Commit

Permalink
Bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jceb committed Mar 11, 2024
1 parent f32d6bb commit e232902
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 19 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [1.1.0] - 2024-03-11

### Miscellaneous Tasks

- Compute and publish checksums
- Correct plugin name

## [1.0.5] - 2024-03-08

### Miscellaneous Tasks
Expand Down
26 changes: 16 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"name": "identinet-service-dependency-graph-panel",
"version": "1.0.5",
"version": "1.1.0",
"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/identinet-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/identinet-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,10 +81,12 @@
"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/ui": "10.3.3",
Expand All @@ -105,5 +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": "identinet-service-dependency-graph-panel",
"info": {
"version": "1.0.5",
"info":
{
"version": "1.1.0",
"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/identinet-service-dependency-graph-panel.git"
Expand All @@ -26,15 +37,17 @@
"url": "https://github.com/identiops/identinet-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 e232902

Please sign in to comment.