Skip to content

Commit fac7fb2

Browse files
authored
[NOID] Fixes #2136: Support for additional HTTP headers in apoc.es procedures (#3953) (#3986)
* [NOID] Fixes #2136: Support for additional HTTP headers in apoc.es procedures (#3953) * [NOID] fix compile errors and code formatting * [NOID] added license block
1 parent f2ccc3a commit fac7fb2

File tree

24 files changed

+473
-111
lines changed

24 files changed

+473
-111
lines changed

LICENSES.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,19 @@ Apache-2.0
2828
cassandra-driver-core-3.10.0.jar
2929
commons-beanutils-1.9.4.jar
3030
commons-cli-1.2.jar
31+
commons-codec-1.15.jar
3132
commons-codec-1.16.1.jar
3233
commons-collections-3.2.2.jar
3334
commons-collections4-4.4.jar
34-
commons-compress-1.26.0.jar
35+
commons-compress-1.21.jar
36+
commons-compress-1.22.jar
3537
commons-configuration2-2.8.0.jar
3638
commons-configuration2-2.9.0.jar
3739
commons-csv-1.9.0.jar
3840
commons-daemon-1.0.13.jar
39-
commons-io-2.15.1.jar
41+
commons-io-2.11.0.jar
4042
commons-io-2.9.0.jar
43+
commons-lang3-3.12.0.jar
4144
commons-lang3-3.14.0.jar
4245
commons-logging-1.2.jar
4346
commons-math3-3.1.1.jar

NOTICE.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,19 @@ Apache-2.0
5858
cassandra-driver-core-3.10.0.jar
5959
commons-beanutils-1.9.4.jar
6060
commons-cli-1.2.jar
61+
commons-codec-1.15.jar
6162
commons-codec-1.16.1.jar
6263
commons-collections-3.2.2.jar
6364
commons-collections4-4.4.jar
64-
commons-compress-1.26.0.jar
65+
commons-compress-1.21.jar
66+
commons-compress-1.22.jar
6567
commons-configuration2-2.8.0.jar
6668
commons-configuration2-2.9.0.jar
6769
commons-csv-1.9.0.jar
6870
commons-daemon-1.0.13.jar
69-
commons-io-2.15.1.jar
71+
commons-io-2.11.0.jar
7072
commons-io-2.9.0.jar
73+
commons-lang3-3.12.0.jar
7174
commons-lang3-3.14.0.jar
7275
commons-logging-1.2.jar
7376
commons-math3-3.1.1.jar

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ apply from: "licenses-3rdparties.gradle"
135135
ext {
136136
publicDir = "${project.rootDir}"
137137
// NB: due to version.json generation by parsing this file, the next line must not have any if/then/else logic
138-
neo4jVersion = "4.4.32"
138+
neo4jVersion = "4.4.31"
139139
// instead we apply the override logic here
140140
neo4jVersionEffective = project.hasProperty("neo4jVersionOverride") ? project.getProperty("neo4jVersionOverride") : neo4jVersion
141141
testContainersVersion = '1.17.6'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
¦xref::overview/apoc.es/apoc.es.get.adoc[apoc.es.get icon:book[]] +
22

3-
`apoc.es.get(host-or-port,index-or-null,type-or-null,id-or-null,query-or-null,payload-or-null) yield value` - perform a GET operation on elastic search
3+
`apoc.es.get(host-or-port,index-or-null,type-or-null,id-or-null,query-or-null,payload-or-null,$config) yield value` - perform a GET operation on elastic search
44
¦label:procedure[]
55
¦label:apoc-full[]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
¦xref::overview/apoc.es/apoc.es.getRaw.adoc[apoc.es.getRaw icon:book[]] +
22

3-
`apoc.es.getRaw(host-or-port,path,payload-or-null) yield value` - perform a raw GET operation on elastic search
3+
`apoc.es.getRaw(host-or-port,path,payload-or-null,$config) yield value` - perform a raw GET operation on elastic search
44
¦label:procedure[]
55
¦label:apoc-full[]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
¦xref::overview/apoc.es/apoc.es.post.adoc[apoc.es.post icon:book[]] +
22

3-
`apoc.es.post(host-or-port,index-or-null,type-or-null,query-or-null,payload-or-null) yield value` - perform a POST operation on elastic search
3+
`apoc.es.post(host-or-port,index-or-null,type-or-null,query-or-null,payload-or-null,$config) yield value` - perform a POST operation on elastic search
44
¦label:procedure[]
55
¦label:apoc-full[]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
¦xref::overview/apoc.es/apoc.es.postRaw.adoc[apoc.es.postRaw icon:book[]] +
22

3-
`apoc.es.postRaw(host-or-port,path,payload-or-null) yield value` - perform a raw POST operation on elastic search
3+
`apoc.es.postRaw(host-or-port,path,payload-or-null,$config) yield value` - perform a raw POST operation on elastic search
44
¦label:procedure[]
55
¦label:apoc-full[]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
¦xref::overview/apoc.es/apoc.es.put.adoc[apoc.es.put icon:book[]] +
22

3-
`apoc.es.put(host-or-port,index-or-null,type-or-null,id-or-null,query-or-null,payload-or-null) yield value` - perform a PUT operation on elastic search
3+
`apoc.es.put(host-or-port,index-or-null,type-or-null,id-or-null,query-or-null,payload-or-null,$config) yield value` - perform a PUT operation on elastic search
44
¦label:procedure[]
55
¦label:apoc-full[]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
¦xref::overview/apoc.es/apoc.es.query.adoc[apoc.es.query icon:book[]] +
22

3-
`apoc.es.query(host-or-port,index-or-null,type-or-null,query-or-null,payload-or-null) yield value` - perform a SEARCH operation on elastic search
3+
`apoc.es.query(host-or-port,index-or-null,type-or-null,query-or-null,payload-or-null,$config) yield value` - perform a SEARCH operation on elastic search
44
¦label:procedure[]
55
¦label:apoc-full[]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
¦xref::overview/apoc.es/apoc.es.stats.adoc[apoc.es.stats icon:book[]] +
22

3-
`apoc.es.stats(host-url-Key)` - elastic search statistics
3+
`apoc.es.stats(host-url-Key,$config)` - elastic search statistics
44
¦label:procedure[]
55
¦label:apoc-full[]

0 commit comments

Comments
 (0)