Changelog
Follow up on the latest improvements and updates.
RSS
new
AuraDB Virtual Dedicated Cloud
AuraDS Enterprise
AuraDB Business Critical
🎉 New in Aura: Self-Service Single Sign-On (SSO)
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
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.
new
AuraDB Professional
AuraDB Free
AuraDS Professional
AuraDS Enterprise
AuraDB Business Critical
Aura Graph Analytics
Neo4j Fleet Manager
Aura Project Deletion now available
- Go to Project settings → Delete Project
- Select Delete Project
- A warning modal appears.
- Type the name of the project to confirm, then select Confirm Deletion.
- Go to Organization settings → Recover deleted projects
- Locate the project you wish to recover.
- Select Restore Project.
new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDS Professional
AuraDS Enterprise
AuraDB Business Critical
🚀 New Billing API available
- /usage: Extracts billed usage for a specific period and Aura organization.
- /ledger: Extracts historical credit balances for a specific period and Aura organization.
- Track trends over highly customized timeframes.
- Isolate costs by identifying the exact projects, services, resources, or providers driving your spend.
- Forecast effectively by predicting and acting on credit balance depletion before it impacts your workflows.
new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDB Free
AuraDS Professional
AuraDS Enterprise
AuraDB Business Critical
Neo4j Aura May Database Release
- Composable SHOW commands: Combine multiple Cypher commands in one query and mix them with other Cypher statements. Supported commands include SHOW INDEXES,SHOW CONSTRAINTS,SHOW FUNCTIONS,SHOW PROCEDURES,SHOW DATABASES, and more.
- ACYCLICwithSHORTESTandANYpaths: You can now combineACYCLICwithANY,SHORTEST,ALL SHORTEST, and related path selectors.
- New native string functions: string.indexOf,string.join, andstring.regexReplaceare now native Cypher functions. Relatedapoc.text.*functions are deprecated.
- Fixed a network channel concurrency issue that could cause out-of-order messages and slower writes.
- Disabled a parallel runtime planner behavior that could increase memory use for some variable-length patterns. Re-enable per query with CYPHER parallelRepeatHeuristic=enabled.
- Fixed COUNT(DISTINCT)overcounting in the pipelined runtime.
- Auth rules with invalid time functions now fail at creation time.
- Fixed stDev()returning 0 instead of null for empty input.
new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDS Professional
AuraDS Enterprise
AuraDB Business Critical
🚀 New Aura Billing Experience is now available for all customers with a payment method
- Billing Overview: Your new financial dashboard. Get a month-to-date usage snapshot at a glance, featuring a brand-new burndown chart and credit balance tracking for prepaid accounts.
- Cost Explorer: An interactive tool to slice and dice your historical usage. Customize your view with interactive charts and export your data to CSV for deeper analysis.
- Analyze spending patterns: Track trends over custom timeframes and bucket data by day or month.
- Pinpoint cost drivers: Identify the exact projects, services, resources, or providers driving up your bill.
- Investigate financial impact: Deep-dive into the your resource consumption cost to optimize your budget.
new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDS Professional
AuraDS Enterprise
AuraDB Business Critical
Tidy Up Your Org with Automated User Pruning 🧹
- Set Your Rules: Define a period (30–365days) after which inactive members are automatically removed from the Org.
- Fair Warnings: Aura optionally sends up to three email notificationsto users before they lose access, giving them plenty of time to log back in.
- Activity Defined: Any action in the Console or via the Aura API resets the inactivity timer.
- Built-in Safety: We’ll never remove the last Owner or Project Admin, and you can mark specific VIPs as Exempt.
- Easy Recovery: Users automatically pruned can be re-invited to the org if they need to regain access.
new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDB Free
AuraDS Professional
AuraDS Enterprise
AuraDB Business Critical
Neo4j Fleet Manager
Aura Console User Password Requirements
- Log in to the Aura Console using email/password.
- Go to Account > Settings > Preferences > Security.
- Enable Multi-Factor Authentication (MFA).
- Follow the MFA set up steps.
- Update your password: If you're using a short password it is time to update it. The next time you change your password, you’ll be prompted to meet the new 16-character requirement.
- Enable MFA: If you haven’t already, grab your favorite authenticator app (like Google Authenticator or Authy) and link it to your account.
new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDB Free
AuraDS Professional
AuraDS Enterprise
AuraDB Business Critical
Neo4j Aura Database April Release
- IS LABELED / IS NOT LABELED: New GQL-compliant predicates to test for node labels (equivalent to the existingISandIS NOTsyntax). More details on Cypher Manual.
- FOR Statement: You can now use the GQLFORstatement to extract individual rows from a list (the GQL equivalent ofUNWIND).
- ai.text.chunkByTokenLimit: Automatically split input strings into lists while respecting specific token limits. Link to Docs.
- ai.text.countToken: Easily estimate the token count of a given string directly within your query. Link to Docs.
- Memory Optimization: Significant reduction in memory usage for theSHORTESTstatement and improved precision for memory tracking within the Top operator.
- Parallel runtimememory tracking enhancements: Improved the precision of memory tracking within the Top operation.
- Detailed version reportingin query output: EXPLAIN and PROFILE output now consistently includes the underlying Neo4j version, reporting down to the point release.
- Drivers: Updatedneo4j-java-driverandnetty-bom.
- Vector Indexing: Fixed an issue where quantized data invector-3.0indexes wasn’t being utilized at query time. This fix reduces memory usage for vector searches without requiring an index rebuild.
- RBAC/PBAC: Resolved an error that occurred when running duplicate Property-Based Access Control commands containing temporal functions.
- Show Databases: Fixed an incorrect error message when passing a parameter with the incorrect type to SHOW DATABASES.
- Stability: Fixed a rare record format bug related to iterating relationships on nodes that concurrently become dense.
- Pathfinding: Fixed a bug whereSHORTESTwould occasionally omit valid paths when multiple targets were present.