Releases: pofider/node-simple-odata-server
Releases · pofider/node-simple-odata-server
1.2.0
- add support to
ne
- fix issue with get by _id
- use setHeader instead of the writeHead
- implement
ge
and le
filters
1.1.0
- implemented filtering support for nested props
$filter=a/b eq 'c'
1.0.1
- fixed path to the $count get request, now it doesn't need to end with slash
1.0.0
Breaking changes
mongo and nedb adapters are now extracted into separate repositories.
See updated sample
the odataServer update, query, remove, insert
hooks now accepts the original http request object as parameter before callback. See configuration.
Fix cors #31
0.3.2
- use better test for ObjectId recognition in mongo driver
0.3.1
- fixed setting invalid status codes to http responses
0.3.0
- #24
- cors configuration
- standard linting
- updated dependencies
0.2.0
- extend listeners with original http request parameter
.beforeQuery(fn(setName, query, req, cb))
.beforeUpdate(fn(setName, query, req, update))
.beforeInsert(fn(setName, doc, req, cb))
.beforeRemove(fn(setName, query, req, cb))