summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWouter Bolsterlee <uws@xs4all.nl>2014-01-25 21:56:21 +0100
committerWouter Bolsterlee <uws@xs4all.nl>2014-01-25 21:56:21 +0100
commit91e0f8afac4ed3aeef3c0a79ae69b5df744ba45b (patch)
treee54aadc08b7285e9978f6261e7e0343c81420697
parentde89975cbce50c7515a70fb226630917f1c40c6e (diff)
downloadhappybase-91e0f8afac4ed3aeef3c0a79ae69b5df744ba45b.tar.gz
Update NEWS
-rw-r--r--NEWS.rst14
1 files changed, 9 insertions, 5 deletions
diff --git a/NEWS.rst b/NEWS.rst
index 6fd875c..ba445dd 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -9,10 +9,14 @@ HappyBase 0.8
Release date: *not yet released*
-* Add support for retrieving sorted columns, which is possible with the
- HBase 0.96 Thrift API. This feature uses a new `sorted_columns` argument
- to :py:meth:`Table.scan` (`issue #39
- <https://github.com/wbolster/happybase/issues/39>`_).
+* Add (and default to) '0.96' compatibility mode in :py:class:`Connection`.
+
+* Add support for retrieving sorted columns, which is possible with the HBase
+ 0.96 Thrift API. This feature uses a new `sorted_columns` argument to
+ :py:meth:`Table.scan`. An ```OrderedDict`` implementation is required for this
+ feature; with Python 2.7 this is available from the standard library, but for
+ Python 2.6 a separate ```ordereddict``` pacakge has to be installed from PyPI.
+ (`issue #39 <https://github.com/wbolster/happybase/issues/39>`_)
* Allow `None` as a valid value for the `batch_size` argument to
:py:meth:`Table.scan`, since HBase does not support specifying a batch size
@@ -28,7 +32,7 @@ Release date: 2013-11-06
* Added a `wal` argument to various data manipulation methods on the
:py:class:`Table` and :py:class:`Batch` classes to determine whether to write
the mutation to the Write-Ahead Log (WAL). (`issue #36
- <https://github.com/wbolster/happybase/issues/36>`_).
+ <https://github.com/wbolster/happybase/issues/36>`_)
* Pass batch_size to underlying Thrift Scan instance (`issue #38
<https://github.com/wbolster/happybase/issues/38>`_).