Socket
Socket
Sign inDemoInstall

@feathersjs/adapter-tests

Package Overview
Dependencies
0
Maintainers
4
Versions
94
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.5.11 to 5.0.0-beta.0

28

CHANGELOG.md

@@ -6,2 +6,30 @@ # Change Log

# [5.0.0-beta.0](https://github.com/feathersjs/databases/compare/v5.0.0-pre.1...v5.0.0-beta.0) (2021-03-28)
### Features
* **core:** Remove Uberproto ([#2178](https://github.com/feathersjs/databases/issues/2178)) ([ddf8821](https://github.com/feathersjs/databases/commit/ddf8821f53317e6a378657f7d66acb03a037ee47))
### BREAKING CHANGES
* **core:** Services no longer extend Uberproto objects and
`service.mixin()` is no longer available.
# [5.0.0-pre.1](https://github.com/feathersjs/databases/compare/v4.5.11...v5.0.0-pre.1) (2020-12-17)
### Features
* **memory:** Move feathers-memory into @feathersjs/adapter-memory ([#2153](https://github.com/feathersjs/databases/issues/2153)) ([dd61fe3](https://github.com/feathersjs/databases/commit/dd61fe371fb0502f78b8ccbe1f45a030e31ecff6))
## [4.5.11](https://github.com/feathersjs/databases/compare/v4.5.10...v4.5.11) (2020-12-05)

@@ -8,0 +36,0 @@

2

lib/index.d.ts
declare const adapterTests: (testNames: string[]) => (app: any, errors: any, serviceName: any, idProp?: string) => void;
export default adapterTests;
export = adapterTests;

@@ -5,4 +5,3 @@ "use strict";

};
Object.defineProperty(exports, "__esModule", { value: true });
/* tslint:disable:no-console */
/* eslint-disable no-console */
const basic_1 = __importDefault(require("./basic"));

@@ -46,6 +45,3 @@ const methods_1 = __importDefault(require("./methods"));

};
exports.default = adapterTests;
if (typeof module !== 'undefined') {
module.exports = adapterTests;
}
module.exports = adapterTests;
//# sourceMappingURL=index.js.map

@@ -436,3 +436,3 @@ "use strict";

before(() => {
throwing = app.service(serviceName).extend({
throwing = Object.assign(Object.create(app.service(serviceName)), {
get store() {

@@ -439,0 +439,0 @@ return app.service(serviceName).store;

{
"name": "@feathersjs/adapter-tests",
"version": "4.5.11",
"version": "5.0.0-beta.0",
"description": "Feathers shared database adapter test suite",

@@ -28,3 +28,3 @@ "homepage": "https://feathersjs.com",

"engines": {
"node": ">= 10"
"node": ">= 12"
},

@@ -35,3 +35,3 @@ "main": "lib/index.js",

"compile": "shx rm -rf lib/ && tsc",
"test": "mocha --config ../../.mocharc.ts.json --recursive test/**.test.ts test/**/*.test.ts"
"test": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
},

@@ -52,9 +52,9 @@ "directories": {

"devDependencies": {
"@types/node": "^14.14.10",
"mocha": "^8.2.1",
"@types/node": "^14.14.37",
"mocha": "^8.3.2",
"shx": "^0.3.3",
"ts-node": "^9.1.0",
"typescript": "^4.1.2"
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"gitHead": "de0526849eb36ab6ef19ef1764e0d9e0a6ccbd81"
"gitHead": "3b953f85cc1c2184a032bebac302f8de8a2f0d4d"
}

@@ -1,2 +0,2 @@

/* tslint:disable:no-console */
/* eslint-disable no-console */
import basicTests from './basic';

@@ -49,6 +49,2 @@ import methodTests from './methods';

export default adapterTests;
if (typeof module !== 'undefined') {
module.exports = adapterTests;
}
export = adapterTests;

@@ -542,3 +542,3 @@ import assert from 'assert';

before(() => {
throwing = app.service(serviceName).extend({
throwing = Object.assign(Object.create(app.service(serviceName)), {
get store () {

@@ -545,0 +545,0 @@ return app.service(serviceName).store;

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc