hbase-jruby 0.2.6-java → 0.3.0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG.md CHANGED
@@ -1,6 +1,22 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 0.3.0
5
+ -----
6
+ - Easier data access with table schema
7
+ - `HBase::Table#schema=` method to provide the schema of the table
8
+ - You can omit column family names on predefined columns
9
+ - Automatic type conversion for known columns
10
+ - *0.3.0 brings many backward-incompatible changes*
11
+ - *`Row#to_hash` and `Row#to_hash_with_versions` are now deprecated*. Use `to_h` and `to_H` instead without arguments.
12
+ - Default parameters for `HBase::Row#rowkey` and `HBase::Cell#rowkey` are now `:raw` instead of `:string`.
13
+ - `HBase::ColumnKey` is removed. Use plain 2-element Arrays instead.
14
+ - Enumerable classes (Table, Scoped, Row, ByteArray) now return Enumerator on each method when block not given
15
+ - `Cell#value` can now return the correct data type if defined in the schema. For Java byte array, use `Cell#raw`.
16
+ - `Row#[type|types]` methods no more take Array of columns as arguments
17
+ - Added `HBase::Table#scoped` method to return `HBase::Scoped` object for the table
18
+ - Added `HBase::Cell#{eql?,hash}` method for equaility check
19
+
4
20
  0.2.6
5
21
  -----
6
22
  - Fixed `HBase::Scoped#filter` method to take short integer (byte, short, int) values