Skip to content

Latest commit

 

History

History
executable file
·
227 lines (158 loc) · 13.2 KB

changelog.rst

File metadata and controls

executable file
·
227 lines (158 loc) · 13.2 KB

.. highlight:: python .. currentmodule:: bottle

Release Notes and Changelog

Release 0.13

Warning

Not released yet.

Dropped support for Python versions that reached their end-of-life.

Keeping up support for ancient Python versions hinders adaptation of new features and serves no real purpose. If you need support for older Python versions, you can stay on bottle-0.12. The updated list of tested and supported python releases is as follows:

  • Python 2.7 (>= 2.7.3)
  • Python 3.6
  • Python 3.7
  • Python 3.8
  • Python 3.9
  • PyPy 2.7
  • PyPy 3.6
  • PyPy 3.7

Support for Python 2.5 was marked as deprecated since 0.12. We decided to go a step further and also remove support for 2.6 and 3.1 to 3.5 even if it was never deprecated explicitly in bottle. This means that this release is not backwards compatible in Python <2.7.3 or <3.6 environments. Maintainers for distributions or systems that still use these old python versions should not update to Bottle 0.13 and stick with 0.12 instead.

Stabilized APIs

  • The documented API of the :class:`ConfigDict` class is now considered stable and ready to use.

Deprecated APIs

  • The old route syntax (/hello/:name) is deprecated in favor of the more readable and flexible /hello/<name> syntax.
  • :meth:`Bottle.mount` now recognizes Bottle instance and will warn about parameters that are not compatible with the new mounting behavior. The old behavior (mount applications as WSGI callable) still works and is used as a fallback automatically.
  • The undocumented :func:`local_property` helper is now deprecated.
  • The server adapter for google app engine is not useful anymore and marked as deprecated.
  • Bottle uses pickle to store arbitrary objects into signed cookies. This is safe, as long as the signature key remains a secret. Unfortunately, people tend to push code with signature keys to github all the time, so we decided to remove pickle-support from bottle. Signed cookies will now issue a deprecation warning if the value is not a string, and support for non-string values will be removed in 0.14. The global :func:`cookie_encode`, :func:`cookie_decode` and :func:`is_cookie_encoded` are now also deprecated. If you are using this feature, think about using json to serialize your objects before storing them into cookies, or switch to a session system that stores data server-side instead of client-side.

Removed APIs (deprecated since 0.12)

  • Plugins with the old API (api=1 or no api attribute) will no longer work.
  • Parameter order of :meth:`Bottle.mount` changed in 0.10. The old order will now result in an error instead of a warning.
  • The :class:`ConfigDict` class was introduced in 0.11 and changed during 0.12. These changes are now final.
    • Attribute access and assignment was removed due to high overhead and limited usability.
    • Namespaced sub-instance creation was removed. config["a"]["b"] has a high overhead and little benefit over config["a.b"].
    • :class:`ConfigDict` instances are no longer callable. This was a shortcut for :meth:`ConfigDict.update`.
    • :class:`ConfigDict` constructor no longer accepts any parameters. Use the load_* methods instead.
  • Bottle 0.12 changed some aspects of the Simple Template Engine. These changes are now final and the old syntax will now longer work.
    • The magic {{rebase()}} call was replaced by a base variable. Example: {{base}}
    • In STPL Templates, the 'rebase' and 'include' keywords were replaced with functions in 0.12.
    • PEP-263 encoding strings are no longer recognized. Templates are always utf-8.
  • The 'geventSocketIO' server adapter was removed without notice. It did not work anyway.

Changes

These changes might require special care when updating.

Other Improvements

  • Bottle() instances are now context managers. If used in a with-statement, the default application changes to the specific instance and the shortcuts for many instance methods can be used.
  • Added support for PATCH requests and the :meth:`Bottle.patch` decorator.
  • Added aiohttp and uvloop server adapters.
  • Added command-line arguments for config from json or ini files.
  • :meth:`Bottle.mount` now recognizes instances of :class:`Bottle` and mounts them with significantly less overhead than other WSGI applications.
  • The :attr:`Request.json` property now accepts application/json-rpc requests.
  • :func:`static_file` gained support for ETag headers. It will generate ETags and recognizes If-None-Match headers.
  • Jinja2 templates will produce better error messages than before.

Release 0.12

  • New SimpleTemplate parser implementation
    • Support for multi-line code blocks (<% ... %>).
    • The keywords include and rebase are functions now and can accept variable template names.
  • The new :attr:`BaseRequest.route` property returns the :class:`Route` that originally matched the request.
  • Removed the BaseRequest.MAX_PARAMS limit. The hash collision bug in CPythons dict() implementation was fixed over a year ago. If you are still using Python 2.5 in production, consider upgrading or at least make sure that you get security fixed from your distributor.
  • New :class:`ConfigDict` API (see :doc:`configuration`)

More information can be found in this development blog post.

Release 0.11

API Changes

API Deprecations

Release 0.10

Release 0.9

Whats new?

Performance improvements

  • The :class:`Router` now special-cases wsgi.run_once environments to speed up CGI.
  • Reduced module load time by ~30% and optimized template parser. See 8ccb2d, f72a7c and b14b9a for details.
  • Support for "App Caching" on Google App Engine. See af93ec.
  • Some of the rarely used or deprecated features are now plugins that avoid overhead if the feature is not used.

API changes

This release is mostly backward compatible, but some APIs are marked deprecated now and will be removed for the next release. Most noteworthy:

  • The static route parameter is deprecated. You can escape wild-cards with a backslash.
  • Type-based output filters are deprecated. They can easily be replaced with plugins.

Release 0.8

API changes

These changes may break compatibility with previous versions.

  • The built-in Key/Value database is not available anymore. It is marked deprecated since 0.6.4
  • The Route syntax and behaviour changed.
    • Regular expressions must be encapsulated with #. In 0.6 all non-alphanumeric characters not present in the regular expression were allowed.
    • Regular expressions not part of a route wildcard are escaped automatically. You don't have to escape dots or other regular control characters anymore. In 0.6 the whole URL was interpreted as a regular expression. You can use anonymous wildcards (/index:#(\.html)?#) to achieve a similar behaviour.
  • The BreakTheBottle exception is gone. Use :class:`HTTPResponse` instead.
  • The :class:`SimpleTemplate` engine escapes HTML special characters in {{bad_html}} expressions automatically. Use the new {{!good_html}} syntax to get old behaviour (no escaping).
  • The :class:`SimpleTemplate` engine returns unicode strings instead of lists of byte strings.
  • bottle.optimize() and the automatic route optimization is obsolete.
  • Some functions and attributes were renamed:
  • The default :func:`redirect` code changed from 307 to 303.
  • Removed support for @default. Use @error(404) instead.

New features

This is an incomplete list of new features and improved functionality.

Contributors