Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

standaloneDashboardURL not working #160

Closed
jsuesse opened this issue Jul 5, 2022 · 2 comments · Fixed by #269
Closed

standaloneDashboardURL not working #160

jsuesse opened this issue Jul 5, 2022 · 2 comments · Fixed by #269
Labels
bug Something isn't working

Comments

@jsuesse
Copy link
Contributor

jsuesse commented Jul 5, 2022

I am trying to use standaloneDashboardURL, have been digging deep and I am stuck now.
Perhaps this is not a bug but, wow, I have no idea what the misconfiguration could be.
Can someone verify that standaloneDashboardURL works for them?

Setup/steps to recreate:

  • NeoDash version: 2.1.2
  • Neo4J Database version: 4.4.8. (Community)
  • use docker images for both pieces of software
  • this host machine has an arbitrary IP, DNS is not involved, say: IP=10.101.202.44
  • use compose-file to run (see Files)
    • NeoDash (standalone configuration)
    • Neo4J
  • create a dashboard using http://neodash.graphapp.io OR editor deployment (different config), download it, name it custom-dashboard.json, place it on the machine where NeoDash an Neo4J are.
  • compose-file: use volume to make dashboard availabe to the neodash container at /usr/share/nginx/html/custom-dashboard.json
  • set NeoDash environment variable standaloneDashboardURL to http://10.101.202.44:5005/custom-dashboard.json
  • run deployment (docker-compose up -d).

Expected behavior

  • visit NeoDash http://10.101.202.44:5005/
    • NeoDash loads dashboard from json description
  • get config.json http://10.101.202.44:5005/config.json
    • contains value for standaloneDashboardURL, no values for standaloneDashboardName and standaloneDashboardDatabase

Actual behavior

  • visit NeoDash http://10.101.202.44:5005/
    • NeoDash loads blank dashboard; fails to load configured Dashboard from URL
  • get config.json http://10.101.202.44:5005/config.json
    • does not contain standaloneDashboardURL (see Files)

Investigation

  • Visit http://10.101.202.44:5005/custom-dashboard.json from an external browser
    • file is accessible and retrieved.
  • docker exec -i --tty neodash sh
    • cat /usr/share/nginx/html/custom-dashboard.json
    • exists
    • curl http://10.101.202.44:5005/custom-dashboard.json inside container
    • works
  • changed standaloneDashboardURL in standalone.env to
    • include/not includehttp://
    • put value in single quotes '10.101.202.44:5005/custom-dashboard.json'
    • put value in double quotes "10.101.202.44:5005/custom-dashboard.json"
    • and combinations of these
    • checked for typos
  • inspect (F12 in Chrome) reveals error-message in console:
DashboardThunks.ts:160 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading '0')
    at DashboardThunks.ts:160:22
    at ReportQueryRunner.ts:137:13
  • DashboardThunks.ts:160:22 belongs to loadDashboardFromNeo4jByNameThunk, which is the wrong function
    • 🤷
  • Tried to host dashboard.json on a different container, spinning up two containers simultaneously the same way, different ports, didn't work.

Files

neodash.env

#Standalone Environment
standalone=true
ssoEnabled=false
standaloneProtocol=bolt
standaloneUsername=neo4j
standalonePassword=neo4j
#
standaloneHost=10.101.202.44
standalonePort=7687
standaloneDatabase=neo4j
#standaloneDashboardName=
#standaloneDashboardDatabase=neo4j

# If you do not save a dashboard inside Neo4j and would like to run a standalone mode deployment with
# a dashboard from a URL, set this parameter to the complete URL pointing to the dashboard JSON.
standaloneDashboardURL=10.101.202.44:5005/custom-dashboard.json

docker-compose.yml - left out bloating information: hostname, restart, volumes (Neo4J) [...]

version: '3'
services:
  neo4j:
      container_name: neo4j
      image: docker.io/library/neo4j:4.4.8-community
        [...]
      ports:
        - 7687:7687
      environment:
       [...]
  neodash:
      container_name: neodash
      image: docker.io/nielsdejong/neodash:2.1.2
      depends_on: neo4j
      volumes:
        - ./custom-dashboard.json:/usr/share/nginx/html/custom-dashboard.json
      env_file:
        - ./neodash.env
      [...]
      ports:
        - 5005:5005

config.json as retrieved by curl/visiting 10.101.202.44:5005/config.json; formatting by me for readabilty

 {"ssoEnabled": false ,     "ssoDiscoveryUrl": "'https://example.com'",      
  "standalone": true,     "standaloneProtocol": "bolt ",  
  "standaloneHost": "10.101.202.44",     "standalonePort": 7687,   
  "standaloneDatabase": "neo4j",      "standaloneUsername": "neo4j",   
  "standalonePassword": "neo4j",     
  "standaloneDashboardName": "'My Dashboard'",     "standaloneDashboardDatabase": "'neo4j'"      }

blank dashboard in standalone mode
image

lmk if you need more information, or if someone got it working!

@jsuesse jsuesse added the bug Something isn't working label Jul 5, 2022
@charmsejalbo
Copy link

I am getting the same output, blank/default dashboard Main page.

@neil-leon-menezes
Copy link
Contributor

neil-leon-menezes commented Nov 23, 2022

The script to inject env config has missed standaloneDashboardURL.
replace the command starting on line 5 in scripts/config-entrypoint.sh to :

