Skip to content

Commit f916f5e

Browse files
committed
Added release notes, bumped version number
1 parent 395b224 commit f916f5e

File tree

6 files changed

+46
-15
lines changed

6 files changed

+46
-15
lines changed

.github/workflows/master-deployment.yml

+1-1
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_USERNAME }}/neodash:latest,${{ secrets.DOCKER_HUB_USERNAME }}/neodash:2.2.0
82+
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/neodash:latest,${{ secrets.DOCKER_HUB_USERNAME }}/neodash:2.2.1
8383
# build-npm:
8484
# needs: build-test
8585
# runs-on: ubuntu-latest

Dockerfile

+1-1
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.2.0"
41+
LABEL version="2.2.1"

changelog.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## NeoDash 2.2.1
2+
This update provides a number of usability improves over the 2.2.0 release.
3+
In addition, it entails various improvements to the codebase, including security patches on the dependencies.
4+
5+
Table:
6+
- Column names prefixed with `__` are now hidden in the table view.
7+
8+
Map:
9+
- Added documentation for adding a custom map provider.
10+
11+
Parameter selector:
12+
- Added support for boolean parameters.
13+
14+
Editor:
15+
- Parameters are now automatically replaced **inside report titles**.
16+
- Image downloads now include the report title alongside the visualization.
17+
18+
Others:
19+
- Applied security patches for dependencies.
20+
- Set test container for release pipeline to fixed version of Neo4j.
21+
- Aligned code style / linting with Neo4j product standards.
22+
- Updated Docker setup to inject `standaloneDashboardURL` into the application config.
23+
124
## NeoDash 2.2.0
225
This release marks the official arrival of **[Extensions](https://neo4j.com/labs/neodash/2.2/user-guide/extensions/)**, which provide a simple way of extending NeoDash with additional features. Adding your own features to NeoDash just became a lot easier!
326

package.json

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

release-notes.md

+19-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
1-
## NeoDash 2.2.0
2-
This release marks the official arrival of **[Extensions](https://neo4j.com/labs/neodash/2.2/user-guide/extensions/)**, which provide a simple way of extending NeoDash with additional features. Adding your own features to NeoDash just became a lot easier!
1+
## NeoDash 2.2.1
2+
This update provides a number of usability improves over the 2.2.0 release.
3+
In addition, it entails various improvements to the codebase, including security patches on the dependencies.
34

4-
NeoDash 2.2 comes with three in-built extensions.
5-
- **Rule-Based Styling**
6-
- **Advanced Visualizations**: These provide a means to enable complex visualizations in a dashboard. These were previously available as Radar charts, Treemaps, Circle Packing reports, Sankey charts, Choropleth and a Gauge Chart).
7-
- **Report Actions**: Which let you create interactivity in dashboards, using the output of one report as input for another visualization. (Pro Extension)
5+
Table:
6+
- Column names prefixed with `__` are now hidden in the table view.
7+
8+
Map:
9+
- Added documentation for adding a custom map provider.
810

9-
You can enable extensions by clicking the 🧩 icon on the left sidebar of the screen.
11+
Parameter selector:
12+
- Added support for boolean parameters.
1013

11-
Other changes include:
12-
- New example dashboards available in the [Dashboard Gallery](https://neodash-gallery.graphapp.io).
13-
- Customizable background colors for all report types.
14-
- Fixing a bug where the Choropleth map chart was unable to parse country-codes.
14+
Editor:
15+
- Parameters are now automatically replaced **inside report titles**.
16+
- Image downloads now include the report title alongside the visualization.
17+
18+
Others:
19+
- Applied security patches for dependencies.
20+
- Set test container for release pipeline to fixed version of Neo4j.
21+
- Aligned code style / linting with Neo4j product standards.
22+
- Updated Docker setup to inject `standaloneDashboardURL` into the application config.

src/modal/AboutModal.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { Button } from '@material-ui/core';
1010
import BugReportIcon from '@material-ui/icons/BugReport';
1111

1212
export const NeoAboutModal = ({ open, handleClose, getDebugState }) => {
13-
const version = '2.2.0';
13+
const version = '2.2.1';
1414

1515
const downloadDebugFile = () => {
1616
const element = document.createElement('a');

0 commit comments

Comments
 (0)