Releases: typedb/typedb-console
Releases · typedb/typedb-console
TypeDB Console 2.4.0
New Features
- Autocomplete for commands
Introduce context-aware autocomplete for interactive TypeDB Console sessions.
Bugs Fixed
Code Refactors
Other Improvements
TypeDB Console 2.3.2
New Features
Bugs Fixed
Code Refactors
Other Improvements
TypeDB Console 2.3.1
New Features
Bugs Fixed
- Fix APT package deployment
Make APT package that we deploy installable again
Code Refactors
Other Improvements
TypeDB Console 2.3.0
New Features
Bugs Fixed
Code Refactors
Other Improvements
- Upgrade Java dependency for APT package
Depend on Java 11 in APT package for consistency with TypeDB Server
TypeDB Console 2.1.3
New Features
Bugs Fixed
- Allow update (match-delete-insert) queries to be run in console, which was unimplemented
Code Refactors
- Fixed 'rollback' message
Other Improvements
TypeDB Console 2.1.2
New Features
Bugs Fixed
Code Refactors
Other Improvements
TypeDB Console 2.1.1
New Features
- Add authentication and user management support for TypeDB Cluster
We have added authentication and user management support for to TypeDB Cluster.
Bugs Fixed
- Improve handling password input
We've updated Console such that password input can be supplied interactively and non-interactively.
This is done primarily for security purpose, interactive input will be the preferred one since it is not stored in the CLI history. The non-interactive mode is still relevant and therefore supported, particularly for use in automation scripts and test.
Additionally, we've refactored the code to improve the terminologies. We used the word "Command" everywhere to refer to several different things which cause confusion. We've now made the terminologies more precise:- "CLI Options" is how we refer to the options specified when starting console (eg.,
--username admin
) - "REPL command" is how we refer to the Console commands such as 'database create'
- We've renamed the execution mode to be clear. Console has three modes of execution: "REPL mode", "script mode" and "inline command mode". The first mode is the interactive mode that most users will use. The second and the third mode are non-interactive and is suitable for use in automation scripts or tests.
- "CLI Options" is how we refer to the options specified when starting console (eg.,
Code Refactors
Other Improvements
TypeDB Console 2.1.0
New Features
- Transaction REPL checks arguments
To make the error in #139 much cleaner, we implement a check for the required number of space-separated arguments. An incorrect number of arguments is no longer a fatal error.
Bugs Fixed
Code Refactors
Other Improvements
- Update usage of rules_antlr
Eliminate possible inconsistencies by loading ANTLR version from a constant
Grakn Console 2.0.1
New Features
Bugs Fixed
- Add 'database schema' to help command and README
Thedatabase schema
command, implemented in #143, was missing from thehelp
command and theREADME
file. We added it to both.
Code Refactors
Other Improvements
- Update Client Java and Grakn Core artifact
We updated Client Java and the Grakn Core artifact due to a new protocol.
Grakn Console 2.0.0
New Features
Bugs Fixed
- When closing a READ transaction, simply print "transaction closed"
Previously when closing a READ transaction, it would print "Transaction closed without committing changes". "Without committing changes" was superfluous so we got rid of it.
Code Refactors
Other Improvements
- Add ability to print database schema
Bump dependencies to released artifacts, and fix a printing bug for concept maps.