echo " \
    { \
    \"ssoEnabled\": ${ssoEnabled:=false}, \
    \"ssoDiscoveryUrl\": \"${ssoDiscoveryUrl:='https://example.com'}\",  \
    \"standalone\": "${standalone:=false}", \
    \"standaloneProtocol\": \"${standaloneProtocol:='neo4j+s'}\", \
    \"standaloneHost\": \"${standaloneHost:='test.databases.neo4j.io'}\", \
    \"standalonePort\": ${standalonePort:=7687}, \
    \"standaloneDatabase\": \"${standaloneDatabase:='neo4j'}\",  \
    \"standaloneUsername\": \"${standaloneUsername:=}\", \
    \"standalonePassword\": \"${standalonePassword:=}\", \
    \"standaloneDashboardName\": \"${standaloneDashboardName:='My Dashboard'}\", \
    \"standaloneDashboardDatabase\": \"${standaloneDashboardDatabase:='neo4j'}\",  \
    \"standaloneDashboardURL\": \"${standaloneDashboardURL:=}\"  \
    }" > /usr/share/nginx/html/config.json

neil-leon-menezes added a commit to neil-leon-menezes/neodash that referenced this issue Nov 23, 2022
@BennuFire BennuFire linked a pull request Dec 5, 2022 that will close this issue
nielsdejong pushed a commit that referenced this issue Dec 14, 2022
nielsdejong added a commit that referenced this issue Feb 2, 2023
* Master to dev Release (#259)

* TableChart : Auto-hide columns prefixed with __

* Master to dev Release (#259)

* Added prettier (config based on neo4j/nx repository)

* Added eslint and husky (config based on neo4j/nx repository)

* Updated eslint config to be as light as possible with Typescript

* Updated all files with prettier and linter, refactored files to avoid errors

* Added Eslint check step in Github workflows

* Updated all files with prettier and linter after rebase on Develop branch

* Squash Security Bumbs (#281)

* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.4.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v2.0.4/CHANGELOG.md)
- [Commits](webpack/loader-utils@v2.0.2...v2.0.4)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump loader-utils from 1.4.0 to 1.4.2

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 1.4.0 to 1.4.2.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v1.4.2/CHANGELOG.md)
- [Commits](webpack/loader-utils@v1.4.0...v1.4.2)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update yarn.lock

* yarn gallery util 3.2.1

* bump

* remove lodash 4.17.15 lock

* remove minimatch 3.0.4 lock

* remove d3 color lock

* remove node.fet color lock

* ut

* no node fetch

* lod

* lod2

* ncheck

* d3 init

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Niels de Jong <[email protected]>

* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery (#264)

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.4.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v2.0.4/CHANGELOG.md)
- [Commits](webpack/loader-utils@v2.0.2...v2.0.4)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Fixes #160 (#269)

* Fix : Replace parameter in iFrame URLs (#276)

* Fix : Replace parameter in iFrame URLs

* Fix wrong merge conflict

Co-authored-by: Marius Conjeaud <[email protected]>

* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery (#290)

* Bump loader-utils from 1.4.0 to 1.4.2 (#265)

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 1.4.0 to 1.4.2.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v1.4.2/CHANGELOG.md)
- [Commits](webpack/loader-utils@v1.4.0...v1.4.2)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.4.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v2.0.4/CHANGELOG.md)
- [Commits](webpack/loader-utils@v2.0.2...v2.0.4)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Niels de Jong <[email protected]>

* Crash on Boolean options parameter selection (#285)

* bug on non string values

* Fix merge conflicts

* Fix merge conflicts

* Fix merge conflicts

* Fix merge conflicts

* Fix merge conflicts

Co-authored-by: Niels de Jong <[email protected]>

* Hotfix for Neo4j container issues with 5.3 (#293)

* Updated deployment scripts to use minimal build without source maps (#271)

* Changed build script to use mimimal (no source map) deployment

* Added TODOs based on comments

* Changing card image download logic  (#273)

* feature(): Changing download logic for card download by downloading the entire card instead of just the view. This kind of change adds also the buttons to the downloaded image, that is not ideal.

* fix(download report image): added missing ref for card expanded view

* Removed package-lock.json

Co-authored-by: Alfred Rubin <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* Dynamic Card titles (#270)

* change of names

* Resolving conflicts

* Bug fix

* Refactoring

* Fixed replacement of params in card headers

Co-authored-by: Niels de Jong <[email protected]>

* Docs on custom map provider (#282)

* Docs on custom map provider

* Update docs/modules/ROOT/pages/user-guide/reports/map.adoc

Co-authored-by: MariusC <[email protected]>

Co-authored-by: MariusC <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* Added release notes, bumped version number

* Fixed style issues introduced by 2.2.1 + some of the console warnings in development mode

* Some more minor style fixes in modal text

* Fixed unclear phrasing in extensions modal

* Added wine dashboard to gallery (#298)

* Added wine dashboard

* Updated wine dashboard in gallery

* Added jokes dashboard (#300)

* Added citation graph (#306)

* Bump json5 from 1.0.1 to 1.0.2 (#302)

Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v1.0.1...v1.0.2)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Niels de Jong <[email protected]>

* Bump json5 from 2.2.1 to 2.2.3 in /docs (#303)

Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v2.2.1...v2.2.3)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump json5 from 1.0.1 to 1.0.2 in /gallery (#304)

Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v1.0.1...v1.0.2)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Niels de Jong <[email protected]>

* Added assessment gallery

* Bump convict from 6.2.3 to 6.2.4 in /docs (#307)

Bumps [convict](https://github.com/mozilla/node-convict) from 6.2.3 to 6.2.4.
- [Release notes](https://github.com/mozilla/node-convict/releases)
- [Changelog](https://github.com/mozilla/node-convict/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mozilla/node-convict/commits)

---
updated-dependencies:
- dependency-name: convict
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Niels de Jong <[email protected]>

* use link (#295)

add  a link to the neodash repo

* upgrade to @neo4j-cypher/react-codemirror package (#286)

* upgrade to neo4j-cypher/react-codemirror package

* bump @neo4j-cypher/react-codemirror

* remove unused old cypher editor component

* fix integration tests (missing className)

* bump @neo4j-cypher/react-codemirror

* bump @neo4j-cypher/react-codemirror

* bump @neo4j-cypher/react-codemirror

* bump @neo4j-cypher/react-codemirror to latest

add codemirror markdown packages as an experiment

* enable switching between cypher/markdown languages

* update yarn.lock

* fix lint errors

* update @neo4j-cypher/react-codemirror to latest (fix line number text height)

* Fixed breaking integration tests

Co-authored-by: Niels de Jong <[email protected]>

* Added step to release pipeline to publish to neo4jlabs/neodash on Docker Hub (#299)

* Added new Docker image publish location

* Refactoring docs to point to new docker image location

* Fixed URL reference for gallery docs

* [Feature Request] Refresh button #166 (#277)

* [Feature Request] Refresh button #166

* [Feature Request] Refresh button #166

* Added conditional setting of last run timestamp

* Added option to turn on/off refreshing/download/fullscreening for each report

* enabled refreshing/fullscreening/image download on a per report basis

* Moved refresh rate, fullscreening, and screenshots to advanced settings for each report

* Disabled database selector for text/markdown reports

Co-authored-by: Marius Conjeaud <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* Bump @neo4j-cypher/react-codemirror to pre 18 (#309)

* update @neo4j-cypher/react-codemirror for bugfix

fixes a bug where syntax highlighting markers weren't being cleared properly

* oops use ^ in package version

* bump again for pre-release 19

* condensed display for tables #167 (#278)

* condensed display for tables #167

* condensed display for tables #167

* #167 Fix half-displayed row in compact table

* Fix overflowing row for compact table

* Added safe boolean checking for compaction setting

Co-authored-by: Marius Conjeaud <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* update editor for minification bugfix (constructor.name) (#311)

* Fixed doc page title

* Added instructions on deploying a buildt to a webserver

* Isoa3, a2 and n3 support (#284)

* Isoa3, a2 and n3 support

* Changed choropleth polymap source to neodash repository

Co-authored-by: Niels de Jong <[email protected]>

* Added error boundary for reports (#313)

* Added error boundary for reports

* Minor correction in README

* More small changes to the README

* More small changes to the README

* Added release notes, bumped version number

* Parameter Selector Display option (#274)

* Selector display vs value

* extra changes . some test changes

* Fix typo

* FIx on Parameter selec

* Minor style fixes

---------

Co-authored-by: Niels de Jong <[email protected]>

* Feature/style with parameters (#330)

* StyleWithParams

* Stability fixes for rule-based styling on parameters

* Fix for rule-based styling in graph charts

---------

Co-authored-by: Niels de Jong <[email protected]>

* Feature/rule based styling on top of scheme (#331)

* Added utils for chart colors and updated coloring function in PieChart component

* on bars

* Reuse existing color util instead of new one

---------

Co-authored-by: “Bastien <“[email protected]”>
Co-authored-by: Niels de Jong <[email protected]>

* Refactoring the parameter selector chart and updating MUI component (#301)

* Refactoring the parameter selector chart and updating MUI component version

* Continued refactoring of parameter selector component

* Finished refactoring of parameters. Also fixed the weird bug where values were set incorrectly

* updated release notes

* Refactoring based on the new parameter display values

* Finished refactor and merging of parameter display setting

* Updated release notes again

* finalized changelog and release notes

* Fixed typo in about modal screen

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Harold Agudelo <[email protected]>
Co-authored-by: Marius Conjeaud <[email protected]>
Co-authored-by: “Bastien <“[email protected]”>
Co-authored-by: Bastien Hubert <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Neil Menezes <[email protected]>
Co-authored-by: MariusC <[email protected]>
Co-authored-by: alfredorubin96 <[email protected]>
Co-authored-by: Alfred Rubin <[email protected]>
Co-authored-by: ioilmio <[email protected]>
Co-authored-by: Jon Harris <[email protected]>
nielsdejong added a commit that referenced this issue Feb 7, 2023
* Master to dev Release (#259)

* TableChart : Auto-hide columns prefixed with __

* Master to dev Release (#259)

* Added prettier (config based on neo4j/nx repository)

* Added eslint and husky (config based on neo4j/nx repository)

* Updated eslint config to be as light as possible with Typescript

* Updated all files with prettier and linter, refactored files to avoid errors

* Added Eslint check step in Github workflows

* Updated all files with prettier and linter after rebase on Develop branch

* Squash Security Bumbs (#281)

* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.4.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v2.0.4/CHANGELOG.md)
- [Commits](webpack/loader-utils@v2.0.2...v2.0.4)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump loader-utils from 1.4.0 to 1.4.2

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 1.4.0 to 1.4.2.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v1.4.2/CHANGELOG.md)
- [Commits](webpack/loader-utils@v1.4.0...v1.4.2)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update yarn.lock

* yarn gallery util 3.2.1

* bump

* remove lodash 4.17.15 lock

* remove minimatch 3.0.4 lock

* remove d3 color lock

* remove node.fet color lock

* ut

* no node fetch

* lod

* lod2

* ncheck

* d3 init

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Niels de Jong <[email protected]>

* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery (#264)

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.4.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v2.0.4/CHANGELOG.md)
- [Commits](webpack/loader-utils@v2.0.2...v2.0.4)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Fixes #160 (#269)

* Fix : Replace parameter in iFrame URLs (#276)

* Fix : Replace parameter in iFrame URLs

* Fix wrong merge conflict

Co-authored-by: Marius Conjeaud <[email protected]>

* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery (#290)

* Bump loader-utils from 1.4.0 to 1.4.2 (#265)

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 1.4.0 to 1.4.2.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v1.4.2/CHANGELOG.md)
- [Commits](webpack/loader-utils@v1.4.0...v1.4.2)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.4.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v2.0.4/CHANGELOG.md)
- [Commits](webpack/loader-utils@v2.0.2...v2.0.4)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Niels de Jong <[email protected]>

* Crash on Boolean options parameter selection (#285)

* bug on non string values

* Fix merge conflicts

* Fix merge conflicts

* Fix merge conflicts

* Fix merge conflicts

* Fix merge conflicts

Co-authored-by: Niels de Jong <[email protected]>

* Hotfix for Neo4j container issues with 5.3 (#293)

* Updated deployment scripts to use minimal build without source maps (#271)

* Changed build script to use mimimal (no source map) deployment

* Added TODOs based on comments

* Changing card image download logic  (#273)

* feature(): Changing download logic for card download by downloading the entire card instead of just the view. This kind of change adds also the buttons to the downloaded image, that is not ideal.

* fix(download report image): added missing ref for card expanded view

* Removed package-lock.json

Co-authored-by: Alfred Rubin <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* Dynamic Card titles (#270)

* change of names

* Resolving conflicts

* Bug fix

* Refactoring

* Fixed replacement of params in card headers

Co-authored-by: Niels de Jong <[email protected]>

* Docs on custom map provider (#282)

* Docs on custom map provider

* Update docs/modules/ROOT/pages/user-guide/reports/map.adoc

Co-authored-by: MariusC <[email protected]>

Co-authored-by: MariusC <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* Added release notes, bumped version number

* Fixed style issues introduced by 2.2.1 + some of the console warnings in development mode

* Some more minor style fixes in modal text

* Fixed unclear phrasing in extensions modal

* Added wine dashboard to gallery (#298)

* Added wine dashboard

* Updated wine dashboard in gallery

* Added jokes dashboard (#300)

* Added citation graph (#306)

* Bump json5 from 1.0.1 to 1.0.2 (#302)

Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v1.0.1...v1.0.2)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Niels de Jong <[email protected]>

* Bump json5 from 2.2.1 to 2.2.3 in /docs (#303)

Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v2.2.1...v2.2.3)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump json5 from 1.0.1 to 1.0.2 in /gallery (#304)

Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v1.0.1...v1.0.2)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Niels de Jong <[email protected]>

* Added assessment gallery

* Bump convict from 6.2.3 to 6.2.4 in /docs (#307)

Bumps [convict](https://github.com/mozilla/node-convict) from 6.2.3 to 6.2.4.
- [Release notes](https://github.com/mozilla/node-convict/releases)
- [Changelog](https://github.com/mozilla/node-convict/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mozilla/node-convict/commits)

---
updated-dependencies:
- dependency-name: convict
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Niels de Jong <[email protected]>

* use link (#295)

add  a link to the neodash repo

* upgrade to @neo4j-cypher/react-codemirror package (#286)

* upgrade to neo4j-cypher/react-codemirror package

* bump @neo4j-cypher/react-codemirror

* remove unused old cypher editor component

* fix integration tests (missing className)

* bump @neo4j-cypher/react-codemirror

* bump @neo4j-cypher/react-codemirror

* bump @neo4j-cypher/react-codemirror

* bump @neo4j-cypher/react-codemirror to latest

add codemirror markdown packages as an experiment

* enable switching between cypher/markdown languages

* update yarn.lock

* fix lint errors

* update @neo4j-cypher/react-codemirror to latest (fix line number text height)

* Fixed breaking integration tests

Co-authored-by: Niels de Jong <[email protected]>

* Added step to release pipeline to publish to neo4jlabs/neodash on Docker Hub (#299)

* Added new Docker image publish location

* Refactoring docs to point to new docker image location

* Fixed URL reference for gallery docs

* [Feature Request] Refresh button #166 (#277)

* [Feature Request] Refresh button #166

* [Feature Request] Refresh button #166

* Added conditional setting of last run timestamp

* Added option to turn on/off refreshing/download/fullscreening for each report

* enabled refreshing/fullscreening/image download on a per report basis

* Moved refresh rate, fullscreening, and screenshots to advanced settings for each report

* Disabled database selector for text/markdown reports

Co-authored-by: Marius Conjeaud <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* Bump @neo4j-cypher/react-codemirror to pre 18 (#309)

* update @neo4j-cypher/react-codemirror for bugfix

fixes a bug where syntax highlighting markers weren't being cleared properly

* oops use ^ in package version

* bump again for pre-release 19

* condensed display for tables #167 (#278)

* condensed display for tables #167

* condensed display for tables #167

* #167 Fix half-displayed row in compact table

* Fix overflowing row for compact table

* Added safe boolean checking for compaction setting

Co-authored-by: Marius Conjeaud <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* update editor for minification bugfix (constructor.name) (#311)

* Fixed doc page title

* Added instructions on deploying a buildt to a webserver

* Isoa3, a2 and n3 support (#284)

* Isoa3, a2 and n3 support

* Changed choropleth polymap source to neodash repository

Co-authored-by: Niels de Jong <[email protected]>

* Added error boundary for reports (#313)

* Added error boundary for reports

* Minor correction in README

* More small changes to the README

* More small changes to the README

* Added release notes, bumped version number

* Parameter Selector Display option (#274)

* Selector display vs value

* extra changes . some test changes

* Fix typo

* FIx on Parameter selec

* Minor style fixes

---------

Co-authored-by: Niels de Jong <[email protected]>

* Feature/style with parameters (#330)

* StyleWithParams

* Stability fixes for rule-based styling on parameters

* Fix for rule-based styling in graph charts

---------

Co-authored-by: Niels de Jong <[email protected]>

* Feature/rule based styling on top of scheme (#331)

* Added utils for chart colors and updated coloring function in PieChart component

* on bars

* Reuse existing color util instead of new one

---------

Co-authored-by: “Bastien <“[email protected]”>
Co-authored-by: Niels de Jong <[email protected]>

* Refactoring the parameter selector chart and updating MUI component (#301)

* Refactoring the parameter selector chart and updating MUI component version

* Continued refactoring of parameter selector component

* Finished refactoring of parameters. Also fixed the weird bug where values were set incorrectly

* updated release notes

* Refactoring based on the new parameter display values

* Finished refactor and merging of parameter display setting

* Updated release notes again

* finalized changelog and release notes

* Fixed typo in about modal screen

* Stacked Bars Colors Fix (#343)

* Stacked Bars COlors FIx

* Workaround source map warning

* No multicolor on singles

* fix on long lists

* Fixed bug in manual label name specification of param selector (#344)

* Passed all dashboard parameters to parameter populating query

* Bump http-cache-semantics from 4.1.0 to 4.1.1 (#334)

Bumps [http-cache-semantics](https://github.com/kornelski/http-cache-semantics) from 4.1.0 to 4.1.1.
- [Release notes](https://github.com/kornelski/http-cache-semantics/releases)
- [Commits](https://github.com/kornelski/http-cache-semantics/commits)

---
updated-dependencies:
- dependency-name: http-cache-semantics
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Harold Agudelo <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* Fix for numbers. (#346)

* Scatter plot (#341)

* Scatter plot

Add advanced setting to line charts to turn it into a scatter plot

* Scatter plot

Add advanced setting to line charts to turn it into a scatter plot

* Added docs and refactored settings retrieval

---------

Co-authored-by: Harold Agudelo <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* Added release notes for 2.2.3 (#348)

* Added release notes for 2.2.3

* Added release notes for 2.2.3

* Added fix for link parsing in documentation portal

* Quickfix for auto-resetting param display text when advanced setting is toggled

* Updated release notes

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Harold Agudelo <[email protected]>
Co-authored-by: Marius Conjeaud <[email protected]>
Co-authored-by: “Bastien <“[email protected]”>
Co-authored-by: Bastien Hubert <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Neil Menezes <[email protected]>
Co-authored-by: MariusC <[email protected]>
Co-authored-by: alfredorubin96 <[email protected]>
Co-authored-by: Alfred Rubin <[email protected]>
Co-authored-by: ioilmio <[email protected]>
Co-authored-by: Jon Harris <[email protected]>
Co-authored-by: Jon Ander Oribe <[email protected]>
nielsdejong added a commit that referenced this issue Feb 7, 2023
* Master to dev Release (#259)

* TableChart : Auto-hide columns prefixed with __

* Master to dev Release (#259)

* Added prettier (config based on neo4j/nx repository)

* Added eslint and husky (config based on neo4j/nx repository)

* Updated eslint config to be as light as possible with Typescript

* Updated all files with prettier and linter, refactored files to avoid errors

* Added Eslint check step in Github workflows

* Updated all files with prettier and linter after rebase on Develop branch

* Squash Security Bumbs (#281)

* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.4.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v2.0.4/CHANGELOG.md)
- [Commits](webpack/loader-utils@v2.0.2...v2.0.4)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump loader-utils from 1.4.0 to 1.4.2

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 1.4.0 to 1.4.2.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v1.4.2/CHANGELOG.md)
- [Commits](webpack/loader-utils@v1.4.0...v1.4.2)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update yarn.lock

* yarn gallery util 3.2.1

* bump

* remove lodash 4.17.15 lock

* remove minimatch 3.0.4 lock

* remove d3 color lock

* remove node.fet color lock

* ut

* no node fetch

* lod

* lod2

* ncheck

* d3 init

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Niels de Jong <[email protected]>

* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery (#264)

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.4.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v2.0.4/CHANGELOG.md)
- [Commits](webpack/loader-utils@v2.0.2...v2.0.4)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Fixes #160 (#269)

* Fix : Replace parameter in iFrame URLs (#276)

* Fix : Replace parameter in iFrame URLs

* Fix wrong merge conflict

Co-authored-by: Marius Conjeaud <[email protected]>

* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery (#290)

* Bump loader-utils from 1.4.0 to 1.4.2 (#265)

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 1.4.0 to 1.4.2.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v1.4.2/CHANGELOG.md)
- [Commits](webpack/loader-utils@v1.4.0...v1.4.2)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.4.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v2.0.4/CHANGELOG.md)
- [Commits](webpack/loader-utils@v2.0.2...v2.0.4)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Niels de Jong <[email protected]>

* Crash on Boolean options parameter selection (#285)

* bug on non string values

* Fix merge conflicts

* Fix merge conflicts

* Fix merge conflicts

* Fix merge conflicts

* Fix merge conflicts

Co-authored-by: Niels de Jong <[email protected]>

* Hotfix for Neo4j container issues with 5.3 (#293)

* Updated deployment scripts to use minimal build without source maps (#271)

* Changed build script to use mimimal (no source map) deployment

* Added TODOs based on comments

* Changing card image download logic  (#273)

* feature(): Changing download logic for card download by downloading the entire card instead of just the view. This kind of change adds also the buttons to the downloaded image, that is not ideal.

* fix(download report image): added missing ref for card expanded view

* Removed package-lock.json

Co-authored-by: Alfred Rubin <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* Dynamic Card titles (#270)

* change of names

* Resolving conflicts

* Bug fix

* Refactoring

* Fixed replacement of params in card headers

Co-authored-by: Niels de Jong <[email protected]>

* Docs on custom map provider (#282)

* Docs on custom map provider

* Update docs/modules/ROOT/pages/user-guide/reports/map.adoc

Co-authored-by: MariusC <[email protected]>

Co-authored-by: MariusC <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* Added release notes, bumped version number

* Fixed style issues introduced by 2.2.1 + some of the console warnings in development mode

* Some more minor style fixes in modal text

* Fixed unclear phrasing in extensions modal

* Added wine dashboard to gallery (#298)

* Added wine dashboard

* Updated wine dashboard in gallery

* Added jokes dashboard (#300)

* Added citation graph (#306)

* Bump json5 from 1.0.1 to 1.0.2 (#302)

Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v1.0.1...v1.0.2)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Niels de Jong <[email protected]>

* Bump json5 from 2.2.1 to 2.2.3 in /docs (#303)

Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v2.2.1...v2.2.3)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump json5 from 1.0.1 to 1.0.2 in /gallery (#304)

Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v1.0.1...v1.0.2)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Niels de Jong <[email protected]>

* Added assessment gallery

* Bump convict from 6.2.3 to 6.2.4 in /docs (#307)

Bumps [convict](https://github.com/mozilla/node-convict) from 6.2.3 to 6.2.4.
- [Release notes](https://github.com/mozilla/node-convict/releases)
- [Changelog](https://github.com/mozilla/node-convict/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mozilla/node-convict/commits)

---
updated-dependencies:
- dependency-name: convict
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Niels de Jong <[email protected]>

* use link (#295)

add  a link to the neodash repo

* upgrade to @neo4j-cypher/react-codemirror package (#286)

* upgrade to neo4j-cypher/react-codemirror package

* bump @neo4j-cypher/react-codemirror

* remove unused old cypher editor component

* fix integration tests (missing className)

* bump @neo4j-cypher/react-codemirror

* bump @neo4j-cypher/react-codemirror

* bump @neo4j-cypher/react-codemirror

* bump @neo4j-cypher/react-codemirror to latest

add codemirror markdown packages as an experiment

* enable switching between cypher/markdown languages

* update yarn.lock

* fix lint errors

* update @neo4j-cypher/react-codemirror to latest (fix line number text height)

* Fixed breaking integration tests

Co-authored-by: Niels de Jong <[email protected]>

* Added step to release pipeline to publish to neo4jlabs/neodash on Docker Hub (#299)

* Added new Docker image publish location

* Refactoring docs to point to new docker image location

* Fixed URL reference for gallery docs

* [Feature Request] Refresh button #166 (#277)

* [Feature Request] Refresh button #166

* [Feature Request] Refresh button #166

* Added conditional setting of last run timestamp

* Added option to turn on/off refreshing/download/fullscreening for each report

* enabled refreshing/fullscreening/image download on a per report basis

* Moved refresh rate, fullscreening, and screenshots to advanced settings for each report

* Disabled database selector for text/markdown reports

Co-authored-by: Marius Conjeaud <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* Bump @neo4j-cypher/react-codemirror to pre 18 (#309)

* update @neo4j-cypher/react-codemirror for bugfix

fixes a bug where syntax highlighting markers weren't being cleared properly

* oops use ^ in package version

* bump again for pre-release 19

* condensed display for tables #167 (#278)

* condensed display for tables #167

* condensed display for tables #167

* #167 Fix half-displayed row in compact table

* Fix overflowing row for compact table

* Added safe boolean checking for compaction setting

Co-authored-by: Marius Conjeaud <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* update editor for minification bugfix (constructor.name) (#311)

* Fixed doc page title

* Added instructions on deploying a buildt to a webserver

* Isoa3, a2 and n3 support (#284)

* Isoa3, a2 and n3 support

* Changed choropleth polymap source to neodash repository

Co-authored-by: Niels de Jong <[email protected]>

* Added error boundary for reports (#313)

* Added error boundary for reports

* Minor correction in README

* More small changes to the README

* More small changes to the README

* Added release notes, bumped version number

* Parameter Selector Display option (#274)

* Selector display vs value

* extra changes . some test changes

* Fix typo

* FIx on Parameter selec

* Minor style fixes

---------

Co-authored-by: Niels de Jong <[email protected]>

* Feature/style with parameters (#330)

* StyleWithParams

* Stability fixes for rule-based styling on parameters

* Fix for rule-based styling in graph charts

---------

Co-authored-by: Niels de Jong <[email protected]>

* Feature/rule based styling on top of scheme (#331)

* Added utils for chart colors and updated coloring function in PieChart component

* on bars

* Reuse existing color util instead of new one

---------

Co-authored-by: “Bastien <“[email protected]”>
Co-authored-by: Niels de Jong <[email protected]>

* Refactoring the parameter selector chart and updating MUI component (#301)

* Refactoring the parameter selector chart and updating MUI component version

* Continued refactoring of parameter selector component

* Finished refactoring of parameters. Also fixed the weird bug where values were set incorrectly

* updated release notes

* Refactoring based on the new parameter display values

* Finished refactor and merging of parameter display setting

* Updated release notes again

* finalized changelog and release notes

* Fixed typo in about modal screen

* Stacked Bars Colors Fix (#343)

* Stacked Bars COlors FIx

* Workaround source map warning

* No multicolor on singles

* fix on long lists

* Fixed bug in manual label name specification of param selector (#344)

* Passed all dashboard parameters to parameter populating query

* Bump http-cache-semantics from 4.1.0 to 4.1.1 (#334)

Bumps [http-cache-semantics](https://github.com/kornelski/http-cache-semantics) from 4.1.0 to 4.1.1.
- [Release notes](https://github.com/kornelski/http-cache-semantics/releases)
- [Commits](https://github.com/kornelski/http-cache-semantics/commits)

---
updated-dependencies:
- dependency-name: http-cache-semantics
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Harold Agudelo <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* Fix for numbers. (#346)

* Scatter plot (#341)

* Scatter plot

Add advanced setting to line charts to turn it into a scatter plot

* Scatter plot

Add advanced setting to line charts to turn it into a scatter plot

* Added docs and refactored settings retrieval

---------

Co-authored-by: Harold Agudelo <[email protected]>
Co-authored-by: Niels de Jong <[email protected]>

* Added release notes for 2.2.3 (#348)

* Added release notes for 2.2.3

* Added release notes for 2.2.3

* Added fix for link parsing in documentation portal

* Quickfix for auto-resetting param display text when advanced setting is toggled

* Updated release notes

* Bumped Cypher editor version

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Harold Agudelo <[email protected]>
Co-authored-by: Marius Conjeaud <[email protected]>
Co-authored-by: “Bastien <“[email protected]”>
Co-authored-by: Bastien Hubert <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Neil Menezes <[email protected]>
Co-authored-by: MariusC <[email protected]>
Co-authored-by: alfredorubin96 <[email protected]>
Co-authored-by: Alfred Rubin <[email protected]>
Co-authored-by: ioilmio <[email protected]>
Co-authored-by: Jon Harris <[email protected]>
Co-authored-by: Jon Ander Oribe <[email protected]>
@nielsdejong nielsdejong mentioned this issue Feb 11, 2023
nielsdejong added a commit that referenced this issue Feb 11, 2023
* Master to dev Release (#259)

* TableChart : Auto-hide columns prefixed with __

* Master to dev Release (#259)

* Added prettier (config based on neo4j/nx repository)

* Added eslint and husky (config based on neo4j/nx repository)

* Updated eslint config to be as light as possible with Typescript

* Updated all files with prettier and linter, refactored files to avoid errors

* Added Eslint check step in Github workflows

* Updated all files with prettier and linter after rebase on Develop branch

* Squash Security Bumbs (#281)

* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.4.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v2.0.4/CHANGELOG.md)
- [Commits](webpack/loader-utils@v2.0.2...v2.0.4)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...



* Bump loader-utils from 1.4.0 to 1.4.2

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 1.4.0 to 1.4.2.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v1.4.2/CHANGELOG.md)
- [Commits](webpack/loader-utils@v1.4.0...v1.4.2)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...



* Update yarn.lock

* yarn gallery util 3.2.1

* bump

* remove lodash 4.17.15 lock

* remove minimatch 3.0.4 lock

* remove d3 color lock

* remove node.fet color lock

* ut

* no node fetch

* lod

* lod2

* ncheck

* d3 init





* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery (#264)

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.4.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v2.0.4/CHANGELOG.md)
- [Commits](webpack/loader-utils@v2.0.2...v2.0.4)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...






* Fixes #160 (#269)

* Fix : Replace parameter in iFrame URLs (#276)

* Fix : Replace parameter in iFrame URLs

* Fix wrong merge conflict



* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery (#290)

* Bump loader-utils from 1.4.0 to 1.4.2 (#265)

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 1.4.0 to 1.4.2.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v1.4.2/CHANGELOG.md)
- [Commits](webpack/loader-utils@v1.4.0...v1.4.2)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...






* Bump loader-utils from 2.0.2 to 2.0.4 in /gallery

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 2.0.2 to 2.0.4.
- [Release notes](https://github.com/webpack/loader-utils/releases)
- [Changelog](https://github.com/webpack/loader-utils/blob/v2.0.4/CHANGELOG.md)
- [Commits](webpack/loader-utils@v2.0.2...v2.0.4)

---
updated-dependencies:
- dependency-name: loader-utils
  dependency-type: indirect
...







* Crash on Boolean options parameter selection (#285)

* bug on non string values

* Fix merge conflicts

* Fix merge conflicts

* Fix merge conflicts

* Fix merge conflicts

* Fix merge conflicts



* Hotfix for Neo4j container issues with 5.3 (#293)

* Updated deployment scripts to use minimal build without source maps (#271)

* Changed build script to use mimimal (no source map) deployment

* Added TODOs based on comments

* Changing card image download logic  (#273)

* feature(): Changing download logic for card download by downloading the entire card instead of just the view. This kind of change adds also the buttons to the downloaded image, that is not ideal.

* fix(download report image): added missing ref for card expanded view

* Removed package-lock.json




* Dynamic Card titles (#270)

* change of names

* Resolving conflicts

* Bug fix

* Refactoring

* Fixed replacement of params in card headers



* Docs on custom map provider (#282)

* Docs on custom map provider

* Update docs/modules/ROOT/pages/user-guide/reports/map.adoc






* Added release notes, bumped version number

* Fixed style issues introduced by 2.2.1 + some of the console warnings in development mode

* Some more minor style fixes in modal text

* Fixed unclear phrasing in extensions modal

* Added wine dashboard to gallery (#298)

* Added wine dashboard

* Updated wine dashboard in gallery

* Added jokes dashboard (#300)

* Added citation graph (#306)

* Bump json5 from 1.0.1 to 1.0.2 (#302)

Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v1.0.1...v1.0.2)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...







* Bump json5 from 2.2.1 to 2.2.3 in /docs (#303)

Bumps [json5](https://github.com/json5/json5) from 2.2.1 to 2.2.3.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v2.2.1...v2.2.3)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...






* Bump json5 from 1.0.1 to 1.0.2 in /gallery (#304)

Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2.
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v1.0.1...v1.0.2)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
...







* Added assessment gallery

* Bump convict from 6.2.3 to 6.2.4 in /docs (#307)

Bumps [convict](https://github.com/mozilla/node-convict) from 6.2.3 to 6.2.4.
- [Release notes](https://github.com/mozilla/node-convict/releases)
- [Changelog](https://github.com/mozilla/node-convict/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mozilla/node-convict/commits)

---
updated-dependencies:
- dependency-name: convict
  dependency-type: indirect
...







* use link (#295)

add  a link to the neodash repo

* upgrade to @neo4j-cypher/react-codemirror package (#286)

* upgrade to neo4j-cypher/react-codemirror package

* bump @neo4j-cypher/react-codemirror

* remove unused old cypher editor component

* fix integration tests (missing className)

* bump @neo4j-cypher/react-codemirror

* bump @neo4j-cypher/react-codemirror

* bump @neo4j-cypher/react-codemirror

* bump @neo4j-cypher/react-codemirror to latest

add codemirror markdown packages as an experiment

* enable switching between cypher/markdown languages

* update yarn.lock

* fix lint errors

* update @neo4j-cypher/react-codemirror to latest (fix line number text height)

* Fixed breaking integration tests



* Added step to release pipeline to publish to neo4jlabs/neodash on Docker Hub (#299)

* Added new Docker image publish location

* Refactoring docs to point to new docker image location

* Fixed URL reference for gallery docs

* [Feature Request] Refresh button #166 (#277)

* [Feature Request] Refresh button #166

* [Feature Request] Refresh button #166

* Added conditional setting of last run timestamp

* Added option to turn on/off refreshing/download/fullscreening for each report

* enabled refreshing/fullscreening/image download on a per report basis

* Moved refresh rate, fullscreening, and screenshots to advanced settings for each report

* Disabled database selector for text/markdown reports




* Bump @neo4j-cypher/react-codemirror to pre 18 (#309)

* update @neo4j-cypher/react-codemirror for bugfix

fixes a bug where syntax highlighting markers weren't being cleared properly

* oops use ^ in package version

* bump again for pre-release 19

* condensed display for tables #167 (#278)

* condensed display for tables #167

* condensed display for tables #167

* #167 Fix half-displayed row in compact table

* Fix overflowing row for compact table

* Added safe boolean checking for compaction setting




* update editor for minification bugfix (constructor.name) (#311)

* Fixed doc page title

* Added instructions on deploying a buildt to a webserver

* Isoa3, a2 and n3 support (#284)

* Isoa3, a2 and n3 support

* Changed choropleth polymap source to neodash repository



* Added error boundary for reports (#313)

* Added error boundary for reports

* Minor correction in README

* More small changes to the README

* More small changes to the README

* Added release notes, bumped version number

* Parameter Selector Display option (#274)

* Selector display vs value

* extra changes . some test changes

* Fix typo

* FIx on Parameter selec

* Minor style fixes

---------



* Feature/style with parameters (#330)

* StyleWithParams

* Stability fixes for rule-based styling on parameters

* Fix for rule-based styling in graph charts

---------



* Feature/rule based styling on top of scheme (#331)

* Added utils for chart colors and updated coloring function in PieChart component

* on bars

* Reuse existing color util instead of new one

---------




* Refactoring the parameter selector chart and updating MUI component (#301)

* Refactoring the parameter selector chart and updating MUI component version

* Continued refactoring of parameter selector component

* Finished refactoring of parameters. Also fixed the weird bug where values were set incorrectly

* updated release notes

* Refactoring based on the new parameter display values

* Finished refactor and merging of parameter display setting

* Updated release notes again

* finalized changelog and release notes

* Fixed typo in about modal screen

* Stacked Bars Colors Fix (#343)

* Stacked Bars COlors FIx

* Workaround source map warning

* No multicolor on singles

* fix on long lists

* Fixed bug in manual label name specification of param selector (#344)

* Passed all dashboard parameters to parameter populating query

* Bump http-cache-semantics from 4.1.0 to 4.1.1 (#334)

Bumps [http-cache-semantics](https://github.com/kornelski/http-cache-semantics) from 4.1.0 to 4.1.1.
- [Release notes](https://github.com/kornelski/http-cache-semantics/releases)
- [Commits](https://github.com/kornelski/http-cache-semantics/commits)

---
updated-dependencies:
- dependency-name: http-cache-semantics
  dependency-type: indirect
...






* Fix for numbers. (#346)

* Scatter plot (#341)

* Scatter plot

Add advanced setting to line charts to turn it into a scatter plot

* Scatter plot

Add advanced setting to line charts to turn it into a scatter plot

* Added docs and refactored settings retrieval

---------




* Added release notes for 2.2.3 (#348)

* Added release notes for 2.2.3

* Added release notes for 2.2.3

* Added fix for link parsing in documentation portal

* Quickfix for auto-resetting param display text when advanced setting is toggled

* Updated release notes

* Bumped Cypher editor version

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Harold Agudelo <[email protected]>
Co-authored-by: Marius Conjeaud <[email protected]>
Co-authored-by: “Bastien <“[email protected]”>
Co-authored-by: Bastien Hubert <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Neil Menezes <[email protected]>
Co-authored-by: MariusC <[email protected]>
Co-authored-by: alfredorubin96 <[email protected]>
Co-authored-by: Alfred Rubin <[email protected]>
Co-authored-by: ioilmio <[email protected]>
Co-authored-by: Jon Harris <[email protected]>
Co-authored-by: Jon Ander Oribe <[email protected]>
@nielsdejong nielsdejong mentioned this issue Mar 14, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants