15
0
forked from pool/python-hupper

Accepting request 792712 from home:mcalabkova:branches:devel:languages:python

- update to 1.10.2
  * Support --shutdown-interval on the hupper CLI.
  * Support --reload-interval on the hupper CLI.
  * Do not choke when stdin is not a TTY while waiting for changes after a crash.
  * Fix deprecation warnings caused by using the imp module on newer versions of Python.
  * Avoid acquiring locks in the reloader process's signal handlers.
  * Handle a SIGTERM signal by forwarding it to the child process and 
    gracefully waiting for it to exit. This should enable using hupper 
    from within docker containers and other systems that want to control 
    the reloader process.

OBS-URL: https://build.opensuse.org/request/show/792712
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-hupper?expand=0&rev=16
This commit is contained in:
Tomáš Chvátal
2020-04-09 12:36:59 +00:00
committed by Git OBS Bridge
parent eba51e11ab
commit cb515797c8
4 changed files with 19 additions and 5 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Thu Apr 9 12:13:55 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
- update to 1.10.2
* Support --shutdown-interval on the hupper CLI.
* Support --reload-interval on the hupper CLI.
* Do not choke when stdin is not a TTY while waiting for changes after a crash.
* Fix deprecation warnings caused by using the imp module on newer versions of Python.
* Avoid acquiring locks in the reloader process's signal handlers.
* Handle a SIGTERM signal by forwarding it to the child process and
gracefully waiting for it to exit. This should enable using hupper
from within docker containers and other systems that want to control
the reloader process.
-------------------------------------------------------------------
Sat Jan 11 14:51:39 UTC 2020 - Bernhard Wiedemann <bwiedemann@suse.com>