Accepting request 333952 from home:jimfunk:branches:server:http

OBS-URL: https://build.opensuse.org/request/show/333952
OBS-URL: https://build.opensuse.org/package/show/server:http/uwsgi?expand=0&rev=44
This commit is contained in:
2015-11-03 22:37:01 +00:00
committed by Git OBS Bridge
parent c8d0d7460c
commit ef2e5915a4
7 changed files with 50 additions and 91 deletions

View File

@@ -1,3 +1,49 @@
-------------------------------------------------------------------
Sat Sep 26 17:39:41 UTC 2015 - jfunk@funktronics.ca
- Remove uwsgi-2.0.10-gcc5.patch as it was integrated upstream
- Update to 2.0.11.1:
* Bugfixes
* fixed HTTPS router resource deallocation and fiel descriptors leak
* do not spit out ssl errors when errno is 0
* New Features
* The unix_signal hook - You can now remap UNIX signals to specific
functions symbols
- Changes from 2.0.11:
* Bugfixes
* [pypy] fixed misuse of ffi.string
* fixed detection for gcc 5 (jimfunk)
* fixed shared sockets for gateways
* [psgi] Changed abs to labs because offset is declared as a long (Peter H.
Ezetta)
* add null terminator to uwsgi_get_dot_h() and uwsgi_config_py() (Jay
Oster)
* fixed thread waiting during stop/restart (Kaiwen Xu)
* fixed chain reloading verbosity
* [python] fixed spooler job reference counting (Curtis Maloney)
* various static analysis improvements (Riccardo Magliocchetti)
* fixed sharedarea support for very big ranges
* fixed gzip transformation for zero-sized responses (Curtis Maloney)
* fixed management of https client certificate authentication (Vladimir
Didenko)
* fixed OpenBSD build
* fixed TMPFILE permissions
* New Features
* The mem_collector thread - Evil memory monitors (like --evil-reload-on-rss)
are now asynchronously managed by a dedicated thread. This solves the issue
of runaway processes not catched by the master.
* fixpathinfo routing action - This is another step in removing the need of
the infamous uwsgi_modifier1 30 relic.
* uwsgi[sor] and time[micros] routing vars - This two new vars exposes the
start of the current request (in micros) and the current time (again in
micros)
* wait-for-socket - This works like wait-for-fs/iface/file/dir. The spawn
of the instance is suspended until the specified tcp/unix socket is
ready. You can use it to synchronize vassals spawn (like stopping a
vassal until a postgresql server has been spawned)
* wait_for hooks - All of the wait-for-* functions can now be used as a
hook
-------------------------------------------------------------------
Wed Aug 12 11:10:35 UTC 2015 - dvaleev@suse.com