Changelog
Follow up on the latest improvements and updates.
RSS
new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDB Free
AuraDB Business Critical
AuraDB v4 to newest (v5): Migration readiness available
- New block storage format for better performance
- Parallel runtime for faster execution of analytical workloads
- Vector indices for semantic search & vector embeddings for GenAI use cases
- GQL improvements, including graph pattern matching for improved Cypher queries
- Attribute based access control gives fine grained security for read and traverse on property values
- Change Data Capture for data integration patterns
- Larger instance sizes
- Secondaries for read scalability
- And more…
new
AuraDB Free
Data Importer
🚀 Import from PostgreSQL
new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDB Free
AuraDS Self-Start
AuraDS Enterprise
AuraDB Business Critical
Neo4j Aura Database October release update!
- Azure Uploads: Improved performance, increased timeout, and better error handling
- Parallel Runtime: Now available on AuraDB instances over 1Gi, with no CPU limit. All available CPUs can be used.
- Logging: More GQL info added to the JSON Query log for developers and data scientists.
new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDB Free
AuraDB Business Critical
AuraDB Exportable Snapshot Format Change
- The file format of snapshots exported* from Neo4j Version 5 Aura instances of all tiers (Free, Professional, Business Critical and Virtual Dedicated Cloud) has changed from dump to backup.
- Previously, when exporting an Aura snapshot, you received a dump file format locally, which is named neo4j-dump(1), -dump(2), -dump(3) and so on. After this change, the file format is now backup, and the file name will contain the UTC timestamp when the snapshot is requested, so you can easily distinguish exported files from one another.
- You will no longer be able to import Aura v5 snapshots to Neo4j self managed deployments in a version prior to 5.20.
- When importing data to Aura using neo4j-admin database upload, you should make sure the file containing data to be restored does not exist in a folder that contains another dump file with the same file name, as the command will attempt to upload both files to the same instance and breaks.
- Same tenant: Follow “Clone to New/Existing” workflow on Console.
- Different tenant: Export snapshot as dump and use neo4j-admin database upload to import snapshot. Snapshot files smaller than 4GB can be imported using Import Database on Aura console.
- Same tenant: Follow “Clone to New/Existing” workflow on Console.
- Different tenant: Export snapshot as backup and use neo4j-admin database upload) to import snapshot. Snapshot files smaller than 4GB can be imported using Import Database on Aura Console.
new
AuraDB Virtual Dedicated Cloud
General Availability of Secondaries on AuraDB Virtual Dedicated Cloud!
- Up to 15 Secondaries can be added per AuraDB Virtual Dedicated Cloud database instance, running on Neo4j Version 5.
- Single region only: Secondaries available in same region as their Primary database.
- Available for all clouds (AWS, Azure, & GCP)
- Increased Read Throughput: Up to 15 Secondaries per instance, boosting capacity for read-heavy workloads.
- Better Load Distribution: Distribute read operations to prevent bottlenecks during traffic spikes.
- High Availability: Adding multiple Secondaries across availability zones ensure fault tolerance and resilience.
new
improved
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDB Free
New Console
AuraDB Business Critical
Introducing the Console Learn Page: Your Learning Hub
- Easily discover GraphAcademy courses and learning paths directly in the Aura Console
- Plus video content and demos from our YouTube channel
- Everything you need to start you Generative AI learning journey with Neo4j
- Interactive guides and videos for beginners that work seamlessly with your AuraDBs and Console Tools
- Interactive guides including more sample datasets
- Links to Documentation
- Links to the Neo4j Developer Center
- Links to Cypher reference documentation (also available interactively inside the Query Tool)
new
Maintenance Notice
AuraDB Virtual Dedicated Cloud
AuraDS Enterprise
Bloom Update & Possible SSO Issues
- https://bloom.neo4j.io/2.11.0/index.html?[idp-details]to enable continued access to Bloom 2.11 (the most recent version at bloom.neo4j.io prior to the update)
- https://bloom.neo4j.io/previous/?[idp-details]to enable access to the most recent prior version of Bloom following every update
- https://bloom.neo4j.io/current/?[idp-details]as an alternate path to the current most up to date version of bloom
- https://explore.neo4j.io/current/?[idp-details]as an alternative domain to access Bloom
new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDB Free
AuraDS Self-Start
AuraDS Enterprise
New Console
Check out the new Aura console experience
- Manage Aura instances
- Write Cypher queries
- Visually explore your graph data
- Visually design your schema and import your data (file-based)
- User management, including Orgs and Projects
- Metrics to track usage of instances (require Pro tier or above)
- Explore your queries with our query log analyzer (requires Pro tier or above)
- Access interactive guides to learn Cypher and get the most out of our tools
- Use copilots to help write Cypher and visually explore your graph (opt in via your Org settings)
- Billing
- UI/UX improvements
- Feature parity with the classic Aura Console
- AuraDS migration
- Enterprise capabilities (SSO, PrivateLink, CMEK)
- Cloud data imports
- Cloud storage for metadata (queries, perspectives, guide progress, etc)
new
AuraDB Virtual Dedicated Cloud
AuraDB Professional
AuraDB Free
AuraDS Self-Start
AuraDS Enterprise
AuraDB Business Critical
Neo4j Aura Database feature update!
- Dynamically reference labels and properties in SETandREMOVEclauses. For example:SET n[$prop],REMOVE n[$prop],SET n:$($label)andREMOVE n:$($label).
- Added the GQL conformant OPTIONALkeyword to procedure and subquery calls. If no results are returned from the procedure or subquery,OPTIONAL CALLwill return null instead of an empty result.
- Allow ORDER BY,SKIP/OFFSET, andLIMITto be standalone clauses. Before, they could be used only in combination withRETURN,WITH, orYIELD; now, they can be used anywhere in a query.