forked from benoitc/couchbeam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
27 lines (22 loc) · 1.11 KB
/
NEWS
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
couchbeam NEWS
--------------
version 0.7.0 / 2011-07-05
--------------------------
This release contains backwards incompatible changes.
* New and more efficient couchbeam_changes API, we now parse json
stream instead of the try catch steps we used before.
* New and more efficient couchbeam_view API. we now parse json
stream instead of getting all results. New couchbeam_view:stream and
couchbeam_view fetch functions have been added. We also don't use
any more a view record in other functions
* HTTP functions have been moved to couchbeam_httpc modules
* gen_changes behaviour has been updated to use the couchbeam_changes
API. It's also abble to restart a lost connection for longpoll and
continuous feeds.
Breaking Changes:
* couchbeam:view and couchbeam:all_docs have been deprecated. Old views
functions using the #view{} record from these functions have been
moved in couchbeam_oldview module.
* couchbeam:wait_changes, couchbeam:wait_changes_once,
couchbeam:changes functions have been deprecated and are now replaced
by couchbeam_changes:stream and couchbeam_changes:fetch functions.