Skip to content

Commit 4a14772

Browse files
authored
Added 2.4.4 release notes, bumped version (#818)
1 parent 4b779a0 commit 4a14772

File tree

7 files changed

+23
-33
lines changed

7 files changed

+23
-33
lines changed

.github/workflows/master-deployment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
context: .
8080
file: ./Dockerfile
8181
push: true
82-
tags: ${{ secrets.DOCKER_HUB_LABS_USERNAME }}/neodash:latest,${{ secrets.DOCKER_HUB_LABS_USERNAME }}/neodash:2.4.3
82+
tags: ${{ secrets.DOCKER_HUB_LABS_USERNAME }}/neodash:latest,${{ secrets.DOCKER_HUB_LABS_USERNAME }}/neodash:2.4.4
8383
build-docker-legacy:
8484
needs: build-test
8585
runs-on: neodash-runners
@@ -103,7 +103,7 @@ jobs:
103103
context: .
104104
file: ./Dockerfile
105105
push: true
106-
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/neodash:latest,${{ secrets.DOCKER_HUB_USERNAME }}/neodash:2.4.3
106+
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/neodash:latest,${{ secrets.DOCKER_HUB_USERNAME }}/neodash:2.4.4
107107
deploy-gallery:
108108
runs-on: neodash-runners
109109
strategy:

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ USER nginx
4343
EXPOSE $NGINX_PORT
4444

4545
HEALTHCHECK cmd curl --fail "http://localhost:$NGINX_PORT" || exit 1
46-
LABEL version="2.4.3"
46+
LABEL version="2.4.4"

changelog.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## NeoDash 2.4.4
2+
This is a hotfix release fixing some breaking issues in the 2.4.3:
3+
- Fixed number parsing using newer versions of the Neo4j driver. [811](https://github.com/neo4j-labs/neodash/pull/811)
4+
- Reverted new connection handler for auto-renewed SSO sessions. [815](https://github.com/neo4j-labs/neodash/pull/815)
5+
- Improved handling of parameters in form extension, resolved local state issues. [813](https://github.com/neo4j-labs/neodash/pull/813)
6+
- Updated Role management extension to no longer execute queries in parallel, improved UX and error handling [813](https://github.com/neo4j-labs/neodash/pull/813)
7+
8+
If you are currently using NeoDash version 2.4.3, we recommend updating as soon as possible.
9+
110
## NeoDash 2.4.3
211
This release contains several improvements and additions to multi-dashboard management, as well as a bug fixes and a variety of quality-of-life improvements:
312

docs/modules/ROOT/pages/developer-guide/deploy-a-build.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Depending on the webserver type and version, this could be different directory.
3737
As an example - to copy the files to an nginx webserver using `scp`:
3838

3939
```bash
40-
scp neodash-2.4.3 username@host:/usr/share/nginx/html
40+
scp neodash-2.4.4 username@host:/usr/share/nginx/html
4141
```
4242

4343
NeoDash should now be visible by visiting your (sub)domain in the browser.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "neodash",
3-
"version": "2.4.3",
3+
"version": "2.4.4",
44
"description": "NeoDash - Neo4j Dashboard Builder",
55
"neo4jDesktop": {
66
"apiVersion": "^1.2.0"

release-notes.md

+8-27
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,8 @@
1-
## NeoDash 2.4.3
2-
This release contains several improvements and additions to multi-dashboard management, as well as a bug fixes and a variety of quality-of-life improvements:
3-
4-
Dashboard management and access control:
5-
- Added a UI for handling dashboard access using RBAC, as well as a new extension to simply access control.
6-
- Added button to sidebar to refresh the list of dashboards saved in the database.
7-
- Improved handling and detection of draft dashboards in the dashboard sidebar.
8-
9-
Other improvements:
10-
- Changed CSV export functionality for tables to use UTF-8 format.
11-
- Various improvements / fixes to the documentation to include new images, and up-to-date functionality.
12-
- Added logic for handling refresh tokens when connected to NeoDash via SSO.
13-
- Incorporated tooltips for bar charts with and without custom labels.
14-
15-
Bug fixes and testing:
16-
- Implemented bug fixes on type casting for numeric parameter selectors.
17-
- Fixed issue with report actions not functioning properly on node click events.
18-
- Extended test suite with Cypress tests for advanced settings in the bar chart.
19-
20-
Thanks to all the contributors for this release:
21-
- [OskarDamkjaer](https://github.com/OskarDamkjaer)
22-
- [alfredorubin96](https://github.com/alfredorubin96),
23-
- [AleSim94](https://github.com/AleSim94),
24-
- [BennuFire](https://github.com/BennuFire),
25-
- [jacobbleakley-neo4j](https://github.com/jacobbleakley-neo4j),
26-
- [josepmonclus](https://github.com/josepmonclus)
27-
- [nielsdejong](https://github.com/nielsdejong)
1+
## NeoDash 2.4.4
2+
This is a hotfix release fixing some breaking issues in the 2.4.3:
3+
- Fixed number parsing using newer versions of the Neo4j driver. [811](https://github.com/neo4j-labs/neodash/pull/811)
4+
- Reverted new connection handler for auto-renewed SSO sessions. [815](https://github.com/neo4j-labs/neodash/pull/815)
5+
- Improved handling of parameters in form extension, resolved local state issues. [813](https://github.com/neo4j-labs/neodash/pull/813)
6+
- Updated Role management extension to no longer execute queries in parallel, improved UX and error handling [813](https://github.com/neo4j-labs/neodash/pull/813)
7+
8+
If you are currently using NeoDash version 2.4.3, we recommend updating as soon as possible.

src/modal/AboutModal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Button, Dialog, TextLink } from '@neo4j-ndl/react';
33
import { BookOpenIconOutline, BeakerIconOutline } from '@neo4j-ndl/react/icons';
44
import { Section, SectionTitle, SectionContent } from './ModalUtils';
55

6-
export const version = '2.4.3';
6+
export const version = '2.4.4';
77

88
export const NeoAboutModal = ({ open, handleClose, getDebugState }) => {
99
const downloadDebugFile = () => {

0 commit comments

Comments
 (0)