@feathersjs/memory 5.0.0-pre.16 → 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 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.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
+
6
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)
7
15
 
8
16
  **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,7 +1,6 @@
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)
6
5
 
7
6
  A [Feathers](https://feathersjs.com) service adapter for in-memory data storage that works on all platforms.
@@ -92,6 +91,6 @@ Run the example with `node app` and go to [localhost:3030/messages](http://local
92
91
 
93
92
  ## License
94
93
 
95
- Copyright (c) 2021 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
94
+ Copyright (c) 2022 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
96
95
 
97
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.16",
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.16",
50
- "@feathersjs/commons": "^5.0.0-pre.16",
51
- "@feathersjs/errors": "^5.0.0-pre.16",
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
52
  "sift": "^15.1.3"
53
53
  },
54
54
  "devDependencies": {
55
- "@feathersjs/adapter-tests": "^5.0.0-pre.16",
56
- "@feathersjs/feathers": "^5.0.0-pre.16",
57
- "@types/mocha": "^9.0.0",
58
- "@types/node": "^17.0.5",
59
- "mocha": "^9.1.3",
60
- "shx": "^0.3.3",
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
61
  "ts-node": "^10.4.0",
62
- "typescript": "^4.5.4"
62
+ "typescript": "^4.5.5"
63
63
  },
64
- "gitHead": "f0cd227a82d159b528193bd33747c97684a48773"
64
+ "gitHead": "d828748e57b40abfaa15710663afed417de14a1d"
65
65
  }