Revisions of python-Werkzeug

Ondřej Súkup's avatar Ondřej Súkup (mimi_vx) accepted request 602319 from Arun Persaud's avatar Arun Persaud (apersaud) (revision 32)
update to latest version
buildservice-autocommit accepted request 584291 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 31)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 584255 from Alberto Planas Dominguez's avatar Alberto Planas Dominguez (aplanas) (revision 30)
- Allows Recommends and Suggest in Fedora
buildservice-autocommit accepted request 580794 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 29)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 580770 from Alberto Planas Dominguez's avatar Alberto Planas Dominguez (aplanas) (revision 28)
- Recommends only for SUSE
buildservice-autocommit accepted request 515246 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 27)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 515242 from Thomas Bechtold's avatar Thomas Bechtold (tbechtold) (revision 26)
- update to 0.12.2:
  - Fix regression: Pull request ``#892`` prevented Werkzeug from correctly
    logging the IP of a remote client behind a reverse proxy, even when using
    `ProxyFix`.
  - Fix a bug in `safe_join` on Windows.

- update to 0.12.2:
  - Fix regression: Pull request ``#892`` prevented Werkzeug from correctly
    logging the IP of a remote client behind a reverse proxy, even when using
    `ProxyFix`.
  - Fix a bug in `safe_join` on Windows.
buildservice-autocommit accepted request 487845 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 25)
baserev update by copy to link target
Jan Matejek's avatar Jan Matejek (matejcik) accepted request 486169 from Jan Matejek's avatar Jan Matejek (matejcik) (revision 24)
- update to 0.12.1
- use python3-Sphinx for build

- update for singlespec
- update to 0.12.1
  * deprecate werkzeug.script
  * Use `inspect.getfullargspec` internally when available as
    `inspect.getargspec` is gone in 3.6
  * Added support for status code 451 and 423
  * Improved the build error suggestions.  In particular only if
    someone stringifies the error will the suggestions be calculated.
  * Added support for uWSGI's caching backend.
  * Fix a bug where iterating over a `FileStorage` would result in an infinite
    loop.
  * Datastructures now inherit from the relevant baseclasses from the
    `collections` module in the stdlib. See #794.
  * Add support for recognizing NetBSD, OpenBSD, FreeBSD, DragonFlyBSD platforms
    in the user agent string.
  * Recognize SeaMonkey browser name and version correctly
  * Recognize Baiduspider, and bingbot user agents
  * If `LocalProxy`'s wrapped object is a function, refer to it with __wrapped__
    attribute.
  * The defaults of ``generate_password_hash`` have been changed to more secure
    ones, see pull request ``#753``.
  * Add support for encoding in options header parsing, see pull request
    ``#933``.
  * ``test.Client`` now properly handles Location headers with relative URLs, see
    pull request ``#879``.
  * When `HTTPException` is raised, it now prints the description, for easier
    debugging.
buildservice-autocommit accepted request 441852 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 23)
baserev update by copy to link target
Robert Schweikert's avatar Robert Schweikert (rjschwei) committed (revision 22)
- Include in SLE 12 (FATE#320818, bsc#979331)
buildservice-autocommit accepted request 429842 from Factory Maintainer's avatar Factory Maintainer (factory-maintainer) (revision 21)
baserev update by copy to link target
Todd R's avatar Todd R (TheBlackCat) committed (revision 20)
Todd R's avatar Todd R (TheBlackCat) committed (revision 19)
Todd R's avatar Todd R (TheBlackCat) accepted request 428038 from Todd R's avatar Todd R (TheBlackCat) (revision 18)
update to version 0.11.11
buildservice-autocommit accepted request 358476 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 17)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 358349 from Alberto Planas Dominguez's avatar Alberto Planas Dominguez (aplanas) (revision 16)
- Add 0001_create_a_thread_to_reap_death_process.patch
  Fixes bsc#954591

- update to 0.11.3:
  - Added reloader_paths option to run_simple and other functions in
    werkzeug.serving. This allows the user to completely override the
    Python module watching of Werkzeug with custom paths.
  - Many custom cached properties of Werkzeug’s classes are now
    subclasses of Python’s property type (issue #616).
  - bind_to_environ now doesn’t differentiate between implicit and
    explicit default port numbers in HTTP_HOST (pull request #204).
  - BuildErrors are now more informative. They come with a complete
    sentence as error message, and also provide suggestions (pull
    request #691).
  - Fix a bug in the user agent parser where Safari’s build number
    instead of version would be extracted (pull request #703).
  - Fixed issue where RedisCache set_many was broken for twemproxy,
    which doesn’t support the default MULTI command (pull request
    #702).
  - mimetype parameters on request and response classes are now always
    converted to lowercase.
  - Changed cache so that cache never expires if timeout is 0. This
    also fixes an issue with redis setex (issue #550)
  - Werkzeug now assumes UTF-8 as filesystem encoding on Unix if
    Python detected it as ASCII.
  - New optional has method on caches.
  - Fixed various bugs in parse_options_header (pull request #643).
  - If the reloader is enabled the server will now open the socket in
    the parent process if this is possible. This means that when the
    reloader kicks in the connection from client will wait instead of
buildservice-autocommit accepted request 313179 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 15)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 313100 from Thomas Bechtold's avatar Thomas Bechtold (tbechtold) (revision 14)
- update to 0.10.4:
  - Re-release of 0.10.3 with packaging artifacts manually removed.
  - Re-release of 0.10.2 without packaging artifacts.
  - Fixed issue where ``empty`` could break third-party libraries that relied on
    keyword arguments (pull request ``#675``)
  - Improved ``Rule.empty`` by providing a ```get_empty_kwargs`` to allow setting
    custom kwargs without having to override entire ``empty`` method. (pull
    request ``#675``)
   - Fixed ```extra_files``` parameter for reloader to not cause startup
     to crash when included in server params
   - Using `MultiDict` when building URLs is now not supported again. The behavior
     introduced several regressions.
   - Fix performance problems with stat-reloader (pull request ``#715``).
   - Fixed regression with multiple query values for URLs (pull request ``#667``).
   - Fix issues with eventlet's monkeypatching and the builtin server (pull
     request ``#663``).
   - Changed the error handling of and improved testsuite for the caches in
     ``contrib.cache``.
   - Fixed a bug on Python 3 when creating adhoc ssl contexts, due to `sys.maxint`
     not being defined.
   - Fixed a bug on Python 3, that caused
     :func:`~werkzeug.serving.make_ssl_devcert` to fail with an exception.
   - Added exceptions for 504 and 505.
   - Added support for ChromeOS detection.
   - Added UUID converter to the routing system.
   - Added message that explains how to quit the server.
   - Fixed a bug on Python 2, that caused ``len`` for
     :class:`werkzeug.datastructures.CombinedMultiDict` to crash.
   - Added support for stdlib pbkdf2 hmac if a compatible digest
     is found.
buildservice-autocommit accepted request 241527 from Todd R's avatar Todd R (TheBlackCat) (revision 13)
baserev update by copy to link target
Displaying revisions 61 - 80 of 92
openSUSE Build Service is sponsored by