@feathersjs/memory 5.0.0-pre.11 → 5.0.0-pre.17
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 +48 -0
- package/LICENSE +1 -1
- package/README.md +3 -3
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,54 @@
|
|
|
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.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @feathersjs/memory
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [5.0.0-pre.16](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.15...v5.0.0-pre.16) (2022-01-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @feathersjs/memory
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [5.0.0-pre.15](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.14...v5.0.0-pre.15) (2021-11-27)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @feathersjs/memory
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# [5.0.0-pre.14](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.13...v5.0.0-pre.14) (2021-10-13)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @feathersjs/memory
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
# [5.0.0-pre.13](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.12...v5.0.0-pre.13) (2021-10-13)
|
|
39
|
+
|
|
40
|
+
**Note:** Version bump only for package @feathersjs/memory
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
# [5.0.0-pre.12](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.11...v5.0.0-pre.12) (2021-10-12)
|
|
47
|
+
|
|
48
|
+
**Note:** Version bump only for package @feathersjs/memory
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
6
54
|
# [5.0.0-pre.11](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.10...v5.0.0-pre.11) (2021-10-06)
|
|
7
55
|
|
|
8
56
|
**Note:** Version bump only for package @feathersjs/memory
|
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# @feathersjs/memory
|
|
2
2
|
|
|
3
3
|
[](https://github.com/feathersjs/feathers/actions?query=workflow%3ACI)
|
|
4
|
-
[](https://david-dm.org/feathersjs/feathers?path=packages/memory)
|
|
5
4
|
[](https://www.npmjs.com/package/@feathersjs/memory)
|
|
6
5
|
|
|
7
6
|
A [Feathers](https://feathersjs.com) service adapter for in-memory data storage that works on all platforms.
|
|
@@ -33,7 +32,8 @@ __Options:__
|
|
|
33
32
|
- `store` (*optional*) - An object with id to item assignments to pre-initialize the data store
|
|
34
33
|
- `events` (*optional*) - A list of [custom service events](https://docs.feathersjs.com/api/events.html#custom-events) sent by this service
|
|
35
34
|
- `paginate` (*optional*) - A [pagination object](https://docs.feathersjs.com/api/databases/common.html#pagination) containing a `default` and `max` page size
|
|
36
|
-
- `whitelist` (*
|
|
35
|
+
- `whitelist` (*DEPRECATED*) - renamed to `allow`
|
|
36
|
+
- `allow` (*optional*) - A list of additional query parameters to allow
|
|
37
37
|
- `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
38
|
|
|
39
39
|
## Example
|
|
@@ -91,6 +91,6 @@ Run the example with `node app` and go to [localhost:3030/messages](http://local
|
|
|
91
91
|
|
|
92
92
|
## License
|
|
93
93
|
|
|
94
|
-
Copyright (c)
|
|
94
|
+
Copyright (c) 2022 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
|
|
95
95
|
|
|
96
96
|
Licensed under the [MIT license](LICENSE).
|
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.17",
|
|
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.17",
|
|
50
|
+
"@feathersjs/commons": "^5.0.0-pre.17",
|
|
51
|
+
"@feathersjs/errors": "^5.0.0-pre.17",
|
|
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.
|
|
57
|
-
"@types/mocha": "^9.
|
|
58
|
-
"@types/node": "^
|
|
59
|
-
"mocha": "^9.
|
|
60
|
-
"shx": "^0.3.
|
|
61
|
-
"ts-node": "^10.
|
|
62
|
-
"typescript": "^4.
|
|
55
|
+
"@feathersjs/adapter-tests": "^5.0.0-pre.17",
|
|
56
|
+
"@feathersjs/feathers": "^5.0.0-pre.17",
|
|
57
|
+
"@types/mocha": "^9.1.0",
|
|
58
|
+
"@types/node": "^17.0.15",
|
|
59
|
+
"mocha": "^9.2.0",
|
|
60
|
+
"shx": "^0.3.4",
|
|
61
|
+
"ts-node": "^10.4.0",
|
|
62
|
+
"typescript": "^4.5.5"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "d828748e57b40abfaa15710663afed417de14a1d"
|
|
65
65
|
}
|