1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
|
Metadata-Version: 2.1
Name: repoze.tm2
Version: 2.2.0
Summary: Per-request transactions via WSGI middleware
Home-page: http://www.repoze.org
Author: Agendaless Consulting
Author-email: repoze-dev@lists.repoze.org
License: BSD-derived (http://www.repoze.org/LICENSE.txt)
Description: repoze.tm2 (Transaction Manager)
================================
.. image:: https://travis-ci.org/repoze/repoze.tm2.png?branch=master
:target: https://travis-ci.org/repoze/repoze.tm2
.. image:: https://readthedocs.org/projects/repozetm2/badge/?version=latest
:target: http://repozetm2.readthedocs.org/en/latest/
:alt: Documentation Status
.. image:: https://img.shields.io/pypi/v/repoze.tm2.svg
:target: https://pypi.python.org/pypi/repoze.tm2
.. image:: https://img.shields.io/pypi/pyversions/repoze.tm2.svg
:target: https://pypi.python.org/pypi/repoze.tm2
Middleware which uses the ZODB transaction manager to wrap a call to
its pipeline children inside a transaction. This is a fork of the
``repoze.tm`` package which depends only on the ``transaction``
package rather than the entirety of ZODB (for users who don't rely on ZODB).
Installation
------------
Install using setuptools, e.g. (within a virtualenv)::
$ easy_install repoze.tm2
or using pip::
$ pip install repoze.tm2
Usage
-----
For details on using the various components, please see the
documentation in ``docs/index.rst``. A rendered version of that documentation
is also available online:
- http://repozetm2.readthedocs.org/en/latest/
Reporting Bugs
--------------
Please report bugs in this package to
https://github.com/repoze/repoze.tm2/issues
Obtaining Source Code
---------------------
Download development or tagged versions of the software by visiting:
https://github.com/repoze/repoze.tm2
Changelog
=========
2.2.0 (2023-01-16)
------------------
- Add support for Python 3.7, 3.8, 3.9, 3.10, and 3.11.
- Drop suppport for Python 2.7, 3.4, 3.5 and 3.6.
- Add Github Actions workflow running unit tests / coverage for PRs.
2.1 (2016-06-03)
----------------
- Add support for Python 3.4, 3.5 and PyPy3.
- Drop support for Python 2.6 and 3.2.
- Add support for testing under Travis.
2.0 (2013-06-26)
----------------
- Avoid swallowing the original exception while aborting the transaction
in middleware. See PR #3.
2.0b1 (2013-04-05)
------------------
- Middleware is now a generator, to deal appropriately with application
iterators which are themselves not lists.
- Convert use of deprecated failIf/failUnless to assertFalse/assertTrue.
- Add support for testing under supported Pythons using Tox.
- Add explicit support for Python 3.2 ad 3.3.
- Drop support for Python 2.4, 2.5.
1.0 (2012-03-24)
----------------
- Run OOTB under Python 2.4 / 2.5 (pin 'transaction' dependency to
a supported version when running under 2.4 / 2.5).
1.0b2 (2011-07-18)
------------------
- A new header ``X-Tm`` is now honored by the ``default_commit_veto`` commit
veto hook. If this header exists in the headerlist, its value must be a
string. If its value is ``commit``, the transaction will be committed
regardless of the status code or the value of ``X-Tm-Abort``. If the value
of the ``X-Tm`` header is ``abort`` (or any other string value except
``commit``), the transaction will be aborted regardless of the status code
or the value of ``X-Tm-Abort``.
- Use of the ``X-Tm-Abort`` header is now deprecated. Instead use the
``X-Tm`` header with a value of ``abort`` instead.
- Add API docs section.
1.0b1 (2011-01-19)
------------------
- Added ``repoze.tm.default_commit_veto`` commit veto hook. This commit veto
hook aborts for 4XX and 5XX response codes, or if there's a header named
``X-Tm-Abort`` in the headerlist and allows a commit otherwise.
- Documented commit veto hook.
1.0a5 (2009-09-07)
------------------
- Don't commit after aborting if the transaction was doomed or if the
commit veto aborted.
- Don't use "real" transaction module in tests.
- 100% test coverage.
1.0a4 (2009-01-06)
------------------
- RESTify CHANGES, move docs in README.txt into Sphinx.
- Remove ``setup.cfg`` (all dependencies available via PyPI).
- Synchronization point with ``repoze.tm`` (0.9).
1.0a3 (2008-08-03)
------------------
Allow ``commit_veto`` hook to be specified within Paste config, ala::
[filter:tm]
use = repoze.tm:make_tm
commit_veto = some.package:myfunction
``myfunction`` should take three args: environ, status, headers and
should return True if the txn should be aborted, False if it should be
committed.
Initial PyPI release.
1.0a2 (2008-07-15)
------------------
- Provide "commit_veto" hook point (contributed by Alberto Valverde).
- Point easy_install at http://dist.repoze.org/tm2/dev/simple via setup.cfg.
1.0a1 (2008-01-09)
------------------
- Fork point: we've created repoze.tm2, which is repoze.tm that has a
dependency only on the 'transaction' package instead of all of ZODB.
- Better documentation for non-Zope usage in README.txt.
0.8 (2007-10-11)
----------------
- Relaxed requirement for ZODB 3.7.2, since we might need to use the
package with other verions. Note that the tests which depend on
transaction having "doom" semantics don't work with 3.7.2, anyway.
0.7 (2007-09-25)
----------------
- Depend on PyPI release of ZODB 3.7.2. Upgrade to this by doing
bin/easy_install -U 'ZODB3 >= 3.7.1, < 3.8.0a' if necessary.
0.6 (2007-09-21)
----------------
- after_end.register and after_end.unregister must now be passed a
transaction object rather than a WSGI environment to avoid the
possibility that the WSGI environment used by a child participating
in transaction management won't be the same one used by the
repoze.tm package.
- repoze.tm now inserts a key into the WSGI environment
(``repoze.tm.active``) if it's active in the WSGI pipeline. An API
function, repoze.tm:isActive can be called with a single argument,
the WSGI environment, to check if the middleware is active.
0.5 (2007-09-18)
----------------
- Depend on rerolled ZODB 3.7.1 instead of zopelib.
- Add license and copyright, change trove classifiers.
0.4 (2007-09-17)
----------------
- Depend on zopelib rather than ZODB 3.8.0b3 distribution, because the
ZODB distribution pulls in various packages (zope.interface and ZEO
most notably) that are incompatible with stock Zope 2.10.4 apps and
older sandboxes. We'll need to revisit this.
0.3 (2007-09-14)
----------------
- Provide limited compatibility for older transaction package versions
which don't support the 'transaction.isDoomed' API.
0.2 (2007-09-13)
----------------
- Provide after_end API for registering callbacks at transaction end.
0.1 (2007-09-10)
----------------
- Initial Release
Keywords: web application server wsgi zope repoze
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
Provides-Extra: docs
|