Changelog
Follow up on the latest improvements and updates.
RSS
new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDB Free
AuraDS Professional
AuraDS Enterprise
AuraDB Business Critical
Neo4j Aura July 2026 Release
- Introduced the GROUP BYsubclause toWITHandRETURN. TheGROUP BYclause allows the user to explicitly state the grouping keys for an aggregating operation. This is an alternative to the implicit grouping already available in Cypher, and is introduced to better align Cypher with the GQL standard. See Cypher Manual -> Group By
- Adds the GQL cardinality()function for Cypher 25; it returns the number of keys in aMAP, elements in aLIST, or nodes and relationships in aPATH. See Cypher Manual -> Scalar Functions - Cardinality
- Procedure calls that run against the system database can now filter results using the WHEREclause. See Operations Manual -> Call a procedure.
- High-Fidelity Quantized vector search is now generally available. The default index configuration for new indexes is Scalar quantization with an expansion factor of 1.5, existing indexes are unaffected until they're rebuilt. See Vector indexes - Cypher Manual.
- Fixed an issue where notification filters set on the driver session were dropped when a query was forwarded via server-side routing, causing suppressed notifications to still be returned to the client.
- Fixed an issue where creating a vector index when setting vector.quantization.enabled:falsewithoutvector.quantization.type:'NONE'in the index configuration.
- The backup correctly picks the most recent valid chain when restoring from a folder, which would previously fail if the last backup was an orphaned diff.
- Clustering - When the raft prefetch buffer is reset, the size of the buffer is also now reset
- Cypher - Fixed a bug where EXISTSexpression nested in a quantified path pattern would trigger a class cast exception.
new
Enterprise Studio
Neo4j Enterprise Studio 2026.07
- Added fixes for minor issues with search, scenes, GDS, filters, and perspective behaviour.
- Fixed issue with drill down from Dashboards into Bloom.
- Dashboard cards can now use parameters in titles, descriptions, and markdown.
- Improved experience for concurrent editing on shared dashboards.
- Styling editors gained broader support for data types, temporal values, big integers, and error handling.
- Fixed bug that caused issues with Standalone mode in Enterprise Studio.
- Helm chart improvement: Enterprise Studio now checks container readiness on initialization.
- Enterprise Studio automatically validates licenses on startup.
- Connection management: cache the last deployment selected in the connection form, and fixes the login flow when no home database is set.
new
AuraDB Professional
AuraDB Free
AuraDB Business Critical
MCP for Aura Now Available
- No setup:Connect through the Aura platform using your existing Aura credentials, so there is no server to install and no credentials to manage separately.
- Three ready-to-use tools:Schema, read, and read-write let your AI client explore your graph and start answering questions immediately, even one it has never seen before.
- Grounded answers:Every response comes from a real query against your real data, not a guess.
- Broad compatibility:Works with any MCP-compatible AI client or agent.
improved
new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDB Free
AuraDS Professional
Query
AuraDB Business Critical
Cypher Copilot updates: Smarter Queries, Baseline Edits, and In-Editor Review

new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDB Business Critical
Neo4j Fleet Manager
Fleet Manager: Migrate a Community Edition database to Aura




new
AuraDB Virtual Dedicated Cloud
AuraDS Enterprise
AuraDB Business Critical
🎉 New in Aura: Self-Service Single Sign-On (SSO)
new
AuraDB Professional
AuraDB Free
AuraDB Business Critical
Document Intelligence Preview now available


new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDB Free
AuraDS Professional
AuraDS Enterprise
AuraDB Business Critical
New Aura User Management APIs

new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDB Free
Data Importer
Import
New Console
Import Service: Support for List and Vector Datatypes



new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDB Free
AuraDS Professional
AuraDS Enterprise
AuraDB Business Critical
Neo4j Aura June Database Release
- CALL { ... } IN CONCURRENT TRANSACTIONSnow supportsDISJOINT BY, a deadlock prevention mechanism that eliminates lock contention in parallel write workloads natively. High concurrency ingestion, particularly when merging nodes with unique constraints or creating relationships, has always been vulnerable to deadlock, as parallel threads compete for the same locks simultaneously.DISJOINT BYresolves contention at scheduling time, before any transaction is attempted. See the Cypher Manual → Batch scheduling and deadlock prevention with DISJOINT BY.
- GRAPH TYPEmoves from public preview to GA in this release. You can now define, enforce, and validate your graph schema at the database level in production workloads with the stability guarantees that come with a fully supported feature. See the Cypher Manual → Graph types.
- Extend SHOW CURRENT GRAPH TYPEto be able to return lists of virtual nodes and relationships representing the graph type (similar in format to the output of db.schema.visualization()) instead of the current string representation. To get the graph version of the command, useSHOW CURRENT GRAPH TYPE AS GRAPH. See the Cypher Manual → SHOW CURRENT GRAPH TYPE AS GRAPH.
- For customers using Change Data Capture (CDC), we have added a txCommitTimecolumn to thedb.cdc.current()procedure. This update allows clients to conveniently identify the commit time of their most recent transaction alongside the transaction identifier.
- Vector SEARCHqueries now supportINfor filtering, allowing queries like:
- Native projections are now available in AGA via both Cypher and the GDS Python client.
- Project-level Machine Learning model publishing is now supported, automatically granting model access to all members of a project.
- Upgraded netty to version 4.2.15.Finalin order to resolve several CVEs.
- Fixed a bug that allowed cached pages to exceed the configured limit.
- Fixed a bug where outbound network chunks for secondaries were not flushed properly. This could lead to a buffer overflow in the outbound.
- Fixed a bug in the pipelined runtime where an OR EXISTSsubquery containing ordering could silently drop a result row:
- Fixed a record format bug where undirected scans of multiple relationship types omitted sibling relationships, resulting in a ~50% undercount in the output.
- Fixed an issue that let a User Defined Function (UDF) be defined as part of a Property-Based Access Control (PBAC) privilege. This isn't supported and wouldn't have worked as a user might have expected.