diff --git a/CHANGELOG.md b/CHANGELOG.md index 827e79d410..ee985c453b 100644 --- a/CHANGELOG.md +++ b/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + + +### Bug Fixes + +* add missing word ([#3237](https://github.com/feathersjs/feathers/issues/3237)) ([9a32184](https://github.com/feathersjs/feathers/commit/9a321848767e31176660d6937f8fa6d83ba215bd)) +* **transport-commons:** Handle invalid service paths on socket lookups ([#3241](https://github.com/feathersjs/feathers/issues/3241)) ([c397ab3](https://github.com/feathersjs/feathers/commit/c397ab3a0cd184044ae4f73540549b30a396821c)) + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) diff --git a/docs/api/authentication/strategy.md b/docs/api/authentication/strategy.md index 3be42109fd..d001de5404 100644 --- a/docs/api/authentication/strategy.md +++ b/docs/api/authentication/strategy.md @@ -10,7 +10,7 @@ An authentication strategy is any object or class that implements at least an [a - [LocalStrategy](./local.md) in `@feathersjs/authentication-local` - [OAuthStrategy](./oauth.md) in `@feathersjs/authentication-oauth` -More details on how to customize existing strategies can be found in their API documentation. This section describes the common methods for all authentication strategies and how a custom authentication strategy can implemented. +More details on how to customize existing strategies can be found in their API documentation. This section describes the common methods for all authentication strategies and how a custom authentication strategy can be implemented. ## setName(name) diff --git a/docs/api/client/rest.md b/docs/api/client/rest.md index 25eee4e41c..a7d6546996 100644 --- a/docs/api/client/rest.md +++ b/docs/api/client/rest.md @@ -22,7 +22,7 @@ The following chapter describes the use of npm install @feathersjs/rest-client --save ``` -`@feathersjs/rest-client` allows to connect to a service exposed through a REST HTTP transport (e.g. with [Koa](../koa.md#rest) or [Express](../express.md#rest)) using [fetch](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API), [Superagent](http://visionmedia.github.io/superagent/) or [Axios](https://github.com/mzabriskie/axios). +`@feathersjs/rest-client` allows to connect to a service exposed through a REST HTTP transport (e.g. with [Koa](../koa.md#rest) or [Express](../express.md#rest)) using [fetch](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API), [Superagent](https://github.com/ladjs/superagent) or [Axios](https://github.com/mzabriskie/axios).
diff --git a/docs/api/client/socketio.md b/docs/api/client/socketio.md index b3abaf3fba..0a38164d0a 100644 --- a/docs/api/client/socketio.md +++ b/docs/api/client/socketio.md @@ -14,7 +14,7 @@ outline: deep ``` -npm install @feathersjs/socketio-client --save +npm install @feathersjs/socketio-client socket.io-client --save ``` The `@feathersjs/socketio-client` module allows to connect to services exposed through the [Socket.io transport](../socketio.md) via a Socket.io socket. We recommend using Feathers and the `@feathersjs/socketio-client` module on the client if possible since it can also handle reconnection and reauthentication. If however, you want to use a direct Socket.io connection without using Feathers on the client, see the [Direct connection](#direct-connection) section. diff --git a/docs/api/schema/schema.md b/docs/api/schema/schema.md index bc3da6d083..600f335d9f 100644 --- a/docs/api/schema/schema.md +++ b/docs/api/schema/schema.md @@ -80,9 +80,9 @@ export const userSchema = { $id: 'UserResult', type: 'object', additionalProperties: false, - required: [...userSchema.required, 'id'], + required: [...userDataSchema.required, 'id'], properties: { - ...userSchema.properties, + ...userDataSchema.properties, id: { type: 'number' } } } as const diff --git a/docs/guides/migrating.md b/docs/guides/migrating.md index 80e88d672f..bd68f7032b 100644 --- a/docs/guides/migrating.md +++ b/docs/guides/migrating.md @@ -116,7 +116,7 @@ The Express `rest` adapter now needs to be configured in the correct order, usua The import of `feathers` has changed from -```js +```ts const feathers = require('@feathersjs/feathers') import feathers from '@feathersjs/feathers' @@ -124,12 +124,34 @@ import feathers from '@feathersjs/feathers' To -```js +```ts const { feathers } = require('@feathersjs/feathers') import { feathers } from '@feathersjs/feathers' ``` +The Express exports for TypeScript have changed from + +```ts +import express from '@feathersjs/express' + +app.use(express.json()) +app.use(express.urlencoded()) +app.use(express.notFound()) +app.use(express.errorHandler()) +``` + +To + +```ts +import express, { json, urlencoded, notFound, errorHandler } from '@feathersjs/express' + +app.use(json()) +app.use(urlencoded()) +app.use(notFound()) +app.use(errorHandler()) +``` + ### Custom Filters & Operators
diff --git a/lerna.json b/lerna.json index 53d2473666..533da90f6b 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages": [ "packages/*" ], - "version": "5.0.7", + "version": "5.0.8", "command": { "bootstrap": { "hoist": true diff --git a/package-lock.json b/package-lock.json index 8693f72d7d..de8f4676cd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22495,12 +22495,12 @@ }, "packages/adapter-commons": { "name": "@feathersjs/adapter-commons", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7" + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8" }, "devDependencies": { "@types/mocha": "^10.0.1", @@ -22522,7 +22522,7 @@ }, "packages/adapter-tests": { "name": "@feathersjs/adapter-tests", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "devDependencies": { "@types/mocha": "^10.0.1", @@ -22542,15 +22542,15 @@ }, "packages/authentication": { "name": "@feathersjs/authentication", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", "@feathersjs/hooks": "^0.8.1", - "@feathersjs/schema": "^5.0.7", - "@feathersjs/transport-commons": "^5.0.7", + "@feathersjs/schema": "^5.0.8", + "@feathersjs/transport-commons": "^5.0.8", "@types/jsonwebtoken": "^9.0.2", "jsonwebtoken": "^9.0.1", "lodash": "^4.17.21", @@ -22558,7 +22558,7 @@ "uuid": "^9.0.0" }, "devDependencies": { - "@feathersjs/memory": "^5.0.7", + "@feathersjs/memory": "^5.0.8", "@types/lodash": "^4.14.195", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", @@ -22578,21 +22578,21 @@ }, "packages/authentication-client": { "name": "@feathersjs/authentication-client", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7" + "@feathersjs/authentication": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.7", - "@feathersjs/express": "^5.0.7", - "@feathersjs/memory": "^5.0.7", - "@feathersjs/rest-client": "^5.0.7", - "@feathersjs/socketio": "^5.0.7", - "@feathersjs/socketio-client": "^5.0.7", + "@feathersjs/authentication-local": "^5.0.8", + "@feathersjs/express": "^5.0.8", + "@feathersjs/memory": "^5.0.8", + "@feathersjs/rest-client": "^5.0.8", + "@feathersjs/socketio": "^5.0.8", + "@feathersjs/socketio-client": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "axios": "^1.4.0", @@ -22611,19 +22611,19 @@ }, "packages/authentication-local": { "name": "@feathersjs/authentication-local", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/authentication": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", "bcryptjs": "^2.4.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/memory": "^5.0.7", - "@feathersjs/schema": "^5.0.7", + "@feathersjs/memory": "^5.0.8", + "@feathersjs/schema": "^5.0.8", "@types/bcryptjs": "^2.4.2", "@types/lodash": "^4.14.195", "@types/mocha": "^10.0.1", @@ -22643,16 +22643,16 @@ }, "packages/authentication-oauth": { "name": "@feathersjs/authentication-oauth", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/express": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/koa": "^5.0.7", - "@feathersjs/schema": "^5.0.7", + "@feathersjs/authentication": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/express": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/koa": "^5.0.8", + "@feathersjs/schema": "^5.0.8", "cookie-session": "^2.0.0", "grant": "^5.4.21", "koa-session": "^6.4.0", @@ -22660,7 +22660,7 @@ "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/memory": "^5.0.7", + "@feathersjs/memory": "^5.0.8", "@types/cookie-session": "^2.0.44", "@types/express": "^4.17.17", "@types/koa-session": "^6.4.1", @@ -22685,10 +22685,10 @@ }, "packages/cli": { "name": "@feathersjs/cli", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/generators": "^5.0.7", + "@feathersjs/generators": "^5.0.8", "chalk": "^4.0.1", "commander": "^11.0.0" }, @@ -22696,23 +22696,23 @@ "feathers": "bin/feathers" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.7", - "@feathersjs/authentication": "^5.0.7", - "@feathersjs/authentication-client": "^5.0.7", - "@feathersjs/authentication-local": "^5.0.7", - "@feathersjs/authentication-oauth": "^5.0.7", - "@feathersjs/configuration": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/express": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/knex": "^5.0.7", - "@feathersjs/koa": "^5.0.7", - "@feathersjs/mongodb": "^5.0.7", - "@feathersjs/rest-client": "^5.0.7", - "@feathersjs/schema": "^5.0.7", - "@feathersjs/socketio": "^5.0.7", - "@feathersjs/transport-commons": "^5.0.7", - "@feathersjs/typebox": "^5.0.7", + "@feathersjs/adapter-commons": "^5.0.8", + "@feathersjs/authentication": "^5.0.8", + "@feathersjs/authentication-client": "^5.0.8", + "@feathersjs/authentication-local": "^5.0.8", + "@feathersjs/authentication-oauth": "^5.0.8", + "@feathersjs/configuration": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/express": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/knex": "^5.0.8", + "@feathersjs/koa": "^5.0.8", + "@feathersjs/mongodb": "^5.0.8", + "@feathersjs/rest-client": "^5.0.8", + "@feathersjs/schema": "^5.0.8", + "@feathersjs/socketio": "^5.0.8", + "@feathersjs/transport-commons": "^5.0.8", + "@feathersjs/typebox": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "@types/prettier": "^2.7.3", @@ -22745,22 +22745,22 @@ }, "packages/client": { "name": "@feathersjs/client", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/authentication-client": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/rest-client": "^5.0.7", - "@feathersjs/socketio-client": "^5.0.7" + "@feathersjs/authentication-client": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/rest-client": "^5.0.8", + "@feathersjs/socketio-client": "^5.0.8" }, "devDependencies": { "@babel/core": "^7.22.9", "@babel/preset-env": "^7.22.9", - "@feathersjs/express": "^5.0.7", - "@feathersjs/memory": "^5.0.7", - "@feathersjs/socketio": "^5.0.7", - "@feathersjs/tests": "^5.0.7", + "@feathersjs/express": "^5.0.8", + "@feathersjs/memory": "^5.0.8", + "@feathersjs/socketio": "^5.0.8", + "@feathersjs/tests": "^5.0.8", "babel-loader": "^9.1.3", "mocha": "^10.2.0", "mocha-puppeteer": "^0.14.0", @@ -22784,7 +22784,7 @@ }, "packages/commons": { "name": "@feathersjs/commons", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "devDependencies": { "@types/mocha": "^10.0.1", @@ -22804,12 +22804,12 @@ }, "packages/configuration": { "name": "@feathersjs/configuration", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/schema": "^5.0.7", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/schema": "^5.0.8", "@types/config": "^3.3.0", "config": "^3.3.9" }, @@ -22830,10 +22830,10 @@ } }, "packages/create-feathers": { - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/cli": "^5.0.7" + "@feathersjs/cli": "^5.0.8" }, "bin": { "create-feathers": "bin/create-feathers" @@ -22848,10 +22848,10 @@ }, "packages/errors": { "name": "@feathersjs/errors", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "devDependencies": { - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/feathers": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "mocha": "^10.2.0", @@ -22865,14 +22865,14 @@ }, "packages/express": { "name": "@feathersjs/express", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/transport-commons": "^5.0.7", + "@feathersjs/authentication": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/transport-commons": "^5.0.8", "@types/compression": "^1.7.2", "@types/express": "^4.17.17", "@types/express-serve-static-core": "^4.17.35", @@ -22881,8 +22881,8 @@ "express": "^4.18.2" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.7", - "@feathersjs/tests": "^5.0.7", + "@feathersjs/authentication-local": "^5.0.8", + "@feathersjs/tests": "^5.0.8", "@types/lodash": "^4.14.195", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", @@ -22903,10 +22903,10 @@ }, "packages/feathers": { "name": "@feathersjs/feathers", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.7", + "@feathersjs/commons": "^5.0.8", "@feathersjs/hooks": "^0.8.1", "events": "^3.3.0" }, @@ -22928,7 +22928,7 @@ }, "packages/generators": { "name": "@feathersjs/generators", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { "@feathershq/pinion": "^0.3.5", @@ -22938,23 +22938,23 @@ "typescript": "^5.1.6" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.7", - "@feathersjs/authentication": "^5.0.7", - "@feathersjs/authentication-client": "^5.0.7", - "@feathersjs/authentication-local": "^5.0.7", - "@feathersjs/authentication-oauth": "^5.0.7", - "@feathersjs/configuration": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/express": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/knex": "^5.0.7", - "@feathersjs/koa": "^5.0.7", - "@feathersjs/mongodb": "^5.0.7", - "@feathersjs/rest-client": "^5.0.7", - "@feathersjs/schema": "^5.0.7", - "@feathersjs/socketio": "^5.0.7", - "@feathersjs/transport-commons": "^5.0.7", - "@feathersjs/typebox": "^5.0.7", + "@feathersjs/adapter-commons": "^5.0.8", + "@feathersjs/authentication": "^5.0.8", + "@feathersjs/authentication-client": "^5.0.8", + "@feathersjs/authentication-local": "^5.0.8", + "@feathersjs/authentication-oauth": "^5.0.8", + "@feathersjs/configuration": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/express": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/knex": "^5.0.8", + "@feathersjs/koa": "^5.0.8", + "@feathersjs/mongodb": "^5.0.8", + "@feathersjs/rest-client": "^5.0.8", + "@feathersjs/schema": "^5.0.8", + "@feathersjs/socketio": "^5.0.8", + "@feathersjs/transport-commons": "^5.0.8", + "@feathersjs/typebox": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "@types/prettier": "^2.7.3", @@ -22992,17 +22992,17 @@ }, "packages/knex": { "name": "@feathersjs/knex", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7" + "@feathersjs/adapter-commons": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.7", - "@feathersjs/schema": "^5.0.7", + "@feathersjs/adapter-tests": "^5.0.8", + "@feathersjs/schema": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "knex": "^2.5.1", @@ -23025,14 +23025,14 @@ }, "packages/koa": { "name": "@feathersjs/koa", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/transport-commons": "^5.0.7", + "@feathersjs/authentication": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/transport-commons": "^5.0.8", "@koa/cors": "^4.0.0", "@types/koa": "^2.13.6", "@types/koa__cors": "^4.0.0", @@ -23045,9 +23045,9 @@ "koa-static": "^5.0.0" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.7", - "@feathersjs/memory": "^5.0.7", - "@feathersjs/tests": "^5.0.7", + "@feathersjs/authentication-local": "^5.0.8", + "@feathersjs/memory": "^5.0.8", + "@feathersjs/tests": "^5.0.8", "@types/koa-compose": "^3.2.5", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", @@ -23063,17 +23063,17 @@ }, "packages/memory": { "name": "@feathersjs/memory", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", + "@feathersjs/adapter-commons": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", "sift": "^17.0.1" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/adapter-tests": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "mocha": "^10.2.0", @@ -23087,17 +23087,17 @@ }, "packages/mongodb": { "name": "@feathersjs/mongodb", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7" + "@feathersjs/adapter-commons": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.7", - "@feathersjs/schema": "^5.0.7", + "@feathersjs/adapter-tests": "^5.0.8", + "@feathersjs/schema": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "mocha": "^10.2.0", @@ -23118,19 +23118,19 @@ }, "packages/rest-client": { "name": "@feathersjs/rest-client", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", "@types/superagent": "^4.1.18", "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/express": "^5.0.7", - "@feathersjs/memory": "^5.0.7", - "@feathersjs/tests": "^5.0.7", + "@feathersjs/express": "^5.0.8", + "@feathersjs/memory": "^5.0.8", + "@feathersjs/tests": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "@types/node-fetch": "^2.6.4", @@ -23154,13 +23154,13 @@ }, "packages/schema": { "name": "@feathersjs/schema", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/adapter-commons": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", "@feathersjs/hooks": "^0.8.1", "@types/json-schema": "^7.0.12", "ajv": "^8.12.0", @@ -23168,7 +23168,7 @@ "json-schema-to-ts": "^2.9.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.7", + "@feathersjs/memory": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "ajv-formats": "^2.1.1", @@ -23206,18 +23206,18 @@ }, "packages/socketio": { "name": "@feathersjs/socketio", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/transport-commons": "^5.0.7", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/transport-commons": "^5.0.8", "socket.io": "^4.7.1" }, "devDependencies": { - "@feathersjs/express": "^5.0.7", - "@feathersjs/memory": "^5.0.7", - "@feathersjs/tests": "^5.0.7", + "@feathersjs/express": "^5.0.8", + "@feathersjs/memory": "^5.0.8", + "@feathersjs/tests": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "lodash": "^4.17.21", @@ -23236,17 +23236,17 @@ }, "packages/socketio-client": { "name": "@feathersjs/socketio-client", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/transport-commons": "^5.0.7" + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/transport-commons": "^5.0.8" }, "devDependencies": { - "@feathersjs/commons": "^5.0.7", - "@feathersjs/memory": "^5.0.7", - "@feathersjs/socketio": "^5.0.7", - "@feathersjs/tests": "^5.0.7", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/memory": "^5.0.8", + "@feathersjs/socketio": "^5.0.8", + "@feathersjs/tests": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "mocha": "^10.2.0", @@ -23265,7 +23265,7 @@ }, "packages/tests": { "name": "@feathersjs/tests", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { "@types/lodash": "^4.14.195", @@ -23273,7 +23273,7 @@ "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/feathers": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "mocha": "^10.2.0", @@ -23291,12 +23291,12 @@ }, "packages/transport-commons": { "name": "@feathersjs/transport-commons", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", "encodeurl": "^1.0.2", "lodash": "^4.17.21" }, @@ -23320,10 +23320,10 @@ }, "packages/typebox": { "name": "@feathersjs/typebox", - "version": "5.0.7", + "version": "5.0.8", "license": "MIT", "dependencies": { - "@feathersjs/schema": "^5.0.7", + "@feathersjs/schema": "^5.0.8", "@sinclair/typebox": "^0.25.0" }, "devDependencies": { diff --git a/packages/adapter-commons/CHANGELOG.md b/packages/adapter-commons/CHANGELOG.md index 5b5a4c25c1..216164aa4a 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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/adapter-commons + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/adapter-commons diff --git a/packages/adapter-commons/package.json b/packages/adapter-commons/package.json index ddf48f0f70..be85afe2cf 100644 --- a/packages/adapter-commons/package.json +++ b/packages/adapter-commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-commons", - "version": "5.0.7", + "version": "5.0.8", "description": "Shared database adapter utility functions", "homepage": "https://feathersjs.com", "keywords": [ @@ -50,9 +50,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7" + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8" }, "devDependencies": { "@types/mocha": "^10.0.1", diff --git a/packages/adapter-tests/CHANGELOG.md b/packages/adapter-tests/CHANGELOG.md index 865449838f..43449a2f3f 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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/adapter-tests + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-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 7bf6b038cf..278c210744 100644 --- a/packages/adapter-tests/package.json +++ b/packages/adapter-tests/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-tests", - "version": "5.0.7", + "version": "5.0.8", "description": "Feathers shared database adapter test suite", "homepage": "https://feathersjs.com", "keywords": [ diff --git a/packages/authentication-client/CHANGELOG.md b/packages/authentication-client/CHANGELOG.md index 399a4b403e..bdcc6d4a19 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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/authentication-client + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/authentication-client diff --git a/packages/authentication-client/package.json b/packages/authentication-client/package.json index 1ca7fc5775..b29109635b 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": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,18 +53,18 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7" + "@feathersjs/authentication": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.7", - "@feathersjs/express": "^5.0.7", - "@feathersjs/memory": "^5.0.7", - "@feathersjs/rest-client": "^5.0.7", - "@feathersjs/socketio": "^5.0.7", - "@feathersjs/socketio-client": "^5.0.7", + "@feathersjs/authentication-local": "^5.0.8", + "@feathersjs/express": "^5.0.8", + "@feathersjs/memory": "^5.0.8", + "@feathersjs/rest-client": "^5.0.8", + "@feathersjs/socketio": "^5.0.8", + "@feathersjs/socketio-client": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "axios": "^1.4.0", diff --git a/packages/authentication-local/CHANGELOG.md b/packages/authentication-local/CHANGELOG.md index 4d77c41873..ff81a12d14 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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/authentication-local + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-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 129f69a6be..3ff65a7fb8 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": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,16 +53,16 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/authentication": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", "bcryptjs": "^2.4.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/memory": "^5.0.7", - "@feathersjs/schema": "^5.0.7", + "@feathersjs/memory": "^5.0.8", + "@feathersjs/schema": "^5.0.8", "@types/bcryptjs": "^2.4.2", "@types/lodash": "^4.14.195", "@types/mocha": "^10.0.1", diff --git a/packages/authentication-oauth/CHANGELOG.md b/packages/authentication-oauth/CHANGELOG.md index 87cd5de6fd..ebcb7c4fc0 100644 --- a/packages/authentication-oauth/CHANGELOG.md +++ b/packages/authentication-oauth/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/authentication-oauth + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-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 988443c673..7bcf57ee19 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": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,13 +54,13 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/express": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/koa": "^5.0.7", - "@feathersjs/schema": "^5.0.7", + "@feathersjs/authentication": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/express": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/koa": "^5.0.8", + "@feathersjs/schema": "^5.0.8", "cookie-session": "^2.0.0", "grant": "^5.4.21", "koa-session": "^6.4.0", @@ -68,7 +68,7 @@ "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/memory": "^5.0.7", + "@feathersjs/memory": "^5.0.8", "@types/cookie-session": "^2.0.44", "@types/express": "^4.17.17", "@types/koa-session": "^6.4.1", diff --git a/packages/authentication/CHANGELOG.md b/packages/authentication/CHANGELOG.md index c63d2e6cd7..d92d664a4c 100644 --- a/packages/authentication/CHANGELOG.md +++ b/packages/authentication/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/authentication + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/authentication diff --git a/packages/authentication/package.json b/packages/authentication/package.json index 1d63fddab1..a551e4e390 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": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,12 +53,12 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", "@feathersjs/hooks": "^0.8.1", - "@feathersjs/schema": "^5.0.7", - "@feathersjs/transport-commons": "^5.0.7", + "@feathersjs/schema": "^5.0.8", + "@feathersjs/transport-commons": "^5.0.8", "@types/jsonwebtoken": "^9.0.2", "jsonwebtoken": "^9.0.1", "lodash": "^4.17.21", @@ -66,7 +66,7 @@ "uuid": "^9.0.0" }, "devDependencies": { - "@feathersjs/memory": "^5.0.7", + "@feathersjs/memory": "^5.0.8", "@types/lodash": "^4.14.195", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 24a75835e0..63eb1ed2f5 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/cli + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/cli diff --git a/packages/cli/package.json b/packages/cli/package.json index 9bb7e51eaa..1d5a871b87 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/cli", "description": "The command line interface for creating Feathers applications", - "version": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "bin": { @@ -52,28 +52,28 @@ "access": "public" }, "dependencies": { - "@feathersjs/generators": "^5.0.7", + "@feathersjs/generators": "^5.0.8", "chalk": "^4.0.1", "commander": "^11.0.0" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.7", - "@feathersjs/authentication": "^5.0.7", - "@feathersjs/authentication-client": "^5.0.7", - "@feathersjs/authentication-local": "^5.0.7", - "@feathersjs/authentication-oauth": "^5.0.7", - "@feathersjs/configuration": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/express": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/knex": "^5.0.7", - "@feathersjs/koa": "^5.0.7", - "@feathersjs/mongodb": "^5.0.7", - "@feathersjs/rest-client": "^5.0.7", - "@feathersjs/schema": "^5.0.7", - "@feathersjs/socketio": "^5.0.7", - "@feathersjs/transport-commons": "^5.0.7", - "@feathersjs/typebox": "^5.0.7", + "@feathersjs/adapter-commons": "^5.0.8", + "@feathersjs/authentication": "^5.0.8", + "@feathersjs/authentication-client": "^5.0.8", + "@feathersjs/authentication-local": "^5.0.8", + "@feathersjs/authentication-oauth": "^5.0.8", + "@feathersjs/configuration": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/express": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/knex": "^5.0.8", + "@feathersjs/koa": "^5.0.8", + "@feathersjs/mongodb": "^5.0.8", + "@feathersjs/rest-client": "^5.0.8", + "@feathersjs/schema": "^5.0.8", + "@feathersjs/socketio": "^5.0.8", + "@feathersjs/transport-commons": "^5.0.8", + "@feathersjs/typebox": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "@types/prettier": "^2.7.3", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 7b836ee3fb..53f5f655db 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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/client + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/client diff --git a/packages/client/package.json b/packages/client/package.json index 0a2d7adfa1..78c9fd1db5 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": "5.0.7", + "version": "5.0.8", "repository": { "type": "git", "url": "https://github.com/feathersjs/feathers.git", @@ -49,19 +49,19 @@ "IE 11" ], "dependencies": { - "@feathersjs/authentication-client": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/rest-client": "^5.0.7", - "@feathersjs/socketio-client": "^5.0.7" + "@feathersjs/authentication-client": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/rest-client": "^5.0.8", + "@feathersjs/socketio-client": "^5.0.8" }, "devDependencies": { "@babel/core": "^7.22.9", "@babel/preset-env": "^7.22.9", - "@feathersjs/express": "^5.0.7", - "@feathersjs/memory": "^5.0.7", - "@feathersjs/socketio": "^5.0.7", - "@feathersjs/tests": "^5.0.7", + "@feathersjs/express": "^5.0.8", + "@feathersjs/memory": "^5.0.8", + "@feathersjs/socketio": "^5.0.8", + "@feathersjs/tests": "^5.0.8", "babel-loader": "^9.1.3", "mocha": "^10.2.0", "mocha-puppeteer": "^0.14.0", diff --git a/packages/commons/CHANGELOG.md b/packages/commons/CHANGELOG.md index 27d06ec234..f4e481a935 100644 --- a/packages/commons/CHANGELOG.md +++ b/packages/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/commons + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/commons diff --git a/packages/commons/package.json b/packages/commons/package.json index 399de27047..94f1aa8476 100644 --- a/packages/commons/package.json +++ b/packages/commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/commons", - "version": "5.0.7", + "version": "5.0.8", "description": "Shared Feathers utility functions", "homepage": "https://feathersjs.com", "keywords": [ diff --git a/packages/configuration/CHANGELOG.md b/packages/configuration/CHANGELOG.md index 3d39fe1c8e..52fd8318c9 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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/configuration + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/configuration diff --git a/packages/configuration/package.json b/packages/configuration/package.json index eb1fb2e131..276714a140 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": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -58,9 +58,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/schema": "^5.0.7", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/schema": "^5.0.8", "@types/config": "^3.3.0", "config": "^3.3.9" }, diff --git a/packages/create-feathers/CHANGELOG.md b/packages/create-feathers/CHANGELOG.md index bbbac658fe..040cfdbbbe 100644 --- a/packages/create-feathers/CHANGELOG.md +++ b/packages/create-feathers/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package create-feathers + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package create-feathers diff --git a/packages/create-feathers/package.json b/packages/create-feathers/package.json index 670532f567..bbfd33742a 100644 --- a/packages/create-feathers/package.json +++ b/packages/create-feathers/package.json @@ -1,7 +1,7 @@ { "name": "create-feathers", "description": "Create a new Feathers application", - "version": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "bin": { "create-feathers": "./bin/create-feathers" @@ -47,7 +47,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/cli": "^5.0.7" + "@feathersjs/cli": "^5.0.8" }, "gitHead": "90caf635aec850550b9d37bea2762af959d9e8d5" } diff --git a/packages/errors/CHANGELOG.md b/packages/errors/CHANGELOG.md index 9c35e2b7d0..d6ada74ac7 100644 --- a/packages/errors/CHANGELOG.md +++ b/packages/errors/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/errors + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/errors diff --git a/packages/errors/package.json b/packages/errors/package.json index 1293877b9e..b66b4b0a1b 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": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,7 +49,7 @@ "*.js" ], "devDependencies": { - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/feathers": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "mocha": "^10.2.0", diff --git a/packages/express/CHANGELOG.md b/packages/express/CHANGELOG.md index d42cddae8d..b981b81f0f 100644 --- a/packages/express/CHANGELOG.md +++ b/packages/express/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/express + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/express diff --git a/packages/express/package.json b/packages/express/package.json index 45835ba2d0..66ba28a4e1 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": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -52,11 +52,11 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/transport-commons": "^5.0.7", + "@feathersjs/authentication": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/transport-commons": "^5.0.8", "@types/compression": "^1.7.2", "@types/express": "^4.17.17", "@types/express-serve-static-core": "^4.17.35", @@ -65,8 +65,8 @@ "express": "^4.18.2" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.7", - "@feathersjs/tests": "^5.0.7", + "@feathersjs/authentication-local": "^5.0.8", + "@feathersjs/tests": "^5.0.8", "@types/lodash": "^4.14.195", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", diff --git a/packages/feathers/CHANGELOG.md b/packages/feathers/CHANGELOG.md index f29b817034..b21c5f4500 100644 --- a/packages/feathers/CHANGELOG.md +++ b/packages/feathers/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/feathers + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) diff --git a/packages/feathers/package.json b/packages/feathers/package.json index 06a990edf1..9175801735 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": "5.0.7", + "version": "5.0.8", "homepage": "http://feathersjs.com", "repository": { "type": "git", @@ -58,7 +58,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.7", + "@feathersjs/commons": "^5.0.8", "@feathersjs/hooks": "^0.8.1", "events": "^3.3.0" }, diff --git a/packages/generators/CHANGELOG.md b/packages/generators/CHANGELOG.md index 18424c2601..8ae93b29fb 100644 --- a/packages/generators/CHANGELOG.md +++ b/packages/generators/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/generators + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) diff --git a/packages/generators/package.json b/packages/generators/package.json index 6735a880c0..50d8721456 100644 --- a/packages/generators/package.json +++ b/packages/generators/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/generators", - "version": "5.0.7", + "version": "5.0.8", "description": "Feathers CLI core generators, powered by Pinion", "homepage": "https://feathersjs.com", "keywords": [ @@ -59,23 +59,23 @@ "typescript": "^5.1.6" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.7", - "@feathersjs/authentication": "^5.0.7", - "@feathersjs/authentication-client": "^5.0.7", - "@feathersjs/authentication-local": "^5.0.7", - "@feathersjs/authentication-oauth": "^5.0.7", - "@feathersjs/configuration": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/express": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/knex": "^5.0.7", - "@feathersjs/koa": "^5.0.7", - "@feathersjs/mongodb": "^5.0.7", - "@feathersjs/rest-client": "^5.0.7", - "@feathersjs/schema": "^5.0.7", - "@feathersjs/socketio": "^5.0.7", - "@feathersjs/transport-commons": "^5.0.7", - "@feathersjs/typebox": "^5.0.7", + "@feathersjs/adapter-commons": "^5.0.8", + "@feathersjs/authentication": "^5.0.8", + "@feathersjs/authentication-client": "^5.0.8", + "@feathersjs/authentication-local": "^5.0.8", + "@feathersjs/authentication-oauth": "^5.0.8", + "@feathersjs/configuration": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/express": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/knex": "^5.0.8", + "@feathersjs/koa": "^5.0.8", + "@feathersjs/mongodb": "^5.0.8", + "@feathersjs/rest-client": "^5.0.8", + "@feathersjs/schema": "^5.0.8", + "@feathersjs/socketio": "^5.0.8", + "@feathersjs/transport-commons": "^5.0.8", + "@feathersjs/typebox": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "@types/prettier": "^2.7.3", diff --git a/packages/knex/CHANGELOG.md b/packages/knex/CHANGELOG.md index a7ea38cfba..f75f1ccb67 100644 --- a/packages/knex/CHANGELOG.md +++ b/packages/knex/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/knex + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/knex diff --git a/packages/knex/package.json b/packages/knex/package.json index 7c94372ef8..c86e3a2b58 100644 --- a/packages/knex/package.json +++ b/packages/knex/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/knex", "description": "Feathers SQL service adapter using KnexJS", - "version": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -51,17 +51,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7" + "@feathersjs/adapter-commons": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8" }, "peerDependencies": { "knex": "^2.3.0" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.7", - "@feathersjs/schema": "^5.0.7", + "@feathersjs/adapter-tests": "^5.0.8", + "@feathersjs/schema": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "knex": "^2.5.1", diff --git a/packages/koa/CHANGELOG.md b/packages/koa/CHANGELOG.md index ecf11722b6..c52ee66b1c 100644 --- a/packages/koa/CHANGELOG.md +++ b/packages/koa/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/koa + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) diff --git a/packages/koa/package.json b/packages/koa/package.json index 0c2df1731f..428f5f8320 100644 --- a/packages/koa/package.json +++ b/packages/koa/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/koa", "description": "Feathers KoaJS framework bindings and REST provider", - "version": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,11 +49,11 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/transport-commons": "^5.0.7", + "@feathersjs/authentication": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/transport-commons": "^5.0.8", "@koa/cors": "^4.0.0", "@types/koa": "^2.13.6", "@types/koa-qs": "^2.0.0", @@ -66,9 +66,9 @@ "koa-static": "^5.0.0" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.7", - "@feathersjs/memory": "^5.0.7", - "@feathersjs/tests": "^5.0.7", + "@feathersjs/authentication-local": "^5.0.8", + "@feathersjs/memory": "^5.0.8", + "@feathersjs/tests": "^5.0.8", "@types/koa-compose": "^3.2.5", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", diff --git a/packages/memory/CHANGELOG.md b/packages/memory/CHANGELOG.md index d17de840b5..85001ff271 100644 --- a/packages/memory/CHANGELOG.md +++ b/packages/memory/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/memory + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/memory diff --git a/packages/memory/package.json b/packages/memory/package.json index 1eace67b80..b1598cdbb2 100644 --- a/packages/memory/package.json +++ b/packages/memory/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/memory", "description": "An in memory service store", - "version": "5.0.7", + "version": "5.0.8", "homepage": "https://github.com/feathersjs/feathers", "main": "lib/", "types": "lib/", @@ -49,14 +49,14 @@ "lib": "lib" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", + "@feathersjs/adapter-commons": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", "sift": "^17.0.1" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/adapter-tests": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "mocha": "^10.2.0", diff --git a/packages/mongodb/CHANGELOG.md b/packages/mongodb/CHANGELOG.md index e176653c29..97840b1e84 100644 --- a/packages/mongodb/CHANGELOG.md +++ b/packages/mongodb/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/mongodb + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/mongodb diff --git a/packages/mongodb/package.json b/packages/mongodb/package.json index 56bbdd790b..a9e45e766d 100644 --- a/packages/mongodb/package.json +++ b/packages/mongodb/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/mongodb", "description": "Feathers MongoDB service adapter", - "version": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -51,17 +51,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7" + "@feathersjs/adapter-commons": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8" }, "peerDependencies": { "mongodb": "^5.2.0" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.7", - "@feathersjs/schema": "^5.0.7", + "@feathersjs/adapter-tests": "^5.0.8", + "@feathersjs/schema": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "mocha": "^10.2.0", diff --git a/packages/rest-client/CHANGELOG.md b/packages/rest-client/CHANGELOG.md index ace75baac5..a10afcc6df 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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/rest-client + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-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 de003ea2a2..684beb147e 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": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,16 +53,16 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", "@types/superagent": "^4.1.18", "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/express": "^5.0.7", - "@feathersjs/memory": "^5.0.7", - "@feathersjs/tests": "^5.0.7", + "@feathersjs/express": "^5.0.8", + "@feathersjs/memory": "^5.0.8", + "@feathersjs/tests": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "@types/node-fetch": "^2.6.4", diff --git a/packages/schema/CHANGELOG.md b/packages/schema/CHANGELOG.md index 52143b4e83..818a380625 100644 --- a/packages/schema/CHANGELOG.md +++ b/packages/schema/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/schema + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/schema diff --git a/packages/schema/package.json b/packages/schema/package.json index 8ecfbbd2e0..5d738b3b28 100644 --- a/packages/schema/package.json +++ b/packages/schema/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/schema", "description": "A common data schema definition format", - "version": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,10 +54,10 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.7", - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/adapter-commons": "^5.0.8", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", "@feathersjs/hooks": "^0.8.1", "@types/json-schema": "^7.0.12", "ajv": "^8.12.0", @@ -65,7 +65,7 @@ "json-schema-to-ts": "^2.9.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.7", + "@feathersjs/memory": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "ajv-formats": "^2.1.1", diff --git a/packages/socketio-client/CHANGELOG.md b/packages/socketio-client/CHANGELOG.md index 9b6ac2c009..adf38b218b 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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/socketio-client + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-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 1469548273..2528376b7a 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": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,14 +54,14 @@ "access": "public" }, "dependencies": { - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/transport-commons": "^5.0.7" + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/transport-commons": "^5.0.8" }, "devDependencies": { - "@feathersjs/commons": "^5.0.7", - "@feathersjs/memory": "^5.0.7", - "@feathersjs/socketio": "^5.0.7", - "@feathersjs/tests": "^5.0.7", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/memory": "^5.0.8", + "@feathersjs/socketio": "^5.0.8", + "@feathersjs/tests": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "mocha": "^10.2.0", diff --git a/packages/socketio/CHANGELOG.md b/packages/socketio/CHANGELOG.md index aee524debd..2e2e9207b7 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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/socketio + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/socketio diff --git a/packages/socketio/package.json b/packages/socketio/package.json index 2373ebccf9..f8c81380fe 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": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,15 +53,15 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", - "@feathersjs/transport-commons": "^5.0.7", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", + "@feathersjs/transport-commons": "^5.0.8", "socket.io": "^4.7.1" }, "devDependencies": { - "@feathersjs/express": "^5.0.7", - "@feathersjs/memory": "^5.0.7", - "@feathersjs/tests": "^5.0.7", + "@feathersjs/express": "^5.0.8", + "@feathersjs/memory": "^5.0.8", + "@feathersjs/tests": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "lodash": "^4.17.21", diff --git a/packages/tests/CHANGELOG.md b/packages/tests/CHANGELOG.md index 36777175e6..8a28e7aca9 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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/tests + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/tests diff --git a/packages/tests/package.json b/packages/tests/package.json index be3980c513..a09773c496 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": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,7 +49,7 @@ "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/feathers": "^5.0.8", "@types/mocha": "^10.0.1", "@types/node": "^20.4.2", "mocha": "^10.2.0", diff --git a/packages/transport-commons/CHANGELOG.md b/packages/transport-commons/CHANGELOG.md index 85e42c5358..62d3f1345c 100644 --- a/packages/transport-commons/CHANGELOG.md +++ b/packages/transport-commons/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + + +### Bug Fixes + +* **transport-commons:** Handle invalid service paths on socket lookups ([#3241](https://github.com/feathersjs/feathers/issues/3241)) ([c397ab3](https://github.com/feathersjs/feathers/commit/c397ab3a0cd184044ae4f73540549b30a396821c)) + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-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 427094d7b7..5194c14f9c 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": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,9 +54,9 @@ "*.js" ], "dependencies": { - "@feathersjs/commons": "^5.0.7", - "@feathersjs/errors": "^5.0.7", - "@feathersjs/feathers": "^5.0.7", + "@feathersjs/commons": "^5.0.8", + "@feathersjs/errors": "^5.0.8", + "@feathersjs/feathers": "^5.0.8", "encodeurl": "^1.0.2", "lodash": "^4.17.21" }, diff --git a/packages/transport-commons/src/socket/index.ts b/packages/transport-commons/src/socket/index.ts index 6e49d20237..1c21095fd1 100644 --- a/packages/transport-commons/src/socket/index.ts +++ b/packages/transport-commons/src/socket/index.ts @@ -1,11 +1,8 @@ import { Application, getServiceOptions, Params, RealTimeConnection } from '@feathersjs/feathers' -import { createDebug } from '@feathersjs/commons' import { channels } from '../channels' import { routing } from '../routing' import { getDispatcher, runMethod } from './utils' -const debug = createDebug('@feathersjs/transport-commons') - export interface SocketOptions { done: Promise emit: string @@ -51,10 +48,9 @@ export function socket({ done, emit, socketMap, socketKey, getParams }: SocketOp methods.forEach((method) => { if (!result[method]) { result[method] = (...args: any[]) => { - const path = args.shift() + const [path, ...rest] = args - debug(`Got '${method}' call for service '${path}'`) - runMethod(app, getParams(connection), path, method, args) + runMethod(app, getParams(connection), path, method, rest) } } }) diff --git a/packages/transport-commons/src/socket/utils.ts b/packages/transport-commons/src/socket/utils.ts index f61d9a856a..768bba469a 100644 --- a/packages/transport-commons/src/socket/utils.ts +++ b/packages/transport-commons/src/socket/utils.ts @@ -69,10 +69,12 @@ export function getDispatcher(emit: string, socketMap: WeakMap { }) }) - it('.get with invalid service name and arguments', (done) => { + it('method with invalid service name and arguments', (done) => { const socket = new EventEmitter() provider.emit('connection', socket) socket.emit('get', null, (error: any) => { assert.strictEqual(error.name, 'NotFound') - assert.strictEqual(error.message, "Service 'null' not found") + assert.strictEqual(error.message, 'Invalid service path') + done() + }) + }) + + it('method with implicit toString errors properly', (done) => { + const socket = new EventEmitter() + + provider.emit('connection', socket) + + socket.emit('get', { toString: '' }, (error: any) => { + assert.strictEqual(error.name, 'NotFound') + assert.strictEqual(error.message, 'Invalid service path') done() }) }) diff --git a/packages/typebox/CHANGELOG.md b/packages/typebox/CHANGELOG.md index 40ab07f395..308c12e4a2 100644 --- a/packages/typebox/CHANGELOG.md +++ b/packages/typebox/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. +## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19) + +**Note:** Version bump only for package @feathersjs/typebox + + + + + ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14) **Note:** Version bump only for package @feathersjs/typebox diff --git a/packages/typebox/package.json b/packages/typebox/package.json index d02656dc05..aa52e920c3 100644 --- a/packages/typebox/package.json +++ b/packages/typebox/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/typebox", "description": "TypeBox integration for @feathersjs/schema", - "version": "5.0.7", + "version": "5.0.8", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,7 +54,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/schema": "^5.0.7", + "@feathersjs/schema": "^5.0.8", "@sinclair/typebox": "^0.25.0" }, "devDependencies": {