2022-02-24 19:18:17 +01:00
|
|
|
#########
|
|
|
|
Changelog
|
|
|
|
#########
|
|
|
|
|
2022-06-08 12:57:40 +02:00
|
|
|
Version 0.15.1
|
|
|
|
==============
|
|
|
|
|
|
|
|
* Package `psutil` is now a dependency, installed automatically with plugin.
|
|
|
|
* Added `encryption` marker to mark test as requiring the encryption plugin
|
|
|
|
|
2022-06-05 18:08:54 +02:00
|
|
|
Version 0.15.0
|
|
|
|
==============
|
|
|
|
|
|
|
|
* To simplify portable use of databases with special configuration via `databases.conf`,
|
|
|
|
the plugin initialization now ensures empty subdirectory `QA` in Firebird sample directory.
|
|
|
|
To define your test databases in `databases.conf`, use next pattern::
|
|
|
|
|
|
|
|
my_db = $(dir_sampleDB)/QA/my-db.fdb
|
|
|
|
{
|
|
|
|
...
|
|
|
|
}
|
|
|
|
|
|
|
|
On plugin initialization, the `QA` sub-directory is first emptied and removed, and then
|
|
|
|
newly created. On non-Windows, full privileges are granted.
|
|
|
|
|
|
|
|
* Added possibility to use databases aliases. The `.db_factory()` parameter `filename` is
|
|
|
|
now handled as database alias if it starts with `#`, for example `#employee` means alias
|
|
|
|
`employee`. The alias must be defined in `databases.conf` file.
|
|
|
|
|
|
|
|
When filename is an alias, the `.Database.db_path` property does not contain
|
|
|
|
full `~pathlib.Path` to the database, but this database alias.
|
|
|
|
|
2022-05-12 21:59:29 +02:00
|
|
|
Version 0.14.0
|
|
|
|
==============
|
|
|
|
|
|
|
|
* Added possibility to specify user, password and role in `.Action.connect_server()` and
|
|
|
|
`.Action.trace()`
|
|
|
|
|
|
|
|
Version 0.13.1
|
|
|
|
==============
|
|
|
|
|
|
|
|
* Fixed problem with service encoding
|
|
|
|
* Fixed problem with tags in User
|
|
|
|
|
2022-04-19 12:00:38 +02:00
|
|
|
Version 0.13.0
|
|
|
|
==============
|
|
|
|
|
|
|
|
* Explicit `Optional` typing.
|
|
|
|
* Added support for both `encoding` and `encoding_errors` in `.Action.connect_server()`
|
|
|
|
and `.Action.trace()`.
|
|
|
|
|
2022-02-24 19:18:17 +01:00
|
|
|
Version 0.12.1
|
|
|
|
==============
|
|
|
|
|
|
|
|
Initial release.
|