From 680695bfbb5a17eb6e8620621eddee88684f0a8d Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Fri, 23 Sep 2022 10:04:20 +0200 Subject: [PATCH] Release v4.8 --- NEWS | 18 ++++++++++++++++++ resalloc/__init__.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 5974958..5a6cebd 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,23 @@ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +New in v4.8: + +* New features: + + - Eetter logging support: Exceptions are logged to 'main.log', the + default log_level=info is made useful, more readable messages, log + entries contain PID, TID and thread name. + + - Stopped using 'sqlalchemy.pool.NullPool' for connecting to database, + and use the default. That is NullPool anyway for SQLite backend, and + QueuePool(pool_size=5) for the PostgreSQL backend: + https://docs.sqlalchemy.org/en/14/core/pooling.html#sqlalchemy.pool.NullPool + + - A new PostgreSQL index to speedup `resalloc-maint ticket-list` command. + + +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + New in v4.7: * Bugfixes: diff --git a/resalloc/__init__.py b/resalloc/__init__.py index ce85401..1e6f492 100644 --- a/resalloc/__init__.py +++ b/resalloc/__init__.py @@ -1 +1 @@ -__version__ = '4.7' +__version__ = '4.8'