-
Notifications
You must be signed in to change notification settings - Fork 10
/
RELEASE_NOTES.txt
31 lines (24 loc) · 944 Bytes
/
RELEASE_NOTES.txt
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
Release 0.2.0:
===============
Focus on API cleanup and better configurability.
* Reworked the query API
* QueryOpts usage was a bit clumsy, so it is no longer exposed as a
parameter in the query API. Instead, it's used internally to consolidate
settings, but the query instance functions more as a builder:
Query with start and end keys:
Query q = service.query();
q.start( startkey )
.where( Criteria.eq( 'prop', value ) )
.where( Criteria.eq( 'prop2', value2 ) )
.stop( endkey );
q.execute();
or for an indexed query:
Query q = service.query();
q.using( Criteria.eq( 'idxprop', value ) )
.where( Criteria.gt( 'prop2', minvalue ) );
q.execute();
* Fix javadoc build target for generating API documentation [Erich Nachbar]
* Throw meetup.beeno.MappingException on bad property name in criteria for Query.using() [Erich Nachbar]
Release 0.1.0:
===============
Initial code release.