Uwsgi

Latest version: v2.0.28

Safety actively analyzes 688619 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 4 of 11

2.0.13.1

Not secure
[20160513]

Bugfix quick-release

Changes
-------

- Fixed support for python 2.5 and python 2.6
- Fixed support for older glibc
- reverted EPOLLEXCLUSIVE patch, requires more investigation


Availability
------------

You can download uWSGI 2.0.13.1 from https://projects.unbit.it/downloads/uwsgi-2.0.13.1.tar.gz

2.0.13

Not secure
[20160510]

Changes
-------

- Fix compilation with GCC 6
- Remote rpc fixes (Darvame)
- Musl support! (Natanael Copa, Matt Dainty, Riccardo Magliocchetti)
- Create the spooler directory if it does not exist (Alexandre Bonnetain)
- Fix compilation on big endian linux (Riccardo Magliocchetti)
- A ton of cache fixes (Darvame)
- Make it easier to compile plugins on a different directory (Jakub Jirutka)
- Add wheel package machinery (Matt Robenolt)
- Use EPOLLEXCLUSIVE for reading, helps with the thundering herd problem (on linux 4.5+) (INADA Naoki)
- Fix apache 2.4 integration with unix sockets (Alexandre Rossi)
- Add HTTP/2 support to apache 2 proxy (Michael Fladischer, OGAWA Hirofumi)
- Fix apache mod proxy compilation with apache 2.4.20 (Mathieu Arnold)
- Default to clang as default compiler on MacOS X (Riccardo Magliocchetti)
- Added --cgi-close-stdin-on-eof (Roberto De Ioris)


Availability
------------

You can download uWSGI 2.0.13 from https://projects.unbit.it/downloads/uwsgi-2.0.13.tar.gz

2.0.12

Not secure
[20151230]

Bugfixes
--------

- 'rpcvar' routing action correctly returns NEXT on empty response
- uwsgiconfig: fix handling of empty keys in python3 (Simone Basso)
- plugins/alarm_speech: fix AppKit spelling to support case-sensitive filesystems (Andrew Janke)
- Fix inheriting INET address 0.0.0.0 (INADA Naoki)
- core/xmlconf: correctly initialize libxml2 (Riccardo Magliocchetti)
- Pass LIBDIR to linker in python plugin (Borys Pierov)
- Platforms-related build fixes for pty, forkptyrouter and mono plugins (Jonas Smedegaard and Riccardo Magliocchetti)

New Features and Backports
--------------------------

The custom worker api
*********************

Finally you are able to override the uWSGI processing model to completely get control of it. This is very similar to what
you can do in projects like gunicorn (and its integration with tornado or gevent). Obviously native plugins are still the best approach (they allow integration with uWSGI api and states), but in some case you may want to use uWSGI process management facilities and let your app do the rest of the work.

Currently only the python plugin supports "overriding" of workers, an aiohttp (asyncio) example module is available:

https://github.com/unbit/uwsgi-docs/blob/master/WorkerOverride.rst


--wsgi-disable-file-wrapper
***************************

This option disables the wsgi.file_wrapper optimization of the WSGI standard. In some corner case this is the only trick to avoid errors.

Official PHP 7 support
**********************

PHP 7 is now officially supported in the php plugin.


uwsgi.spooler_get_task api (Credits: Alexandre Bonnetain)
*********************************************************

This patch allows you to easily parse spooler files.

Check the example/test here:

https://github.com/unbit/uwsgi/blob/master/t/spooler/read.py

--if-hostname-match (Credits: Alexandre Bonnetain)
**************************************************

This options for config logic allows you to define options only when a regexp over the hostname matches:

.. code-block:: ini

[uwsgi]
if-hostname-match = ^prod
threads = 20
endif =



Availability
------------

You can download uWSGI 2.0.12 from https://projects.unbit.it/downloads/uwsgi-2.0.12.tar.gz

2.0.11.2

Not secure
[20151007]

Bugfixes
********

* OSX 10.11 supports TCP_FASTOPEN
* fixed http-socket parser state after harakiri
* fixed threaded request logger
* fixed fastrouter subscriptions modifiers
* fixed alarm backlog

Availability
************

You can download uWSGI 2.0.11.2 from

https://projects.unbit.it/downloads/uwsgi-2.0.11.2.tar.gz

2.0.11.1

Not secure
[20150719]

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:

.. code-block:: c

#include <stdio.h>

void hello_world(int signum) {
printf("Hello World\n");
}

.. code-block:: sh

gcc -o libhello.so -shared hello.c
uwsgi --dlopen ./libhello.so --hook-master-start "unix_signal:1 hello_world" ...

will run the function hello_world whenever signal 1 (SIGHUP) is raised

Availability
************

You can download uWSGI 2.0.11.1 from

https://projects.unbit.it/downloads/uwsgi-2.0.11.1.tar.gz

2.0.11

Not secure
[20150701]

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.

This routing action assumes the PATH_INFO cgi var has the SCRIPT_NAME part included.

This action allows you to set SCRIPT_NAME in nginx without bothering to rewrite the PATH_INFO (something nginx cannot afford)

.. code-block:: ini

[uwsgi]
; blindly assumes PATH_INFO is clobbered with SCRIPT_NAME
route-run = fixpathinfo:

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)

.. code-block:: ini

[uwsgi]
route-run = log:request started at ${uwsgi[sor]}
route-run = log:current micros time is ${time[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:

.. code-block:: ini

[uwsgi]
; wait for postgres soon after privileges drop
hook-as-user = wait_for_socket:127.0.0.1:5432

Availability
************

You can download uWSGI 2.0.11 from

https://projects.unbit.it/downloads/uwsgi-2.0.11.tar.gz

Page 4 of 11

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.