From ce00d390ddd85a5be533da69f7958fdc330d8f80 Mon Sep 17 00:00:00 2001 From: daffl Date: Mon, 2 Sep 2024 16:39:54 -0700 Subject: [PATCH] chore(release): publish v5.0.30 --- 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 | 4 + packages/generators/package.json | 36 +-- packages/knex/CHANGELOG.md | 6 + 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 bf488f66b6..fe11d69a2d 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +### Bug Fixes + +- **knex:** use driver name to identify client ([#3527](https://github.com/feathersjs/feathers/issues/3527)) ([bb075ec](https://github.com/feathersjs/feathers/commit/bb075ec8beb3ac9b0a1a8aebc3c3756d970cc6a4)) + ## [5.0.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 6f448bf82f..c544a9c98c 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "ci": false, "packages": ["packages/*"], - "version": "5.0.29", + "version": "5.0.30", "command": { "bootstrap": { "hoist": true diff --git a/package-lock.json b/package-lock.json index ec71666da6..d1b794868d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24228,12 +24228,12 @@ }, "packages/adapter-commons": { "name": "@feathersjs/adapter-commons", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29" + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30" }, "devDependencies": { "@types/mocha": "^10.0.7", @@ -24255,7 +24255,7 @@ }, "packages/adapter-tests": { "name": "@feathersjs/adapter-tests", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "devDependencies": { "@types/mocha": "^10.0.7", @@ -24275,15 +24275,15 @@ }, "packages/authentication": { "name": "@feathersjs/authentication", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", "@feathersjs/hooks": "^0.9.0", - "@feathersjs/schema": "^5.0.29", - "@feathersjs/transport-commons": "^5.0.29", + "@feathersjs/schema": "^5.0.30", + "@feathersjs/transport-commons": "^5.0.30", "@types/jsonwebtoken": "^9.0.6", "jsonwebtoken": "^9.0.2", "lodash": "^4.17.21", @@ -24291,7 +24291,7 @@ "uuid": "^10.0.0" }, "devDependencies": { - "@feathersjs/memory": "^5.0.29", + "@feathersjs/memory": "^5.0.30", "@types/lodash": "^4.17.7", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", @@ -24311,21 +24311,21 @@ }, "packages/authentication-client": { "name": "@feathersjs/authentication-client", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.29", - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29" + "@feathersjs/authentication": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30" }, "devDependencies": { - "@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", + "@feathersjs/authentication-local": "^5.0.30", + "@feathersjs/express": "^5.0.30", + "@feathersjs/memory": "^5.0.30", + "@feathersjs/rest-client": "^5.0.30", + "@feathersjs/socketio": "^5.0.30", + "@feathersjs/socketio-client": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "axios": "^1.7.7", @@ -24344,19 +24344,19 @@ }, "packages/authentication-local": { "name": "@feathersjs/authentication-local", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.29", - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/authentication": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", "bcryptjs": "^2.4.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/memory": "^5.0.29", - "@feathersjs/schema": "^5.0.29", + "@feathersjs/memory": "^5.0.30", + "@feathersjs/schema": "^5.0.30", "@types/bcryptjs": "^2.4.6", "@types/lodash": "^4.17.7", "@types/mocha": "^10.0.7", @@ -24376,23 +24376,23 @@ }, "packages/authentication-oauth": { "name": "@feathersjs/authentication-oauth", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@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", + "@feathersjs/authentication": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/express": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/koa": "^5.0.30", + "@feathersjs/schema": "^5.0.30", "cookie-session": "^2.1.0", "grant": "^5.4.22", "koa-session": "^6.4.0", "qs": "^6.13.0" }, "devDependencies": { - "@feathersjs/memory": "^5.0.29", + "@feathersjs/memory": "^5.0.30", "@types/cookie-session": "^2.0.49", "@types/express": "^4.17.21", "@types/koa-session": "^6.4.5", @@ -24416,10 +24416,10 @@ }, "packages/cli": { "name": "@feathersjs/cli", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/generators": "^5.0.29", + "@feathersjs/generators": "^5.0.30", "chalk": "^5.3.0", "commander": "^12.1.0" }, @@ -24427,23 +24427,23 @@ "feathers": "bin/feathers.js" }, "devDependencies": { - "@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", + "@feathersjs/adapter-commons": "^5.0.30", + "@feathersjs/authentication": "^5.0.30", + "@feathersjs/authentication-client": "^5.0.30", + "@feathersjs/authentication-local": "^5.0.30", + "@feathersjs/authentication-oauth": "^5.0.30", + "@feathersjs/configuration": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/express": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/knex": "^5.0.30", + "@feathersjs/koa": "^5.0.30", + "@feathersjs/mongodb": "^5.0.30", + "@feathersjs/rest-client": "^5.0.30", + "@feathersjs/schema": "^5.0.30", + "@feathersjs/socketio": "^5.0.30", + "@feathersjs/transport-commons": "^5.0.30", + "@feathersjs/typebox": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "@types/prettier": "^2.7.3", @@ -24476,22 +24476,22 @@ }, "packages/client": { "name": "@feathersjs/client", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@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" + "@feathersjs/authentication-client": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/rest-client": "^5.0.30", + "@feathersjs/socketio-client": "^5.0.30" }, "devDependencies": { "@babel/core": "^7.25.2", "@babel/preset-env": "^7.25.4", - "@feathersjs/express": "^5.0.29", - "@feathersjs/memory": "^5.0.29", - "@feathersjs/socketio": "^5.0.29", - "@feathersjs/tests": "^5.0.29", + "@feathersjs/express": "^5.0.30", + "@feathersjs/memory": "^5.0.30", + "@feathersjs/socketio": "^5.0.30", + "@feathersjs/tests": "^5.0.30", "babel-loader": "^9.1.3", "mocha": "^10.7.3", "node-fetch": "^2.6.1", @@ -24514,7 +24514,7 @@ }, "packages/commons": { "name": "@feathersjs/commons", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "devDependencies": { "@types/mocha": "^10.0.7", @@ -24534,12 +24534,12 @@ }, "packages/configuration": { "name": "@feathersjs/configuration", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", - "@feathersjs/schema": "^5.0.29", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/schema": "^5.0.30", "@types/config": "^3.3.4", "config": "^3.3.12" }, @@ -24560,10 +24560,10 @@ } }, "packages/create-feathers": { - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/cli": "^5.0.29" + "@feathersjs/cli": "^5.0.30" }, "bin": { "create-feathers": "bin/create-feathers.js" @@ -24578,10 +24578,10 @@ }, "packages/errors": { "name": "@feathersjs/errors", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "devDependencies": { - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/feathers": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "mocha": "^10.7.3", @@ -24595,14 +24595,14 @@ }, "packages/express": { "name": "@feathersjs/express", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@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", + "@feathersjs/authentication": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/transport-commons": "^5.0.30", "@types/compression": "^1.7.5", "@types/cors": "^2.8.17", "@types/express": "^4.17.21", @@ -24612,8 +24612,8 @@ "express": "^4.19.2" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.29", - "@feathersjs/tests": "^5.0.29", + "@feathersjs/authentication-local": "^5.0.30", + "@feathersjs/tests": "^5.0.30", "@types/lodash": "^4.17.7", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", @@ -24634,10 +24634,10 @@ }, "packages/feathers": { "name": "@feathersjs/feathers", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.29", + "@feathersjs/commons": "^5.0.30", "@feathersjs/hooks": "^0.9.0", "events": "^3.3.0" }, @@ -24659,7 +24659,7 @@ }, "packages/generators": { "name": "@feathersjs/generators", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { "@featherscloud/pinion": "^0.5.4", @@ -24669,23 +24669,23 @@ "typescript": "^5.5.4" }, "devDependencies": { - "@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", + "@feathersjs/adapter-commons": "^5.0.30", + "@feathersjs/authentication": "^5.0.30", + "@feathersjs/authentication-client": "^5.0.30", + "@feathersjs/authentication-local": "^5.0.30", + "@feathersjs/authentication-oauth": "^5.0.30", + "@feathersjs/configuration": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/express": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/knex": "^5.0.30", + "@feathersjs/koa": "^5.0.30", + "@feathersjs/mongodb": "^5.0.30", + "@feathersjs/rest-client": "^5.0.30", + "@feathersjs/schema": "^5.0.30", + "@feathersjs/socketio": "^5.0.30", + "@feathersjs/transport-commons": "^5.0.30", + "@feathersjs/typebox": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "@types/prettier": "^2.7.3", @@ -24724,17 +24724,17 @@ }, "packages/knex": { "name": "@feathersjs/knex", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.29", - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29" + "@feathersjs/adapter-commons": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.29", - "@feathersjs/schema": "^5.0.29", + "@feathersjs/adapter-tests": "^5.0.30", + "@feathersjs/schema": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "knex": "^3.1.0", @@ -24757,14 +24757,14 @@ }, "packages/koa": { "name": "@feathersjs/koa", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@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", + "@feathersjs/authentication": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/transport-commons": "^5.0.30", "@koa/cors": "^5.0.0", "@types/koa": "^2.15.0", "@types/koa__cors": "^5.0.0", @@ -24777,9 +24777,9 @@ "koa-static": "^5.0.0" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.29", - "@feathersjs/memory": "^5.0.29", - "@feathersjs/tests": "^5.0.29", + "@feathersjs/authentication-local": "^5.0.30", + "@feathersjs/memory": "^5.0.30", + "@feathersjs/tests": "^5.0.30", "@types/koa-compose": "^3.2.8", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", @@ -24795,17 +24795,17 @@ }, "packages/memory": { "name": "@feathersjs/memory", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.29", - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", + "@feathersjs/adapter-commons": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", "sift": "^17.1.3" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/adapter-tests": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "mocha": "^10.7.3", @@ -24819,17 +24819,17 @@ }, "packages/mongodb": { "name": "@feathersjs/mongodb", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.29", - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29" + "@feathersjs/adapter-commons": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.29", - "@feathersjs/schema": "^5.0.29", + "@feathersjs/adapter-tests": "^5.0.30", + "@feathersjs/schema": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "mocha": "^10.7.3", @@ -24850,19 +24850,19 @@ }, "packages/rest-client": { "name": "@feathersjs/rest-client", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", "@types/superagent": "^8.1.9", "qs": "^6.13.0" }, "devDependencies": { - "@feathersjs/express": "^5.0.29", - "@feathersjs/memory": "^5.0.29", - "@feathersjs/tests": "^5.0.29", + "@feathersjs/express": "^5.0.30", + "@feathersjs/memory": "^5.0.30", + "@feathersjs/tests": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "@types/node-fetch": "^2.6.11", @@ -24886,13 +24886,13 @@ }, "packages/schema": { "name": "@feathersjs/schema", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.29", - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/adapter-commons": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", "@feathersjs/hooks": "^0.9.0", "@types/json-schema": "^7.0.15", "ajv": "^8.17.1", @@ -24900,7 +24900,7 @@ "json-schema-to-ts": "^3.1.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.29", + "@feathersjs/memory": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "ajv-formats": "^3.0.1", @@ -24941,18 +24941,18 @@ }, "packages/socketio": { "name": "@feathersjs/socketio", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", - "@feathersjs/transport-commons": "^5.0.29", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/transport-commons": "^5.0.30", "socket.io": "^4.7.5" }, "devDependencies": { - "@feathersjs/express": "^5.0.29", - "@feathersjs/memory": "^5.0.29", - "@feathersjs/tests": "^5.0.29", + "@feathersjs/express": "^5.0.30", + "@feathersjs/memory": "^5.0.30", + "@feathersjs/tests": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "lodash": "^4.17.21", @@ -24971,17 +24971,17 @@ }, "packages/socketio-client": { "name": "@feathersjs/socketio-client", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/feathers": "^5.0.29", - "@feathersjs/transport-commons": "^5.0.29" + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/transport-commons": "^5.0.30" }, "devDependencies": { - "@feathersjs/commons": "^5.0.29", - "@feathersjs/memory": "^5.0.29", - "@feathersjs/socketio": "^5.0.29", - "@feathersjs/tests": "^5.0.29", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/memory": "^5.0.30", + "@feathersjs/socketio": "^5.0.30", + "@feathersjs/tests": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "mocha": "^10.7.3", @@ -25000,7 +25000,7 @@ }, "packages/tests": { "name": "@feathersjs/tests", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { "@types/lodash": "^4.17.7", @@ -25008,7 +25008,7 @@ "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/feathers": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "mocha": "^10.7.3", @@ -25026,12 +25026,12 @@ }, "packages/transport-commons": { "name": "@feathersjs/transport-commons", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", "encodeurl": "^2.0.0", "lodash": "^4.17.21" }, @@ -25055,10 +25055,10 @@ }, "packages/typebox": { "name": "@feathersjs/typebox", - "version": "5.0.29", + "version": "5.0.30", "license": "MIT", "dependencies": { - "@feathersjs/schema": "^5.0.29", + "@feathersjs/schema": "^5.0.30", "@sinclair/typebox": "^0.25.0" }, "devDependencies": { diff --git a/packages/adapter-commons/CHANGELOG.md b/packages/adapter-commons/CHANGELOG.md index 2af3e5ceb6..f67857b5d8 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/adapter-commons + ## [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 diff --git a/packages/adapter-commons/package.json b/packages/adapter-commons/package.json index a759a8e8be..8fda1dda8c 100644 --- a/packages/adapter-commons/package.json +++ b/packages/adapter-commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-commons", - "version": "5.0.29", + "version": "5.0.30", "description": "Shared database adapter utility functions", "homepage": "https://feathersjs.com", "keywords": [ @@ -50,9 +50,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29" + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30" }, "devDependencies": { "@types/mocha": "^10.0.7", diff --git a/packages/adapter-tests/CHANGELOG.md b/packages/adapter-tests/CHANGELOG.md index 04bfc00d5d..561cf9fe5b 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/adapter-tests + ## [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 diff --git a/packages/adapter-tests/package.json b/packages/adapter-tests/package.json index 829d49b81c..a9a317a0a0 100644 --- a/packages/adapter-tests/package.json +++ b/packages/adapter-tests/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-tests", - "version": "5.0.29", + "version": "5.0.30", "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 057f876393..1022e15b59 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/authentication-client + ## [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 diff --git a/packages/authentication-client/package.json b/packages/authentication-client/package.json index 5cbf6c0cfb..97b453fd98 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,18 +53,18 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.29", - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29" + "@feathersjs/authentication": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30" }, "devDependencies": { - "@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", + "@feathersjs/authentication-local": "^5.0.30", + "@feathersjs/express": "^5.0.30", + "@feathersjs/memory": "^5.0.30", + "@feathersjs/rest-client": "^5.0.30", + "@feathersjs/socketio": "^5.0.30", + "@feathersjs/socketio-client": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "axios": "^1.7.7", diff --git a/packages/authentication-local/CHANGELOG.md b/packages/authentication-local/CHANGELOG.md index 846ab53297..d5ee7b605b 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/authentication-local + ## [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 diff --git a/packages/authentication-local/package.json b/packages/authentication-local/package.json index d4f9250d64..8fcf282d3a 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,16 +53,16 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.29", - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/authentication": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", "bcryptjs": "^2.4.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/memory": "^5.0.29", - "@feathersjs/schema": "^5.0.29", + "@feathersjs/memory": "^5.0.30", + "@feathersjs/schema": "^5.0.30", "@types/bcryptjs": "^2.4.6", "@types/lodash": "^4.17.7", "@types/mocha": "^10.0.7", diff --git a/packages/authentication-oauth/CHANGELOG.md b/packages/authentication-oauth/CHANGELOG.md index 4bb2b4f563..ba0a101081 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/authentication-oauth + ## [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 diff --git a/packages/authentication-oauth/package.json b/packages/authentication-oauth/package.json index 705bd84fe4..bc48f6429f 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,20 +54,20 @@ "access": "public" }, "dependencies": { - "@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", + "@feathersjs/authentication": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/express": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/koa": "^5.0.30", + "@feathersjs/schema": "^5.0.30", "cookie-session": "^2.1.0", "grant": "^5.4.22", "koa-session": "^6.4.0", "qs": "^6.13.0" }, "devDependencies": { - "@feathersjs/memory": "^5.0.29", + "@feathersjs/memory": "^5.0.30", "@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 f483f0e6ae..bedf8c6348 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/authentication + ## [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 diff --git a/packages/authentication/package.json b/packages/authentication/package.json index 5f323602ac..77e3e6a1da 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,12 +53,12 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", "@feathersjs/hooks": "^0.9.0", - "@feathersjs/schema": "^5.0.29", - "@feathersjs/transport-commons": "^5.0.29", + "@feathersjs/schema": "^5.0.30", + "@feathersjs/transport-commons": "^5.0.30", "@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.29", + "@feathersjs/memory": "^5.0.30", "@types/lodash": "^4.17.7", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 55382755ce..bac75fba9e 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/cli + ## [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 diff --git a/packages/cli/package.json b/packages/cli/package.json index a0022fd822..15f08ee83b 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/index.js", "type": "module", @@ -53,28 +53,28 @@ "access": "public" }, "dependencies": { - "@feathersjs/generators": "^5.0.29", + "@feathersjs/generators": "^5.0.30", "chalk": "^5.3.0", "commander": "^12.1.0" }, "devDependencies": { - "@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", + "@feathersjs/adapter-commons": "^5.0.30", + "@feathersjs/authentication": "^5.0.30", + "@feathersjs/authentication-client": "^5.0.30", + "@feathersjs/authentication-local": "^5.0.30", + "@feathersjs/authentication-oauth": "^5.0.30", + "@feathersjs/configuration": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/express": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/knex": "^5.0.30", + "@feathersjs/koa": "^5.0.30", + "@feathersjs/mongodb": "^5.0.30", + "@feathersjs/rest-client": "^5.0.30", + "@feathersjs/schema": "^5.0.30", + "@feathersjs/socketio": "^5.0.30", + "@feathersjs/transport-commons": "^5.0.30", + "@feathersjs/typebox": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "@types/prettier": "^2.7.3", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index e1a3407b1d..5015b03a77 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/client + ## [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 diff --git a/packages/client/package.json b/packages/client/package.json index 1a4fc81468..24b5cfab40 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.29", + "version": "5.0.30", "repository": { "type": "git", "url": "https://github.com/feathersjs/feathers.git", @@ -49,19 +49,19 @@ "IE 11" ], "dependencies": { - "@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" + "@feathersjs/authentication-client": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/rest-client": "^5.0.30", + "@feathersjs/socketio-client": "^5.0.30" }, "devDependencies": { "@babel/core": "^7.25.2", "@babel/preset-env": "^7.25.4", - "@feathersjs/express": "^5.0.29", - "@feathersjs/memory": "^5.0.29", - "@feathersjs/socketio": "^5.0.29", - "@feathersjs/tests": "^5.0.29", + "@feathersjs/express": "^5.0.30", + "@feathersjs/memory": "^5.0.30", + "@feathersjs/socketio": "^5.0.30", + "@feathersjs/tests": "^5.0.30", "babel-loader": "^9.1.3", "mocha": "^10.7.3", "node-fetch": "^2.6.1", diff --git a/packages/commons/CHANGELOG.md b/packages/commons/CHANGELOG.md index 0f8b3d0a35..24cd2fe1dc 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/commons + ## [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 diff --git a/packages/commons/package.json b/packages/commons/package.json index c16baf9932..81dff1bb65 100644 --- a/packages/commons/package.json +++ b/packages/commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/commons", - "version": "5.0.29", + "version": "5.0.30", "description": "Shared Feathers utility functions", "homepage": "https://feathersjs.com", "keywords": [ diff --git a/packages/configuration/CHANGELOG.md b/packages/configuration/CHANGELOG.md index d616cdd398..c3b5ffe2fc 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/configuration + ## [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 diff --git a/packages/configuration/package.json b/packages/configuration/package.json index b3b493be3b..d81f37a2d6 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -58,9 +58,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", - "@feathersjs/schema": "^5.0.29", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/schema": "^5.0.30", "@types/config": "^3.3.4", "config": "^3.3.12" }, diff --git a/packages/create-feathers/CHANGELOG.md b/packages/create-feathers/CHANGELOG.md index 6cde4440de..a9b5e5d4c6 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package create-feathers + ## [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 diff --git a/packages/create-feathers/package.json b/packages/create-feathers/package.json index 246b296a15..71393f975a 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "bin": { "create-feathers": "./bin/create-feathers.js" @@ -48,7 +48,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/cli": "^5.0.29" + "@feathersjs/cli": "^5.0.30" }, "gitHead": "90caf635aec850550b9d37bea2762af959d9e8d5" } diff --git a/packages/errors/CHANGELOG.md b/packages/errors/CHANGELOG.md index 1ac1741ad4..f0bc9e59f5 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/errors + ## [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 diff --git a/packages/errors/package.json b/packages/errors/package.json index 633bc036b0..b156955284 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,7 +49,7 @@ "*.js" ], "devDependencies": { - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/feathers": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "mocha": "^10.7.3", diff --git a/packages/express/CHANGELOG.md b/packages/express/CHANGELOG.md index 8a30f17f21..7ba7ed5274 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/express + ## [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 diff --git a/packages/express/package.json b/packages/express/package.json index b11100dd87..6dce7ebda9 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -52,11 +52,11 @@ "access": "public" }, "dependencies": { - "@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", + "@feathersjs/authentication": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/transport-commons": "^5.0.30", "@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.29", - "@feathersjs/tests": "^5.0.29", + "@feathersjs/authentication-local": "^5.0.30", + "@feathersjs/tests": "^5.0.30", "@types/lodash": "^4.17.7", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", diff --git a/packages/feathers/CHANGELOG.md b/packages/feathers/CHANGELOG.md index 9bfd17d55b..9863ced4b6 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/feathers + ## [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 diff --git a/packages/feathers/package.json b/packages/feathers/package.json index aac3baef99..20691feef0 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.29", + "version": "5.0.30", "homepage": "http://feathersjs.com", "repository": { "type": "git", @@ -58,7 +58,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.29", + "@feathersjs/commons": "^5.0.30", "@feathersjs/hooks": "^0.9.0", "events": "^3.3.0" }, diff --git a/packages/generators/CHANGELOG.md b/packages/generators/CHANGELOG.md index 92eb4bddb8..2ef59bfba1 100644 --- a/packages/generators/CHANGELOG.md +++ b/packages/generators/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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/generators + ## [5.0.29](https://github.com/feathersjs/feathers/compare/v5.0.28...v5.0.29) (2024-07-10) ### Bug Fixes diff --git a/packages/generators/package.json b/packages/generators/package.json index 8f4390d9ee..03cde3b14b 100644 --- a/packages/generators/package.json +++ b/packages/generators/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/generators", - "version": "5.0.29", + "version": "5.0.30", "description": "Feathers CLI core generators, powered by Pinion", "homepage": "https://feathersjs.com", "keywords": [ @@ -59,23 +59,23 @@ "typescript": "^5.5.4" }, "devDependencies": { - "@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", + "@feathersjs/adapter-commons": "^5.0.30", + "@feathersjs/authentication": "^5.0.30", + "@feathersjs/authentication-client": "^5.0.30", + "@feathersjs/authentication-local": "^5.0.30", + "@feathersjs/authentication-oauth": "^5.0.30", + "@feathersjs/configuration": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/express": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/knex": "^5.0.30", + "@feathersjs/koa": "^5.0.30", + "@feathersjs/mongodb": "^5.0.30", + "@feathersjs/rest-client": "^5.0.30", + "@feathersjs/schema": "^5.0.30", + "@feathersjs/socketio": "^5.0.30", + "@feathersjs/transport-commons": "^5.0.30", + "@feathersjs/typebox": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "@types/prettier": "^2.7.3", diff --git a/packages/knex/CHANGELOG.md b/packages/knex/CHANGELOG.md index f2985d8e4f..fb800835de 100644 --- a/packages/knex/CHANGELOG.md +++ b/packages/knex/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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +### Bug Fixes + +- **knex:** use driver name to identify client ([#3527](https://github.com/feathersjs/feathers/issues/3527)) ([bb075ec](https://github.com/feathersjs/feathers/commit/bb075ec8beb3ac9b0a1a8aebc3c3756d970cc6a4)) + ## [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 diff --git a/packages/knex/package.json b/packages/knex/package.json index 1f5cb06dd4..2fc94433bf 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -51,17 +51,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.29", - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29" + "@feathersjs/adapter-commons": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30" }, "peerDependencies": { "knex": ">=3.1.0" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.29", - "@feathersjs/schema": "^5.0.29", + "@feathersjs/adapter-tests": "^5.0.30", + "@feathersjs/schema": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "knex": "^3.1.0", diff --git a/packages/koa/CHANGELOG.md b/packages/koa/CHANGELOG.md index aa718fdc6c..5cd24964f0 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/koa + ## [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 diff --git a/packages/koa/package.json b/packages/koa/package.json index e5fa59535a..36b6d65fd6 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,11 +49,11 @@ "access": "public" }, "dependencies": { - "@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", + "@feathersjs/authentication": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/transport-commons": "^5.0.30", "@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.29", - "@feathersjs/memory": "^5.0.29", - "@feathersjs/tests": "^5.0.29", + "@feathersjs/authentication-local": "^5.0.30", + "@feathersjs/memory": "^5.0.30", + "@feathersjs/tests": "^5.0.30", "@types/koa-compose": "^3.2.8", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", diff --git a/packages/memory/CHANGELOG.md b/packages/memory/CHANGELOG.md index b8018ac7a5..565190b148 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/memory + ## [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 diff --git a/packages/memory/package.json b/packages/memory/package.json index 27fb59084f..1481567454 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.29", + "version": "5.0.30", "homepage": "https://github.com/feathersjs/feathers", "main": "lib/", "types": "lib/", @@ -49,14 +49,14 @@ "lib": "lib" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.29", - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", + "@feathersjs/adapter-commons": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", "sift": "^17.1.3" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/adapter-tests": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "mocha": "^10.7.3", diff --git a/packages/mongodb/CHANGELOG.md b/packages/mongodb/CHANGELOG.md index 964df8ccea..17eed4e524 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/mongodb + ## [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 diff --git a/packages/mongodb/package.json b/packages/mongodb/package.json index ac31b172ec..3da066a16b 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -51,17 +51,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.29", - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29" + "@feathersjs/adapter-commons": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30" }, "peerDependencies": { "mongodb": "^6.8.0" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.29", - "@feathersjs/schema": "^5.0.29", + "@feathersjs/adapter-tests": "^5.0.30", + "@feathersjs/schema": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "mocha": "^10.7.3", diff --git a/packages/rest-client/CHANGELOG.md b/packages/rest-client/CHANGELOG.md index a30a0b708a..25b219e2b5 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/rest-client + ## [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 diff --git a/packages/rest-client/package.json b/packages/rest-client/package.json index c6d72f1fa7..1e32c1d3dd 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,16 +53,16 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", "@types/superagent": "^8.1.9", "qs": "^6.13.0" }, "devDependencies": { - "@feathersjs/express": "^5.0.29", - "@feathersjs/memory": "^5.0.29", - "@feathersjs/tests": "^5.0.29", + "@feathersjs/express": "^5.0.30", + "@feathersjs/memory": "^5.0.30", + "@feathersjs/tests": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "@types/node-fetch": "^2.6.11", diff --git a/packages/schema/CHANGELOG.md b/packages/schema/CHANGELOG.md index 29633378a4..c04c180abe 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/schema + ## [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 diff --git a/packages/schema/package.json b/packages/schema/package.json index 69b8158b44..2f61912328 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,10 +54,10 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.29", - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/adapter-commons": "^5.0.30", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", "@feathersjs/hooks": "^0.9.0", "@types/json-schema": "^7.0.15", "ajv": "^8.17.1", @@ -65,7 +65,7 @@ "json-schema-to-ts": "^3.1.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.29", + "@feathersjs/memory": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "ajv-formats": "^3.0.1", diff --git a/packages/socketio-client/CHANGELOG.md b/packages/socketio-client/CHANGELOG.md index 78f99a0e66..985e9709da 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/socketio-client + ## [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 diff --git a/packages/socketio-client/package.json b/packages/socketio-client/package.json index 8afa7ad2f8..16db0131e8 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,14 +54,14 @@ "access": "public" }, "dependencies": { - "@feathersjs/feathers": "^5.0.29", - "@feathersjs/transport-commons": "^5.0.29" + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/transport-commons": "^5.0.30" }, "devDependencies": { - "@feathersjs/commons": "^5.0.29", - "@feathersjs/memory": "^5.0.29", - "@feathersjs/socketio": "^5.0.29", - "@feathersjs/tests": "^5.0.29", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/memory": "^5.0.30", + "@feathersjs/socketio": "^5.0.30", + "@feathersjs/tests": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "mocha": "^10.7.3", diff --git a/packages/socketio/CHANGELOG.md b/packages/socketio/CHANGELOG.md index 8efaa47e1b..f2ed7e81ad 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/socketio + ## [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 diff --git a/packages/socketio/package.json b/packages/socketio/package.json index 445d91fa99..f0368b2e28 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,15 +53,15 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", - "@feathersjs/transport-commons": "^5.0.29", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", + "@feathersjs/transport-commons": "^5.0.30", "socket.io": "^4.7.5" }, "devDependencies": { - "@feathersjs/express": "^5.0.29", - "@feathersjs/memory": "^5.0.29", - "@feathersjs/tests": "^5.0.29", + "@feathersjs/express": "^5.0.30", + "@feathersjs/memory": "^5.0.30", + "@feathersjs/tests": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "lodash": "^4.17.21", diff --git a/packages/tests/CHANGELOG.md b/packages/tests/CHANGELOG.md index c26d8b2ba2..6116c0bb3b 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/tests + ## [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 diff --git a/packages/tests/package.json b/packages/tests/package.json index b64a5dcbc9..4b13e58f56 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,7 +49,7 @@ "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/feathers": "^5.0.30", "@types/mocha": "^10.0.7", "@types/node": "^22.5.1", "mocha": "^10.7.3", diff --git a/packages/transport-commons/CHANGELOG.md b/packages/transport-commons/CHANGELOG.md index d2bd8d4880..24a7c13380 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/transport-commons + ## [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 diff --git a/packages/transport-commons/package.json b/packages/transport-commons/package.json index 35fd8995a1..ef9b080dbf 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,9 +54,9 @@ "*.js" ], "dependencies": { - "@feathersjs/commons": "^5.0.29", - "@feathersjs/errors": "^5.0.29", - "@feathersjs/feathers": "^5.0.29", + "@feathersjs/commons": "^5.0.30", + "@feathersjs/errors": "^5.0.30", + "@feathersjs/feathers": "^5.0.30", "encodeurl": "^2.0.0", "lodash": "^4.17.21" }, diff --git a/packages/typebox/CHANGELOG.md b/packages/typebox/CHANGELOG.md index 8146228d6e..e43e37530f 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.30](https://github.com/feathersjs/feathers/compare/v5.0.29...v5.0.30) (2024-09-02) + +**Note:** Version bump only for package @feathersjs/typebox + ## [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 diff --git a/packages/typebox/package.json b/packages/typebox/package.json index 22db95c58a..2b97de9893 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.29", + "version": "5.0.30", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,7 +54,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/schema": "^5.0.29", + "@feathersjs/schema": "^5.0.30", "@sinclair/typebox": "^0.25.0" }, "devDependencies": {