@feathersjs/memory 5.0.0-pre.17 → 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +1 -0
  3. package/package.json +16 -15
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
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
+
6
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)
7
18
 
8
19
  **Note:** Version bump only for package @feathersjs/memory
package/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  [![CI](https://github.com/feathersjs/feathers/workflows/CI/badge.svg)](https://github.com/feathersjs/feathers/actions?query=workflow%3ACI)
4
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)
5
6
 
6
7
  A [Feathers](https://feathersjs.com) service adapter for in-memory data storage that works on all platforms.
7
8
 
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.17",
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.17",
50
- "@feathersjs/commons": "^5.0.0-pre.17",
51
- "@feathersjs/errors": "^5.0.0-pre.17",
52
- "sift": "^15.1.3"
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.17",
56
- "@feathersjs/feathers": "^5.0.0-pre.17",
56
+ "@feathersjs/adapter-tests": "^5.0.0-pre.18",
57
+ "@feathersjs/feathers": "^5.0.0-pre.18",
57
58
  "@types/mocha": "^9.1.0",
58
- "@types/node": "^17.0.15",
59
- "mocha": "^9.2.0",
59
+ "@types/node": "^17.0.23",
60
+ "mocha": "^9.2.2",
60
61
  "shx": "^0.3.4",
61
- "ts-node": "^10.4.0",
62
- "typescript": "^4.5.5"
62
+ "ts-node": "^10.7.0",
63
+ "typescript": "^4.6.3"
63
64
  },
64
- "gitHead": "d828748e57b40abfaa15710663afed417de14a1d"
65
+ "gitHead": "c0b7b67d872dcd6b6d94e4587f21332c8a519b50"
65
66
  }