From 6330134f97a1de4b627d41e8bcc2287498d5faa2 Mon Sep 17 00:00:00 2001 From: daffl Date: Wed, 10 Jul 2024 13:40:14 -0700 Subject: [PATCH] chore(release): publish v5.0.29 --- 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 | 38 +-- 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, 452 insertions(+), 340 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce289caef9..bf488f66b6 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +### Bug Fixes + +- **generators:** Fix generating of gitignore ([#3514](https://github.com/feathersjs/feathers/issues/3514)) ([cabc397](https://github.com/feathersjs/feathers/commit/cabc397d2e4378c4bce79a60f2d196713cce4d8c)) + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 1167ee10af..6f448bf82f 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "ci": false, "packages": ["packages/*"], - "version": "5.0.28", + "version": "5.0.29", "command": { "bootstrap": { "hoist": true diff --git a/package-lock.json b/package-lock.json index 49c9d26518..b133d19998 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23732,12 +23732,12 @@ }, "packages/adapter-commons": { "name": "@feathersjs/adapter-commons", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28" + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29" }, "devDependencies": { "@types/mocha": "^10.0.7", @@ -23759,7 +23759,7 @@ }, "packages/adapter-tests": { "name": "@feathersjs/adapter-tests", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "devDependencies": { "@types/mocha": "^10.0.7", @@ -23779,15 +23779,15 @@ }, "packages/authentication": { "name": "@feathersjs/authentication", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", "@feathersjs/hooks": "^0.9.0", - "@feathersjs/schema": "^5.0.28", - "@feathersjs/transport-commons": "^5.0.28", + "@feathersjs/schema": "^5.0.29", + "@feathersjs/transport-commons": "^5.0.29", "@types/jsonwebtoken": "^9.0.6", "jsonwebtoken": "^9.0.2", "lodash": "^4.17.21", @@ -23795,7 +23795,7 @@ "uuid": "^10.0.0" }, "devDependencies": { - "@feathersjs/memory": "^5.0.28", + "@feathersjs/memory": "^5.0.29", "@types/lodash": "^4.17.6", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", @@ -23815,21 +23815,21 @@ }, "packages/authentication-client": { "name": "@feathersjs/authentication-client", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28" + "@feathersjs/authentication": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.28", - "@feathersjs/express": "^5.0.28", - "@feathersjs/memory": "^5.0.28", - "@feathersjs/rest-client": "^5.0.28", - "@feathersjs/socketio": "^5.0.28", - "@feathersjs/socketio-client": "^5.0.28", + "@feathersjs/authentication-local": "^5.0.29", + "@feathersjs/express": "^5.0.29", + "@feathersjs/memory": "^5.0.29", + "@feathersjs/rest-client": "^5.0.29", + "@feathersjs/socketio": "^5.0.29", + "@feathersjs/socketio-client": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "axios": "^1.7.2", @@ -23848,19 +23848,19 @@ }, "packages/authentication-local": { "name": "@feathersjs/authentication-local", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/authentication": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", "bcryptjs": "^2.4.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/memory": "^5.0.28", - "@feathersjs/schema": "^5.0.28", + "@feathersjs/memory": "^5.0.29", + "@feathersjs/schema": "^5.0.29", "@types/bcryptjs": "^2.4.6", "@types/lodash": "^4.17.6", "@types/mocha": "^10.0.7", @@ -23880,23 +23880,23 @@ }, "packages/authentication-oauth": { "name": "@feathersjs/authentication-oauth", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/express": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/koa": "^5.0.28", - "@feathersjs/schema": "^5.0.28", + "@feathersjs/authentication": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/express": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/koa": "^5.0.29", + "@feathersjs/schema": "^5.0.29", "cookie-session": "^2.1.0", "grant": "^5.4.22", "koa-session": "^6.4.0", "qs": "^6.12.3" }, "devDependencies": { - "@feathersjs/memory": "^5.0.28", + "@feathersjs/memory": "^5.0.29", "@types/cookie-session": "^2.0.49", "@types/express": "^4.17.21", "@types/koa-session": "^6.4.5", @@ -23920,10 +23920,10 @@ }, "packages/cli": { "name": "@feathersjs/cli", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/generators": "^5.0.28", + "@feathersjs/generators": "^5.0.29", "chalk": "^5.3.0", "commander": "^12.1.0" }, @@ -23931,23 +23931,23 @@ "feathers": "bin/feathers.js" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.28", - "@feathersjs/authentication": "^5.0.28", - "@feathersjs/authentication-client": "^5.0.28", - "@feathersjs/authentication-local": "^5.0.28", - "@feathersjs/authentication-oauth": "^5.0.28", - "@feathersjs/configuration": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/express": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/knex": "^5.0.28", - "@feathersjs/koa": "^5.0.28", - "@feathersjs/mongodb": "^5.0.28", - "@feathersjs/rest-client": "^5.0.28", - "@feathersjs/schema": "^5.0.28", - "@feathersjs/socketio": "^5.0.28", - "@feathersjs/transport-commons": "^5.0.28", - "@feathersjs/typebox": "^5.0.28", + "@feathersjs/adapter-commons": "^5.0.29", + "@feathersjs/authentication": "^5.0.29", + "@feathersjs/authentication-client": "^5.0.29", + "@feathersjs/authentication-local": "^5.0.29", + "@feathersjs/authentication-oauth": "^5.0.29", + "@feathersjs/configuration": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/express": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/knex": "^5.0.29", + "@feathersjs/koa": "^5.0.29", + "@feathersjs/mongodb": "^5.0.29", + "@feathersjs/rest-client": "^5.0.29", + "@feathersjs/schema": "^5.0.29", + "@feathersjs/socketio": "^5.0.29", + "@feathersjs/transport-commons": "^5.0.29", + "@feathersjs/typebox": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "@types/prettier": "^2.7.3", @@ -23980,22 +23980,22 @@ }, "packages/client": { "name": "@feathersjs/client", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/authentication-client": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/rest-client": "^5.0.28", - "@feathersjs/socketio-client": "^5.0.28" + "@feathersjs/authentication-client": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/rest-client": "^5.0.29", + "@feathersjs/socketio-client": "^5.0.29" }, "devDependencies": { "@babel/core": "^7.24.7", "@babel/preset-env": "^7.24.7", - "@feathersjs/express": "^5.0.28", - "@feathersjs/memory": "^5.0.28", - "@feathersjs/socketio": "^5.0.28", - "@feathersjs/tests": "^5.0.28", + "@feathersjs/express": "^5.0.29", + "@feathersjs/memory": "^5.0.29", + "@feathersjs/socketio": "^5.0.29", + "@feathersjs/tests": "^5.0.29", "babel-loader": "^9.1.3", "mocha": "^10.6.0", "node-fetch": "^2.6.1", @@ -24018,7 +24018,7 @@ }, "packages/commons": { "name": "@feathersjs/commons", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "devDependencies": { "@types/mocha": "^10.0.7", @@ -24038,12 +24038,12 @@ }, "packages/configuration": { "name": "@feathersjs/configuration", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/schema": "^5.0.28", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/schema": "^5.0.29", "@types/config": "^3.3.4", "config": "^3.3.12" }, @@ -24064,10 +24064,10 @@ } }, "packages/create-feathers": { - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/cli": "^5.0.28" + "@feathersjs/cli": "^5.0.29" }, "bin": { "create-feathers": "bin/create-feathers.js" @@ -24082,10 +24082,10 @@ }, "packages/errors": { "name": "@feathersjs/errors", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "devDependencies": { - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/feathers": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "mocha": "^10.6.0", @@ -24099,14 +24099,14 @@ }, "packages/express": { "name": "@feathersjs/express", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/transport-commons": "^5.0.28", + "@feathersjs/authentication": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/transport-commons": "^5.0.29", "@types/compression": "^1.7.5", "@types/cors": "^2.8.17", "@types/express": "^4.17.21", @@ -24116,8 +24116,8 @@ "express": "^4.19.2" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.28", - "@feathersjs/tests": "^5.0.28", + "@feathersjs/authentication-local": "^5.0.29", + "@feathersjs/tests": "^5.0.29", "@types/lodash": "^4.17.6", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", @@ -24138,10 +24138,10 @@ }, "packages/feathers": { "name": "@feathersjs/feathers", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.28", + "@feathersjs/commons": "^5.0.29", "@feathersjs/hooks": "^0.9.0", "events": "^3.3.0" }, @@ -24163,7 +24163,7 @@ }, "packages/generators": { "name": "@feathersjs/generators", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { "@featherscloud/pinion": "^0.5.4", @@ -24173,23 +24173,23 @@ "typescript": "^5.5.3" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.28", - "@feathersjs/authentication": "^5.0.28", - "@feathersjs/authentication-client": "^5.0.28", - "@feathersjs/authentication-local": "^5.0.28", - "@feathersjs/authentication-oauth": "^5.0.28", - "@feathersjs/configuration": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/express": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/knex": "^5.0.28", - "@feathersjs/koa": "^5.0.28", - "@feathersjs/mongodb": "^5.0.28", - "@feathersjs/rest-client": "^5.0.28", - "@feathersjs/schema": "^5.0.28", - "@feathersjs/socketio": "^5.0.28", - "@feathersjs/transport-commons": "^5.0.28", - "@feathersjs/typebox": "^5.0.28", + "@feathersjs/adapter-commons": "^5.0.29", + "@feathersjs/authentication": "^5.0.29", + "@feathersjs/authentication-client": "^5.0.29", + "@feathersjs/authentication-local": "^5.0.29", + "@feathersjs/authentication-oauth": "^5.0.29", + "@feathersjs/configuration": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/express": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/knex": "^5.0.29", + "@feathersjs/koa": "^5.0.29", + "@feathersjs/mongodb": "^5.0.29", + "@feathersjs/rest-client": "^5.0.29", + "@feathersjs/schema": "^5.0.29", + "@feathersjs/socketio": "^5.0.29", + "@feathersjs/transport-commons": "^5.0.29", + "@feathersjs/typebox": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "@types/prettier": "^2.7.3", @@ -24228,17 +24228,17 @@ }, "packages/knex": { "name": "@feathersjs/knex", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28" + "@feathersjs/adapter-commons": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.28", - "@feathersjs/schema": "^5.0.28", + "@feathersjs/adapter-tests": "^5.0.29", + "@feathersjs/schema": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "knex": "^3.1.0", @@ -24261,14 +24261,14 @@ }, "packages/koa": { "name": "@feathersjs/koa", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/transport-commons": "^5.0.28", + "@feathersjs/authentication": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/transport-commons": "^5.0.29", "@koa/cors": "^5.0.0", "@types/koa": "^2.15.0", "@types/koa__cors": "^5.0.0", @@ -24281,9 +24281,9 @@ "koa-static": "^5.0.0" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.28", - "@feathersjs/memory": "^5.0.28", - "@feathersjs/tests": "^5.0.28", + "@feathersjs/authentication-local": "^5.0.29", + "@feathersjs/memory": "^5.0.29", + "@feathersjs/tests": "^5.0.29", "@types/koa-compose": "^3.2.8", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", @@ -24299,17 +24299,17 @@ }, "packages/memory": { "name": "@feathersjs/memory", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", + "@feathersjs/adapter-commons": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", "sift": "^17.1.3" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/adapter-tests": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "mocha": "^10.6.0", @@ -24323,17 +24323,17 @@ }, "packages/mongodb": { "name": "@feathersjs/mongodb", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28" + "@feathersjs/adapter-commons": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.28", - "@feathersjs/schema": "^5.0.28", + "@feathersjs/adapter-tests": "^5.0.29", + "@feathersjs/schema": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "mocha": "^10.6.0", @@ -24354,19 +24354,19 @@ }, "packages/rest-client": { "name": "@feathersjs/rest-client", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", "@types/superagent": "^8.1.7", "qs": "^6.12.3" }, "devDependencies": { - "@feathersjs/express": "^5.0.28", - "@feathersjs/memory": "^5.0.28", - "@feathersjs/tests": "^5.0.28", + "@feathersjs/express": "^5.0.29", + "@feathersjs/memory": "^5.0.29", + "@feathersjs/tests": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "@types/node-fetch": "^2.6.11", @@ -24390,13 +24390,13 @@ }, "packages/schema": { "name": "@feathersjs/schema", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/adapter-commons": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", "@feathersjs/hooks": "^0.9.0", "@types/json-schema": "^7.0.15", "ajv": "^8.16.0", @@ -24404,7 +24404,7 @@ "json-schema-to-ts": "^3.1.0" }, "devDependencies": { - "@feathersjs/memory": "^5.0.28", + "@feathersjs/memory": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "ajv-formats": "^3.0.1", @@ -24445,18 +24445,18 @@ }, "packages/socketio": { "name": "@feathersjs/socketio", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/transport-commons": "^5.0.28", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/transport-commons": "^5.0.29", "socket.io": "^4.7.5" }, "devDependencies": { - "@feathersjs/express": "^5.0.28", - "@feathersjs/memory": "^5.0.28", - "@feathersjs/tests": "^5.0.28", + "@feathersjs/express": "^5.0.29", + "@feathersjs/memory": "^5.0.29", + "@feathersjs/tests": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "lodash": "^4.17.21", @@ -24475,17 +24475,17 @@ }, "packages/socketio-client": { "name": "@feathersjs/socketio-client", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/transport-commons": "^5.0.28" + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/transport-commons": "^5.0.29" }, "devDependencies": { - "@feathersjs/commons": "^5.0.28", - "@feathersjs/memory": "^5.0.28", - "@feathersjs/socketio": "^5.0.28", - "@feathersjs/tests": "^5.0.28", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/memory": "^5.0.29", + "@feathersjs/socketio": "^5.0.29", + "@feathersjs/tests": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "mocha": "^10.6.0", @@ -24504,7 +24504,7 @@ }, "packages/tests": { "name": "@feathersjs/tests", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { "@types/lodash": "^4.17.6", @@ -24512,7 +24512,7 @@ "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/feathers": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "mocha": "^10.6.0", @@ -24530,12 +24530,12 @@ }, "packages/transport-commons": { "name": "@feathersjs/transport-commons", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", "encodeurl": "^2.0.0", "lodash": "^4.17.21" }, @@ -24559,10 +24559,10 @@ }, "packages/typebox": { "name": "@feathersjs/typebox", - "version": "5.0.28", + "version": "5.0.29", "license": "MIT", "dependencies": { - "@feathersjs/schema": "^5.0.28", + "@feathersjs/schema": "^5.0.29", "@sinclair/typebox": "^0.25.0" }, "devDependencies": { diff --git a/packages/adapter-commons/CHANGELOG.md b/packages/adapter-commons/CHANGELOG.md index 3268cb2f05..2af3e5ceb6 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/adapter-commons + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/adapter-commons diff --git a/packages/adapter-commons/package.json b/packages/adapter-commons/package.json index 45f4d74656..56f3673033 100644 --- a/packages/adapter-commons/package.json +++ b/packages/adapter-commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-commons", - "version": "5.0.28", + "version": "5.0.29", "description": "Shared database adapter utility functions", "homepage": "https://feathersjs.com", "keywords": [ @@ -50,9 +50,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28" + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29" }, "devDependencies": { "@types/mocha": "^10.0.7", diff --git a/packages/adapter-tests/CHANGELOG.md b/packages/adapter-tests/CHANGELOG.md index 4f91a6e824..04bfc00d5d 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/adapter-tests + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/adapter-tests diff --git a/packages/adapter-tests/package.json b/packages/adapter-tests/package.json index 07f4479ed8..70988c410c 100644 --- a/packages/adapter-tests/package.json +++ b/packages/adapter-tests/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-tests", - "version": "5.0.28", + "version": "5.0.29", "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 157d5b2be9..057f876393 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/authentication-client + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/authentication-client diff --git a/packages/authentication-client/package.json b/packages/authentication-client/package.json index 77f4557a17..cc07314e95 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,18 +53,18 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28" + "@feathersjs/authentication": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.28", - "@feathersjs/express": "^5.0.28", - "@feathersjs/memory": "^5.0.28", - "@feathersjs/rest-client": "^5.0.28", - "@feathersjs/socketio": "^5.0.28", - "@feathersjs/socketio-client": "^5.0.28", + "@feathersjs/authentication-local": "^5.0.29", + "@feathersjs/express": "^5.0.29", + "@feathersjs/memory": "^5.0.29", + "@feathersjs/rest-client": "^5.0.29", + "@feathersjs/socketio": "^5.0.29", + "@feathersjs/socketio-client": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "axios": "^1.7.2", diff --git a/packages/authentication-local/CHANGELOG.md b/packages/authentication-local/CHANGELOG.md index bee53d7a60..846ab53297 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/authentication-local + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/authentication-local diff --git a/packages/authentication-local/package.json b/packages/authentication-local/package.json index 3b2f439fda..2d049bfa88 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,16 +53,16 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/authentication": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", "bcryptjs": "^2.4.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/memory": "^5.0.28", - "@feathersjs/schema": "^5.0.28", + "@feathersjs/memory": "^5.0.29", + "@feathersjs/schema": "^5.0.29", "@types/bcryptjs": "^2.4.6", "@types/lodash": "^4.17.6", "@types/mocha": "^10.0.7", diff --git a/packages/authentication-oauth/CHANGELOG.md b/packages/authentication-oauth/CHANGELOG.md index c116ac93f3..4bb2b4f563 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/authentication-oauth + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/authentication-oauth diff --git a/packages/authentication-oauth/package.json b/packages/authentication-oauth/package.json index 74b633f795..91ef357a31 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,20 +54,20 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/express": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/koa": "^5.0.28", - "@feathersjs/schema": "^5.0.28", + "@feathersjs/authentication": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/express": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/koa": "^5.0.29", + "@feathersjs/schema": "^5.0.29", "cookie-session": "^2.1.0", "grant": "^5.4.22", "koa-session": "^6.4.0", "qs": "^6.12.3" }, "devDependencies": { - "@feathersjs/memory": "^5.0.28", + "@feathersjs/memory": "^5.0.29", "@types/cookie-session": "^2.0.49", "@types/express": "^4.17.21", "@types/koa-session": "^6.4.5", diff --git a/packages/authentication/CHANGELOG.md b/packages/authentication/CHANGELOG.md index d8937816a8..f483f0e6ae 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/authentication + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/authentication diff --git a/packages/authentication/package.json b/packages/authentication/package.json index e1dd17589b..f03cc74fe8 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,12 +53,12 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", "@feathersjs/hooks": "^0.9.0", - "@feathersjs/schema": "^5.0.28", - "@feathersjs/transport-commons": "^5.0.28", + "@feathersjs/schema": "^5.0.29", + "@feathersjs/transport-commons": "^5.0.29", "@types/jsonwebtoken": "^9.0.6", "jsonwebtoken": "^9.0.2", "lodash": "^4.17.21", @@ -66,7 +66,7 @@ "uuid": "^10.0.0" }, "devDependencies": { - "@feathersjs/memory": "^5.0.28", + "@feathersjs/memory": "^5.0.29", "@types/lodash": "^4.17.6", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 35ad5e6174..55382755ce 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/cli + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/cli diff --git a/packages/cli/package.json b/packages/cli/package.json index 147f5ef3bd..d36422d7c4 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/index.js", "type": "module", @@ -53,28 +53,28 @@ "access": "public" }, "dependencies": { - "@feathersjs/generators": "^5.0.28", + "@feathersjs/generators": "^5.0.29", "chalk": "^5.3.0", "commander": "^12.1.0" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.28", - "@feathersjs/authentication": "^5.0.28", - "@feathersjs/authentication-client": "^5.0.28", - "@feathersjs/authentication-local": "^5.0.28", - "@feathersjs/authentication-oauth": "^5.0.28", - "@feathersjs/configuration": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/express": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/knex": "^5.0.28", - "@feathersjs/koa": "^5.0.28", - "@feathersjs/mongodb": "^5.0.28", - "@feathersjs/rest-client": "^5.0.28", - "@feathersjs/schema": "^5.0.28", - "@feathersjs/socketio": "^5.0.28", - "@feathersjs/transport-commons": "^5.0.28", - "@feathersjs/typebox": "^5.0.28", + "@feathersjs/adapter-commons": "^5.0.29", + "@feathersjs/authentication": "^5.0.29", + "@feathersjs/authentication-client": "^5.0.29", + "@feathersjs/authentication-local": "^5.0.29", + "@feathersjs/authentication-oauth": "^5.0.29", + "@feathersjs/configuration": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/express": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/knex": "^5.0.29", + "@feathersjs/koa": "^5.0.29", + "@feathersjs/mongodb": "^5.0.29", + "@feathersjs/rest-client": "^5.0.29", + "@feathersjs/schema": "^5.0.29", + "@feathersjs/socketio": "^5.0.29", + "@feathersjs/transport-commons": "^5.0.29", + "@feathersjs/typebox": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "@types/prettier": "^2.7.3", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index bb3e5479de..e1a3407b1d 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/client + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/client diff --git a/packages/client/package.json b/packages/client/package.json index f6f2a51d94..10a8237ae6 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.28", + "version": "5.0.29", "repository": { "type": "git", "url": "https://github.com/feathersjs/feathers.git", @@ -49,19 +49,19 @@ "IE 11" ], "dependencies": { - "@feathersjs/authentication-client": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/rest-client": "^5.0.28", - "@feathersjs/socketio-client": "^5.0.28" + "@feathersjs/authentication-client": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/rest-client": "^5.0.29", + "@feathersjs/socketio-client": "^5.0.29" }, "devDependencies": { "@babel/core": "^7.24.7", "@babel/preset-env": "^7.24.7", - "@feathersjs/express": "^5.0.28", - "@feathersjs/memory": "^5.0.28", - "@feathersjs/socketio": "^5.0.28", - "@feathersjs/tests": "^5.0.28", + "@feathersjs/express": "^5.0.29", + "@feathersjs/memory": "^5.0.29", + "@feathersjs/socketio": "^5.0.29", + "@feathersjs/tests": "^5.0.29", "babel-loader": "^9.1.3", "mocha": "^10.6.0", "node-fetch": "^2.6.1", diff --git a/packages/commons/CHANGELOG.md b/packages/commons/CHANGELOG.md index 06d5a331b5..0f8b3d0a35 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/commons + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/commons diff --git a/packages/commons/package.json b/packages/commons/package.json index 5fad32fbf5..6474716df3 100644 --- a/packages/commons/package.json +++ b/packages/commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/commons", - "version": "5.0.28", + "version": "5.0.29", "description": "Shared Feathers utility functions", "homepage": "https://feathersjs.com", "keywords": [ diff --git a/packages/configuration/CHANGELOG.md b/packages/configuration/CHANGELOG.md index 3349f300d7..d616cdd398 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/configuration + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/configuration diff --git a/packages/configuration/package.json b/packages/configuration/package.json index 7dd8a6f926..ff98ea7dcc 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -58,9 +58,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/schema": "^5.0.28", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/schema": "^5.0.29", "@types/config": "^3.3.4", "config": "^3.3.12" }, diff --git a/packages/create-feathers/CHANGELOG.md b/packages/create-feathers/CHANGELOG.md index e698330220..6cde4440de 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package create-feathers + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package create-feathers diff --git a/packages/create-feathers/package.json b/packages/create-feathers/package.json index 378a956b29..246b296a15 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "bin": { "create-feathers": "./bin/create-feathers.js" @@ -48,7 +48,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/cli": "^5.0.28" + "@feathersjs/cli": "^5.0.29" }, "gitHead": "90caf635aec850550b9d37bea2762af959d9e8d5" } diff --git a/packages/errors/CHANGELOG.md b/packages/errors/CHANGELOG.md index 21f178b584..1ac1741ad4 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/errors + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/errors diff --git a/packages/errors/package.json b/packages/errors/package.json index bb028d4b57..2d1050aa1d 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,7 +49,7 @@ "*.js" ], "devDependencies": { - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/feathers": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "mocha": "^10.6.0", diff --git a/packages/express/CHANGELOG.md b/packages/express/CHANGELOG.md index 8410f454d1..8a30f17f21 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/express + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/express diff --git a/packages/express/package.json b/packages/express/package.json index 1fdb80f12e..19a62696c1 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -52,11 +52,11 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/transport-commons": "^5.0.28", + "@feathersjs/authentication": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/transport-commons": "^5.0.29", "@types/compression": "^1.7.5", "@types/cors": "^2.8.17", "@types/express": "^4.17.21", @@ -66,8 +66,8 @@ "express": "^4.19.2" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.28", - "@feathersjs/tests": "^5.0.28", + "@feathersjs/authentication-local": "^5.0.29", + "@feathersjs/tests": "^5.0.29", "@types/lodash": "^4.17.6", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", diff --git a/packages/feathers/CHANGELOG.md b/packages/feathers/CHANGELOG.md index 2f79e5f337..9bfd17d55b 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/feathers + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/feathers diff --git a/packages/feathers/package.json b/packages/feathers/package.json index 78b88b033f..ff557bca7b 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.28", + "version": "5.0.29", "homepage": "http://feathersjs.com", "repository": { "type": "git", @@ -58,7 +58,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.28", + "@feathersjs/commons": "^5.0.29", "@feathersjs/hooks": "^0.9.0", "events": "^3.3.0" }, diff --git a/packages/generators/CHANGELOG.md b/packages/generators/CHANGELOG.md index ef2515cfa7..92eb4bddb8 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +### Bug Fixes + +- **generators:** Fix generating of gitignore ([#3514](https://github.com/feathersjs/feathers/issues/3514)) ([cabc397](https://github.com/feathersjs/feathers/commit/cabc397d2e4378c4bce79a60f2d196713cce4d8c)) + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/generators diff --git a/packages/generators/package.json b/packages/generators/package.json index 973262fa4e..10d7cddf1f 100644 --- a/packages/generators/package.json +++ b/packages/generators/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/generators", - "version": "5.0.28", + "version": "5.0.29", "description": "Feathers CLI core generators, powered by Pinion", "homepage": "https://feathersjs.com", "keywords": [ @@ -59,23 +59,23 @@ "typescript": "^5.5.3" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.28", - "@feathersjs/authentication": "^5.0.28", - "@feathersjs/authentication-client": "^5.0.28", - "@feathersjs/authentication-local": "^5.0.28", - "@feathersjs/authentication-oauth": "^5.0.28", - "@feathersjs/configuration": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/express": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/knex": "^5.0.28", - "@feathersjs/koa": "^5.0.28", - "@feathersjs/mongodb": "^5.0.28", - "@feathersjs/rest-client": "^5.0.28", - "@feathersjs/schema": "^5.0.28", - "@feathersjs/socketio": "^5.0.28", - "@feathersjs/transport-commons": "^5.0.28", - "@feathersjs/typebox": "^5.0.28", + "@feathersjs/adapter-commons": "^5.0.29", + "@feathersjs/authentication": "^5.0.29", + "@feathersjs/authentication-client": "^5.0.29", + "@feathersjs/authentication-local": "^5.0.29", + "@feathersjs/authentication-oauth": "^5.0.29", + "@feathersjs/configuration": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/express": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/knex": "^5.0.29", + "@feathersjs/koa": "^5.0.29", + "@feathersjs/mongodb": "^5.0.29", + "@feathersjs/rest-client": "^5.0.29", + "@feathersjs/schema": "^5.0.29", + "@feathersjs/socketio": "^5.0.29", + "@feathersjs/transport-commons": "^5.0.29", + "@feathersjs/typebox": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "@types/prettier": "^2.7.3", @@ -93,4 +93,4 @@ "typescript": "^5.5.3" }, "gitHead": "90caf635aec850550b9d37bea2762af959d9e8d5" -} \ No newline at end of file +} diff --git a/packages/knex/CHANGELOG.md b/packages/knex/CHANGELOG.md index 6e4839d760..f2985d8e4f 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/knex + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/knex diff --git a/packages/knex/package.json b/packages/knex/package.json index 1e29761aff..be1437212b 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -51,17 +51,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28" + "@feathersjs/adapter-commons": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29" }, "peerDependencies": { "knex": ">=3.1.0" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.28", - "@feathersjs/schema": "^5.0.28", + "@feathersjs/adapter-tests": "^5.0.29", + "@feathersjs/schema": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "knex": "^3.1.0", diff --git a/packages/koa/CHANGELOG.md b/packages/koa/CHANGELOG.md index c9025e9d9b..aa718fdc6c 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/koa + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/koa diff --git a/packages/koa/package.json b/packages/koa/package.json index fa8d7f3ef9..a968b301a4 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,11 +49,11 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/transport-commons": "^5.0.28", + "@feathersjs/authentication": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/transport-commons": "^5.0.29", "@koa/cors": "^5.0.0", "@types/koa": "^2.15.0", "@types/koa-qs": "^2.0.3", @@ -66,9 +66,9 @@ "koa-static": "^5.0.0" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.28", - "@feathersjs/memory": "^5.0.28", - "@feathersjs/tests": "^5.0.28", + "@feathersjs/authentication-local": "^5.0.29", + "@feathersjs/memory": "^5.0.29", + "@feathersjs/tests": "^5.0.29", "@types/koa-compose": "^3.2.8", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", diff --git a/packages/memory/CHANGELOG.md b/packages/memory/CHANGELOG.md index abdb3549f3..b8018ac7a5 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/memory + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/memory diff --git a/packages/memory/package.json b/packages/memory/package.json index ce44c03ef7..aed3f08b15 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.28", + "version": "5.0.29", "homepage": "https://github.com/feathersjs/feathers", "main": "lib/", "types": "lib/", @@ -49,14 +49,14 @@ "lib": "lib" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", + "@feathersjs/adapter-commons": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", "sift": "^17.1.3" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/adapter-tests": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "mocha": "^10.6.0", diff --git a/packages/mongodb/CHANGELOG.md b/packages/mongodb/CHANGELOG.md index e7955eb88c..964df8ccea 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/mongodb + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/mongodb diff --git a/packages/mongodb/package.json b/packages/mongodb/package.json index a48dbae081..19f5c2b20a 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -51,17 +51,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28" + "@feathersjs/adapter-commons": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29" }, "peerDependencies": { "mongodb": "^6.8.0" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.28", - "@feathersjs/schema": "^5.0.28", + "@feathersjs/adapter-tests": "^5.0.29", + "@feathersjs/schema": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "mocha": "^10.6.0", diff --git a/packages/rest-client/CHANGELOG.md b/packages/rest-client/CHANGELOG.md index fa4dc309e6..a30a0b708a 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/rest-client + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/rest-client diff --git a/packages/rest-client/package.json b/packages/rest-client/package.json index c928b7a2f1..6de7194721 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,16 +53,16 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", "@types/superagent": "^8.1.7", "qs": "^6.12.3" }, "devDependencies": { - "@feathersjs/express": "^5.0.28", - "@feathersjs/memory": "^5.0.28", - "@feathersjs/tests": "^5.0.28", + "@feathersjs/express": "^5.0.29", + "@feathersjs/memory": "^5.0.29", + "@feathersjs/tests": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "@types/node-fetch": "^2.6.11", diff --git a/packages/schema/CHANGELOG.md b/packages/schema/CHANGELOG.md index 46ceb5a839..29633378a4 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/schema + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/schema diff --git a/packages/schema/package.json b/packages/schema/package.json index b01e83eeb2..6eb7d4a3a9 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,10 +54,10 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.28", - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/adapter-commons": "^5.0.29", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", "@feathersjs/hooks": "^0.9.0", "@types/json-schema": "^7.0.15", "ajv": "^8.16.0", @@ -65,7 +65,7 @@ "json-schema-to-ts": "^3.1.0" }, "devDependencies": { - "@feathersjs/memory": "^5.0.28", + "@feathersjs/memory": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "ajv-formats": "^3.0.1", diff --git a/packages/socketio-client/CHANGELOG.md b/packages/socketio-client/CHANGELOG.md index c9ea87e26b..78f99a0e66 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/socketio-client + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/socketio-client diff --git a/packages/socketio-client/package.json b/packages/socketio-client/package.json index 388ef2da70..1b5399a50b 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,14 +54,14 @@ "access": "public" }, "dependencies": { - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/transport-commons": "^5.0.28" + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/transport-commons": "^5.0.29" }, "devDependencies": { - "@feathersjs/commons": "^5.0.28", - "@feathersjs/memory": "^5.0.28", - "@feathersjs/socketio": "^5.0.28", - "@feathersjs/tests": "^5.0.28", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/memory": "^5.0.29", + "@feathersjs/socketio": "^5.0.29", + "@feathersjs/tests": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "mocha": "^10.6.0", diff --git a/packages/socketio/CHANGELOG.md b/packages/socketio/CHANGELOG.md index 0458b16081..8efaa47e1b 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/socketio + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/socketio diff --git a/packages/socketio/package.json b/packages/socketio/package.json index 9867128892..228d3ce8bc 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,15 +53,15 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", - "@feathersjs/transport-commons": "^5.0.28", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", + "@feathersjs/transport-commons": "^5.0.29", "socket.io": "^4.7.5" }, "devDependencies": { - "@feathersjs/express": "^5.0.28", - "@feathersjs/memory": "^5.0.28", - "@feathersjs/tests": "^5.0.28", + "@feathersjs/express": "^5.0.29", + "@feathersjs/memory": "^5.0.29", + "@feathersjs/tests": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "lodash": "^4.17.21", diff --git a/packages/tests/CHANGELOG.md b/packages/tests/CHANGELOG.md index 7e8599e830..c26d8b2ba2 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/tests + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/tests diff --git a/packages/tests/package.json b/packages/tests/package.json index db442250f1..56511edcb3 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,7 +49,7 @@ "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/feathers": "^5.0.29", "@types/mocha": "^10.0.7", "@types/node": "^20.14.10", "mocha": "^10.6.0", diff --git a/packages/transport-commons/CHANGELOG.md b/packages/transport-commons/CHANGELOG.md index 2b2a6e9517..d2bd8d4880 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/transport-commons + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) ### Bug Fixes diff --git a/packages/transport-commons/package.json b/packages/transport-commons/package.json index 9778a2596a..f220f83493 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,9 +54,9 @@ "*.js" ], "dependencies": { - "@feathersjs/commons": "^5.0.28", - "@feathersjs/errors": "^5.0.28", - "@feathersjs/feathers": "^5.0.28", + "@feathersjs/commons": "^5.0.29", + "@feathersjs/errors": "^5.0.29", + "@feathersjs/feathers": "^5.0.29", "encodeurl": "^2.0.0", "lodash": "^4.17.21" }, diff --git a/packages/typebox/CHANGELOG.md b/packages/typebox/CHANGELOG.md index cd62a4ea6e..8146228d6e 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.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) + +**Note:** Version bump only for package @feathersjs/typebox + ## [5.0.28](https://github.com/feathersjs/feathers/compare/v5.0.27...v5.0.28) (2024-07-10) **Note:** Version bump only for package @feathersjs/typebox diff --git a/packages/typebox/package.json b/packages/typebox/package.json index 786935c191..1237d529d7 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.28", + "version": "5.0.29", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,7 +54,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/schema": "^5.0.28", + "@feathersjs/schema": "^5.0.29", "@sinclair/typebox": "^0.25.0" }, "devDependencies": {