@feathersjs/memory 5.0.0-pre.15 → 5.0.0-pre.18

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 CHANGED
@@ -3,6 +3,33 @@
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.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **adapter-tests:** Add tests for pagination in multi updates ([#2472](https://github.com/feathersjs/feathers/issues/2472)) ([98a811a](https://github.com/feathersjs/feathers/commit/98a811ac605575ff812a08d0504729a5efe7a69c))
12
+
13
+
14
+
15
+
16
+
17
+ # [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)
18
+
19
+ **Note:** Version bump only for package @feathersjs/memory
20
+
21
+
22
+
23
+
24
+
25
+ # [5.0.0-pre.16](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.15...v5.0.0-pre.16) (2022-01-12)
26
+
27
+ **Note:** Version bump only for package @feathersjs/memory
28
+
29
+
30
+
31
+
32
+
6
33
  # [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
34
 
8
35
  **Note:** Version bump only for package @feathersjs/memory
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2021 Feathers
3
+ Copyright (c) 2022 Feathers
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # @feathersjs/memory
2
2
 
3
3
  [![CI](https://github.com/feathersjs/feathers/workflows/CI/badge.svg)](https://github.com/feathersjs/feathers/actions?query=workflow%3ACI)
4
- [![Dependency Status](https://img.shields.io/david/feathersjs/feathers.svg?style=flat-square&path=packages/memory)](https://david-dm.org/feathersjs/feathers?path=packages/memory)
5
4
  [![Download Status](https://img.shields.io/npm/dm/@feathersjs/memory.svg?style=flat-square)](https://www.npmjs.com/package/@feathersjs/memory)
5
+ [![Discord](https://badgen.net/badge/icon/discord?icon=discord&label)](https://discord.gg/qa8kez8QBx)
6
6
 
7
7
  A [Feathers](https://feathersjs.com) service adapter for in-memory data storage that works on all platforms.
8
8
 
@@ -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` (*optional*) - A list of additional query parameters to allow
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
@@ -91,6 +92,6 @@ Run the example with `node app` and go to [localhost:3030/messages](http://local
91
92
 
92
93
  ## License
93
94
 
94
- Copyright (c) 2021 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
95
+ Copyright (c) 2022 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
95
96
 
96
97
  Licensed under the [MIT license](LICENSE).
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@feathersjs/memory",
3
3
  "description": "An in memory service store",
4
- "version": "5.0.0-pre.15",
4
+ "version": "5.0.0-pre.18",
5
5
  "homepage": "https://github.com/feathersjs/feathers",
6
6
  "main": "lib/",
7
+ "types": "lib/",
7
8
  "keywords": [
8
9
  "feathers",
9
10
  "feathers-plugin"
@@ -11,7 +12,8 @@
11
12
  "license": "MIT",
12
13
  "repository": {
13
14
  "type": "git",
14
- "url": "git://github.com/feathersjs/feathers.git"
15
+ "url": "git://github.com/feathersjs/feathers.git",
16
+ "directory": "packages/memory"
15
17
  },
16
18
  "author": {
17
19
  "name": "Feathers contributors",
@@ -36,8 +38,7 @@
36
38
  "scripts": {
37
39
  "prepublish": "npm run compile",
38
40
  "compile": "shx rm -rf lib/ && tsc",
39
- "test": "npm run compile && npm run mocha",
40
- "mocha": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
41
+ "test": "mocha --config ../../.mocharc.json --recursive test/**/*.test.ts"
41
42
  },
42
43
  "publishConfig": {
43
44
  "access": "public"
@@ -46,20 +47,20 @@
46
47
  "lib": "lib"
47
48
  },
48
49
  "dependencies": {
49
- "@feathersjs/adapter-commons": "^5.0.0-pre.15",
50
- "@feathersjs/commons": "^5.0.0-pre.15",
51
- "@feathersjs/errors": "^5.0.0-pre.15",
52
- "sift": "^15.0.0"
50
+ "@feathersjs/adapter-commons": "^5.0.0-pre.18",
51
+ "@feathersjs/commons": "^5.0.0-pre.18",
52
+ "@feathersjs/errors": "^5.0.0-pre.18",
53
+ "sift": "^16.0.0"
53
54
  },
54
55
  "devDependencies": {
55
- "@feathersjs/adapter-tests": "^5.0.0-pre.15",
56
- "@feathersjs/feathers": "^5.0.0-pre.15",
57
- "@types/mocha": "^9.0.0",
58
- "@types/node": "^16.11.6",
59
- "mocha": "^9.1.3",
60
- "shx": "^0.3.3",
61
- "ts-node": "^10.4.0",
62
- "typescript": "^4.4.4"
56
+ "@feathersjs/adapter-tests": "^5.0.0-pre.18",
57
+ "@feathersjs/feathers": "^5.0.0-pre.18",
58
+ "@types/mocha": "^9.1.0",
59
+ "@types/node": "^17.0.23",
60
+ "mocha": "^9.2.2",
61
+ "shx": "^0.3.4",
62
+ "ts-node": "^10.7.0",
63
+ "typescript": "^4.6.3"
63
64
  },
64
- "gitHead": "8008bf4f8529a2a40b6a2f976c1f43ae13675693"
65
+ "gitHead": "c0b7b67d872dcd6b6d94e4587f21332c8a519b50"
65
66
  }