Skip to content

Commit

Permalink
Include historical change notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Jun 22, 2016
1 parent 51f9653 commit ea7db5b
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 18 deletions.
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@ Other Enhancements
:mod:`optparse` for command line handling.


1.6.0 (2016-06-09)
==================

- Tests: Use the standard library doctest module for compatibility
with newer zope.testing releases.

1.6.0b3 (2014-12-08)
====================

Expand Down Expand Up @@ -506,3 +512,5 @@ Other Enhancements

- Fixed minor test failures under Windows. Windows is now a supportable
platform.

Information about older releases can be found :doc:`here <HISTORY>`.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
include MANIFEST.in *.txt *.rst *.py *.patch
recursive-include relstorage *.py *.xml *.txt
recursive-include doc *.py *.rst
38 changes: 20 additions & 18 deletions HISTORY.txt → doc/HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
====================
Historical Changes
====================

1.1.3 (2009-02-04)
------------------
==================

- In rare circumstances, ZODB can legitimately commit an object twice in a
single transaction. Fixed RelStorage to accept that.
Expand All @@ -12,7 +15,7 @@


1.1.2 (2009-01-27)
------------------
==================

- When both cache-servers and poll-interval are set, we now poll the
cache for changes on every request. This makes it possible to use
Expand All @@ -36,7 +39,7 @@


1.1.1 (2008-12-27)
------------------
==================

- Worked around MySQL performance bugs in packing. Used temporary
tables and another column in the pack_object table. The
Expand All @@ -47,7 +50,7 @@


1.1 (2008-12-19)
----------------
================

- Normalized poll-invalidation patches as Solaris' patch command would not
accept the current format. The patches now apply with:
Expand Down Expand Up @@ -79,7 +82,7 @@


1.1c1
-----
=====

- Added optional memcache integration. This is useful when the connection
to the relational database has high latency.
Expand All @@ -90,7 +93,7 @@


1.1b2
-----
=====

- Made the MySQL locks database-specific rather than server-wide. This is
important for multi-database configurations.
Expand All @@ -104,7 +107,7 @@


1.1b1
-----
=====

- Fixed the use of setup.py without setuptools. Thanks to Chris Withers.

Expand All @@ -125,8 +128,8 @@
Jim Fulton.


1.0.1
-----
1.0.1 (2008-03-11)
==================

- The speedtest script failed if run on a test database that has no tables.
Now the script creates the tables if needed. Thanks to Flavio Coelho
Expand All @@ -142,14 +145,14 @@
amount of code to maintain.


1.0
---
1.0 (2008-02-29)
================

- Added a utility for converting between storages called zodbconvert.


1.0c1
-----
=====

- The previous fix for non-ASCII characters was incorrect. Now transaction
metadata is stored as raw bytes. A schema migration is required; see
Expand All @@ -159,7 +162,7 @@


1.0 beta
--------
========

- Renamed to reflect expanding database support.

Expand Down Expand Up @@ -211,10 +214,10 @@


PGStorage history
=================
-----------------

0.4
---
===

- Began using the PostgreSQL LISTEN and NOTIFY statements as a shortcut
for invalidation polling.
Expand Down Expand Up @@ -255,13 +258,13 @@ PGStorage history


0.3
---
===

- Made compatible with Zope 3, although an undo bug apparently remains.


0.2
---
===

- Fixed concurrent commits, which were generating deadlocks. Fixed by
adding a special table, "commit_lock", which is used for
Expand All @@ -276,4 +279,3 @@ PGStorage history
and writing a lot of small transactions, while FileStorage / ZEO
wins at writing big transactions. Interestingly, they tie when
writing a RAM disk.

1 change: 1 addition & 0 deletions doc/contents.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Contents:
faq
migration
changelog
HISTORY



Expand Down
2 changes: 2 additions & 0 deletions doc/relstorage-options.rst
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,8 @@ cache-servers

The default is to disable memcached integration.

.. versionadded:: 1.1rc1

cache-module-name
Specifies which Python memcache module to use. The default is
"relstorage.pylibmc_wrapper", which requires pylibmc. An
Expand Down

0 comments on commit ea7db5b

Please sign in to comment.