@feathersjs/memory 5.0.0-pre.15 → 5.0.0-pre.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/README.md +2 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [5.0.0-pre.16](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.15...v5.0.0-pre.16) (2022-01-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @feathersjs/memory
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [5.0.0-pre.15](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.14...v5.0.0-pre.15) (2021-11-27)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @feathersjs/memory
|
package/README.md
CHANGED
|
@@ -33,7 +33,8 @@ __Options:__
|
|
|
33
33
|
- `store` (*optional*) - An object with id to item assignments to pre-initialize the data store
|
|
34
34
|
- `events` (*optional*) - A list of [custom service events](https://docs.feathersjs.com/api/events.html#custom-events) sent by this service
|
|
35
35
|
- `paginate` (*optional*) - A [pagination object](https://docs.feathersjs.com/api/databases/common.html#pagination) containing a `default` and `max` page size
|
|
36
|
-
- `whitelist` (*
|
|
36
|
+
- `whitelist` (*DEPRECATED*) - renamed to `allow`
|
|
37
|
+
- `allow` (*optional*) - A list of additional query parameters to allow
|
|
37
38
|
- `multi` (*optional*) - Allow `create` with arrays and `update` and `remove` with `id` `null` to change multiple items. Can be `true` for all methods or an array of allowed methods (e.g. `[ 'remove', 'create' ]`)
|
|
38
39
|
|
|
39
40
|
## Example
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feathersjs/memory",
|
|
3
3
|
"description": "An in memory service store",
|
|
4
|
-
"version": "5.0.0-pre.
|
|
4
|
+
"version": "5.0.0-pre.16",
|
|
5
5
|
"homepage": "https://github.com/feathersjs/feathers",
|
|
6
6
|
"main": "lib/",
|
|
7
7
|
"keywords": [
|
|
@@ -46,20 +46,20 @@
|
|
|
46
46
|
"lib": "lib"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@feathersjs/adapter-commons": "^5.0.0-pre.
|
|
50
|
-
"@feathersjs/commons": "^5.0.0-pre.
|
|
51
|
-
"@feathersjs/errors": "^5.0.0-pre.
|
|
52
|
-
"sift": "^15.
|
|
49
|
+
"@feathersjs/adapter-commons": "^5.0.0-pre.16",
|
|
50
|
+
"@feathersjs/commons": "^5.0.0-pre.16",
|
|
51
|
+
"@feathersjs/errors": "^5.0.0-pre.16",
|
|
52
|
+
"sift": "^15.1.3"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@feathersjs/adapter-tests": "^5.0.0-pre.
|
|
56
|
-
"@feathersjs/feathers": "^5.0.0-pre.
|
|
55
|
+
"@feathersjs/adapter-tests": "^5.0.0-pre.16",
|
|
56
|
+
"@feathersjs/feathers": "^5.0.0-pre.16",
|
|
57
57
|
"@types/mocha": "^9.0.0",
|
|
58
|
-
"@types/node": "^
|
|
58
|
+
"@types/node": "^17.0.5",
|
|
59
59
|
"mocha": "^9.1.3",
|
|
60
60
|
"shx": "^0.3.3",
|
|
61
61
|
"ts-node": "^10.4.0",
|
|
62
|
-
"typescript": "^4.
|
|
62
|
+
"typescript": "^4.5.4"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "f0cd227a82d159b528193bd33747c97684a48773"
|
|
65
65
|
}
|