neo4j-contrib / neo4j-apoc-procedures

Awesome Procedures On Cypher for Neo4j - codenamed "apoc"                     If you like it, please ★ above ⇧            

Home Page:https://neo4j.com/labs/apoc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Neo4j version 4.4.19 missing in the version metadata file

manuelprinz opened this issue · comments

Expected Behavior (Mandatory)

All versions of Neo4j should be listed in the version metadata file.

Actual Behavior (Mandatory)

At least version 4.4.19 is missing, which breaks the Docker image.

How to Reproduce the Problem

Docker

Run $ docker run -it --env NEO4JLABS_PLUGINS='["apoc"]' neo4j:4.4-community (see neo4j/docker-neo4j#432).
The version can also be set to 4.4.19-community explicitly.

JSON

$ curl https://neo4j-contrib.github.io/neo4j-apoc-procedures/versions.json| jq '.[] | select(.neo4j == "4.4.18") | .apoc' 
"4.4.0.14"
$ curl https://neo4j-contrib.github.io/neo4j-apoc-procedures/versions.json| jq '.[] | select(.neo4j == "4.4.19") | .apoc' 
$

Specifications (Mandatory)

Currently used versions: 4.4.18 (working), 4.4.19 (broken)

Versions

  • OS: Debian GNU/Linux 10 (buster)
  • Neo4j: 4.4.18 / 4.4.19 (Community)
  • Neo4j-Apoc: 4.4.0.14

As mentioned in neo4j/docker-neo4j#432, updating the metadata fixed the issue. Thanks for the quick action!

From my side, this issue can be closed.

Thanks for reporting. It turned out that an update to the version.json file that specifies which Neo4j version should be used with which APOC version failed. We have applied a fix and as you already noticed, it should now be working again.