-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathChanges
44 lines (35 loc) · 1.89 KB
/
Changes
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
Change History
================
0.01 May 8, 2012
- initial release
0.02 June 4, 2012
- changes to the way Load Balancing is implemented
- fixes so that get_slice() works properly when the validator is not a composite
- added the ability to manually provide the validation classes
- general bug fixes
- added ability to set a timeout on thrift calls (set timeout => val in object creation)
0.03 June 29, 2012
-serialize and deserialize get_range_slice requests properly
-add logic to get_slice so it properly understands equalities (less_than_equal, equal, or greater_than_equal)
0.04 October 10, 2012
-fixes a bunch of packing and unpacking issues
-returns more meaningful errors (but this could still use work)
-includes a multiget_slice function
-supports column families with metadata and properly figures out what type of validation to use on each column name
-fixes timestamp bug to use microseconds to keep up with changes to cql in 1.1.x releases of cassandra
-fixes unpacking counter columns correctly
0.041 October 10, 2012
-Minor clarification changes to description in documentation as asked by 'Anonymous [[email protected]]'
0.050 January 30, 2013
- Incompatible changes made to CQL3 results. Removed ttl and timestamp columns. Result columns now point directly to the values.
- Makefile now does not do live tests by default, they must now be enabled manually.
0.060 October 17, 2013
- The CQL3 exec call has been changed to use a prepared query underneath.
This means each exec will connect to the cassandra server twice.
- This fixes the issue with CQL 3.0.2 where numeric types were not
being quoted correctly.
- Fix issue with UTF8 related strings
DEV
- Fix issue with encoding certain UTF8 values (Issue #55)
- Update Prereqs to include UUID::Tiny for UUID types
- Fix issue with Cassandra 2.0 and timestamp columns (Issue #57)