Revisions of python-gunicorn

Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) committed (revision 40)
- Add patch to work well with pytest5:
  * pytest5.patch
buildservice-autocommit accepted request 642836 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 39)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) committed (revision 38)
- Version update to 19.9.0:
  * Support python 3.7
  * Tornado 5 support
  * Eventlet 0.21 support
buildservice-autocommit accepted request 509447 from Thomas Bechtold's avatar Thomas Bechtold (tbechtold) (revision 37)
baserev update by copy to link target
Thomas Bechtold's avatar Thomas Bechtold (tbechtold) accepted request 509309 from Jan Engelhardt's avatar Jan Engelhardt (jengelh) (revision 36)
- Ensure neutrality of description.
Thomas Bechtold's avatar Thomas Bechtold (tbechtold) accepted request 507399 from Thomas Bechtold's avatar Thomas Bechtold (tbechtold) (revision 35)
- update to 19.7.1:
  - fix: continue if SO_REUSEPORT seems to be available but fails (:issue:`1480`)
  - fix: support non-decimal values for the umask command line option (:issue:`1325`)
  - The previously deprecated ``gunicorn_django`` command has been removed.
    Use the :ref:`gunicorn-cmd` command-line interface instead.
  - The previously deprecated ``django_settings`` setting has been removed.
    Use the :ref:`raw-env` setting instead.
  - The default value of :ref:`ssl-version` has been changed from
    ``ssl.PROTOCOL_TLSv1`` to ``ssl.PROTOCOL_SSLv23``.
  - fix: initialize the group access list when initgroups is set (:issue:`1297`)
  - add environment variables to gunicorn access log format (:issue:`1291`)
  - add --paste-global-conf option (:issue:`1304`)
  - fix: print access logs to STDOUT (:issue:`1184`)
  - remove upper limit on max header size config (:issue:`1313`)
  - fix: print original exception on AppImportError (:issue:`1334`)
  - use SO_REUSEPORT if available (:issue:`1344`)
  - `fix leak <https://github.com/benoitc/gunicorn/commit/\
    b4c41481e2d5ef127199a4601417a6819053c3fd>`_ of duplicate file descriptor
    for bound sockets.
  - add --reload-engine option, support inotify and other backends (:issue:`1368`, :issue:`1459`)
  - fix: reject request with invalid HTTP versions
  - add ``child_exit`` callback (:issue:`1394`)
  - add support for eventlets _AlreadyHandled object (:issue:`1406`)
  - format boot tracebacks properly with reloader (:issue:`1408`)
  - refactor socket activation and fd inheritance for better support of SystemD (:issue:`1310`)
  - fix: o fds are given by default in gunicorn (:issue:`1423`)
  - add ability to pass settings to GUNICORN_CMD_ARGS environnement variable which helps in container world (:issue:`1385`)
  - fix:  catch access denied to pid file (:issue:`1091`)
  -  many additions and improvements to the documentation
  - improvement of the binary upgrade behaviour using USR2: remove file locking (:issue:`1270`)
