doc/README: changelog for v0.5.0

This commit is contained in:
mappu 2024-06-29 12:59:54 +12:00
parent 0a31eab9f2
commit 52677224c1
1 changed files with 18 additions and 3 deletions

View File

@ -9,17 +9,19 @@ This is an experimental application and you should generally prefer to use [qbol
- Native desktop application, running on Linux, Windows, and macOS
- Connect to multiple databases
- Browse table/bucket content
- Use context menu to perform special table/bucket actions
- Run custom SQL queries
- Select text to run partial query
- Safe handling for non-UTF8 key and data fields
- Supported databases:
- Badger v4
- Bolt
- Full compatibility via the upstream [etcd-io/bbolt](https://github.com/etcd-io/bbolt) library
- Recursive bucket support
- SQLite
- Uses CGo if available or modernc.org if not
- Option to open as readonly
- Pebble
- Redis
- SQLite
- Drivers: mattn (CGo), modernc.org (no cgo), experimental command-line driver
## License
@ -38,6 +40,19 @@ This project includes trademarked logo images for each supported database type.
## Changelog
2024-06-29 v0.5.0
- Pebble: Add as supported database
- Bolt: Support opening as readonly
- Bolt: Support creating new databases
- Bolt: Support adding/removing recursive child buckets
- SQLite: Support custom CLI driver that parses `/usr/bin/sqlite3 -json` output (experimental)
- Redis: Improve query parser to support quoted strings
- App: Support refreshing elements in nav tree
- App: Help menu option to show driver versions
- App: Add image icons for refresh and close context menu actions
- Build: Add makefile for cross-compiling release binaries
2024-06-23 v0.4.0
- Redis: Add as supported database