Skip to content

Commit e11380e

Browse files
committed
Release 2025.07.0 (#4385) (#4401)
1 parent b58121f commit e11380e

File tree

11 files changed

+26
-17
lines changed

11 files changed

+26
-17
lines changed

.github/workflows/CI.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI
22

33
on:
44
push:
5-
branches: [ "dev" ]
5+
branches: [ "2025.07" ]
66
pull_request:
7-
branches: [ "dev" ]
7+
branches: [ "2025.07" ]
88

99
env:
1010
CODEARTIFACT_BUILD_SERVICE_LIVE_URL: ${{ secrets.CODEARTIFACT_BUILD_SERVICE_LIVE_URL }}

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[submodule "apoc-core"]
22
path = apoc-core
33
url = https://github.com/neo4j/apoc
4-
branch = dev
4+
branch = 2025.07

apoc-core

Submodule apoc-core updated 86 files

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ downloadLicenses {
1515

1616
allprojects {
1717
group = 'org.neo4j.procedure'
18-
version = '2025.08.0'
18+
version = '2025.07.0'
1919
archivesBaseName = 'apoc'
2020
description = """neo4j-apoc-procedures"""
2121
}
@@ -92,8 +92,8 @@ subprojects {
9292
// neo4jDockerImage system property is used in TestContainerUtil
9393
systemProperties 'user.language' : 'en' ,
9494
'user.country' : 'US',
95-
'neo4jDockerImage': project.hasProperty("neo4jDockerEeOverride") ? project.getProperty("neo4jDockerEeOverride") : 'neo4j:2025.08.0-enterprise',
96-
'neo4jCommunityDockerImage': project.hasProperty("neo4jDockerCeOverride") ? project.getProperty("neo4jDockerCeOverride") : 'neo4j:2025.08.0',
95+
'neo4jDockerImage': project.hasProperty("neo4jDockerEeOverride") ? project.getProperty("neo4jDockerEeOverride") : 'neo4j:2025.07.0-enterprise',
96+
'neo4jCommunityDockerImage': project.hasProperty("neo4jDockerCeOverride") ? project.getProperty("neo4jDockerCeOverride") : 'neo4j:2025.07.0',
9797
'coreDir': 'apoc-core/core',
9898
'testDockerBundle': false,
9999
'org.neo4j.io.pagecache.tracing.cursor.DefaultPageCursorTracer.CHECK_REPORTED_COUNTERS': 'true' // Extra assertions in kernel
@@ -153,7 +153,7 @@ subprojects {
153153

154154
ext {
155155
// NB: due to version.json generation by parsing this file, the next line must not have any if/then/else logic
156-
neo4jVersion = "2025.08.0"
156+
neo4jVersion = "2025.07.0"
157157
// instead we apply the override logic here
158158
neo4jVersionEffective = project.hasProperty("neo4jVersionOverride") ? project.getProperty("neo4jVersionOverride") : neo4jVersion
159159
testContainersVersion = '1.20.2'

docs/antora/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ site:
66
content:
77
sources:
88
- url: https://github.com/neo4j-contrib/neo4j-apoc-procedures
9-
branches: ['5.26', '4.4', '4.3', '4.2', '4.1', '4.0']
9+
branches: ['2025.07', '4.4', '4.3', '4.2', '4.1', '4.0']
1010
start_path: docs/asciidoc
1111
exclude:
1212
- '!**/_includes/*'

docs/asciidoc/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ asciidoc:
88
docs-version: "2025.0"
99
branch: "2025.0"
1010
apoc-release-absolute: "2025.0"
11-
apoc-release: "2025.08.0"
11+
apoc-release: "2025.07.0"

docs/asciidoc/modules/ROOT/partials/neo4j-server.adoc

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,15 @@ The version compatibility matrix explains the mapping between Neo4j and APOC ver
2424
[opts=header]
2525
|===
2626
|apoc version | neo4j version
27+
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/2025.07.0[2025.07.0^] | 2025.07.0 (2025.07.x)
28+
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/2025.04.0[2025.04.0^] | 2025.04.0 (2025.04.x)
29+
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/2025.03.0[2025.03.0^] | 2025.03.0 (2025.03.x)
30+
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/2025.02.0[2025.02.0^] | 2025.02.0 (2025.02.x)
31+
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/2025.01.0[2025.01.0^] | 2025.01.0 (2025.01.x)
32+
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/5.26.0[5.26.0^] | 5.26.0 (5.26.x)
33+
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/5.25.0[5.25.0^] | 5.25.0 (5.25.x)
34+
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/5.24.0[5.24.0^] | 5.24.0 (5.24.x)
35+
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/5.23.0[5.23.0^] | 5.23.0 (5.23.x)
2736
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/5.22.0[5.22.0^] | 5.22.0 (5.22.x)
2837
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/5.21.0[5.21.0^] | 5.21.0 (5.21.x)
2938
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/5.20.0[5.20.0^] | 5.20.0 (5.20.x)
@@ -46,7 +55,7 @@ The version compatibility matrix explains the mapping between Neo4j and APOC ver
4655
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/5.3.1[5.3.1^] | 5.3.0 (5.3.x)
4756
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/5.2.0[5.2.0^] | 5.2.0 (5.2.x)
4857
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/5.1.0[5.1.0^] | 5.1.0 (5.1.x)
49-
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/4.4.0.18[4.4.0.18^] | 4.4.0 (4.4.x)
58+
| https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/4.4.0.36[4.4.0.36^] | 4.4.0 (4.4.x)
5059
|===
5160

5261
// end::version-matrix[]

docs/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ plugins {
2929
id 'org.neo4j.doc.build.docbook' version '1.0-alpha12'
3030
}
3131

32-
if (!project.hasProperty('apocVersion')) { ext.apocVersion = '5.22.0' }
32+
if (!project.hasProperty('apocVersion')) { ext.apocVersion = '2025.07.0' }
3333

3434
ext {
3535
versionParts = apocVersion.split('-')

extended/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ dependencies {
102102
// They need to be provided either through the database or in an extra .jar
103103
compileOnly group: 'org.neo4j', name: 'neo4j', version: neo4jVersionEffective
104104
// same version as the one included in neo4j `lib`
105-
compileOnly group: 'org.neo4j.driver', name: 'neo4j-java-driver', version: '5.20.0'
105+
compileOnly group: 'org.neo4j.driver', name: 'neo4j-java-driver', version: '5.28.7'
106106

107107
compileOnly group: 'org.apache.poi', name: 'poi', version: '5.1.0', {
108108
exclude group: 'org.apache.commons', module: 'commons-collections4'

extra-dependencies/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ ext {
7777

7878

7979
subprojects {
80-
version = '2025.08.0'
80+
version = '2025.07.0'
8181
group = 'org.neo4j.contrib'
8282
}
8383

0 commit comments

Comments
 (0)