Skip to main content

Transaction management for Python

Project description

https://travis-ci.org/zopefoundation/transaction.png?branch=master Documentation Status PyPI Python versions

This package contains a generic transaction implementation for Python. It is mainly used by the ZODB.

See http://transaction.readthedocs.org/en/latest for narrative documentation on its usage.

Changes

2.0.3 (2016-11-17)

  • The user and description fields must now be set with text (unicode) data. Previously, if bytes were provided, they’d be decoded as ASCII. It was decided that this would lead to bugs that were hard to test for.

    Also, the transaction meta-data field, extended_info has been renamed to extension.

2.0.2 (2016-11-13)

  • Fixed: Some legacy applications expect the transaction _extension attribute to be mutable and it wasn’t.

2.0.1 (2016-11-11)

  • The transaction user and description attributes are now defined to be text (unicode) as opposed to Python the str type.

  • Added the extended_info transaction attribute which contains transaction meta data. (The _extension attribute is retained as an alias for backward compatibility.)

    The transaction interface, ITransaction, now requires extended_info keys to be text (unicode) and values to be JSON-serializable.

  • Removed setUser from ITransaction. We’ll keep the method indefinitely, but it’s unseemly in ITransaction. :)

The main purpose of these changes is to tighten up the text specification of user, description and extended_info keys, and to give us more flexibility in the future for serializing extended info. It’s possible that these changes will be breaking, so we’re also increasing the major version number.

1.7.0 (2016-11-08)

  • Added a transaction-manager run method for running a function as a transaction, retrying as necessary on transient errors.

  • Fixed the transaction manager attempts method. It didn’t stop repeating when there wasn’t an error.

  • Corrected ITransaction by removing beforeCommitHook (which is no longer implemented) and removing ‘self’ from two methods.

1.6.1 (2016-06-10)

  • Fixed: Synchonizers that registered with transaction managers when transactions were in progress didn’t have their newTransaction methods called to let them know of the in-progress transactions.

1.6.0 (2016-05-21)

  • New transaction API for storing data on behalf of objects, such as data managers.

  • Drop references to data managers joined to a transaction when it is committed or aborted.

1.5.0 (2016-05-05)

  • Drop support for Python 2.6 and 3.2.

  • Add support for Python 3.5.

  • Added APIs for interogating and clearing internal state to support client tests.

1.4.4 (2015-05-19)

  • Use the standard valuerefs() method rather than relying on implementation details of WeakValueDictionary in WeakSet.

  • Add support for PyPy3.

  • Require 100% branch coverage (in addition to 100% statement coverage).

1.4.3 (2014-03-20)

  • Add support for Python 3.4.

1.4.2 (skipped)

  • Released in error as 1.4.3.

1.4.1 (2013-02-20)

  • Document that values returned by sortKey must be strings, in order to guarantee total ordering.

  • Fix occasional RuntimeError: dictionary changed size during iteration errors in transaction.weakset on Python 3.

1.4.0 (2013-01-03)

  • Updated Trove classifiers.

1.4.0b1 (2012-12-18)

  • Converted existing doctests into Sphinx documentation (snippets are exercised via ‘tox’).

  • 100% unit test coverage.

  • Backward incompatibility: raise ValueError rather than AssertionError for runtime errors:

    • In Transaction.doom if the transaction is in a non-doomable state.

    • In TransactionManager.attempts if passed a non-positive value.

    • In TransactionManager.free if passed a foreign transaction.

  • Declared support for Python 3.3 in setup.py, and added tox testing.

  • When a non-retryable exception was raised as the result of a call to transaction.manager.commit within the “attempts” machinery, the exception was not reraised properly. Symptom: an unrecoverable exception such as Unsupported: Storing blobs in <somestorage> is not supported. would be swallowed inappropriately.

1.3.0 (2012-05-16)

  • Added Sphinx API docuementation.

  • Added explicit support for PyPy.

  • Dropped use of Python3-impatible zope.interface.implements class advisor in favor of zope.interface.implementer class decorator.

  • Added support for continuous integration using tox and jenkins.

  • Added setup.py docs alias (installs Sphinx and dependencies).

  • Added setup.py dev alias (runs setup.py develop plus installs nose and coverage).

  • Python 3.3 compatibility.

  • Fix “for attempt in transaction.attempts(x)” machinery, which would not retry a transaction if its implicit call to .commit() itself raised a transient error. Symptom: seeing conflict errors even though you thought you were retrying some number of times via the “attempts” machinery (the first attempt to generate an exception during commit would cause that exception to be raised).

1.2.0 (2011-12-05)

New Features:

  • Python 3.2 compatibility.

  • Dropped Python 2.4 and 2.5 compatibility (use 1.1.1 if you need to use “transaction” under these Python versions).

1.1.1 (2010-09-16)

Bug Fixes:

  • Code in _transaction.py held on to local references to traceback objects after calling sys.exc_info() to get one, causing potential reference leakages.

  • Fixed hexlify NameError in transaction._transaction.oid_repr and add test.

1.1.0 (1010-05-12)

New Features:

  • Transaction managers and the transaction module can be used with the with statement to define transaction boundaries, as in:

    with transaction:
        ... do some things ...

    See transaction/tests/convenience.txt for more details.

  • There is a new iterator function that automates dealing with transient errors (such as ZODB confict errors). For example, in:

    for attempt in transaction.attempts(5):
        with attempt:
            ... do some things ..

    If the work being done raises transient errors, the transaction will be retried up to 5 times.

    See transaction/tests/convenience.txt for more details.

Bugs fixed:

1.0.1 (2010-05-07)

  • LP #142464: remove double newline between log entries: it makes doing smarter formatting harder.

  • Updated tests to remove use of deprecated zope.testing.doctest.

1.0.0 (2009-07-24)

  • Fix test that incorrectly relied on the order of a list that was generated from a dict.

  • Remove crufty DEPENDENCIES.cfg left over from zpkg.

1.0a1 (2007-12-18)

= Initial release, branched from ZODB trunk on 2007-11-08 (aka

“3.9.0dev”).

  • Remove (deprecated) support for beforeCommitHook alias to addBeforeCommitHook.

  • Add weakset tests.

  • Remove unit tests that depend on ZODB.tests.utils from test_transaction (these are actually integration tests).

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

transaction-2.0.3.tar.gz (72.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page