Skip to content

Commit 9fa8209

Browse files
authored
Fixed flaky behaviour in parameter selection (#192)
* Fixed flaky behaviour in parameter selection * Extended parameter select to support: custom # suggestions, optional case-sensitiveness, custom search types, and turn of deduplications * Updated version to 2.1.5
1 parent 0729959 commit 9fa8209

File tree

12 files changed

+121
-317
lines changed

12 files changed

+121
-317
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.4
74+
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/neodash:latest,${{ secrets.DOCKER_HUB_USERNAME }}/neodash:2.1.5
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.4"
41+
LABEL version="2.1.5"

changelog.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## NeoDash 2.1.5
2+
Added *New* Sankey charts:
3+
- Visualize nodes and relationships as a flow diagram.
4+
- Select a customizable flow value from relationship properties.
5+
- Configure a variety of style customizations.
6+
7+
Parameter select:
8+
- Fixed bug where values would randomly be deleted after changing the parameter.
9+
- Added option to customize the number of suggested values when a user enters (part of) a property value.
10+
- Added option to customize search type (CONTAINS, STARTS WITH, or ENDS WITH).
11+
- Added option to enable/disable case-sensitive search.
12+
- Added option to enable/disable removing duplicate suggestions.
13+
14+
Miscellaneous:
15+
- Extended documentation with examples on running NeoDash in Kubernetes.
16+
- Fixed issue where duplicate database names were visible when running NeoDash on an on-prem Neo4j cluster.
17+
18+
## NeoDash 2.1.4
19+
Added hotfix for missing function in map visualization (https://github.com/neo4j-labs/neodash/issues/183).
20+
121
## NeoDash 2.1.3
222
The 2.1.3 release contains updates to the map visualization, as well as a new Choropleth map report type.
323
Several usability improvements were also added, including fixing all links into the new documentation pages.
@@ -10,7 +30,6 @@ Several usability improvements were also added, including fixing all links into
1030
- Added support for drawing dates on a time chart (in addition to existing datetime types).
1131
- Fixed broken links in the documentation portal, all in-app links now point to this portal as well.
1232

13-
1433
## NeoDash 2.1.2
1534
The 2.1.2 release contains some bug fixes and minor improvements to the application.
1635

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.4",
3+
"version": "2.1.5",
44
"description": "NeoDash - Neo4j Dashboard Builder",
55
"neo4jDesktop": {
66
"apiVersion": "^1.2.0"

release-notes.history.md

Lines changed: 0 additions & 245 deletions
This file was deleted.

release-notes.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
## NeoDash 2.1.4
2-
Added hotfix for missing function in map visualization (https://github.com/neo4j-labs/neodash/issues/183).
1+
## NeoDash 2.1.5
2+
Added *New* Sankey charts:
3+
- Visualize nodes and relationships as a flow diagram.
4+
- Select a customizable flow value from relationship properties.
5+
- Configure a variety of style customizations.
36

4-
## NeoDash 2.1.3
5-
The 2.1.3 release contains updates to the map visualization, as well as a new Choropleth map report type.
6-
Several usability improvements were also added, including fixing all links into the new documentation pages.
7+
Parameter select:
8+
- Fixed bug where values would randomly be deleted after changing the parameter.
9+
- Added option to customize the number of suggested values when a user enters (part of) a property value.
10+
- Added option to customize search type (CONTAINS, STARTS WITH, or ENDS WITH).
11+
- Added option to enable/disable case-sensitive search.
12+
- Added option to enable/disable removing duplicate suggestions.
713

8-
- Extended the map visualization with a heatmap mode & marker clustering.
9-
- Added a Choropleth map visualization report type.
10-
- Added support for auto-linking into a predefined database from https://tools.neo4jlabs.com/.
11-
- Added optional background color setting for reports.
12-
- Added a new 'resize mode' for page layout creation.
13-
- Added support for drawing dates on a time chart (in addition to existing datetime types).
14-
- Fixed broken links in the documentation portal, all in-app links now point to this portal as well.
14+
Miscellaneous:
15+
- Extended documentation with examples on running NeoDash in Kubernetes.
16+
- Fixed issue where duplicate database names were visible when running NeoDash on an on-prem Neo4j cluster.

0 commit comments

Comments
 (0)