From af185f068b64e8ca8e382c29b8429b414313d9c0 Mon Sep 17 00:00:00 2001 From: daffl Date: Wed, 24 Jan 2024 09:01:41 -0800 Subject: [PATCH] chore(release): publish v5.0.20 --- CHANGELOG.md | 6 + lerna.json | 2 +- package-lock.json | 338 ++++++++++---------- packages/adapter-commons/CHANGELOG.md | 4 + packages/adapter-commons/package.json | 8 +- packages/adapter-tests/CHANGELOG.md | 4 + packages/adapter-tests/package.json | 2 +- packages/authentication-client/CHANGELOG.md | 4 + packages/authentication-client/package.json | 22 +- packages/authentication-local/CHANGELOG.md | 4 + packages/authentication-local/package.json | 14 +- packages/authentication-oauth/CHANGELOG.md | 4 + packages/authentication-oauth/package.json | 18 +- packages/authentication/CHANGELOG.md | 4 + packages/authentication/package.json | 14 +- packages/cli/CHANGELOG.md | 4 + packages/cli/package.json | 38 +-- packages/client/CHANGELOG.md | 4 + packages/client/package.json | 20 +- packages/commons/CHANGELOG.md | 4 + packages/commons/package.json | 2 +- packages/configuration/CHANGELOG.md | 4 + packages/configuration/package.json | 8 +- packages/create-feathers/CHANGELOG.md | 4 + packages/create-feathers/package.json | 4 +- packages/errors/CHANGELOG.md | 4 + packages/errors/package.json | 4 +- packages/express/CHANGELOG.md | 4 + packages/express/package.json | 16 +- packages/feathers/CHANGELOG.md | 4 + packages/feathers/package.json | 4 +- packages/generators/CHANGELOG.md | 6 + packages/generators/package.json | 36 +-- packages/knex/CHANGELOG.md | 4 + packages/knex/package.json | 14 +- packages/koa/CHANGELOG.md | 4 + packages/koa/package.json | 18 +- packages/memory/CHANGELOG.md | 4 + packages/memory/package.json | 12 +- packages/mongodb/CHANGELOG.md | 4 + packages/mongodb/package.json | 14 +- packages/rest-client/CHANGELOG.md | 4 + packages/rest-client/package.json | 14 +- packages/schema/CHANGELOG.md | 4 + packages/schema/package.json | 12 +- packages/socketio-client/CHANGELOG.md | 4 + packages/socketio-client/package.json | 14 +- packages/socketio/CHANGELOG.md | 4 + packages/socketio/package.json | 14 +- packages/tests/CHANGELOG.md | 4 + packages/tests/package.json | 4 +- packages/transport-commons/CHANGELOG.md | 4 + packages/transport-commons/package.json | 8 +- packages/typebox/CHANGELOG.md | 4 + packages/typebox/package.json | 4 +- 55 files changed, 451 insertions(+), 339 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abad90b683..62c191a12e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +### Bug Fixes + +- **generators:** Use cross-platform ES module \_\_dirname ([#3402](https://github.com/feathersjs/feathers/issues/3402)) ([0ac4882](https://github.com/feathersjs/feathers/commit/0ac4882663bb6a78622be0d903ae6508ecb516ad)) + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 4b00259130..2b42832139 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "ci": false, "packages": ["packages/*"], - "version": "5.0.19", + "version": "5.0.20", "command": { "bootstrap": { "hoist": true diff --git a/package-lock.json b/package-lock.json index 53d7ae6c8f..61e9c936e4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23922,12 +23922,12 @@ }, "packages/adapter-commons": { "name": "@feathersjs/adapter-commons", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19" + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20" }, "devDependencies": { "@types/mocha": "^10.0.6", @@ -23949,7 +23949,7 @@ }, "packages/adapter-tests": { "name": "@feathersjs/adapter-tests", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "devDependencies": { "@types/mocha": "^10.0.6", @@ -23969,15 +23969,15 @@ }, "packages/authentication": { "name": "@feathersjs/authentication", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", "@feathersjs/hooks": "^0.8.1", - "@feathersjs/schema": "^5.0.19", - "@feathersjs/transport-commons": "^5.0.19", + "@feathersjs/schema": "^5.0.20", + "@feathersjs/transport-commons": "^5.0.20", "@types/jsonwebtoken": "^9.0.5", "jsonwebtoken": "^9.0.2", "lodash": "^4.17.21", @@ -23985,7 +23985,7 @@ "uuid": "^9.0.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.19", + "@feathersjs/memory": "^5.0.20", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", @@ -24005,21 +24005,21 @@ }, "packages/authentication-client": { "name": "@feathersjs/authentication-client", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19" + "@feathersjs/authentication": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.19", - "@feathersjs/express": "^5.0.19", - "@feathersjs/memory": "^5.0.19", - "@feathersjs/rest-client": "^5.0.19", - "@feathersjs/socketio": "^5.0.19", - "@feathersjs/socketio-client": "^5.0.19", + "@feathersjs/authentication-local": "^5.0.20", + "@feathersjs/express": "^5.0.20", + "@feathersjs/memory": "^5.0.20", + "@feathersjs/rest-client": "^5.0.20", + "@feathersjs/socketio": "^5.0.20", + "@feathersjs/socketio-client": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "axios": "^1.6.5", @@ -24038,19 +24038,19 @@ }, "packages/authentication-local": { "name": "@feathersjs/authentication-local", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/authentication": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", "bcryptjs": "^2.4.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/memory": "^5.0.19", - "@feathersjs/schema": "^5.0.19", + "@feathersjs/memory": "^5.0.20", + "@feathersjs/schema": "^5.0.20", "@types/bcryptjs": "^2.4.6", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", @@ -24070,16 +24070,16 @@ }, "packages/authentication-oauth": { "name": "@feathersjs/authentication-oauth", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/express": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/koa": "^5.0.19", - "@feathersjs/schema": "^5.0.19", + "@feathersjs/authentication": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/express": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/koa": "^5.0.20", + "@feathersjs/schema": "^5.0.20", "cookie-session": "^2.1.0", "grant": "^5.4.22", "koa-session": "^6.4.0", @@ -24087,7 +24087,7 @@ "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/memory": "^5.0.19", + "@feathersjs/memory": "^5.0.20", "@types/cookie-session": "^2.0.48", "@types/express": "^4.17.21", "@types/koa-session": "^6.4.5", @@ -24112,10 +24112,10 @@ }, "packages/cli": { "name": "@feathersjs/cli", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/generators": "^5.0.19", + "@feathersjs/generators": "^5.0.20", "chalk": "^5.3.0", "commander": "^11.1.0" }, @@ -24123,23 +24123,23 @@ "feathers": "bin/feathers.js" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.19", - "@feathersjs/authentication": "^5.0.19", - "@feathersjs/authentication-client": "^5.0.19", - "@feathersjs/authentication-local": "^5.0.19", - "@feathersjs/authentication-oauth": "^5.0.19", - "@feathersjs/configuration": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/express": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/knex": "^5.0.19", - "@feathersjs/koa": "^5.0.19", - "@feathersjs/mongodb": "^5.0.19", - "@feathersjs/rest-client": "^5.0.19", - "@feathersjs/schema": "^5.0.19", - "@feathersjs/socketio": "^5.0.19", - "@feathersjs/transport-commons": "^5.0.19", - "@feathersjs/typebox": "^5.0.19", + "@feathersjs/adapter-commons": "^5.0.20", + "@feathersjs/authentication": "^5.0.20", + "@feathersjs/authentication-client": "^5.0.20", + "@feathersjs/authentication-local": "^5.0.20", + "@feathersjs/authentication-oauth": "^5.0.20", + "@feathersjs/configuration": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/express": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/knex": "^5.0.20", + "@feathersjs/koa": "^5.0.20", + "@feathersjs/mongodb": "^5.0.20", + "@feathersjs/rest-client": "^5.0.20", + "@feathersjs/schema": "^5.0.20", + "@feathersjs/socketio": "^5.0.20", + "@feathersjs/transport-commons": "^5.0.20", + "@feathersjs/typebox": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "@types/prettier": "^2.7.3", @@ -24160,22 +24160,22 @@ }, "packages/client": { "name": "@feathersjs/client", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/authentication-client": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/rest-client": "^5.0.19", - "@feathersjs/socketio-client": "^5.0.19" + "@feathersjs/authentication-client": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/rest-client": "^5.0.20", + "@feathersjs/socketio-client": "^5.0.20" }, "devDependencies": { "@babel/core": "^7.23.7", "@babel/preset-env": "^7.23.8", - "@feathersjs/express": "^5.0.19", - "@feathersjs/memory": "^5.0.19", - "@feathersjs/socketio": "^5.0.19", - "@feathersjs/tests": "^5.0.19", + "@feathersjs/express": "^5.0.20", + "@feathersjs/memory": "^5.0.20", + "@feathersjs/socketio": "^5.0.20", + "@feathersjs/tests": "^5.0.20", "babel-loader": "^9.1.3", "mocha": "^10.2.0", "node-fetch": "^2.6.1", @@ -24198,7 +24198,7 @@ }, "packages/commons": { "name": "@feathersjs/commons", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "devDependencies": { "@types/mocha": "^10.0.6", @@ -24218,12 +24218,12 @@ }, "packages/configuration": { "name": "@feathersjs/configuration", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/schema": "^5.0.19", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/schema": "^5.0.20", "@types/config": "^3.3.3", "config": "^3.3.10" }, @@ -24244,10 +24244,10 @@ } }, "packages/create-feathers": { - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/cli": "^5.0.19" + "@feathersjs/cli": "^5.0.20" }, "bin": { "create-feathers": "bin/create-feathers.js" @@ -24262,10 +24262,10 @@ }, "packages/errors": { "name": "@feathersjs/errors", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "devDependencies": { - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/feathers": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "mocha": "^10.2.0", @@ -24279,14 +24279,14 @@ }, "packages/express": { "name": "@feathersjs/express", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/transport-commons": "^5.0.19", + "@feathersjs/authentication": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/transport-commons": "^5.0.20", "@types/compression": "^1.7.5", "@types/cors": "^2.8.17", "@types/express": "^4.17.21", @@ -24296,8 +24296,8 @@ "express": "^4.18.2" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.19", - "@feathersjs/tests": "^5.0.19", + "@feathersjs/authentication-local": "^5.0.20", + "@feathersjs/tests": "^5.0.20", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", @@ -24318,10 +24318,10 @@ }, "packages/feathers": { "name": "@feathersjs/feathers", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.19", + "@feathersjs/commons": "^5.0.20", "@feathersjs/hooks": "^0.8.1", "events": "^3.3.0" }, @@ -24343,7 +24343,7 @@ }, "packages/generators": { "name": "@feathersjs/generators", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { "@featherscloud/pinion": "^0.5.0", @@ -24353,23 +24353,23 @@ "typescript": "^5.3.3" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.19", - "@feathersjs/authentication": "^5.0.19", - "@feathersjs/authentication-client": "^5.0.19", - "@feathersjs/authentication-local": "^5.0.19", - "@feathersjs/authentication-oauth": "^5.0.19", - "@feathersjs/configuration": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/express": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/knex": "^5.0.19", - "@feathersjs/koa": "^5.0.19", - "@feathersjs/mongodb": "^5.0.19", - "@feathersjs/rest-client": "^5.0.19", - "@feathersjs/schema": "^5.0.19", - "@feathersjs/socketio": "^5.0.19", - "@feathersjs/transport-commons": "^5.0.19", - "@feathersjs/typebox": "^5.0.19", + "@feathersjs/adapter-commons": "^5.0.20", + "@feathersjs/authentication": "^5.0.20", + "@feathersjs/authentication-client": "^5.0.20", + "@feathersjs/authentication-local": "^5.0.20", + "@feathersjs/authentication-oauth": "^5.0.20", + "@feathersjs/configuration": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/express": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/knex": "^5.0.20", + "@feathersjs/koa": "^5.0.20", + "@feathersjs/mongodb": "^5.0.20", + "@feathersjs/rest-client": "^5.0.20", + "@feathersjs/schema": "^5.0.20", + "@feathersjs/socketio": "^5.0.20", + "@feathersjs/transport-commons": "^5.0.20", + "@feathersjs/typebox": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "@types/prettier": "^2.7.3", @@ -24396,17 +24396,17 @@ }, "packages/knex": { "name": "@feathersjs/knex", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19" + "@feathersjs/adapter-commons": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.19", - "@feathersjs/schema": "^5.0.19", + "@feathersjs/adapter-tests": "^5.0.20", + "@feathersjs/schema": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "knex": "^3.1.0", @@ -24429,14 +24429,14 @@ }, "packages/koa": { "name": "@feathersjs/koa", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/transport-commons": "^5.0.19", + "@feathersjs/authentication": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/transport-commons": "^5.0.20", "@koa/cors": "^5.0.0", "@types/koa": "^2.14.0", "@types/koa__cors": "^5.0.0", @@ -24449,9 +24449,9 @@ "koa-static": "^5.0.0" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.19", - "@feathersjs/memory": "^5.0.19", - "@feathersjs/tests": "^5.0.19", + "@feathersjs/authentication-local": "^5.0.20", + "@feathersjs/memory": "^5.0.20", + "@feathersjs/tests": "^5.0.20", "@types/koa-compose": "^3.2.8", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", @@ -24467,17 +24467,17 @@ }, "packages/memory": { "name": "@feathersjs/memory", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", + "@feathersjs/adapter-commons": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", "sift": "^17.0.1" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/adapter-tests": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "mocha": "^10.2.0", @@ -24491,17 +24491,17 @@ }, "packages/mongodb": { "name": "@feathersjs/mongodb", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19" + "@feathersjs/adapter-commons": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.19", - "@feathersjs/schema": "^5.0.19", + "@feathersjs/adapter-tests": "^5.0.20", + "@feathersjs/schema": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "mocha": "^10.2.0", @@ -24522,19 +24522,19 @@ }, "packages/rest-client": { "name": "@feathersjs/rest-client", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", "@types/superagent": "^8.1.2", "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/express": "^5.0.19", - "@feathersjs/memory": "^5.0.19", - "@feathersjs/tests": "^5.0.19", + "@feathersjs/express": "^5.0.20", + "@feathersjs/memory": "^5.0.20", + "@feathersjs/tests": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "@types/node-fetch": "^2.6.11", @@ -24558,13 +24558,13 @@ }, "packages/schema": { "name": "@feathersjs/schema", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/adapter-commons": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", "@feathersjs/hooks": "^0.8.1", "@types/json-schema": "^7.0.15", "ajv": "^8.12.0", @@ -24572,7 +24572,7 @@ "json-schema-to-ts": "^3.0.0" }, "devDependencies": { - "@feathersjs/memory": "^5.0.19", + "@feathersjs/memory": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "ajv-formats": "^2.1.1", @@ -24613,18 +24613,18 @@ }, "packages/socketio": { "name": "@feathersjs/socketio", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/transport-commons": "^5.0.19", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/transport-commons": "^5.0.20", "socket.io": "^4.7.4" }, "devDependencies": { - "@feathersjs/express": "^5.0.19", - "@feathersjs/memory": "^5.0.19", - "@feathersjs/tests": "^5.0.19", + "@feathersjs/express": "^5.0.20", + "@feathersjs/memory": "^5.0.20", + "@feathersjs/tests": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "lodash": "^4.17.21", @@ -24643,17 +24643,17 @@ }, "packages/socketio-client": { "name": "@feathersjs/socketio-client", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/transport-commons": "^5.0.19" + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/transport-commons": "^5.0.20" }, "devDependencies": { - "@feathersjs/commons": "^5.0.19", - "@feathersjs/memory": "^5.0.19", - "@feathersjs/socketio": "^5.0.19", - "@feathersjs/tests": "^5.0.19", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/memory": "^5.0.20", + "@feathersjs/socketio": "^5.0.20", + "@feathersjs/tests": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "mocha": "^10.2.0", @@ -24672,7 +24672,7 @@ }, "packages/tests": { "name": "@feathersjs/tests", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { "@types/lodash": "^4.14.202", @@ -24680,7 +24680,7 @@ "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/feathers": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "mocha": "^10.2.0", @@ -24698,12 +24698,12 @@ }, "packages/transport-commons": { "name": "@feathersjs/transport-commons", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", "encodeurl": "^1.0.2", "lodash": "^4.17.21" }, @@ -24727,10 +24727,10 @@ }, "packages/typebox": { "name": "@feathersjs/typebox", - "version": "5.0.19", + "version": "5.0.20", "license": "MIT", "dependencies": { - "@feathersjs/schema": "^5.0.19", + "@feathersjs/schema": "^5.0.20", "@sinclair/typebox": "^0.25.0" }, "devDependencies": { diff --git a/packages/adapter-commons/CHANGELOG.md b/packages/adapter-commons/CHANGELOG.md index 15447711f2..ad972049dc 100644 --- a/packages/adapter-commons/CHANGELOG.md +++ b/packages/adapter-commons/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/adapter-commons + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/adapter-commons diff --git a/packages/adapter-commons/package.json b/packages/adapter-commons/package.json index ccffac0c86..9a5af0f48c 100644 --- a/packages/adapter-commons/package.json +++ b/packages/adapter-commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-commons", - "version": "5.0.19", + "version": "5.0.20", "description": "Shared database adapter utility functions", "homepage": "https://feathersjs.com", "keywords": [ @@ -50,9 +50,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19" + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20" }, "devDependencies": { "@types/mocha": "^10.0.6", diff --git a/packages/adapter-tests/CHANGELOG.md b/packages/adapter-tests/CHANGELOG.md index 9ebbd49e48..861fb0d640 100644 --- a/packages/adapter-tests/CHANGELOG.md +++ b/packages/adapter-tests/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/adapter-tests + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/adapter-tests diff --git a/packages/adapter-tests/package.json b/packages/adapter-tests/package.json index 6fa8a30801..b2b5563a1f 100644 --- a/packages/adapter-tests/package.json +++ b/packages/adapter-tests/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-tests", - "version": "5.0.19", + "version": "5.0.20", "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 d4de54c3b5..024ae8c9a5 100644 --- a/packages/authentication-client/CHANGELOG.md +++ b/packages/authentication-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/authentication-client + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/authentication-client diff --git a/packages/authentication-client/package.json b/packages/authentication-client/package.json index ff247419af..00237e4b68 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,18 +53,18 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19" + "@feathersjs/authentication": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.19", - "@feathersjs/express": "^5.0.19", - "@feathersjs/memory": "^5.0.19", - "@feathersjs/rest-client": "^5.0.19", - "@feathersjs/socketio": "^5.0.19", - "@feathersjs/socketio-client": "^5.0.19", + "@feathersjs/authentication-local": "^5.0.20", + "@feathersjs/express": "^5.0.20", + "@feathersjs/memory": "^5.0.20", + "@feathersjs/rest-client": "^5.0.20", + "@feathersjs/socketio": "^5.0.20", + "@feathersjs/socketio-client": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "axios": "^1.6.5", diff --git a/packages/authentication-local/CHANGELOG.md b/packages/authentication-local/CHANGELOG.md index d553f5ec9a..6c633f52cb 100644 --- a/packages/authentication-local/CHANGELOG.md +++ b/packages/authentication-local/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/authentication-local + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/authentication-local diff --git a/packages/authentication-local/package.json b/packages/authentication-local/package.json index 5019f471ab..440ebdc60e 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,16 +53,16 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/authentication": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", "bcryptjs": "^2.4.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/memory": "^5.0.19", - "@feathersjs/schema": "^5.0.19", + "@feathersjs/memory": "^5.0.20", + "@feathersjs/schema": "^5.0.20", "@types/bcryptjs": "^2.4.6", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", diff --git a/packages/authentication-oauth/CHANGELOG.md b/packages/authentication-oauth/CHANGELOG.md index a691bccf6b..45c929a648 100644 --- a/packages/authentication-oauth/CHANGELOG.md +++ b/packages/authentication-oauth/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/authentication-oauth + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/authentication-oauth diff --git a/packages/authentication-oauth/package.json b/packages/authentication-oauth/package.json index a75a4ec8e9..559a9a0a89 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,13 +54,13 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/express": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/koa": "^5.0.19", - "@feathersjs/schema": "^5.0.19", + "@feathersjs/authentication": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/express": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/koa": "^5.0.20", + "@feathersjs/schema": "^5.0.20", "cookie-session": "^2.1.0", "grant": "^5.4.22", "koa-session": "^6.4.0", @@ -68,7 +68,7 @@ "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/memory": "^5.0.19", + "@feathersjs/memory": "^5.0.20", "@types/cookie-session": "^2.0.48", "@types/express": "^4.17.21", "@types/koa-session": "^6.4.5", diff --git a/packages/authentication/CHANGELOG.md b/packages/authentication/CHANGELOG.md index 7a85b14222..34f6f09d7d 100644 --- a/packages/authentication/CHANGELOG.md +++ b/packages/authentication/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/authentication + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/authentication diff --git a/packages/authentication/package.json b/packages/authentication/package.json index 15de2abe78..8da8acdd76 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,12 +53,12 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", "@feathersjs/hooks": "^0.8.1", - "@feathersjs/schema": "^5.0.19", - "@feathersjs/transport-commons": "^5.0.19", + "@feathersjs/schema": "^5.0.20", + "@feathersjs/transport-commons": "^5.0.20", "@types/jsonwebtoken": "^9.0.5", "jsonwebtoken": "^9.0.2", "lodash": "^4.17.21", @@ -66,7 +66,7 @@ "uuid": "^9.0.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.19", + "@feathersjs/memory": "^5.0.20", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 6752758d5c..a223ed2b82 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/cli + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) ### Bug Fixes diff --git a/packages/cli/package.json b/packages/cli/package.json index c833178bc1..58225eadbd 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/index.js", "type": "module", @@ -53,28 +53,28 @@ "access": "public" }, "dependencies": { - "@feathersjs/generators": "^5.0.19", + "@feathersjs/generators": "^5.0.20", "chalk": "^5.3.0", "commander": "^11.1.0" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.19", - "@feathersjs/authentication": "^5.0.19", - "@feathersjs/authentication-client": "^5.0.19", - "@feathersjs/authentication-local": "^5.0.19", - "@feathersjs/authentication-oauth": "^5.0.19", - "@feathersjs/configuration": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/express": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/knex": "^5.0.19", - "@feathersjs/koa": "^5.0.19", - "@feathersjs/mongodb": "^5.0.19", - "@feathersjs/rest-client": "^5.0.19", - "@feathersjs/schema": "^5.0.19", - "@feathersjs/socketio": "^5.0.19", - "@feathersjs/transport-commons": "^5.0.19", - "@feathersjs/typebox": "^5.0.19", + "@feathersjs/adapter-commons": "^5.0.20", + "@feathersjs/authentication": "^5.0.20", + "@feathersjs/authentication-client": "^5.0.20", + "@feathersjs/authentication-local": "^5.0.20", + "@feathersjs/authentication-oauth": "^5.0.20", + "@feathersjs/configuration": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/express": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/knex": "^5.0.20", + "@feathersjs/koa": "^5.0.20", + "@feathersjs/mongodb": "^5.0.20", + "@feathersjs/rest-client": "^5.0.20", + "@feathersjs/schema": "^5.0.20", + "@feathersjs/socketio": "^5.0.20", + "@feathersjs/transport-commons": "^5.0.20", + "@feathersjs/typebox": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "@types/prettier": "^2.7.3", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 3659e2964b..e1f4960b75 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/client + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/client diff --git a/packages/client/package.json b/packages/client/package.json index fc265496fc..267f51ceca 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.19", + "version": "5.0.20", "repository": { "type": "git", "url": "https://github.com/feathersjs/feathers.git", @@ -49,19 +49,19 @@ "IE 11" ], "dependencies": { - "@feathersjs/authentication-client": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/rest-client": "^5.0.19", - "@feathersjs/socketio-client": "^5.0.19" + "@feathersjs/authentication-client": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/rest-client": "^5.0.20", + "@feathersjs/socketio-client": "^5.0.20" }, "devDependencies": { "@babel/core": "^7.23.7", "@babel/preset-env": "^7.23.8", - "@feathersjs/express": "^5.0.19", - "@feathersjs/memory": "^5.0.19", - "@feathersjs/socketio": "^5.0.19", - "@feathersjs/tests": "^5.0.19", + "@feathersjs/express": "^5.0.20", + "@feathersjs/memory": "^5.0.20", + "@feathersjs/socketio": "^5.0.20", + "@feathersjs/tests": "^5.0.20", "babel-loader": "^9.1.3", "mocha": "^10.2.0", "node-fetch": "^2.6.1", diff --git a/packages/commons/CHANGELOG.md b/packages/commons/CHANGELOG.md index 7194fe7df9..15b28a33aa 100644 --- a/packages/commons/CHANGELOG.md +++ b/packages/commons/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/commons + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/commons diff --git a/packages/commons/package.json b/packages/commons/package.json index 5db24129aa..62f3e0b382 100644 --- a/packages/commons/package.json +++ b/packages/commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/commons", - "version": "5.0.19", + "version": "5.0.20", "description": "Shared Feathers utility functions", "homepage": "https://feathersjs.com", "keywords": [ diff --git a/packages/configuration/CHANGELOG.md b/packages/configuration/CHANGELOG.md index 90a2a2fc41..ea332fec15 100644 --- a/packages/configuration/CHANGELOG.md +++ b/packages/configuration/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/configuration + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/configuration diff --git a/packages/configuration/package.json b/packages/configuration/package.json index 0a7d967ef2..c822a50f51 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -58,9 +58,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/schema": "^5.0.19", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/schema": "^5.0.20", "@types/config": "^3.3.3", "config": "^3.3.10" }, diff --git a/packages/create-feathers/CHANGELOG.md b/packages/create-feathers/CHANGELOG.md index 6bfdeb2906..1874073352 100644 --- a/packages/create-feathers/CHANGELOG.md +++ b/packages/create-feathers/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package create-feathers + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) ### Bug Fixes diff --git a/packages/create-feathers/package.json b/packages/create-feathers/package.json index ea3faa6628..f0eeeb0e8a 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "bin": { "create-feathers": "./bin/create-feathers.js" @@ -48,7 +48,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/cli": "^5.0.19" + "@feathersjs/cli": "^5.0.20" }, "gitHead": "90caf635aec850550b9d37bea2762af959d9e8d5" } diff --git a/packages/errors/CHANGELOG.md b/packages/errors/CHANGELOG.md index 9dece7f761..0ca33ad1c6 100644 --- a/packages/errors/CHANGELOG.md +++ b/packages/errors/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/errors + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/errors diff --git a/packages/errors/package.json b/packages/errors/package.json index 168348365c..157b7b426f 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,7 +49,7 @@ "*.js" ], "devDependencies": { - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/feathers": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "mocha": "^10.2.0", diff --git a/packages/express/CHANGELOG.md b/packages/express/CHANGELOG.md index 2ed053cd05..0169557d28 100644 --- a/packages/express/CHANGELOG.md +++ b/packages/express/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/express + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/express diff --git a/packages/express/package.json b/packages/express/package.json index d87edaec36..027b296b07 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -52,11 +52,11 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/transport-commons": "^5.0.19", + "@feathersjs/authentication": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/transport-commons": "^5.0.20", "@types/compression": "^1.7.5", "@types/cors": "^2.8.17", "@types/express": "^4.17.21", @@ -66,8 +66,8 @@ "express": "^4.18.2" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.19", - "@feathersjs/tests": "^5.0.19", + "@feathersjs/authentication-local": "^5.0.20", + "@feathersjs/tests": "^5.0.20", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", diff --git a/packages/feathers/CHANGELOG.md b/packages/feathers/CHANGELOG.md index e9657e6723..bba7127c70 100644 --- a/packages/feathers/CHANGELOG.md +++ b/packages/feathers/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/feathers + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/feathers diff --git a/packages/feathers/package.json b/packages/feathers/package.json index 3d0fa0d311..e0ea48666e 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.19", + "version": "5.0.20", "homepage": "http://feathersjs.com", "repository": { "type": "git", @@ -58,7 +58,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.19", + "@feathersjs/commons": "^5.0.20", "@feathersjs/hooks": "^0.8.1", "events": "^3.3.0" }, diff --git a/packages/generators/CHANGELOG.md b/packages/generators/CHANGELOG.md index b96fc183ce..e781351272 100644 --- a/packages/generators/CHANGELOG.md +++ b/packages/generators/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +### Bug Fixes + +- **generators:** Use cross-platform ES module \_\_dirname ([#3402](https://github.com/feathersjs/feathers/issues/3402)) ([0ac4882](https://github.com/feathersjs/feathers/commit/0ac4882663bb6a78622be0d903ae6508ecb516ad)) + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/generators diff --git a/packages/generators/package.json b/packages/generators/package.json index 581fa752b4..d2bdc6d80b 100644 --- a/packages/generators/package.json +++ b/packages/generators/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/generators", - "version": "5.0.19", + "version": "5.0.20", "description": "Feathers CLI core generators, powered by Pinion", "homepage": "https://feathersjs.com", "keywords": [ @@ -60,23 +60,23 @@ "typescript": "^5.3.3" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.19", - "@feathersjs/authentication": "^5.0.19", - "@feathersjs/authentication-client": "^5.0.19", - "@feathersjs/authentication-local": "^5.0.19", - "@feathersjs/authentication-oauth": "^5.0.19", - "@feathersjs/configuration": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/express": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/knex": "^5.0.19", - "@feathersjs/koa": "^5.0.19", - "@feathersjs/mongodb": "^5.0.19", - "@feathersjs/rest-client": "^5.0.19", - "@feathersjs/schema": "^5.0.19", - "@feathersjs/socketio": "^5.0.19", - "@feathersjs/transport-commons": "^5.0.19", - "@feathersjs/typebox": "^5.0.19", + "@feathersjs/adapter-commons": "^5.0.20", + "@feathersjs/authentication": "^5.0.20", + "@feathersjs/authentication-client": "^5.0.20", + "@feathersjs/authentication-local": "^5.0.20", + "@feathersjs/authentication-oauth": "^5.0.20", + "@feathersjs/configuration": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/express": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/knex": "^5.0.20", + "@feathersjs/koa": "^5.0.20", + "@feathersjs/mongodb": "^5.0.20", + "@feathersjs/rest-client": "^5.0.20", + "@feathersjs/schema": "^5.0.20", + "@feathersjs/socketio": "^5.0.20", + "@feathersjs/transport-commons": "^5.0.20", + "@feathersjs/typebox": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "@types/prettier": "^2.7.3", diff --git a/packages/knex/CHANGELOG.md b/packages/knex/CHANGELOG.md index a5787d783b..9e7fc8fd0a 100644 --- a/packages/knex/CHANGELOG.md +++ b/packages/knex/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/knex + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/knex diff --git a/packages/knex/package.json b/packages/knex/package.json index 4c8f2668d9..f7c2f117a0 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -51,17 +51,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19" + "@feathersjs/adapter-commons": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20" }, "peerDependencies": { "knex": ">=3.1.0" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.19", - "@feathersjs/schema": "^5.0.19", + "@feathersjs/adapter-tests": "^5.0.20", + "@feathersjs/schema": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "knex": "^3.1.0", diff --git a/packages/koa/CHANGELOG.md b/packages/koa/CHANGELOG.md index 3109ac2a49..ad1495b7df 100644 --- a/packages/koa/CHANGELOG.md +++ b/packages/koa/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/koa + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/koa diff --git a/packages/koa/package.json b/packages/koa/package.json index bc10d48652..d73b555470 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,11 +49,11 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/transport-commons": "^5.0.19", + "@feathersjs/authentication": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/transport-commons": "^5.0.20", "@koa/cors": "^5.0.0", "@types/koa": "^2.14.0", "@types/koa-qs": "^2.0.3", @@ -66,9 +66,9 @@ "koa-static": "^5.0.0" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.19", - "@feathersjs/memory": "^5.0.19", - "@feathersjs/tests": "^5.0.19", + "@feathersjs/authentication-local": "^5.0.20", + "@feathersjs/memory": "^5.0.20", + "@feathersjs/tests": "^5.0.20", "@types/koa-compose": "^3.2.8", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", diff --git a/packages/memory/CHANGELOG.md b/packages/memory/CHANGELOG.md index b6a7ff07a2..edcbf866a1 100644 --- a/packages/memory/CHANGELOG.md +++ b/packages/memory/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/memory + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/memory diff --git a/packages/memory/package.json b/packages/memory/package.json index ef393e1e6d..d8263d3dca 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.19", + "version": "5.0.20", "homepage": "https://github.com/feathersjs/feathers", "main": "lib/", "types": "lib/", @@ -49,14 +49,14 @@ "lib": "lib" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", + "@feathersjs/adapter-commons": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", "sift": "^17.0.1" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/adapter-tests": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "mocha": "^10.2.0", diff --git a/packages/mongodb/CHANGELOG.md b/packages/mongodb/CHANGELOG.md index 7dd86b6965..62e59b16df 100644 --- a/packages/mongodb/CHANGELOG.md +++ b/packages/mongodb/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/mongodb + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/mongodb diff --git a/packages/mongodb/package.json b/packages/mongodb/package.json index 21ed00a714..6f306b3526 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -51,17 +51,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19" + "@feathersjs/adapter-commons": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20" }, "peerDependencies": { "mongodb": "^6.3.0" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.19", - "@feathersjs/schema": "^5.0.19", + "@feathersjs/adapter-tests": "^5.0.20", + "@feathersjs/schema": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "mocha": "^10.2.0", diff --git a/packages/rest-client/CHANGELOG.md b/packages/rest-client/CHANGELOG.md index d854ce61b0..82661dcb60 100644 --- a/packages/rest-client/CHANGELOG.md +++ b/packages/rest-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/rest-client + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/rest-client diff --git a/packages/rest-client/package.json b/packages/rest-client/package.json index 51876165f5..08074171b7 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,16 +53,16 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", "@types/superagent": "^8.1.2", "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/express": "^5.0.19", - "@feathersjs/memory": "^5.0.19", - "@feathersjs/tests": "^5.0.19", + "@feathersjs/express": "^5.0.20", + "@feathersjs/memory": "^5.0.20", + "@feathersjs/tests": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "@types/node-fetch": "^2.6.11", diff --git a/packages/schema/CHANGELOG.md b/packages/schema/CHANGELOG.md index ba31aabbac..de007c4308 100644 --- a/packages/schema/CHANGELOG.md +++ b/packages/schema/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/schema + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/schema diff --git a/packages/schema/package.json b/packages/schema/package.json index e07991ceaf..06bddf62fb 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,10 +54,10 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.19", - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/adapter-commons": "^5.0.20", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", "@feathersjs/hooks": "^0.8.1", "@types/json-schema": "^7.0.15", "ajv": "^8.12.0", @@ -65,7 +65,7 @@ "json-schema-to-ts": "^3.0.0" }, "devDependencies": { - "@feathersjs/memory": "^5.0.19", + "@feathersjs/memory": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "ajv-formats": "^2.1.1", diff --git a/packages/socketio-client/CHANGELOG.md b/packages/socketio-client/CHANGELOG.md index 68992546a8..a95385eb1d 100644 --- a/packages/socketio-client/CHANGELOG.md +++ b/packages/socketio-client/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/socketio-client + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/socketio-client diff --git a/packages/socketio-client/package.json b/packages/socketio-client/package.json index 42f0e5ce1a..bcf38c53b5 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,14 +54,14 @@ "access": "public" }, "dependencies": { - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/transport-commons": "^5.0.19" + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/transport-commons": "^5.0.20" }, "devDependencies": { - "@feathersjs/commons": "^5.0.19", - "@feathersjs/memory": "^5.0.19", - "@feathersjs/socketio": "^5.0.19", - "@feathersjs/tests": "^5.0.19", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/memory": "^5.0.20", + "@feathersjs/socketio": "^5.0.20", + "@feathersjs/tests": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "mocha": "^10.2.0", diff --git a/packages/socketio/CHANGELOG.md b/packages/socketio/CHANGELOG.md index fb69976c29..b5bf23f2a2 100644 --- a/packages/socketio/CHANGELOG.md +++ b/packages/socketio/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/socketio + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/socketio diff --git a/packages/socketio/package.json b/packages/socketio/package.json index 6d88f6652d..972b000123 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,15 +53,15 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", - "@feathersjs/transport-commons": "^5.0.19", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", + "@feathersjs/transport-commons": "^5.0.20", "socket.io": "^4.7.4" }, "devDependencies": { - "@feathersjs/express": "^5.0.19", - "@feathersjs/memory": "^5.0.19", - "@feathersjs/tests": "^5.0.19", + "@feathersjs/express": "^5.0.20", + "@feathersjs/memory": "^5.0.20", + "@feathersjs/tests": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "lodash": "^4.17.21", diff --git a/packages/tests/CHANGELOG.md b/packages/tests/CHANGELOG.md index 8dc5246cfb..25bfc30c48 100644 --- a/packages/tests/CHANGELOG.md +++ b/packages/tests/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/tests + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/tests diff --git a/packages/tests/package.json b/packages/tests/package.json index 02f06764c9..528ee66b6f 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,7 +49,7 @@ "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/feathers": "^5.0.20", "@types/mocha": "^10.0.6", "@types/node": "^20.11.6", "mocha": "^10.2.0", diff --git a/packages/transport-commons/CHANGELOG.md b/packages/transport-commons/CHANGELOG.md index 0c85d16792..2f26d53e36 100644 --- a/packages/transport-commons/CHANGELOG.md +++ b/packages/transport-commons/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/transport-commons + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/transport-commons diff --git a/packages/transport-commons/package.json b/packages/transport-commons/package.json index 04631c735a..5cd9b9560b 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,9 +54,9 @@ "*.js" ], "dependencies": { - "@feathersjs/commons": "^5.0.19", - "@feathersjs/errors": "^5.0.19", - "@feathersjs/feathers": "^5.0.19", + "@feathersjs/commons": "^5.0.20", + "@feathersjs/errors": "^5.0.20", + "@feathersjs/feathers": "^5.0.20", "encodeurl": "^1.0.2", "lodash": "^4.17.21" }, diff --git a/packages/typebox/CHANGELOG.md b/packages/typebox/CHANGELOG.md index 8383e3602b..8ac398ade0 100644 --- a/packages/typebox/CHANGELOG.md +++ b/packages/typebox/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.20](https://github.com/feathersjs/feathers/compare/v5.0.19...v5.0.20) (2024-01-24) + +**Note:** Version bump only for package @feathersjs/typebox + ## [5.0.19](https://github.com/feathersjs/feathers/compare/v5.0.18...v5.0.19) (2024-01-23) **Note:** Version bump only for package @feathersjs/typebox diff --git a/packages/typebox/package.json b/packages/typebox/package.json index 8773729f9c..7241b80a19 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.19", + "version": "5.0.20", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,7 +54,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/schema": "^5.0.19", + "@feathersjs/schema": "^5.0.20", "@sinclair/typebox": "^0.25.0" }, "devDependencies": {