From 01bc3339efd27df1b3e8d4f6a82152faf6c5ced3 Mon Sep 17 00:00:00 2001 From: daffl Date: Fri, 3 May 2024 11:29:06 -0700 Subject: [PATCH] chore(release): publish v5.0.25 --- CHANGELOG.md | 9 + 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 | 6 + packages/authentication-local/package.json | 14 +- packages/authentication-oauth/CHANGELOG.md | 7 + packages/authentication-oauth/package.json | 18 +- packages/authentication/CHANGELOG.md | 6 + 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 | 6 + packages/express/package.json | 16 +- packages/feathers/CHANGELOG.md | 4 + packages/feathers/package.json | 4 +- packages/generators/CHANGELOG.md | 6 + packages/generators/package.json | 36 +-- packages/knex/CHANGELOG.md | 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 | 6 + packages/socketio/package.json | 14 +- packages/tests/CHANGELOG.md | 4 + packages/tests/package.json | 4 +- packages/transport-commons/CHANGELOG.md | 6 + packages/transport-commons/package.json | 8 +- packages/typebox/CHANGELOG.md | 4 + packages/typebox/package.json | 4 +- 55 files changed, 469 insertions(+), 339 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2c27f28b6..9451d0b05b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +### Bug Fixes + +- **generators:** better types for enabled methods ([#3474](https://github.com/feathersjs/feathers/issues/3474)) ([bdb3d3a](https://github.com/feathersjs/feathers/commit/bdb3d3a308322bfed3caa4214e4b6a72f1a84944)) +- **knex:** Update commited to boolean type ([#3458](https://github.com/feathersjs/feathers/issues/3458)) ([5fa4dbc](https://github.com/feathersjs/feathers/commit/5fa4dbc06d0126ac18f5643562d0b74f03502caa)) +- **oauth:** Export OAuthService type ([#3479](https://github.com/feathersjs/feathers/issues/3479)) ([e7185cd](https://github.com/feathersjs/feathers/commit/e7185cde63990a0d24a7180c63b61dbc8ef6cd5b)) +- Reduce usage of lodash ([#3455](https://github.com/feathersjs/feathers/issues/3455)) ([8ce807a](https://github.com/feathersjs/feathers/commit/8ce807a5ca53ff5b8d5107a0656c6329404e6e6c)) + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) ### Bug Fixes diff --git a/lerna.json b/lerna.json index e75544c4e5..059828f596 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "ci": false, "packages": ["packages/*"], - "version": "5.0.24", + "version": "5.0.25", "command": { "bootstrap": { "hoist": true diff --git a/package-lock.json b/package-lock.json index 86a2561860..9e64cdffe9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24761,12 +24761,12 @@ }, "packages/adapter-commons": { "name": "@feathersjs/adapter-commons", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24" + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25" }, "devDependencies": { "@types/mocha": "^10.0.6", @@ -24788,7 +24788,7 @@ }, "packages/adapter-tests": { "name": "@feathersjs/adapter-tests", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "devDependencies": { "@types/mocha": "^10.0.6", @@ -24808,15 +24808,15 @@ }, "packages/authentication": { "name": "@feathersjs/authentication", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", "@feathersjs/hooks": "^0.9.0", - "@feathersjs/schema": "^5.0.24", - "@feathersjs/transport-commons": "^5.0.24", + "@feathersjs/schema": "^5.0.25", + "@feathersjs/transport-commons": "^5.0.25", "@types/jsonwebtoken": "^9.0.6", "jsonwebtoken": "^9.0.2", "lodash": "^4.17.21", @@ -24824,7 +24824,7 @@ "uuid": "^9.0.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.24", + "@feathersjs/memory": "^5.0.25", "@types/lodash": "^4.17.0", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", @@ -24844,21 +24844,21 @@ }, "packages/authentication-client": { "name": "@feathersjs/authentication-client", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24" + "@feathersjs/authentication": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.24", - "@feathersjs/express": "^5.0.24", - "@feathersjs/memory": "^5.0.24", - "@feathersjs/rest-client": "^5.0.24", - "@feathersjs/socketio": "^5.0.24", - "@feathersjs/socketio-client": "^5.0.24", + "@feathersjs/authentication-local": "^5.0.25", + "@feathersjs/express": "^5.0.25", + "@feathersjs/memory": "^5.0.25", + "@feathersjs/rest-client": "^5.0.25", + "@feathersjs/socketio": "^5.0.25", + "@feathersjs/socketio-client": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "axios": "^1.6.8", @@ -24877,19 +24877,19 @@ }, "packages/authentication-local": { "name": "@feathersjs/authentication-local", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/authentication": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", "bcryptjs": "^2.4.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/memory": "^5.0.24", - "@feathersjs/schema": "^5.0.24", + "@feathersjs/memory": "^5.0.25", + "@feathersjs/schema": "^5.0.25", "@types/bcryptjs": "^2.4.6", "@types/lodash": "^4.17.0", "@types/mocha": "^10.0.6", @@ -24909,23 +24909,23 @@ }, "packages/authentication-oauth": { "name": "@feathersjs/authentication-oauth", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/express": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/koa": "^5.0.24", - "@feathersjs/schema": "^5.0.24", + "@feathersjs/authentication": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/express": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/koa": "^5.0.25", + "@feathersjs/schema": "^5.0.25", "cookie-session": "^2.1.0", "grant": "^5.4.22", "koa-session": "^6.4.0", "qs": "^6.12.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.24", + "@feathersjs/memory": "^5.0.25", "@types/cookie-session": "^2.0.49", "@types/express": "^4.17.21", "@types/koa-session": "^6.4.5", @@ -24949,10 +24949,10 @@ }, "packages/cli": { "name": "@feathersjs/cli", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/generators": "^5.0.24", + "@feathersjs/generators": "^5.0.25", "chalk": "^5.3.0", "commander": "^12.0.0" }, @@ -24960,23 +24960,23 @@ "feathers": "bin/feathers.js" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.24", - "@feathersjs/authentication": "^5.0.24", - "@feathersjs/authentication-client": "^5.0.24", - "@feathersjs/authentication-local": "^5.0.24", - "@feathersjs/authentication-oauth": "^5.0.24", - "@feathersjs/configuration": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/express": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/knex": "^5.0.24", - "@feathersjs/koa": "^5.0.24", - "@feathersjs/mongodb": "^5.0.24", - "@feathersjs/rest-client": "^5.0.24", - "@feathersjs/schema": "^5.0.24", - "@feathersjs/socketio": "^5.0.24", - "@feathersjs/transport-commons": "^5.0.24", - "@feathersjs/typebox": "^5.0.24", + "@feathersjs/adapter-commons": "^5.0.25", + "@feathersjs/authentication": "^5.0.25", + "@feathersjs/authentication-client": "^5.0.25", + "@feathersjs/authentication-local": "^5.0.25", + "@feathersjs/authentication-oauth": "^5.0.25", + "@feathersjs/configuration": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/express": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/knex": "^5.0.25", + "@feathersjs/koa": "^5.0.25", + "@feathersjs/mongodb": "^5.0.25", + "@feathersjs/rest-client": "^5.0.25", + "@feathersjs/schema": "^5.0.25", + "@feathersjs/socketio": "^5.0.25", + "@feathersjs/transport-commons": "^5.0.25", + "@feathersjs/typebox": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "@types/prettier": "^2.7.3", @@ -25009,22 +25009,22 @@ }, "packages/client": { "name": "@feathersjs/client", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/authentication-client": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/rest-client": "^5.0.24", - "@feathersjs/socketio-client": "^5.0.24" + "@feathersjs/authentication-client": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/rest-client": "^5.0.25", + "@feathersjs/socketio-client": "^5.0.25" }, "devDependencies": { "@babel/core": "^7.24.5", "@babel/preset-env": "^7.24.5", - "@feathersjs/express": "^5.0.24", - "@feathersjs/memory": "^5.0.24", - "@feathersjs/socketio": "^5.0.24", - "@feathersjs/tests": "^5.0.24", + "@feathersjs/express": "^5.0.25", + "@feathersjs/memory": "^5.0.25", + "@feathersjs/socketio": "^5.0.25", + "@feathersjs/tests": "^5.0.25", "babel-loader": "^9.1.3", "mocha": "^10.4.0", "node-fetch": "^2.6.1", @@ -25047,7 +25047,7 @@ }, "packages/commons": { "name": "@feathersjs/commons", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "devDependencies": { "@types/mocha": "^10.0.6", @@ -25067,12 +25067,12 @@ }, "packages/configuration": { "name": "@feathersjs/configuration", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/schema": "^5.0.24", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/schema": "^5.0.25", "@types/config": "^3.3.4", "config": "^3.3.11" }, @@ -25093,10 +25093,10 @@ } }, "packages/create-feathers": { - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/cli": "^5.0.24" + "@feathersjs/cli": "^5.0.25" }, "bin": { "create-feathers": "bin/create-feathers.js" @@ -25111,10 +25111,10 @@ }, "packages/errors": { "name": "@feathersjs/errors", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "devDependencies": { - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/feathers": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "mocha": "^10.4.0", @@ -25128,14 +25128,14 @@ }, "packages/express": { "name": "@feathersjs/express", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/transport-commons": "^5.0.24", + "@feathersjs/authentication": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/transport-commons": "^5.0.25", "@types/compression": "^1.7.5", "@types/cors": "^2.8.17", "@types/express": "^4.17.21", @@ -25145,8 +25145,8 @@ "express": "^4.19.2" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.24", - "@feathersjs/tests": "^5.0.24", + "@feathersjs/authentication-local": "^5.0.25", + "@feathersjs/tests": "^5.0.25", "@types/lodash": "^4.17.0", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", @@ -25167,10 +25167,10 @@ }, "packages/feathers": { "name": "@feathersjs/feathers", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.24", + "@feathersjs/commons": "^5.0.25", "@feathersjs/hooks": "^0.9.0", "events": "^3.3.0" }, @@ -25192,7 +25192,7 @@ }, "packages/generators": { "name": "@feathersjs/generators", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { "@featherscloud/pinion": "^0.5.4", @@ -25202,23 +25202,23 @@ "typescript": "^5.4.5" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.24", - "@feathersjs/authentication": "^5.0.24", - "@feathersjs/authentication-client": "^5.0.24", - "@feathersjs/authentication-local": "^5.0.24", - "@feathersjs/authentication-oauth": "^5.0.24", - "@feathersjs/configuration": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/express": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/knex": "^5.0.24", - "@feathersjs/koa": "^5.0.24", - "@feathersjs/mongodb": "^5.0.24", - "@feathersjs/rest-client": "^5.0.24", - "@feathersjs/schema": "^5.0.24", - "@feathersjs/socketio": "^5.0.24", - "@feathersjs/transport-commons": "^5.0.24", - "@feathersjs/typebox": "^5.0.24", + "@feathersjs/adapter-commons": "^5.0.25", + "@feathersjs/authentication": "^5.0.25", + "@feathersjs/authentication-client": "^5.0.25", + "@feathersjs/authentication-local": "^5.0.25", + "@feathersjs/authentication-oauth": "^5.0.25", + "@feathersjs/configuration": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/express": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/knex": "^5.0.25", + "@feathersjs/koa": "^5.0.25", + "@feathersjs/mongodb": "^5.0.25", + "@feathersjs/rest-client": "^5.0.25", + "@feathersjs/schema": "^5.0.25", + "@feathersjs/socketio": "^5.0.25", + "@feathersjs/transport-commons": "^5.0.25", + "@feathersjs/typebox": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "@types/prettier": "^2.7.3", @@ -25257,17 +25257,17 @@ }, "packages/knex": { "name": "@feathersjs/knex", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24" + "@feathersjs/adapter-commons": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.24", - "@feathersjs/schema": "^5.0.24", + "@feathersjs/adapter-tests": "^5.0.25", + "@feathersjs/schema": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "knex": "^3.1.0", @@ -25290,14 +25290,14 @@ }, "packages/koa": { "name": "@feathersjs/koa", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/transport-commons": "^5.0.24", + "@feathersjs/authentication": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/transport-commons": "^5.0.25", "@koa/cors": "^5.0.0", "@types/koa": "^2.15.0", "@types/koa__cors": "^5.0.0", @@ -25310,9 +25310,9 @@ "koa-static": "^5.0.0" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.24", - "@feathersjs/memory": "^5.0.24", - "@feathersjs/tests": "^5.0.24", + "@feathersjs/authentication-local": "^5.0.25", + "@feathersjs/memory": "^5.0.25", + "@feathersjs/tests": "^5.0.25", "@types/koa-compose": "^3.2.8", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", @@ -25328,17 +25328,17 @@ }, "packages/memory": { "name": "@feathersjs/memory", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", + "@feathersjs/adapter-commons": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", "sift": "^17.1.3" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/adapter-tests": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "mocha": "^10.4.0", @@ -25352,17 +25352,17 @@ }, "packages/mongodb": { "name": "@feathersjs/mongodb", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24" + "@feathersjs/adapter-commons": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.24", - "@feathersjs/schema": "^5.0.24", + "@feathersjs/adapter-tests": "^5.0.25", + "@feathersjs/schema": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "mocha": "^10.4.0", @@ -25383,19 +25383,19 @@ }, "packages/rest-client": { "name": "@feathersjs/rest-client", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", "@types/superagent": "^8.1.7", "qs": "^6.12.1" }, "devDependencies": { - "@feathersjs/express": "^5.0.24", - "@feathersjs/memory": "^5.0.24", - "@feathersjs/tests": "^5.0.24", + "@feathersjs/express": "^5.0.25", + "@feathersjs/memory": "^5.0.25", + "@feathersjs/tests": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "@types/node-fetch": "^2.6.11", @@ -25419,13 +25419,13 @@ }, "packages/schema": { "name": "@feathersjs/schema", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/adapter-commons": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", "@feathersjs/hooks": "^0.9.0", "@types/json-schema": "^7.0.15", "ajv": "^8.13.0", @@ -25433,7 +25433,7 @@ "json-schema-to-ts": "^3.0.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.24", + "@feathersjs/memory": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "ajv-formats": "^3.0.1", @@ -25474,18 +25474,18 @@ }, "packages/socketio": { "name": "@feathersjs/socketio", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/transport-commons": "^5.0.24", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/transport-commons": "^5.0.25", "socket.io": "^4.7.5" }, "devDependencies": { - "@feathersjs/express": "^5.0.24", - "@feathersjs/memory": "^5.0.24", - "@feathersjs/tests": "^5.0.24", + "@feathersjs/express": "^5.0.25", + "@feathersjs/memory": "^5.0.25", + "@feathersjs/tests": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "lodash": "^4.17.21", @@ -25504,17 +25504,17 @@ }, "packages/socketio-client": { "name": "@feathersjs/socketio-client", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/transport-commons": "^5.0.24" + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/transport-commons": "^5.0.25" }, "devDependencies": { - "@feathersjs/commons": "^5.0.24", - "@feathersjs/memory": "^5.0.24", - "@feathersjs/socketio": "^5.0.24", - "@feathersjs/tests": "^5.0.24", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/memory": "^5.0.25", + "@feathersjs/socketio": "^5.0.25", + "@feathersjs/tests": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "mocha": "^10.4.0", @@ -25533,7 +25533,7 @@ }, "packages/tests": { "name": "@feathersjs/tests", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { "@types/lodash": "^4.17.0", @@ -25541,7 +25541,7 @@ "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/feathers": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "mocha": "^10.4.0", @@ -25559,12 +25559,12 @@ }, "packages/transport-commons": { "name": "@feathersjs/transport-commons", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", "encodeurl": "^2.0.0", "lodash": "^4.17.21" }, @@ -25588,10 +25588,10 @@ }, "packages/typebox": { "name": "@feathersjs/typebox", - "version": "5.0.24", + "version": "5.0.25", "license": "MIT", "dependencies": { - "@feathersjs/schema": "^5.0.24", + "@feathersjs/schema": "^5.0.25", "@sinclair/typebox": "^0.25.0" }, "devDependencies": { diff --git a/packages/adapter-commons/CHANGELOG.md b/packages/adapter-commons/CHANGELOG.md index 3d094da681..a037a6673f 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/adapter-commons + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/adapter-commons diff --git a/packages/adapter-commons/package.json b/packages/adapter-commons/package.json index 715bf23551..185e88f4cb 100644 --- a/packages/adapter-commons/package.json +++ b/packages/adapter-commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-commons", - "version": "5.0.24", + "version": "5.0.25", "description": "Shared database adapter utility functions", "homepage": "https://feathersjs.com", "keywords": [ @@ -50,9 +50,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24" + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25" }, "devDependencies": { "@types/mocha": "^10.0.6", diff --git a/packages/adapter-tests/CHANGELOG.md b/packages/adapter-tests/CHANGELOG.md index b0f7e1a481..029434fb53 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/adapter-tests + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/adapter-tests diff --git a/packages/adapter-tests/package.json b/packages/adapter-tests/package.json index 1cc30bfbf8..9129189fe6 100644 --- a/packages/adapter-tests/package.json +++ b/packages/adapter-tests/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-tests", - "version": "5.0.24", + "version": "5.0.25", "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 195cf7d705..065338e58c 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/authentication-client + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/authentication-client diff --git a/packages/authentication-client/package.json b/packages/authentication-client/package.json index 1560d499cb..3fe7aab006 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,18 +53,18 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24" + "@feathersjs/authentication": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.24", - "@feathersjs/express": "^5.0.24", - "@feathersjs/memory": "^5.0.24", - "@feathersjs/rest-client": "^5.0.24", - "@feathersjs/socketio": "^5.0.24", - "@feathersjs/socketio-client": "^5.0.24", + "@feathersjs/authentication-local": "^5.0.25", + "@feathersjs/express": "^5.0.25", + "@feathersjs/memory": "^5.0.25", + "@feathersjs/rest-client": "^5.0.25", + "@feathersjs/socketio": "^5.0.25", + "@feathersjs/socketio-client": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "axios": "^1.6.8", diff --git a/packages/authentication-local/CHANGELOG.md b/packages/authentication-local/CHANGELOG.md index 3d883e5aca..2dc078c542 100644 --- a/packages/authentication-local/CHANGELOG.md +++ b/packages/authentication-local/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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +### Bug Fixes + +- Reduce usage of lodash ([#3455](https://github.com/feathersjs/feathers/issues/3455)) ([8ce807a](https://github.com/feathersjs/feathers/commit/8ce807a5ca53ff5b8d5107a0656c6329404e6e6c)) + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/authentication-local diff --git a/packages/authentication-local/package.json b/packages/authentication-local/package.json index 945a0f816c..2e86bb29f4 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,16 +53,16 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/authentication": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", "bcryptjs": "^2.4.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/memory": "^5.0.24", - "@feathersjs/schema": "^5.0.24", + "@feathersjs/memory": "^5.0.25", + "@feathersjs/schema": "^5.0.25", "@types/bcryptjs": "^2.4.6", "@types/lodash": "^4.17.0", "@types/mocha": "^10.0.6", diff --git a/packages/authentication-oauth/CHANGELOG.md b/packages/authentication-oauth/CHANGELOG.md index 66c3509ade..a29233f164 100644 --- a/packages/authentication-oauth/CHANGELOG.md +++ b/packages/authentication-oauth/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +### Bug Fixes + +- **oauth:** Export OAuthService type ([#3479](https://github.com/feathersjs/feathers/issues/3479)) ([e7185cd](https://github.com/feathersjs/feathers/commit/e7185cde63990a0d24a7180c63b61dbc8ef6cd5b)) +- Reduce usage of lodash ([#3455](https://github.com/feathersjs/feathers/issues/3455)) ([8ce807a](https://github.com/feathersjs/feathers/commit/8ce807a5ca53ff5b8d5107a0656c6329404e6e6c)) + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/authentication-oauth diff --git a/packages/authentication-oauth/package.json b/packages/authentication-oauth/package.json index cf241e91dc..f31e68b892 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,20 +54,20 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/express": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/koa": "^5.0.24", - "@feathersjs/schema": "^5.0.24", + "@feathersjs/authentication": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/express": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/koa": "^5.0.25", + "@feathersjs/schema": "^5.0.25", "cookie-session": "^2.1.0", "grant": "^5.4.22", "koa-session": "^6.4.0", "qs": "^6.12.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.24", + "@feathersjs/memory": "^5.0.25", "@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 29064fff3c..f9c4a2720a 100644 --- a/packages/authentication/CHANGELOG.md +++ b/packages/authentication/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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +### Bug Fixes + +- Reduce usage of lodash ([#3455](https://github.com/feathersjs/feathers/issues/3455)) ([8ce807a](https://github.com/feathersjs/feathers/commit/8ce807a5ca53ff5b8d5107a0656c6329404e6e6c)) + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/authentication diff --git a/packages/authentication/package.json b/packages/authentication/package.json index 765d0bdfb2..0e033afae4 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,12 +53,12 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", "@feathersjs/hooks": "^0.9.0", - "@feathersjs/schema": "^5.0.24", - "@feathersjs/transport-commons": "^5.0.24", + "@feathersjs/schema": "^5.0.25", + "@feathersjs/transport-commons": "^5.0.25", "@types/jsonwebtoken": "^9.0.6", "jsonwebtoken": "^9.0.2", "lodash": "^4.17.21", @@ -66,7 +66,7 @@ "uuid": "^9.0.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.24", + "@feathersjs/memory": "^5.0.25", "@types/lodash": "^4.17.0", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 4abcd84b2b..6a472cd52d 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/cli + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/cli diff --git a/packages/cli/package.json b/packages/cli/package.json index 910613eed5..1b01d2443f 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/index.js", "type": "module", @@ -53,28 +53,28 @@ "access": "public" }, "dependencies": { - "@feathersjs/generators": "^5.0.24", + "@feathersjs/generators": "^5.0.25", "chalk": "^5.3.0", "commander": "^12.0.0" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.24", - "@feathersjs/authentication": "^5.0.24", - "@feathersjs/authentication-client": "^5.0.24", - "@feathersjs/authentication-local": "^5.0.24", - "@feathersjs/authentication-oauth": "^5.0.24", - "@feathersjs/configuration": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/express": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/knex": "^5.0.24", - "@feathersjs/koa": "^5.0.24", - "@feathersjs/mongodb": "^5.0.24", - "@feathersjs/rest-client": "^5.0.24", - "@feathersjs/schema": "^5.0.24", - "@feathersjs/socketio": "^5.0.24", - "@feathersjs/transport-commons": "^5.0.24", - "@feathersjs/typebox": "^5.0.24", + "@feathersjs/adapter-commons": "^5.0.25", + "@feathersjs/authentication": "^5.0.25", + "@feathersjs/authentication-client": "^5.0.25", + "@feathersjs/authentication-local": "^5.0.25", + "@feathersjs/authentication-oauth": "^5.0.25", + "@feathersjs/configuration": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/express": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/knex": "^5.0.25", + "@feathersjs/koa": "^5.0.25", + "@feathersjs/mongodb": "^5.0.25", + "@feathersjs/rest-client": "^5.0.25", + "@feathersjs/schema": "^5.0.25", + "@feathersjs/socketio": "^5.0.25", + "@feathersjs/transport-commons": "^5.0.25", + "@feathersjs/typebox": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "@types/prettier": "^2.7.3", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 1afa28a8cc..8518427806 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/client + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/client diff --git a/packages/client/package.json b/packages/client/package.json index 7b632284b1..bc5b745d07 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.24", + "version": "5.0.25", "repository": { "type": "git", "url": "https://github.com/feathersjs/feathers.git", @@ -49,19 +49,19 @@ "IE 11" ], "dependencies": { - "@feathersjs/authentication-client": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/rest-client": "^5.0.24", - "@feathersjs/socketio-client": "^5.0.24" + "@feathersjs/authentication-client": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/rest-client": "^5.0.25", + "@feathersjs/socketio-client": "^5.0.25" }, "devDependencies": { "@babel/core": "^7.24.5", "@babel/preset-env": "^7.24.5", - "@feathersjs/express": "^5.0.24", - "@feathersjs/memory": "^5.0.24", - "@feathersjs/socketio": "^5.0.24", - "@feathersjs/tests": "^5.0.24", + "@feathersjs/express": "^5.0.25", + "@feathersjs/memory": "^5.0.25", + "@feathersjs/socketio": "^5.0.25", + "@feathersjs/tests": "^5.0.25", "babel-loader": "^9.1.3", "mocha": "^10.4.0", "node-fetch": "^2.6.1", diff --git a/packages/commons/CHANGELOG.md b/packages/commons/CHANGELOG.md index 9e9dae9dc3..ce6c7be0db 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/commons + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/commons diff --git a/packages/commons/package.json b/packages/commons/package.json index 2b3bb132c8..7b1052b9d5 100644 --- a/packages/commons/package.json +++ b/packages/commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/commons", - "version": "5.0.24", + "version": "5.0.25", "description": "Shared Feathers utility functions", "homepage": "https://feathersjs.com", "keywords": [ diff --git a/packages/configuration/CHANGELOG.md b/packages/configuration/CHANGELOG.md index 098f0fac66..327ecd3b37 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/configuration + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/configuration diff --git a/packages/configuration/package.json b/packages/configuration/package.json index 902a8fa00a..6c3d8c079f 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -58,9 +58,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/schema": "^5.0.24", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/schema": "^5.0.25", "@types/config": "^3.3.4", "config": "^3.3.11" }, diff --git a/packages/create-feathers/CHANGELOG.md b/packages/create-feathers/CHANGELOG.md index 1311f63c6a..ae8822ed12 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package create-feathers + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package create-feathers diff --git a/packages/create-feathers/package.json b/packages/create-feathers/package.json index 3753e104ce..4da8307193 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "bin": { "create-feathers": "./bin/create-feathers.js" @@ -48,7 +48,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/cli": "^5.0.24" + "@feathersjs/cli": "^5.0.25" }, "gitHead": "90caf635aec850550b9d37bea2762af959d9e8d5" } diff --git a/packages/errors/CHANGELOG.md b/packages/errors/CHANGELOG.md index fb2bf9a480..1fd7168f3b 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/errors + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/errors diff --git a/packages/errors/package.json b/packages/errors/package.json index d3c0915ea2..1b5ffbee07 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,7 +49,7 @@ "*.js" ], "devDependencies": { - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/feathers": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "mocha": "^10.4.0", diff --git a/packages/express/CHANGELOG.md b/packages/express/CHANGELOG.md index c9bba9d0cb..234b26e137 100644 --- a/packages/express/CHANGELOG.md +++ b/packages/express/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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +### Bug Fixes + +- Reduce usage of lodash ([#3455](https://github.com/feathersjs/feathers/issues/3455)) ([8ce807a](https://github.com/feathersjs/feathers/commit/8ce807a5ca53ff5b8d5107a0656c6329404e6e6c)) + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/express diff --git a/packages/express/package.json b/packages/express/package.json index 23fee49e07..b4c07de99f 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -52,11 +52,11 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/transport-commons": "^5.0.24", + "@feathersjs/authentication": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/transport-commons": "^5.0.25", "@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.24", - "@feathersjs/tests": "^5.0.24", + "@feathersjs/authentication-local": "^5.0.25", + "@feathersjs/tests": "^5.0.25", "@types/lodash": "^4.17.0", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", diff --git a/packages/feathers/CHANGELOG.md b/packages/feathers/CHANGELOG.md index d8c6b2f921..323bb8fa61 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/feathers + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/feathers diff --git a/packages/feathers/package.json b/packages/feathers/package.json index 626d2af65f..4f2573ddde 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.24", + "version": "5.0.25", "homepage": "http://feathersjs.com", "repository": { "type": "git", @@ -58,7 +58,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.24", + "@feathersjs/commons": "^5.0.25", "@feathersjs/hooks": "^0.9.0", "events": "^3.3.0" }, diff --git a/packages/generators/CHANGELOG.md b/packages/generators/CHANGELOG.md index 37b04c784b..fe9bb281fc 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +### Bug Fixes + +- **generators:** better types for enabled methods ([#3474](https://github.com/feathersjs/feathers/issues/3474)) ([bdb3d3a](https://github.com/feathersjs/feathers/commit/bdb3d3a308322bfed3caa4214e4b6a72f1a84944)) + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) ### Bug Fixes diff --git a/packages/generators/package.json b/packages/generators/package.json index a39f0815ac..f46effd3d5 100644 --- a/packages/generators/package.json +++ b/packages/generators/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/generators", - "version": "5.0.24", + "version": "5.0.25", "description": "Feathers CLI core generators, powered by Pinion", "homepage": "https://feathersjs.com", "keywords": [ @@ -60,23 +60,23 @@ "typescript": "^5.4.5" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.24", - "@feathersjs/authentication": "^5.0.24", - "@feathersjs/authentication-client": "^5.0.24", - "@feathersjs/authentication-local": "^5.0.24", - "@feathersjs/authentication-oauth": "^5.0.24", - "@feathersjs/configuration": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/express": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/knex": "^5.0.24", - "@feathersjs/koa": "^5.0.24", - "@feathersjs/mongodb": "^5.0.24", - "@feathersjs/rest-client": "^5.0.24", - "@feathersjs/schema": "^5.0.24", - "@feathersjs/socketio": "^5.0.24", - "@feathersjs/transport-commons": "^5.0.24", - "@feathersjs/typebox": "^5.0.24", + "@feathersjs/adapter-commons": "^5.0.25", + "@feathersjs/authentication": "^5.0.25", + "@feathersjs/authentication-client": "^5.0.25", + "@feathersjs/authentication-local": "^5.0.25", + "@feathersjs/authentication-oauth": "^5.0.25", + "@feathersjs/configuration": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/express": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/knex": "^5.0.25", + "@feathersjs/koa": "^5.0.25", + "@feathersjs/mongodb": "^5.0.25", + "@feathersjs/rest-client": "^5.0.25", + "@feathersjs/schema": "^5.0.25", + "@feathersjs/socketio": "^5.0.25", + "@feathersjs/transport-commons": "^5.0.25", + "@feathersjs/typebox": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "@types/prettier": "^2.7.3", diff --git a/packages/knex/CHANGELOG.md b/packages/knex/CHANGELOG.md index dfea719f32..c16ada6942 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +### Bug Fixes + +- **knex:** Update commited to boolean type ([#3458](https://github.com/feathersjs/feathers/issues/3458)) ([5fa4dbc](https://github.com/feathersjs/feathers/commit/5fa4dbc06d0126ac18f5643562d0b74f03502caa)) + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/knex diff --git a/packages/knex/package.json b/packages/knex/package.json index 00f9e7dc5c..c32578ee41 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -51,17 +51,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24" + "@feathersjs/adapter-commons": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25" }, "peerDependencies": { "knex": ">=3.1.0" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.24", - "@feathersjs/schema": "^5.0.24", + "@feathersjs/adapter-tests": "^5.0.25", + "@feathersjs/schema": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "knex": "^3.1.0", diff --git a/packages/koa/CHANGELOG.md b/packages/koa/CHANGELOG.md index bb7a5369fa..eae4cdb5e4 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/koa + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/koa diff --git a/packages/koa/package.json b/packages/koa/package.json index 31032c54ea..46493cf1c4 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,11 +49,11 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/transport-commons": "^5.0.24", + "@feathersjs/authentication": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/transport-commons": "^5.0.25", "@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.24", - "@feathersjs/memory": "^5.0.24", - "@feathersjs/tests": "^5.0.24", + "@feathersjs/authentication-local": "^5.0.25", + "@feathersjs/memory": "^5.0.25", + "@feathersjs/tests": "^5.0.25", "@types/koa-compose": "^3.2.8", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", diff --git a/packages/memory/CHANGELOG.md b/packages/memory/CHANGELOG.md index c4104e258d..7001dff19b 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/memory + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/memory diff --git a/packages/memory/package.json b/packages/memory/package.json index 192384b733..1327ec8cdf 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.24", + "version": "5.0.25", "homepage": "https://github.com/feathersjs/feathers", "main": "lib/", "types": "lib/", @@ -49,14 +49,14 @@ "lib": "lib" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", + "@feathersjs/adapter-commons": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", "sift": "^17.1.3" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/adapter-tests": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "mocha": "^10.4.0", diff --git a/packages/mongodb/CHANGELOG.md b/packages/mongodb/CHANGELOG.md index 77ade44ebd..24230734e7 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/mongodb + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/mongodb diff --git a/packages/mongodb/package.json b/packages/mongodb/package.json index 59ef4515b5..9e495dfd83 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -51,17 +51,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24" + "@feathersjs/adapter-commons": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25" }, "peerDependencies": { "mongodb": "^6.5.0" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.24", - "@feathersjs/schema": "^5.0.24", + "@feathersjs/adapter-tests": "^5.0.25", + "@feathersjs/schema": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "mocha": "^10.4.0", diff --git a/packages/rest-client/CHANGELOG.md b/packages/rest-client/CHANGELOG.md index d9f6310fa7..178b028ee2 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/rest-client + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/rest-client diff --git a/packages/rest-client/package.json b/packages/rest-client/package.json index 23aec1673b..38bea5daf1 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,16 +53,16 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", "@types/superagent": "^8.1.7", "qs": "^6.12.1" }, "devDependencies": { - "@feathersjs/express": "^5.0.24", - "@feathersjs/memory": "^5.0.24", - "@feathersjs/tests": "^5.0.24", + "@feathersjs/express": "^5.0.25", + "@feathersjs/memory": "^5.0.25", + "@feathersjs/tests": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "@types/node-fetch": "^2.6.11", diff --git a/packages/schema/CHANGELOG.md b/packages/schema/CHANGELOG.md index 5891e88a32..80bfe24270 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/schema + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/schema diff --git a/packages/schema/package.json b/packages/schema/package.json index 975f2d8f81..86758f72ca 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,10 +54,10 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.24", - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/adapter-commons": "^5.0.25", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", "@feathersjs/hooks": "^0.9.0", "@types/json-schema": "^7.0.15", "ajv": "^8.13.0", @@ -65,7 +65,7 @@ "json-schema-to-ts": "^3.0.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.24", + "@feathersjs/memory": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "ajv-formats": "^3.0.1", diff --git a/packages/socketio-client/CHANGELOG.md b/packages/socketio-client/CHANGELOG.md index a7a626a81d..258b67e70f 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/socketio-client + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/socketio-client diff --git a/packages/socketio-client/package.json b/packages/socketio-client/package.json index 41826811ce..a0d4e28b56 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,14 +54,14 @@ "access": "public" }, "dependencies": { - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/transport-commons": "^5.0.24" + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/transport-commons": "^5.0.25" }, "devDependencies": { - "@feathersjs/commons": "^5.0.24", - "@feathersjs/memory": "^5.0.24", - "@feathersjs/socketio": "^5.0.24", - "@feathersjs/tests": "^5.0.24", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/memory": "^5.0.25", + "@feathersjs/socketio": "^5.0.25", + "@feathersjs/tests": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "mocha": "^10.4.0", diff --git a/packages/socketio/CHANGELOG.md b/packages/socketio/CHANGELOG.md index 8cdbc697f8..7d5e885019 100644 --- a/packages/socketio/CHANGELOG.md +++ b/packages/socketio/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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +### Bug Fixes + +- Reduce usage of lodash ([#3455](https://github.com/feathersjs/feathers/issues/3455)) ([8ce807a](https://github.com/feathersjs/feathers/commit/8ce807a5ca53ff5b8d5107a0656c6329404e6e6c)) + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/socketio diff --git a/packages/socketio/package.json b/packages/socketio/package.json index aceea3331b..17be46aa43 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,15 +53,15 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", - "@feathersjs/transport-commons": "^5.0.24", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", + "@feathersjs/transport-commons": "^5.0.25", "socket.io": "^4.7.5" }, "devDependencies": { - "@feathersjs/express": "^5.0.24", - "@feathersjs/memory": "^5.0.24", - "@feathersjs/tests": "^5.0.24", + "@feathersjs/express": "^5.0.25", + "@feathersjs/memory": "^5.0.25", + "@feathersjs/tests": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "lodash": "^4.17.21", diff --git a/packages/tests/CHANGELOG.md b/packages/tests/CHANGELOG.md index d19953e531..10c94d1fc2 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/tests + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/tests diff --git a/packages/tests/package.json b/packages/tests/package.json index 4d10c09b64..59f0d8a446 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,7 +49,7 @@ "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/feathers": "^5.0.25", "@types/mocha": "^10.0.6", "@types/node": "^20.12.8", "mocha": "^10.4.0", diff --git a/packages/transport-commons/CHANGELOG.md b/packages/transport-commons/CHANGELOG.md index d2c8a82d86..e2cc870ccc 100644 --- a/packages/transport-commons/CHANGELOG.md +++ b/packages/transport-commons/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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +### Bug Fixes + +- Reduce usage of lodash ([#3455](https://github.com/feathersjs/feathers/issues/3455)) ([8ce807a](https://github.com/feathersjs/feathers/commit/8ce807a5ca53ff5b8d5107a0656c6329404e6e6c)) + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) ### Bug Fixes diff --git a/packages/transport-commons/package.json b/packages/transport-commons/package.json index 75ee8315c9..d453e913c8 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,9 +54,9 @@ "*.js" ], "dependencies": { - "@feathersjs/commons": "^5.0.24", - "@feathersjs/errors": "^5.0.24", - "@feathersjs/feathers": "^5.0.24", + "@feathersjs/commons": "^5.0.25", + "@feathersjs/errors": "^5.0.25", + "@feathersjs/feathers": "^5.0.25", "encodeurl": "^2.0.0", "lodash": "^4.17.21" }, diff --git a/packages/typebox/CHANGELOG.md b/packages/typebox/CHANGELOG.md index db3201b6ee..3e11ffe177 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.25](https://github.com/feathersjs/feathers/compare/v5.0.24...v5.0.25) (2024-05-03) + +**Note:** Version bump only for package @feathersjs/typebox + ## [5.0.24](https://github.com/feathersjs/feathers/compare/v5.0.23...v5.0.24) (2024-03-13) **Note:** Version bump only for package @feathersjs/typebox diff --git a/packages/typebox/package.json b/packages/typebox/package.json index 6d7a254920..33e21a81a9 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.24", + "version": "5.0.25", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,7 +54,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/schema": "^5.0.24", + "@feathersjs/schema": "^5.0.25", "@sinclair/typebox": "^0.25.0" }, "devDependencies": {