- Change visibility of
QueryBuilder::new()
andQueryBuilder::to_string()
to avoid unintended use
- Use builder pattern in
QueryBuilder
[#1]
- Make
Client::with_base_url()
a method instead of a constructor [#3] - Change visibility of
Client::read_by_id()
andClient::read_by_query()
(accidently exposed in past versions) [#2]
- Support bulk
CREATE
operation [#9]
- Add
QueryBuilder::and()
for better chaining [#6]
- Remove
to_string
andString
[#10] by @rchaser53
- Add
updated_on
field toMeta
struct [#4]
A version of nearly feature-complete.
- Support filter option (
q
param) forREAD
operation
- Now
Client::read()
returnsQueryBuilder
instance - Use
QueryBuilder::all()
instead ofClient::read_all()
- Use
QueryBuilder::id()
instead ofClient::read()
- Support
sort
,skip
,limit
parameters inREAD
operation
- Update
snafu 0.5.0
(I donn't know why I'm using0.1.9
)
- Fix
Client::read_all()
to return result with meta data