Miroslav Bajtoš
fc06d35994
Merge pull request #1083 from strongloop/feature/query-nested-array
...
Support nested queries for arrays
2016-09-07 13:51:57 +02:00
pponugo
a39c0236bb
Support nested queries for arrays
...
Enhance the built-in memory connector to correctly support nested
queries for arrays in addition to objects.
E.g. if "friends" is an array of objects containing "name", then
{ where: { "friends.name": "Jane" } } should match records containing
a friend called "Jane".
2016-09-07 13:33:57 +02:00
Simon Ho
19dae302a2
Merge pull request #1078 from strongloop/forwardport/refactor-ttl-suite
...
Refactor TTL tests for KV memory connector
2016-09-06 16:02:01 -07:00
Simon Ho
095745c93b
Refactor TTL tests for KV memory connector
...
Reduce the complixity in the TTL test suite for the kv-memory connector
to get CI to pass.
2016-09-04 12:27:33 -07:00
Simon Ho
f102f6302b
Merge pull request #1075 from strongloop/forwardport/test-fix-for-expire
...
Fix test case for expire
2016-09-02 16:03:54 -07:00
Amirali Jafarian
d888d758c0
Merge pull request #1073 from strongloop/fix_upsertWithWhere_failures
...
Fix failures of upsertWithWhere
2016-09-02 17:01:43 -04:00
Simon Ho
b884138923
Fix test case for expire
...
Forwardport of #1074 . #1072 was missing Promise.resolve before using
delay(20) and causing Travis to fail on 2.x. This PR makes the test code
consistent on both master and 2.x.
2016-09-02 13:59:44 -07:00
Simon Ho
68294babdb
Merge pull request #1072 from strongloop/bug/remove-expired-items-before-executing-expire
...
Remove expired items before executing expire
2016-09-02 13:17:44 -07:00
Amir Jafarian
581b8c61bf
Fix failures of upsertWithWhere
...
Forwardport of #1052
2016-09-02 15:46:36 -04:00
Simon Ho
96cd8ff56b
Remove expired item before executing expire
...
The expire feature is falsely returning 204 instead of 404 because it is
not removing expired items before execution.
2016-09-01 21:18:40 -07:00
Amirali Jafarian
72200ce935
Merge pull request #1068 from strongloop/turn_offf_strict
...
Disable `strict` for a few files
2016-08-26 10:21:31 -04:00
Amir Jafarian
2830062259
Disable `strict` for a few files
...
*Disable `strict` for a few files to disappear warnings
2016-08-26 09:54:31 -04:00
Miroslav Bajtoš
f816e52ac5
3.0.0-alpha.7
...
* test/memory: remove dummy findOrCreate impl (Miroslav Bajtoš)
* Fix CI introduced by `use strict` (Amir Jafarian)
* Fix manually (Amir Jafarian)
* Auto-update by eslint --fix (Amir Jafarian)
* Update eslint (Amir Jafarian)
* kvao: implement key filter (Miroslav Bajtoš)
* kvao: add iterateKeys() and keys() (Miroslav Bajtoš)
* Globalize KeyValue Memory connector (Simon Ho)
* upsertWithWhere feature support in juggler DAO (Sonali Samantaray)
* Fix typo (Amir Jafarian)
* Rename get test suite to match other test suites (Simon Ho)
* Add TTL for KeyValue related features (Simon Ho)
2016-08-26 10:09:27 +02:00
Miroslav Bajtoš
d818168c05
Merge pull request #1063 from strongloop/cleanup/memory-test
...
test/memory: remove dummy findOrCreate impl
2016-08-26 09:52:28 +02:00
Miroslav Bajtoš
6d3ea21c16
test/memory: remove dummy findOrCreate impl
...
Let the operation-hook tests use the real implementation,
now that we have it in place.
2016-08-26 09:46:59 +02:00
Amirali Jafarian
4ce8f97b15
Merge pull request #1064 from strongloop/fix_strict
...
Fix CI introduced by `use strict`
2016-08-25 10:25:54 -04:00
Amir Jafarian
c17a490708
Fix CI introduced by `use strict`
2016-08-25 09:49:02 -04:00
Amirali Jafarian
fc9b9806c8
Merge pull request #1062 from strongloop/update_eslint
...
Update eslint
2016-08-24 15:55:08 -04:00
Amir Jafarian
aec678d252
Fix manually
2016-08-22 19:20:12 -04:00
Amir Jafarian
aa6d28268b
Auto-update by eslint --fix
2016-08-22 15:12:25 -04:00
Amir Jafarian
df18af9ba0
Update eslint
2016-08-22 15:12:25 -04:00
Simon Ho
5b46484277
Merge pull request #1056 from strongloop/globalize-kv-mem-connector
...
Globalize KeyValue Memory connector
2016-08-19 12:58:31 -07:00
Miroslav Bajtoš
b3907caad2
Merge pull request #1049 from strongloop/feature/kvao-iterate-keys
...
kvao: add iterateKeys() and keys()
2016-08-18 10:29:45 +02:00
Miroslav Bajtoš
3b653a192b
kvao: implement key filter
2016-08-18 09:59:56 +02:00
Miroslav Bajtoš
01ce7df60f
kvao: add iterateKeys() and keys()
...
Add a core implementation of KVAO.iterateKeys() which returns an
AsyncIterator, inspired by
- https://github.com/tc39/proposal-async-iteration
- https://www.npmjs.com/package/async-iterators
This way we can safely iterate even large sets of data.
Also add KVAO.keys(), a sugar API converting the result of iterateKeys()
into a single array.
2016-08-18 09:59:56 +02:00
Simon Ho
8b28cb3993
Globalize KeyValue Memory connector
2016-08-17 18:22:17 -07:00
Amir-61
56aeeebfb0
Merge pull request #1001 from mountain1234585/upsertNPK
...
upsertWithWhere method
2016-08-16 11:50:43 -04:00
Sonali Samantaray
37541dd178
upsertWithWhere feature support in juggler DAO
2016-08-16 18:06:01 +05:30
Miroslav Bajtoš
552f50bdf1
Merge pull request #1047 from strongloop/fix-kvao-get-suite-name
...
Rename get test suite to match other test suites
2016-08-16 09:14:18 +02:00
Amir-61
48370fd6a5
Merge pull request #1048 from strongloop/typo
...
Fix typo
2016-08-15 21:52:52 -04:00
Amir Jafarian
62649b3915
Fix typo
2016-08-15 21:51:36 -04:00
Simon Ho
e1a649ed58
Rename get test suite to match other test suites
2016-08-15 11:13:07 -07:00
Simon Ho
827f03a45c
Merge pull request #1030 from strongloop/ttl
...
Ttl
2016-08-12 12:59:28 -07:00
Simon Ho
1c20cc83aa
Add TTL for KeyValue related features
2016-08-11 17:12:36 -07:00
Miroslav Bajtoš
d7cf478b52
3.0.0-alpha.6
...
* Return error if the connector does not implement (Amir Jafarian)
* kv-memory: fix crash in regular cleanup (Miroslav Bajtoš)
* test/relation: add missing error handlers (Miroslav Bajtoš)
* forceId=true with auto-increment db (jannyHou)
* Fixup globalization (Amir Jafarian)
* kvao: return 404 when expiring unknown key (Miroslav Bajtoš)
* Implement KeyValue API and memory connector (Miroslav Bajtoš)
* Disallow bulk updateOrCreate. (Richard Pringle)
* Update globalization (Amir Jafarian)
* Use g.f instead of utils.format (Amir Jafarian)
* Optimize related model queries (Horia Radu)
* Support for globalization (Amir Jafarian)
* Update include.js (Rand McKinney)
* Fix test case typo (Supasate Choochaisri)
* Remove unused variables in model.js (Amir Jafarian)
* Declare `definition` (Amir Jafarian)
* Add test to catch invalid date property (Supasate Choochaisri)
* Update URLs in CONTRIBUTING.md (#1002 ) (Ryan Graham)
* Ensure stable order of items in DAO.find() (Miroslav Bajtoš)
* Add test for updateOrCreate (Amir Jafarian)
* Update validations.js (Rand McKinney)
* Remove DataSource.registerType() (gunjpan)
* give options to validators #984 (RobinBiondi)
* Throw Error for property names with dots (gunjpan)
* Update datasource.js (Ritchie Martori)
2016-08-11 13:19:54 +02:00
Miroslav Bajtoš
b01df10eae
Merge pull request #1039 from strongloop/fix/kv-memory-reference-error
...
kv-memory: fix crash in regular cleanup
2016-08-10 14:18:11 +02:00
Amir-61
1e57d4f316
Merge pull request #1034 from strongloop/err_connector_not_implements_replaceById
...
Return error if the connector does not implement
2016-08-09 14:01:58 -04:00
Amir-61
954c0df0c6
Merge pull request #1035 from strongloop/globalization_fixup
...
Fixup globalization
2016-08-09 10:44:06 -04:00
Amir Jafarian
327c785347
Return error if the connector does not implement
...
* Return error if the connector does not implement `replaceById`
2016-08-09 10:37:15 -04:00
Janny
c4b2921977
Merge pull request #982 from strongloop/fix/auto-increment-db
...
forceId=true with auto-increment db
2016-08-09 10:02:36 -04:00
Miroslav Bajtoš
4978cd8089
kv-memory: fix crash in regular cleanup
...
Fix bug in "_setupRegularCleanup()" where the interval callback
was trying to access an object that has been garbage-collected
in the meantime.
2016-08-09 15:35:23 +02:00
Miroslav Bajtoš
8e81185375
Merge pull request #1033 from strongloop/fix/kvao-expire-error-status-code
...
KeyValueAccessObject: return 404 when expiring unknown key
2016-08-09 10:46:37 +02:00
Miroslav Bajtoš
baec1b5b77
test/relation: add missing error handlers
2016-08-08 16:26:26 -04:00
jannyHou
8935b978f3
forceId=true with auto-increment db
2016-08-08 16:26:26 -04:00
Amir Jafarian
d181fd0671
Fixup globalization
2016-08-08 15:34:41 -04:00
Miroslav Bajtoš
9ced20fdcc
kvao: return 404 when expiring unknown key
2016-08-08 17:22:33 +02:00
Miroslav Bajtoš
83a2826a59
Merge pull request #1023 from strongloop/kv-memory
...
KeyValue access object + memory connector
2016-08-08 14:43:32 +02:00
Miroslav Bajtoš
f15b4e2c86
Implement KeyValue API and memory connector
...
Models attached to a KeyValue connector get the following *static*
methods:
Color.set(key, value);
Color.set(key, value, ttl);
Color.set(key, value, { ttl: ttl });
Color.get(key);
Color.expire(key, ttl);
2016-08-08 10:15:34 +02:00
Miroslav Bajtoš
e3b6b7891c
Merge pull request #889 from strongloop/PUT-bulk-update
...
[SEMVER-MAJOR] Disallow bulk updateOrCreate.
2016-08-05 13:33:55 +02:00
Richard Pringle
0b62dd94ea
Disallow bulk updateOrCreate.
2016-08-05 11:54:06 +02:00