Skip to content

Commit

Permalink
build(deps): Bump neo4j.version from 5.24.2 to 5.25.1 (#1117)
Browse files Browse the repository at this point in the history
* build(deps): Bump neo4j.version from 5.24.2 to 5.25.1

Bumps `neo4j.version` from 5.24.2 to 5.25.1.

Updates `org.neo4j:neo4j-cypher-javacc-parser` from 5.24.2 to 5.25.1
- [Release notes](https://github.com/neo4j/neo4j/releases)
- [Commits](neo4j/neo4j@5.24.2...5.25.1)

Updates `org.neo4j.test:neo4j-harness` from 5.24.2 to 5.25.1
- [Release notes](https://github.com/neo4j/neo4j/releases)
- [Commits](neo4j/neo4j@5.24.2...5.25.1)

---
updated-dependencies:
- dependency-name: org.neo4j:neo4j-cypher-javacc-parser
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.neo4j.test:neo4j-harness
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* New Neo4j patch, new methods.

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michael Simons <michael.simons@neo4j.com>
  • Loading branch information
dependabot[bot] and michael-simons authored Nov 4, 2024
1 parent 02949be commit 27c123c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1936,7 +1936,13 @@ public NULL graphScope(InputPosition inputPosition, List<DatabaseName> graphName
}

@Override
public NULL databaseScope(InputPosition inputPosition, List<DatabaseName> databaseNames, ScopeType scopeType) {
public NULL databasePrivilegeScope(InputPosition inputPosition, List<DatabaseName> list, ScopeType scopeType) {
throw new UnsupportedOperationException();
}

@Override
public LabelExpression dynamicLabelLeaf(InputPosition p, Expression e, EntityType entityType, boolean all,
boolean containsIs) {
throw new UnsupportedOperationException();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class HandleNewMethods {
"insertClause", "insertPathPattern", "subqueryInTransactionsBatchParameters",
"subqueryInTransactionsConcurrencyParameters", "subqueryInTransactionsErrorParameters",
"grantRoles", "showRoles", "renameRole", "revokeRoles", "newFinishClause",
"auth", "authId", "password", "passwordChangeRequired"})
"auth", "authId", "password", "passwordChangeRequired", "dynamicLabelLeaf", "databasePrivilegeScope" })
void newMethodsShouldNotBeSupportedOOTB(String methodName) {
var factory = CypherDslASTFactory.getInstance(null);
var methods = factory.getClass().getMethods();
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
<mockito.version>5.14.2</mockito.version>
<moditect-maven-plugin.version>1.2.2.Final</moditect-maven-plugin.version>
<neo4j-java-driver.version>5.26.0</neo4j-java-driver.version>
<neo4j.version>5.24.2</neo4j.version>
<neo4j.version>5.25.1</neo4j.version>
<opencsv.version>5.9</opencsv.version>
<project.build.docs>${project.build.directory}/docs</project.build.docs>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit 27c123c

Please sign in to comment.