Skip to content

Commit 05f6bbc

Browse files
committed
docs
1 parent 9e51f50 commit 05f6bbc

File tree

2 files changed

+15
-12
lines changed

2 files changed

+15
-12
lines changed

doc/TODO.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
+ sqllite in default output mode is even worse... (see below)
7676
+ try to have mssql use a smaller (but dynamic) col width for varchar results
7777
+ investigate the possibility of having the clients emitting directly json results instead of plaintext
78-
+ also: sqlite 3 has a more 'tabular' mode to display results, but it seems not to be able to calculate col. width automatically...
78+
+ also: sqlite 3 has a 'tabular' mode to display results, but it seems not to be able to calculate col. width automatically...
7979
+ test selecting string with length > 200 chars: ok
8080

8181
- improve travis testing:
@@ -116,13 +116,14 @@
116116
+ remove more unused stuff from containers, such as fdisk?, etc...
117117

118118
- host: improve cli scripts:
119-
+ add a script that removes docker images and containers (eg. docker-compose down)
119+
+ add removal of docker images and containers (eg. docker-compose down)
120120
+ move from bash to sh ? also, reduce the number of cli commands we use (listed in readme)
121121
+ add shell completion for commands of dbstack
122122

123123
- worker: improve cli scripts
124124
+ allow to drop many dbs, users in single commands
125125
+ add a user:create command which takes as option the list of dbs to grant access to
126+
+ add --database option to database:shell command
126127
+ either remove ./vendor/bin/doctrine-dbal or make it actually work
127128
+ make it possible to have uniform table formatting for SELECT-like queries
128129
- test with rows containing multiple cols, newlines, ...

doc/WHATSNEW.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,28 @@
1-
Version ?? (unreleased)
2-
-----------------------
1+
Version 0.10
2+
------------
33

4-
- Breaking changed: renamed `stack.sh` to `dbstack`, removed `cleanup-databases.sh`, `cleanup-docker-images.sh`, and
5-
`cleanup-logs.sh` (functionality of the last 3 has been added to `dbstack`)
4+
- Breaking change: renamed `stack.sh` to `dbstack`
65

7-
- New: added `./bin/dbconsole` as quicker notation for `./bin/dbstack dbconsole`
6+
- Breaking change: removed `cleanup-databases.sh`, `cleanup-docker-images.sh`, and `cleanup-logs.sh` - the functionality
7+
of these scripts has been added to `dbstack`
8+
9+
- New: added `./bin/dbconsole` as quicker shortcut for `./bin/dbstack dbconsole`
810

911
- New: added dbconsole command: `user:drop`
1012

1113
- New: added dbconsole command: `database:shell`. This starts an interactive sql session to one of the configured
1214
instances, using the native command-line client. Handy to avoid typing username and password every time
1315

14-
- Improved: results of SELECT commands are now displayed using table formatting for MariaDB and MySQL databases
15-
when running dbconsole command `sql:execute`. Also, results for PostgeSQL databases are more terse (no more footer)
16+
- Improved: for MariaDB and MySQL databases, the results of SELECT commands are now displayed using table formatting
17+
when running dbconsole command `sql:execute`. Also, the results for PostgeSQL databases are more terse (no more footer)
1618

17-
- Improved: the `database:drop` command reports failures more consistently when trying to drop non-existing databases
19+
- Improved: the `database:drop` dbconsole command reports failures more consistently when trying to drop non-existing databases
1820

19-
- Improved: `stack.sh` has learned a new command: `cleanup`. Run `./bin/stack.sh -h` for details
21+
- Improved: `dbstack` has learned a new command: `cleanup`. Run `./bin/dbstack -h` for details
2022

2123
- Improved: updated the application dependencies to Symfony 4.4.2
2224

23-
- Changed: the `database:create` and `database:drop` commands do _not_ create/drop an user account by default any more.
25+
- Changed: the `database:create` and `database:drop` dbconsole commands do _not_ create/drop an user account by default any more.
2426
In order to force them do so, you should use the `--user` option
2527

2628

0 commit comments

Comments
 (0)