buildservice-autocommit accepted request 305746 from Jan Matejek's avatar Jan Matejek (matejcik) (revision 34)
baserev update by copy to link target
Jan Matejek's avatar Jan Matejek (matejcik) accepted request 305588 from Benoît Monin's avatar Benoît Monin (benoit_monin) (revision 33)
- update to version 19.3.0
- remove python-nose from BuildRequires: unneeded
- add python-mock and python-pytest-cov as test dependencies
- add python-unittest2 as test dependencies for SLE11
- remove version pinning for test requirements with sed
- reenable the tests
- move documentation files under the main package docdir
buildservice-autocommit accepted request 265149 from Denisart Benjamin's avatar Denisart Benjamin (posophe) (revision 32)
baserev update by copy to link target
Denisart Benjamin's avatar Denisart Benjamin (posophe) accepted request 265144 from Axel Braun's avatar Axel Braun (DocB) (revision 31)
added changes and link to documentation
buildservice-autocommit accepted request 210376 from Denisart Benjamin's avatar Denisart Benjamin (posophe) (revision 30)
baserev update by copy to link target
Denisart Benjamin's avatar Denisart Benjamin (posophe) accepted request 210375 from Denisart Benjamin's avatar Denisart Benjamin (posophe) (revision 29)
- Update to version 18.0
  + new: add -e/--env command line argument to pass an environment
    variables to gunicorn
  + new: add --chdir command line argument to specified directory
    before apps loading. - new: add wsgi.file_wrapper support in
    async workers
  + new: add --paste command line argument to set the paster config file
  + deprecated: the command gunicorn_django is now deprecated. You
    should now run your application with the WSGI interface installed 
    with your project 
    (see https://docs.djangoproject.com/en/1.4/howto/deployment/wsgi/gunicorn/)
    for more infos.
  + deprecated: the command gunicorn_paste is deprecated. You now should
    use the new --paste argument to set the configuration file of your
    paster application.
  + fix: Removes unmatched leading quote from the beginning of the
    default access log format string
  + fix: null timeout
  + fix: gevent worker
  + fix: don’t reload the paster app when using pserve
  + fix: after closing for error do not keep alive the connection
  + fix: responses 1xx, 204 and 304 should not force the connection
    to be closed
- Changes from 17.5
  + new: add signals documentation
  + new: add post_worker_init hook for workers
  + new: try to use gunicorn.conf.py in current folder as the default
    config file.
  + fix graceful timeout with the Eventlet worker
  + fix: don’t raise an error when closing the socket if already closed
  + fix: fix –settings parameter for django application and try to find
    the django settings when using the gunicorn command.
  + fix: give the initial global_conf to paster application
  + New versionning: With this release, the versionning of Gunicorn is
    changing. Gunicorn is stable since a long time and there is no point
    to release a “1.0” now. It should have been done since a long time.
    0.17 really meant it was the 17th stable version. From the beginning
    we have only 2 kind of releases:
    - major release: releases with major changes or huge features added
      services releases: fixes and minor features added So from now we
      will apply the following versionning <major>.<service>.
      For example 17.5 is a service release.
- Changes from 0.17.4
  + fix unix socket address parsing
- Changes from 0.17.3
  + add systemd sockets support
  + add python -m gunicorn.app.wsgiapp support
  + improve logger class inheritance
  + exit when the config file isn’t found
  + add the -R option to enable stdio inheritance in daemon mode
  + don’t close file descriptors > 3 in daemon mode
  + improve STDOUT/STDERR logging
  + fix pythonpath option
  + fix pidfile creation on Python 3
  + fix gevent worker exit
  + fix ipv6 detection when the platform isn’t supporting it
buildservice-autocommit accepted request 204568 from Sascha Peilicke's avatar Sascha Peilicke (saschpe) (revision 28)
baserev update by copy to link target
Sascha Peilicke's avatar Sascha Peilicke (saschpe) committed (revision 27)
- Require python-setuptools instead of distribute (upstreams merged)
buildservice-autocommit accepted request 179849 from Sascha Peilicke's avatar Sascha Peilicke (saschpe) (revision 26)
baserev update by copy to link target
Sascha Peilicke's avatar Sascha Peilicke (saschpe) committed (revision 25)
Python3 moved to devel:languages:python3
buildservice-autocommit accepted request 148571 from Sascha Peilicke's avatar Sascha Peilicke (saschpe) (revision 24)
baserev update by copy to link target
Sascha Peilicke's avatar Sascha Peilicke (saschpe) accepted request 148493 from Denisart Benjamin's avatar Denisart Benjamin (posophe) (revision 23)
Update and python3 support
Marcel Gmür's avatar Marcel Gmür (ammler) committed (revision 22)
rollback r21, accidentially committed to wrong branch...
Marcel Gmür's avatar Marcel Gmür (ammler) committed (revision 21)
update to 0.14.6, but test fails...
Displaying revisions 21 - 40 of 60
openSUSE Build Service is sponsored by