From 3931ee6928b6bddad511fe2efa708f3582a9c71d Mon Sep 17 00:00:00 2001 From: David Luecke Date: Mon, 14 Oct 2019 15:04:15 -0700 Subject: [PATCH 1/7] chore: Update version and changelog --- changelog.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/changelog.md b/changelog.md index 5a37de9a6c..c62c297476 100644 --- a/changelog.md +++ b/changelog.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.8](https://github.com/feathersjs/feathers/compare/v4.3.7...v4.3.8) (2019-10-14) + + +### Bug Fixes + +* Remove adapter commons type alternatives ([#1620](https://github.com/feathersjs/feathers/issues/1620)) ([c9f3086](https://github.com/feathersjs/feathers/commit/c9f3086344420b57dbce7c4169cf550c97509f0d)) + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) From 6530b4d084803008394aaf84197dd08321a51a0f Mon Sep 17 00:00:00 2001 From: "greenkeeper[bot]" <23040076+greenkeeper[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2019 18:30:30 -0700 Subject: [PATCH 2/7] chore(package): update @types/config to version 0.0.35 (#1642) --- packages/configuration/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/configuration/package.json b/packages/configuration/package.json index 9eb210575c..9db5163473 100644 --- a/packages/configuration/package.json +++ b/packages/configuration/package.json @@ -49,7 +49,7 @@ "debug": "^4.1.1" }, "devDependencies": { - "@types/config": "^0.0.34", + "@types/config": "^0.0.35", "@types/debug": "^4.1.5", "@types/mocha": "^5.2.7", "@types/node": "^12.7.12", From 9b9b43ff09af1080e4aaa537064bac37b881c9a2 Mon Sep 17 00:00:00 2001 From: David Luecke Date: Fri, 25 Oct 2019 19:09:25 -0700 Subject: [PATCH 3/7] fix: Only initialize default Express session if oAuth is actually used (#1648) --- packages/authentication-oauth/src/express.ts | 8 +++++++- packages/authentication-oauth/src/utils.ts | 8 +------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/authentication-oauth/src/express.ts b/packages/authentication-oauth/src/express.ts index fdc0d480f9..2ef198ee4e 100644 --- a/packages/authentication-oauth/src/express.ts +++ b/packages/authentication-oauth/src/express.ts @@ -1,6 +1,7 @@ // @ts-ignore import { express as grantExpress } from 'grant'; import Debug from 'debug'; +import session from 'express-session'; import { Application } from '@feathersjs/feathers'; import { AuthenticationResult } from '@feathersjs/authentication'; import qs from 'querystring'; @@ -26,10 +27,15 @@ export default (options: OauthSetupSettings) => { } const { path } = config.defaults; + const expressSession = options.expressSession || session({ + secret: Math.random().toString(36).substring(7), + saveUninitialized: true, + resave: true + }); const grantApp = grant(config); const authApp = express(); - authApp.use(options.expressSession); + authApp.use(expressSession); authApp.get('/:name', (req, res) => { const { feathers_token, ...query } = req.query; diff --git a/packages/authentication-oauth/src/utils.ts b/packages/authentication-oauth/src/utils.ts index 5c5a50e63c..847a040d54 100644 --- a/packages/authentication-oauth/src/utils.ts +++ b/packages/authentication-oauth/src/utils.ts @@ -1,21 +1,15 @@ import { RequestHandler } from 'express'; -import session from 'express-session'; import { Application } from '@feathersjs/feathers'; export interface OauthSetupSettings { authService?: string; + expressSession?: RequestHandler; linkStrategy: string; - expressSession: RequestHandler; } export const getDefaultSettings = (_app: Application, other?: Partial) => { const defaults: OauthSetupSettings = { linkStrategy: 'jwt', - expressSession: session({ - secret: Math.random().toString(36).substring(7), - saveUninitialized: true, - resave: true - }), ...other }; From 50162c6e562f0a47c6a280c4f01fff7c3afee293 Mon Sep 17 00:00:00 2001 From: Dmitrii Maganov Date: Sat, 26 Oct 2019 05:29:48 +0300 Subject: [PATCH 4/7] fix: Small type improvements (#1624) --- packages/authentication/src/core.ts | 6 ++---- packages/authentication/src/index.ts | 3 ++- packages/authentication/src/jwt.ts | 4 ++-- packages/authentication/src/service.ts | 16 +++++++++++----- packages/errors/index.d.ts | 16 ++++++++++++++++ packages/express/index.d.ts | 4 ++++ packages/feathers/index.d.ts | 1 + 7 files changed, 38 insertions(+), 12 deletions(-) diff --git a/packages/authentication/src/core.ts b/packages/authentication/src/core.ts index 6811b5b9b3..30004077b1 100644 --- a/packages/authentication/src/core.ts +++ b/packages/authentication/src/core.ts @@ -143,11 +143,9 @@ export class AuthenticationBase { /** * Get the registered authentication strategies for a list of names. - * The return value may contain `undefined` if the strategy does not exist. * @param names The list or strategy names */ getStrategies (...names: string[]) { - // Returns all strategies for a list of names (including undefined) return names.map(name => this.strategies[name]) .filter(current => !!current); } @@ -209,7 +207,7 @@ export class AuthenticationBase { * @param allowed A list of allowed strategy names */ async authenticate (authentication: AuthenticationRequest, params: Params, ...allowed: string[]) { - const { strategy } = authentication || ({} as AuthenticationRequest); + const { strategy } = authentication || {}; const [ authStrategy ] = this.getStrategies(strategy); const strategyAllowed = allowed.includes(strategy); @@ -246,7 +244,7 @@ export class AuthenticationBase { */ async parse (req: IncomingMessage, res: ServerResponse, ...names: string[]) { const strategies = this.getStrategies(...names) - .filter(current => current && typeof current.parse === 'function'); + .filter(current => typeof current.parse === 'function'); debug('Strategies parsing HTTP header for authentication information', names); diff --git a/packages/authentication/src/index.ts b/packages/authentication/src/index.ts index d6e9840c92..06dcc6e7f8 100644 --- a/packages/authentication/src/index.ts +++ b/packages/authentication/src/index.ts @@ -8,7 +8,8 @@ export { AuthenticationBase, AuthenticationRequest, AuthenticationResult, - AuthenticationStrategy + AuthenticationStrategy, + ConnectionEvent } from './core'; export { AuthenticationBaseStrategy } from './strategy'; export { AuthenticationService } from './service'; diff --git a/packages/authentication/src/jwt.ts b/packages/authentication/src/jwt.ts index 9f114d043c..6d40b75252 100644 --- a/packages/authentication/src/jwt.ts +++ b/packages/authentication/src/jwt.ts @@ -38,7 +38,7 @@ export class JWTStrategy extends AuthenticationBaseStrategy { debug('Adding authentication information to connection'); const { exp } = await this.authentication.verifyAccessToken(accessToken); // The time (in ms) until the token expires - const duration = (exp * 1000) - new Date().getTime(); + const duration = (exp * 1000) - Date.now(); // This may have to be a `logout` event but right now we don't want // the whole context object lingering around until the timer is gone const timer = lt.setTimeout(() => this.app.emit('disconnect', connection), duration); @@ -115,12 +115,12 @@ export class JWTStrategy extends AuthenticationBaseStrategy { payload } }; - const entityId = await this.getEntityId(result, params); if (entity === null) { return result; } + const entityId = await this.getEntityId(result, params); const value = await this.getEntity(entityId, params); return { diff --git a/packages/authentication/src/service.ts b/packages/authentication/src/service.ts index d2df469af4..ccff9e7068 100644 --- a/packages/authentication/src/service.ts +++ b/packages/authentication/src/service.ts @@ -1,5 +1,5 @@ import Debug from 'debug'; -import { merge, get } from 'lodash'; +import { merge } from 'lodash'; import { NotAuthenticated } from '@feathersjs/errors'; import { AuthenticationBase, AuthenticationResult, AuthenticationRequest } from './core'; import { connection, event } from './hooks'; @@ -19,8 +19,14 @@ declare module '@feathersjs/feathers' { */ defaultAuthentication (location?: string): AuthenticationService; } + + interface Params { + authenticated?: boolean; + } } +export interface AuthenticationService extends ServiceAddons {} + export class AuthenticationService extends AuthenticationBase implements Partial> { constructor (app: Application, configKey: string = 'authentication', options = {}) { super(app, configKey, options); @@ -58,12 +64,12 @@ export class AuthenticationService extends AuthenticationBase implements Partial async getTokenOptions (authResult: AuthenticationResult, params: Params) { const { service, entity, entityId } = this.configuration; const jwtOptions = merge({}, params.jwtOptions, params.jwt); - const hasEntity = service && entity && authResult[entity]; + const value = service && entity && authResult[entity]; // Set the subject to the entity id if it is available - if (hasEntity && !jwtOptions.subject) { + if (value && !jwtOptions.subject) { const idProperty = entityId || this.app.service(service).id; - const subject = get(authResult, [ entity, idProperty ]); + const subject = value[idProperty]; if (subject === undefined) { throw new NotAuthenticated(`Can not set subject from ${entity}.${idProperty}`); @@ -131,7 +137,7 @@ export class AuthenticationService extends AuthenticationBase implements Partial /** * Validates the service configuration. */ - setup (this: AuthenticationService & ServiceAddons) { + setup () { // The setup method checks for valid settings and registers the // connection and event (login, logout) hooks const { secret, service, entity, entityId } = this.configuration; diff --git a/packages/errors/index.d.ts b/packages/errors/index.d.ts index 7b79548a2e..ae1dff39e9 100644 --- a/packages/errors/index.d.ts +++ b/packages/errors/index.d.ts @@ -98,6 +98,22 @@ export interface Errors { NotImplemented: NotImplemented; BadGateway: BadGateway; Unavailable: Unavailable; + 400: BadRequest; + 401: NotAuthenticated; + 402: PaymentError; + 403: Forbidden; + 404: NotFound; + 405: MethodNotAllowed; + 406: NotAcceptable; + 408: Timeout; + 409: Conflict; + 411: LengthRequired; + 422: Unprocessable; + 429: TooManyRequests; + 500: GeneralError; + 501: NotImplemented; + 502: BadGateway; + 503: Unavailable; } export function convert (error: any): FeathersError; diff --git a/packages/express/index.d.ts b/packages/express/index.d.ts index 2ef1d9792a..0e0cb99621 100644 --- a/packages/express/index.d.ts +++ b/packages/express/index.d.ts @@ -16,6 +16,7 @@ interface FeathersExpress extends Express { rest: { (handler?: express.RequestHandler): () => void; formatter: express.RequestHandler; + httpMethod: (verb: string, uris?: string | string[]) => (method: T) => T; }; original: Express; @@ -38,6 +39,9 @@ declare namespace feathersExpress { } declare module 'express-serve-static-core' { + interface Application extends FeathersApplication { + } + interface Request { feathers?: Partial; } diff --git a/packages/feathers/index.d.ts b/packages/feathers/index.d.ts index 7f9cb6e2f8..985a018c01 100644 --- a/packages/feathers/index.d.ts +++ b/packages/feathers/index.d.ts @@ -181,6 +181,7 @@ declare namespace createApplication { interface ServiceAddons extends EventEmitter { id?: any; _serviceEvents: string[]; + methods: {[method: string]: string[]}; hooks (hooks: Partial): this; } From 317c80a9205e8853bb830a12c3aa1a19e95f9abc Mon Sep 17 00:00:00 2001 From: Jordan Tucker Date: Fri, 25 Oct 2019 21:55:39 -0500 Subject: [PATCH 5/7] fix: Add jsonwebtoken TypeScript type dependency --- packages/authentication/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/authentication/package.json b/packages/authentication/package.json index b6d3c21f65..f177e407dc 100644 --- a/packages/authentication/package.json +++ b/packages/authentication/package.json @@ -42,6 +42,7 @@ "@feathersjs/errors": "^4.3.7", "@feathersjs/feathers": "^4.3.7", "@feathersjs/transport-commons": "^4.3.7", + "@types/jsonwebtoken": "8.3.4", "debug": "^4.1.1", "jsonwebtoken": "^8.5.1", "lodash": "^4.17.15", @@ -50,7 +51,6 @@ }, "devDependencies": { "@types/debug": "^4.1.5", - "@types/jsonwebtoken": "^8.3.4", "@types/lodash": "^4.14.144", "@types/mocha": "^5.2.7", "@types/node": "^12.7.12", From 7cfef5abc3d80d44d604a2ba26985cc58293de15 Mon Sep 17 00:00:00 2001 From: David Luecke Date: Fri, 25 Oct 2019 19:59:52 -0700 Subject: [PATCH 6/7] chore: Add --create-release github flag to Lerna publish --- lerna.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lerna.json b/lerna.json index 9bfb25752f..4df6d17eba 100644 --- a/lerna.json +++ b/lerna.json @@ -10,7 +10,8 @@ }, "publish": { "allowBranch": "master", - "conventionalCommits": true + "conventionalCommits": true, + "createRelease": "github" } }, "ignoreChanges": [ From 3e5a4a03cfa3a0bd5b13bb5a039ba821848c3335 Mon Sep 17 00:00:00 2001 From: David Luecke Date: Fri, 25 Oct 2019 20:02:06 -0700 Subject: [PATCH 7/7] v4.3.9 --- lerna.json | 2 +- packages/adapter-commons/CHANGELOG.md | 8 ++++++++ packages/adapter-commons/package.json | 6 +++--- packages/adapter-tests/CHANGELOG.md | 8 ++++++++ packages/adapter-tests/package.json | 6 +++--- packages/authentication-client/CHANGELOG.md | 8 ++++++++ packages/authentication-client/package.json | 22 ++++++++++----------- packages/authentication-local/CHANGELOG.md | 8 ++++++++ packages/authentication-local/package.json | 8 ++++---- packages/authentication-oauth/CHANGELOG.md | 11 +++++++++++ packages/authentication-oauth/package.json | 10 +++++----- packages/authentication/CHANGELOG.md | 12 +++++++++++ packages/authentication/package.json | 8 ++++---- packages/client/CHANGELOG.md | 8 ++++++++ packages/client/package.json | 22 ++++++++++----------- packages/configuration/CHANGELOG.md | 8 ++++++++ packages/configuration/package.json | 4 ++-- packages/errors/CHANGELOG.md | 11 +++++++++++ packages/errors/package.json | 4 ++-- packages/express/CHANGELOG.md | 11 +++++++++++ packages/express/package.json | 12 +++++------ packages/feathers/CHANGELOG.md | 11 +++++++++++ packages/feathers/package.json | 2 +- packages/primus-client/CHANGELOG.md | 8 ++++++++ packages/primus-client/package.json | 10 +++++----- packages/primus/CHANGELOG.md | 8 ++++++++ packages/primus/package.json | 10 +++++----- packages/rest-client/CHANGELOG.md | 8 ++++++++ packages/rest-client/package.json | 10 +++++----- packages/socketio-client/CHANGELOG.md | 8 ++++++++ packages/socketio-client/package.json | 10 +++++----- packages/socketio/CHANGELOG.md | 8 ++++++++ packages/socketio/package.json | 10 +++++----- packages/tests/CHANGELOG.md | 8 ++++++++ packages/tests/package.json | 4 ++-- packages/transport-commons/CHANGELOG.md | 8 ++++++++ packages/transport-commons/package.json | 6 +++--- 37 files changed, 243 insertions(+), 83 deletions(-) diff --git a/lerna.json b/lerna.json index 4df6d17eba..5f8572e863 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages": [ "packages/*" ], - "version": "4.3.8", + "version": "4.3.9", "command": { "bootstrap": { "hoist": true diff --git a/packages/adapter-commons/CHANGELOG.md b/packages/adapter-commons/CHANGELOG.md index 99bc375d34..fb7d280bad 100644 --- a/packages/adapter-commons/CHANGELOG.md +++ b/packages/adapter-commons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + +**Note:** Version bump only for package @feathersjs/adapter-commons + + + + + ## [4.3.8](https://github.com/feathersjs/feathers/compare/v4.3.7...v4.3.8) (2019-10-14) diff --git a/packages/adapter-commons/package.json b/packages/adapter-commons/package.json index 082e4d8e49..182f3c9247 100644 --- a/packages/adapter-commons/package.json +++ b/packages/adapter-commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-commons", - "version": "4.3.8", + "version": "4.3.9", "description": "Shared database adapter utility functions", "homepage": "https://feathersjs.com", "keywords": [ @@ -38,8 +38,8 @@ }, "dependencies": { "@feathersjs/commons": "^4.3.7", - "@feathersjs/errors": "^4.3.7", - "@feathersjs/feathers": "^4.3.7" + "@feathersjs/errors": "^4.3.9", + "@feathersjs/feathers": "^4.3.9" }, "devDependencies": { "@types/mocha": "^5.2.7", diff --git a/packages/adapter-tests/CHANGELOG.md b/packages/adapter-tests/CHANGELOG.md index e71a4800bd..e054733856 100644 --- a/packages/adapter-tests/CHANGELOG.md +++ b/packages/adapter-tests/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + +**Note:** Version bump only for package @feathersjs/adapter-tests + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) **Note:** Version bump only for package @feathersjs/adapter-tests diff --git a/packages/adapter-tests/package.json b/packages/adapter-tests/package.json index 77e151487d..c4d82399f3 100644 --- a/packages/adapter-tests/package.json +++ b/packages/adapter-tests/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-tests", - "version": "4.3.7", + "version": "4.3.9", "description": "Feathers shared database adapter test suite", "homepage": "https://feathersjs.com", "keywords": [ @@ -34,8 +34,8 @@ "access": "public" }, "devDependencies": { - "@feathersjs/errors": "^4.3.7", - "@feathersjs/feathers": "^4.3.7", + "@feathersjs/errors": "^4.3.9", + "@feathersjs/feathers": "^4.3.9", "feathers-memory": "^4.1.0", "mocha": "^6.2.1" }, diff --git a/packages/authentication-client/CHANGELOG.md b/packages/authentication-client/CHANGELOG.md index 142994b6fc..377a6b9e66 100644 --- a/packages/authentication-client/CHANGELOG.md +++ b/packages/authentication-client/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + +**Note:** Version bump only for package @feathersjs/authentication-client + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) diff --git a/packages/authentication-client/package.json b/packages/authentication-client/package.json index 7d95e51a4c..a600886e1b 100644 --- a/packages/authentication-client/package.json +++ b/packages/authentication-client/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/authentication-client", "description": "The authentication plugin for feathers-client", - "version": "4.3.7", + "version": "4.3.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -39,20 +39,20 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^4.3.7", + "@feathersjs/authentication": "^4.3.9", "@feathersjs/commons": "^4.3.7", - "@feathersjs/errors": "^4.3.7", - "@feathersjs/feathers": "^4.3.7", + "@feathersjs/errors": "^4.3.9", + "@feathersjs/feathers": "^4.3.9", "debug": "^4.1.1" }, "devDependencies": { - "@feathersjs/authentication-local": "^4.3.7", - "@feathersjs/express": "^4.3.7", - "@feathersjs/primus": "^4.3.7", - "@feathersjs/primus-client": "^4.3.7", - "@feathersjs/rest-client": "^4.3.7", - "@feathersjs/socketio": "^4.3.7", - "@feathersjs/socketio-client": "^4.3.7", + "@feathersjs/authentication-local": "^4.3.9", + "@feathersjs/express": "^4.3.9", + "@feathersjs/primus": "^4.3.9", + "@feathersjs/primus-client": "^4.3.9", + "@feathersjs/rest-client": "^4.3.9", + "@feathersjs/socketio": "^4.3.9", + "@feathersjs/socketio-client": "^4.3.9", "@types/debug": "^4.1.5", "@types/mocha": "^5.2.7", "@types/node": "^12.7.12", diff --git a/packages/authentication-local/CHANGELOG.md b/packages/authentication-local/CHANGELOG.md index ef092d837c..d5f03df02d 100644 --- a/packages/authentication-local/CHANGELOG.md +++ b/packages/authentication-local/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + +**Note:** Version bump only for package @feathersjs/authentication-local + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) **Note:** Version bump only for package @feathersjs/authentication-local diff --git a/packages/authentication-local/package.json b/packages/authentication-local/package.json index 6837e9eeaf..5e475a18a4 100644 --- a/packages/authentication-local/package.json +++ b/packages/authentication-local/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/authentication-local", "description": "Local authentication strategy for @feathers/authentication", - "version": "4.3.7", + "version": "4.3.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -39,9 +39,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^4.3.7", - "@feathersjs/errors": "^4.3.7", - "@feathersjs/feathers": "^4.3.7", + "@feathersjs/authentication": "^4.3.9", + "@feathersjs/errors": "^4.3.9", + "@feathersjs/feathers": "^4.3.9", "bcryptjs": "^2.4.3", "debug": "^4.1.1", "lodash": "^4.17.15" diff --git a/packages/authentication-oauth/CHANGELOG.md b/packages/authentication-oauth/CHANGELOG.md index 6a6da7c085..993e052c73 100644 --- a/packages/authentication-oauth/CHANGELOG.md +++ b/packages/authentication-oauth/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + + +### Bug Fixes + +* Only initialize default Express session if oAuth is actually used ([#1648](https://github.com/feathersjs/feathers/issues/1648)) ([9b9b43f](https://github.com/feathersjs/feathers/commit/9b9b43ff09af1080e4aaa537064bac37b881c9a2)) + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) **Note:** Version bump only for package @feathersjs/authentication-oauth diff --git a/packages/authentication-oauth/package.json b/packages/authentication-oauth/package.json index 290c18eb1b..906377bd4e 100644 --- a/packages/authentication-oauth/package.json +++ b/packages/authentication-oauth/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/authentication-oauth", "description": "oAuth 1 and 2 authentication for Feathers. Powered by Grant.", - "version": "4.3.7", + "version": "4.3.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -39,10 +39,10 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^4.3.7", - "@feathersjs/errors": "^4.3.7", - "@feathersjs/express": "^4.3.7", - "@feathersjs/feathers": "^4.3.7", + "@feathersjs/authentication": "^4.3.9", + "@feathersjs/errors": "^4.3.9", + "@feathersjs/express": "^4.3.9", + "@feathersjs/feathers": "^4.3.9", "debug": "^4.1.1", "express-session": "^1.17.0", "grant": "^4.6.3", diff --git a/packages/authentication/CHANGELOG.md b/packages/authentication/CHANGELOG.md index 1665d751be..341d49ab4b 100644 --- a/packages/authentication/CHANGELOG.md +++ b/packages/authentication/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + + +### Bug Fixes + +* Add jsonwebtoken TypeScript type dependency ([317c80a](https://github.com/feathersjs/feathers/commit/317c80a9205e8853bb830a12c3aa1a19e95f9abc)) +* Small type improvements ([#1624](https://github.com/feathersjs/feathers/issues/1624)) ([50162c6](https://github.com/feathersjs/feathers/commit/50162c6e562f0a47c6a280c4f01fff7c3afee293)) + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) **Note:** Version bump only for package @feathersjs/authentication diff --git a/packages/authentication/package.json b/packages/authentication/package.json index f177e407dc..16d21c95f1 100644 --- a/packages/authentication/package.json +++ b/packages/authentication/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/authentication", "description": "Add Authentication to your FeathersJS app.", - "version": "4.3.7", + "version": "4.3.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -39,9 +39,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/errors": "^4.3.7", - "@feathersjs/feathers": "^4.3.7", - "@feathersjs/transport-commons": "^4.3.7", + "@feathersjs/errors": "^4.3.9", + "@feathersjs/feathers": "^4.3.9", + "@feathersjs/transport-commons": "^4.3.9", "@types/jsonwebtoken": "8.3.4", "debug": "^4.1.1", "jsonwebtoken": "^8.5.1", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index a43aea4b83..085d410490 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + +**Note:** Version bump only for package @feathersjs/client + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) **Note:** Version bump only for package @feathersjs/client diff --git a/packages/client/package.json b/packages/client/package.json index 445725573a..f7f7bc6b04 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/client", "description": "A module that consolidates Feathers client modules for REST (jQuery, Request, Superagent) and Websocket (Socket.io, Primus) connections", - "version": "4.3.7", + "version": "4.3.9", "repository": { "type": "git", "url": "https://github.com/feathersjs/feathers.git" @@ -37,16 +37,16 @@ "devDependencies": { "@babel/core": "^7.6.4", "@babel/preset-env": "^7.6.3", - "@feathersjs/authentication-client": "^4.3.7", - "@feathersjs/errors": "^4.3.7", - "@feathersjs/express": "^4.3.7", - "@feathersjs/feathers": "^4.3.7", - "@feathersjs/primus": "^4.3.7", - "@feathersjs/primus-client": "^4.3.7", - "@feathersjs/rest-client": "^4.3.7", - "@feathersjs/socketio": "^4.3.7", - "@feathersjs/socketio-client": "^4.3.7", - "@feathersjs/tests": "^4.3.7", + "@feathersjs/authentication-client": "^4.3.9", + "@feathersjs/errors": "^4.3.9", + "@feathersjs/express": "^4.3.9", + "@feathersjs/feathers": "^4.3.9", + "@feathersjs/primus": "^4.3.9", + "@feathersjs/primus-client": "^4.3.9", + "@feathersjs/rest-client": "^4.3.9", + "@feathersjs/socketio": "^4.3.9", + "@feathersjs/socketio-client": "^4.3.9", + "@feathersjs/tests": "^4.3.9", "babel-loader": "^8.0.6", "body-parser": "^1.19.0", "feathers-memory": "^4.1.0", diff --git a/packages/configuration/CHANGELOG.md b/packages/configuration/CHANGELOG.md index 5ea921352a..ee763f6a8f 100644 --- a/packages/configuration/CHANGELOG.md +++ b/packages/configuration/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + +**Note:** Version bump only for package @feathersjs/configuration + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) **Note:** Version bump only for package @feathersjs/configuration diff --git a/packages/configuration/package.json b/packages/configuration/package.json index 9db5163473..876ecac4c1 100644 --- a/packages/configuration/package.json +++ b/packages/configuration/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/configuration", "description": "A small configuration module for your Feathers application.", - "version": "4.3.7", + "version": "4.3.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -44,7 +44,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/feathers": "^4.3.7", + "@feathersjs/feathers": "^4.3.9", "config": "^3.2.3", "debug": "^4.1.1" }, diff --git a/packages/errors/CHANGELOG.md b/packages/errors/CHANGELOG.md index 256185c770..83b6b7e801 100644 --- a/packages/errors/CHANGELOG.md +++ b/packages/errors/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + + +### Bug Fixes + +* Small type improvements ([#1624](https://github.com/feathersjs/feathers/issues/1624)) ([50162c6](https://github.com/feathersjs/feathers/commit/50162c6e562f0a47c6a280c4f01fff7c3afee293)) + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) **Note:** Version bump only for package @feathersjs/errors diff --git a/packages/errors/package.json b/packages/errors/package.json index 18cfdbfa08..ac3822a3e6 100644 --- a/packages/errors/package.json +++ b/packages/errors/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/errors", "description": "Common error types for Feathers apps", - "version": "4.3.7", + "version": "4.3.9", "homepage": "https://feathersjs.com", "main": "lib/index", "types": "index.d.ts", @@ -39,7 +39,7 @@ "debug": "^4.1.1" }, "devDependencies": { - "@feathersjs/feathers": "^4.3.7", + "@feathersjs/feathers": "^4.3.9", "chai": "^4.2.0", "express": "^4.17.1", "mocha": "^6.2.1", diff --git a/packages/express/CHANGELOG.md b/packages/express/CHANGELOG.md index 70299b4499..8caf45c84f 100644 --- a/packages/express/CHANGELOG.md +++ b/packages/express/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + + +### Bug Fixes + +* Small type improvements ([#1624](https://github.com/feathersjs/feathers/issues/1624)) ([50162c6](https://github.com/feathersjs/feathers/commit/50162c6e562f0a47c6a280c4f01fff7c3afee293)) + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) diff --git a/packages/express/package.json b/packages/express/package.json index ba62b8f69e..fe153adc1f 100644 --- a/packages/express/package.json +++ b/packages/express/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/express", "description": "Feathers Express framework bindings and REST provider", - "version": "4.3.7", + "version": "4.3.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "index.d.ts", @@ -37,7 +37,7 @@ }, "dependencies": { "@feathersjs/commons": "^4.3.7", - "@feathersjs/errors": "^4.3.7", + "@feathersjs/errors": "^4.3.9", "@types/express": "^4.17.1", "debug": "^4.1.1", "express": "^4.17.1", @@ -45,10 +45,10 @@ "uberproto": "^2.0.4" }, "devDependencies": { - "@feathersjs/authentication": "^4.3.7", - "@feathersjs/authentication-local": "^4.3.7", - "@feathersjs/feathers": "^4.3.7", - "@feathersjs/tests": "^4.3.7", + "@feathersjs/authentication": "^4.3.9", + "@feathersjs/authentication-local": "^4.3.9", + "@feathersjs/feathers": "^4.3.9", + "@feathersjs/tests": "^4.3.9", "axios": "^0.19.0", "chai": "^4.2.0", "lodash": "^4.17.15", diff --git a/packages/feathers/CHANGELOG.md b/packages/feathers/CHANGELOG.md index ac0ee4db88..00fc54c8c3 100644 --- a/packages/feathers/CHANGELOG.md +++ b/packages/feathers/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + + +### Bug Fixes + +* Small type improvements ([#1624](https://github.com/feathersjs/feathers/issues/1624)) ([50162c6](https://github.com/feathersjs/feathers/commit/50162c6e562f0a47c6a280c4f01fff7c3afee293)) + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) diff --git a/packages/feathers/package.json b/packages/feathers/package.json index 200dd45971..49455cb74d 100644 --- a/packages/feathers/package.json +++ b/packages/feathers/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/feathers", "description": "A framework for real-time applications and REST API with JavaScript and TypeScript", - "version": "4.3.7", + "version": "4.3.9", "homepage": "http://feathersjs.com", "repository": { "type": "git", diff --git a/packages/primus-client/CHANGELOG.md b/packages/primus-client/CHANGELOG.md index 1881546a07..8b8748f255 100644 --- a/packages/primus-client/CHANGELOG.md +++ b/packages/primus-client/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + +**Note:** Version bump only for package @feathersjs/primus-client + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) **Note:** Version bump only for package @feathersjs/primus-client diff --git a/packages/primus-client/package.json b/packages/primus-client/package.json index ab20f12395..632dcc8a36 100644 --- a/packages/primus-client/package.json +++ b/packages/primus-client/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/primus-client", "description": "Client services for Primus and feathers-primus", - "version": "4.3.7", + "version": "4.3.9", "homepage": "https://feathersjs.com", "main": "lib/index.js", "types": "index.d.ts", @@ -36,13 +36,13 @@ "access": "public" }, "dependencies": { - "@feathersjs/transport-commons": "^4.3.7" + "@feathersjs/transport-commons": "^4.3.9" }, "devDependencies": { "@feathersjs/commons": "^4.3.7", - "@feathersjs/feathers": "^4.3.7", - "@feathersjs/primus": "^4.3.7", - "@feathersjs/tests": "^4.3.7", + "@feathersjs/feathers": "^4.3.9", + "@feathersjs/primus": "^4.3.9", + "@feathersjs/tests": "^4.3.9", "chai": "^4.2.0", "feathers-memory": "^4.1.0", "mocha": "^6.2.1", diff --git a/packages/primus/CHANGELOG.md b/packages/primus/CHANGELOG.md index e4391497f4..93ca13a5f7 100644 --- a/packages/primus/CHANGELOG.md +++ b/packages/primus/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + +**Note:** Version bump only for package @feathersjs/primus + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) **Note:** Version bump only for package @feathersjs/primus diff --git a/packages/primus/package.json b/packages/primus/package.json index 3fbd9a61b3..e6adff1b8f 100644 --- a/packages/primus/package.json +++ b/packages/primus/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/primus", "description": "The Feathers Primus real-time API provider", - "version": "4.3.7", + "version": "4.3.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "index.d.ts", @@ -36,7 +36,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/transport-commons": "^4.3.7", + "@feathersjs/transport-commons": "^4.3.9", "debug": "^4.1.1", "primus": "^7.3.4", "primus-emitter": "^3.1.1", @@ -44,9 +44,9 @@ }, "devDependencies": { "@feathersjs/commons": "^4.3.7", - "@feathersjs/express": "^4.3.7", - "@feathersjs/feathers": "^4.3.7", - "@feathersjs/tests": "^4.3.7", + "@feathersjs/express": "^4.3.9", + "@feathersjs/feathers": "^4.3.9", + "@feathersjs/tests": "^4.3.9", "feathers-memory": "^4.1.0", "lodash": "^4.17.15", "mocha": "^6.2.1", diff --git a/packages/rest-client/CHANGELOG.md b/packages/rest-client/CHANGELOG.md index c75b3313a5..245af3d157 100644 --- a/packages/rest-client/CHANGELOG.md +++ b/packages/rest-client/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + +**Note:** Version bump only for package @feathersjs/rest-client + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) **Note:** Version bump only for package @feathersjs/rest-client diff --git a/packages/rest-client/package.json b/packages/rest-client/package.json index 1c80d3e66f..174a4a0917 100644 --- a/packages/rest-client/package.json +++ b/packages/rest-client/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/rest-client", "description": "REST client services for different Ajax libraries", - "version": "4.3.7", + "version": "4.3.9", "homepage": "https://feathersjs.com", "main": "lib/index.js", "types": "index.d.ts", @@ -37,7 +37,7 @@ }, "dependencies": { "@feathersjs/commons": "^4.3.7", - "@feathersjs/errors": "^4.3.7", + "@feathersjs/errors": "^4.3.9", "qs": "^6.9.0" }, "devDependencies": { @@ -45,9 +45,9 @@ "@angular/core": "^8.2.10", "@angular/http": "^7.2.15", "@angular/platform-browser": "^8.2.10", - "@feathersjs/express": "^4.3.7", - "@feathersjs/feathers": "^4.3.7", - "@feathersjs/tests": "^4.3.7", + "@feathersjs/express": "^4.3.9", + "@feathersjs/feathers": "^4.3.9", + "@feathersjs/tests": "^4.3.9", "axios": "^0.19.0", "body-parser": "^1.19.0", "feathers-memory": "^4.1.0", diff --git a/packages/socketio-client/CHANGELOG.md b/packages/socketio-client/CHANGELOG.md index aacdff6d77..f5c1a26809 100644 --- a/packages/socketio-client/CHANGELOG.md +++ b/packages/socketio-client/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + +**Note:** Version bump only for package @feathersjs/socketio-client + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) **Note:** Version bump only for package @feathersjs/socketio-client diff --git a/packages/socketio-client/package.json b/packages/socketio-client/package.json index 95ec380144..37631e554d 100644 --- a/packages/socketio-client/package.json +++ b/packages/socketio-client/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/socketio-client", "description": "The client for Socket.io through feathers-socketio", - "version": "4.3.7", + "version": "4.3.9", "homepage": "https://feathersjs.com", "main": "lib/index.js", "types": "index.d.ts", @@ -36,14 +36,14 @@ "access": "public" }, "dependencies": { - "@feathersjs/transport-commons": "^4.3.7", + "@feathersjs/transport-commons": "^4.3.9", "@types/socket.io-client": "^1.4.32" }, "devDependencies": { "@feathersjs/commons": "^4.3.7", - "@feathersjs/feathers": "^4.3.7", - "@feathersjs/socketio": "^4.3.7", - "@feathersjs/tests": "^4.3.7", + "@feathersjs/feathers": "^4.3.9", + "@feathersjs/socketio": "^4.3.9", + "@feathersjs/tests": "^4.3.9", "chai": "^4.2.0", "feathers-memory": "^4.1.0", "mocha": "^6.2.1", diff --git a/packages/socketio/CHANGELOG.md b/packages/socketio/CHANGELOG.md index 0220501205..337bf06c50 100644 --- a/packages/socketio/CHANGELOG.md +++ b/packages/socketio/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + +**Note:** Version bump only for package @feathersjs/socketio + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) **Note:** Version bump only for package @feathersjs/socketio diff --git a/packages/socketio/package.json b/packages/socketio/package.json index 9894423617..7ffac94e86 100644 --- a/packages/socketio/package.json +++ b/packages/socketio/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/socketio", "description": "The Feathers Socket.io real-time API provider", - "version": "4.3.7", + "version": "4.3.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "index.d.ts", @@ -36,7 +36,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/transport-commons": "^4.3.7", + "@feathersjs/transport-commons": "^4.3.9", "@types/socket.io": "^2.1.4", "debug": "^4.1.1", "socket.io": "^2.3.0", @@ -44,9 +44,9 @@ }, "devDependencies": { "@feathersjs/commons": "^4.3.7", - "@feathersjs/express": "^4.3.7", - "@feathersjs/feathers": "^4.3.7", - "@feathersjs/tests": "^4.3.7", + "@feathersjs/express": "^4.3.9", + "@feathersjs/feathers": "^4.3.9", + "@feathersjs/tests": "^4.3.9", "feathers-memory": "^4.1.0", "lodash": "^4.17.15", "mocha": "^6.2.1", diff --git a/packages/tests/CHANGELOG.md b/packages/tests/CHANGELOG.md index b4b54cb945..1a595ad033 100644 --- a/packages/tests/CHANGELOG.md +++ b/packages/tests/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + +**Note:** Version bump only for package @feathersjs/tests + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) **Note:** Version bump only for package @feathersjs/tests diff --git a/packages/tests/package.json b/packages/tests/package.json index d43ea2a2b3..e8e821468c 100644 --- a/packages/tests/package.json +++ b/packages/tests/package.json @@ -2,7 +2,7 @@ "name": "@feathersjs/tests", "private": true, "description": "Feathers core module common tests", - "version": "4.3.7", + "version": "4.3.9", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -42,7 +42,7 @@ "lodash": "^4.17.15" }, "devDependencies": { - "@feathersjs/feathers": "^4.3.7", + "@feathersjs/feathers": "^4.3.9", "@types/axios": "^0.14.0", "@types/debug": "^4.1.5", "@types/lodash": "^4.14.144", diff --git a/packages/transport-commons/CHANGELOG.md b/packages/transport-commons/CHANGELOG.md index 10ffd38a87..05eb2292a3 100644 --- a/packages/transport-commons/CHANGELOG.md +++ b/packages/transport-commons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.3.9](https://github.com/feathersjs/feathers/compare/v4.3.8...v4.3.9) (2019-10-26) + +**Note:** Version bump only for package @feathersjs/transport-commons + + + + + ## [4.3.7](https://github.com/feathersjs/feathers/compare/v4.3.6...v4.3.7) (2019-10-14) **Note:** Version bump only for package @feathersjs/transport-commons diff --git a/packages/transport-commons/package.json b/packages/transport-commons/package.json index e1037d7ad7..15d0928044 100644 --- a/packages/transport-commons/package.json +++ b/packages/transport-commons/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/transport-commons", "description": "Shared functionality for websocket providers", - "version": "4.3.7", + "version": "4.3.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -40,13 +40,13 @@ }, "dependencies": { "@feathersjs/commons": "^4.3.7", - "@feathersjs/errors": "^4.3.7", + "@feathersjs/errors": "^4.3.9", "debug": "^4.1.1", "lodash": "^4.17.15", "radix-router": "^3.0.1" }, "devDependencies": { - "@feathersjs/feathers": "^4.3.7", + "@feathersjs/feathers": "^4.3.9", "@types/debug": "^4.1.5", "@types/mocha": "^5.2.7", "@types/node": "^12.7.12",