Skip to content

Commit 92d6984

Browse files
committed
Bump to 2.1.8
1 parent cee1dfd commit 92d6984

File tree

5 files changed

+7
-23
lines changed

5 files changed

+7
-23
lines changed

.github/workflows/master-deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
context: .
7272
file: ./Dockerfile
7373
push: true
74-
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/neodash:latest,${{ secrets.DOCKER_HUB_USERNAME }}/neodash:2.1.7
74+
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/neodash:latest,${{ secrets.DOCKER_HUB_USERNAME }}/neodash:2.1.8
7575
build-npm:
7676
needs: build-test
7777
runs-on: ubuntu-latest

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ RUN chown -R nginx:nginx /usr/share/nginx/html/
3838
USER nginx
3939
EXPOSE 5005
4040
HEALTHCHECK cmd curl --fail http://localhost:5005 || exit 1
41-
LABEL version="2.1.7"
41+
LABEL version="2.1.8"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "neodash",
3-
"version": "2.1.7",
3+
"version": "2.1.8",
44
"description": "NeoDash - Neo4j Dashboard Builder",
55
"neo4jDesktop": {
66
"apiVersion": "^1.2.0"

release-notes.md

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,4 @@
1-
## NeoDash 2.1.6 & 2.1.7
1+
## NeoDash 2.1.8
22
New features:
3-
- Added *Radar Charts/Spider Charts*.
4-
- Added optional markdown description for each report, to be displayed via the header.
5-
6-
Extensions:
7-
- Added option to provide a custom map provider for map charts.
8-
- Added support for default values in parameter selectors.
9-
- Added documentation on deep-linking into NeoDash.
10-
- Added tick-rotation customization for line charts.
11-
- Added option to have children in the sunburst chart inherit colors from their parents.
12-
13-
Improvements:
14-
- Rewiring of the internal query/rendering engine - resulting in far fewer query executions and a smoother UX.
15-
- Changed package manager from `npm` to `yarn`, and bumped node version to 18. Cleaned up `package.json`.
16-
- Reduced flaky behaviour in parameter selectors.
17-
- Added cycle-detection logic for sankey charts.
18-
- Fixed report documentation pop-up to open link in a new window.
19-
20-
For a complete version history, see the [Changelog](https://github.com/neo4j-labs/neodash/blob/master/changelog.md).
3+
- Added the [Dashboard Gallery](https://neodash-gallery.graphapp.io), a live gallery of example NeoDash dashboards.
4+
- Updated testing pipeline to work as an independent procedure.

src/modal/AboutModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import BugReportIcon from '@material-ui/icons/BugReport';
1212

1313
export const NeoAboutModal = ({ open, handleClose, getDebugState }) => {
1414
const app = "NeoDash - Neo4j Dashboard Builder";
15-
const version = "2.1.7";
15+
const version = "2.1.8";
1616

1717
const downloadDebugFile = () => {
1818
const element = document.createElement("a");

0 commit comments

Comments
 (0)