|
22 | 22 |
|
23 | 23 | # Overrideable environment variables (optional, defaults also defined in sub scripts where needed) |
24 | 24 | NEO4J_EDITION=${NEO4J_EDITION:-"community"} # Choose "community" or "enterprise" |
25 | | -NEO4J_VERSION=${NEO4J_VERSION:-"4.4.20"} # Version 4.4.x is the current long term support (LTS) version (may 2023) |
26 | | -JQASSISTANT_CLI_VERSION=${JQASSISTANT_CLI_VERSION:-"1.12.2"} # Version 1.12.2 is the current version (may 2023) |
| 25 | +NEO4J_VERSION=${NEO4J_VERSION:-"5.9.0"} |
| 26 | +JQASSISTANT_CLI_VERSION=${JQASSISTANT_CLI_VERSION:-"2.0.3"} # 2.0.3 is the newest version (june 2023) compatible with Neo4j v5 |
27 | 27 |
|
28 | 28 | # Overrideable environment variables for ports (optional, defaults also defined in sub scripts where needed) |
29 | 29 | # Override them if you need to run multiple neo4j database servers in parallel. |
30 | 30 | NEO4J_HTTP_PORT=${NEO4J_HTTP_PORT:-"7474"} |
31 | 31 | NEO4J_HTTPS_PORT=${NEO4J_HTTPS_PORT:-"7473"} |
32 | 32 | NEO4J_BOLT_PORT=${NEO4J_BOLT_PORT:-"7687"} |
33 | | -NEO4J_HTTP_TRANSACTION_ENDPOINT=${NEO4J_HTTP_TRANSACTION_ENDPOINT:-"db/data/transaction/commit"} # Neo4j v4: "db/data/transaction/commit", Neo4j v5: "db/neo4j/tx/commit" |
| 33 | +NEO4J_HTTP_TRANSACTION_ENDPOINT=${NEO4J_HTTP_TRANSACTION_ENDPOINT:-"db/neo4j/tx/commit"} # Neo4j v5: "db/<name>/tx/commit", Neo4j v4: "db/data/transaction/commit", |
34 | 34 |
|
35 | 35 | # Overrideable environment variables for the Neo4j APOC plugin (optional, defaults also defined in sub scripts where needed) |
36 | | -# Override them if you want to use Neo4j v5 instead of v4.4 |
37 | | -NEO4J_APOC_PLUGIN_EDITION=${NEO4J_APOC_PLUGIN_EDITION:-"all"} #Awesome Procedures for Neo4j Plugin Edition (Neo4j v4.4.x "all", Neo4j >= v5 "core") |
38 | | -NEO4J_APOC_PLUGIN_GITHUB=${NEO4J_APOC_PLUGIN_GITHUB:-"neo4j-contrib/neo4j-apoc-procedures"} #Awesome Procedures for Neo4j Plugin GitHub User/Repository (Neo4j v4.4.x "neo4j-contrib/neo4j-apoc-procedures", Neo4j >= v5 "neo4j/apoc") |
| 36 | +# Override them if you want to use Neo4j v4 instead of v5 |
| 37 | +NEO4J_APOC_PLUGIN_EDITION=${NEO4J_APOC_PLUGIN_EDITION:-"core"} #Awesome Procedures for Neo4j Plugin Edition (Neo4j v4.4.x "all", Neo4j >= v5 "core") |
| 38 | +NEO4J_APOC_PLUGIN_GITHUB=${NEO4J_APOC_PLUGIN_GITHUB:-"neo4j/apoc"} #Awesome Procedures for Neo4j Plugin GitHub User/Repository (Neo4j v4.4.x "neo4j-contrib/neo4j-apoc-procedures", Neo4j >= v5 "neo4j/apoc") |
| 39 | + |
| 40 | +NEO4J_GDS_PLUGIN_VERSION=${NEO4J_GDS_PLUGIN_VERSION:-"2.4.0"} # Graph Data Science Plugin Version 2.4.x of is compatible with Neo4j 5.x |
39 | 41 |
|
40 | 42 | ARTIFACT_SCRIPTS_DIRECTORY=${ARTIFACT_SCRIPTS_DIRECTORY:-"artifacts"} |
41 | 43 | REPORTS_SCRIPTS_DIRECTORY=${REPORTS_SCRIPTS_DIRECTORY:-"reports"} |
|
0 commit comments