From 3cb3bc9a32602d82193b781b583ed0f37044e778 Mon Sep 17 00:00:00 2001 From: David Luecke Date: Mon, 22 Jan 2024 14:01:58 -0800 Subject: [PATCH 1/2] fix(cli): Another fix for CLI ES module loading (#3397) --- packages/generators/src/connection/index.ts | 2 +- packages/generators/src/service/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/generators/src/connection/index.ts b/packages/generators/src/connection/index.ts index 298599d249..43ab705556 100644 --- a/packages/generators/src/connection/index.ts +++ b/packages/generators/src/connection/index.ts @@ -90,7 +90,7 @@ export const generate = (ctx: ConnectionGeneratorArguments) => runGenerator( __dirname, 'templates', - ({ database }) => `${getDatabaseAdapter(database)}.tpl` + ({ database }) => `${getDatabaseAdapter(database)}.tpl.js` ), mergeJSON( ({ connectionString, database }) => diff --git a/packages/generators/src/service/index.ts b/packages/generators/src/service/index.ts index f02d5d3802..fa7b8f4536 100644 --- a/packages/generators/src/service/index.ts +++ b/packages/generators/src/service/index.ts @@ -210,4 +210,4 @@ export const generate = (ctx: ServiceGeneratorArguments) => } as ServiceGeneratorContext }) .then(runGenerators(__dirname, 'templates')) - .then(runGenerator(__dirname, 'type', ({ type }) => `${type}.tpl`)) + .then(runGenerator(__dirname, 'type', ({ type }) => `${type}.tpl.js`)) From 8f4c7d4c9424659d3fc464bd1c010dc6a331cfc8 Mon Sep 17 00:00:00 2001 From: daffl Date: Mon, 22 Jan 2024 14:02:31 -0800 Subject: [PATCH 2/2] chore(release): publish v5.0.18 --- CHANGELOG.md | 6 + lerna.json | 2 +- package-lock.json | 338 ++++++++++---------- packages/adapter-commons/CHANGELOG.md | 4 + packages/adapter-commons/package.json | 8 +- packages/adapter-tests/CHANGELOG.md | 4 + packages/adapter-tests/package.json | 2 +- packages/authentication-client/CHANGELOG.md | 4 + packages/authentication-client/package.json | 22 +- packages/authentication-local/CHANGELOG.md | 4 + packages/authentication-local/package.json | 14 +- packages/authentication-oauth/CHANGELOG.md | 4 + packages/authentication-oauth/package.json | 18 +- packages/authentication/CHANGELOG.md | 4 + packages/authentication/package.json | 14 +- packages/cli/CHANGELOG.md | 4 + packages/cli/package.json | 38 +-- packages/client/CHANGELOG.md | 4 + packages/client/package.json | 20 +- packages/commons/CHANGELOG.md | 4 + packages/commons/package.json | 2 +- packages/configuration/CHANGELOG.md | 4 + packages/configuration/package.json | 8 +- packages/create-feathers/CHANGELOG.md | 4 + packages/create-feathers/package.json | 4 +- packages/errors/CHANGELOG.md | 4 + packages/errors/package.json | 4 +- packages/express/CHANGELOG.md | 4 + packages/express/package.json | 16 +- packages/feathers/CHANGELOG.md | 4 + packages/feathers/package.json | 4 +- packages/generators/CHANGELOG.md | 6 + packages/generators/package.json | 36 +-- packages/knex/CHANGELOG.md | 4 + packages/knex/package.json | 14 +- packages/koa/CHANGELOG.md | 4 + packages/koa/package.json | 18 +- packages/memory/CHANGELOG.md | 4 + packages/memory/package.json | 12 +- packages/mongodb/CHANGELOG.md | 4 + packages/mongodb/package.json | 14 +- packages/rest-client/CHANGELOG.md | 4 + packages/rest-client/package.json | 14 +- packages/schema/CHANGELOG.md | 4 + packages/schema/package.json | 12 +- packages/socketio-client/CHANGELOG.md | 4 + packages/socketio-client/package.json | 14 +- packages/socketio/CHANGELOG.md | 4 + packages/socketio/package.json | 14 +- packages/tests/CHANGELOG.md | 4 + packages/tests/package.json | 4 +- packages/transport-commons/CHANGELOG.md | 4 + packages/transport-commons/package.json | 8 +- packages/typebox/CHANGELOG.md | 4 + packages/typebox/package.json | 4 +- 55 files changed, 451 insertions(+), 339 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0aa657c69e..302a83dc4a 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +### Bug Fixes + +- **cli:** Another fix for CLI ES module loading ([#3397](https://github.com/feathersjs/feathers/issues/3397)) ([3cb3bc9](https://github.com/feathersjs/feathers/commit/3cb3bc9a32602d82193b781b583ed0f37044e778)) + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) ### Bug Fixes diff --git a/lerna.json b/lerna.json index b0768c8509..9363936220 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "ci": false, "packages": ["packages/*"], - "version": "5.0.17", + "version": "5.0.18", "command": { "bootstrap": { "hoist": true diff --git a/package-lock.json b/package-lock.json index 8254024c3d..2e3eaddad8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23934,12 +23934,12 @@ }, "packages/adapter-commons": { "name": "@feathersjs/adapter-commons", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17" + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18" }, "devDependencies": { "@types/mocha": "^10.0.6", @@ -23961,7 +23961,7 @@ }, "packages/adapter-tests": { "name": "@feathersjs/adapter-tests", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "devDependencies": { "@types/mocha": "^10.0.6", @@ -23981,15 +23981,15 @@ }, "packages/authentication": { "name": "@feathersjs/authentication", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", "@feathersjs/hooks": "^0.8.1", - "@feathersjs/schema": "^5.0.17", - "@feathersjs/transport-commons": "^5.0.17", + "@feathersjs/schema": "^5.0.18", + "@feathersjs/transport-commons": "^5.0.18", "@types/jsonwebtoken": "^9.0.5", "jsonwebtoken": "^9.0.2", "lodash": "^4.17.21", @@ -23997,7 +23997,7 @@ "uuid": "^9.0.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.17", + "@feathersjs/memory": "^5.0.18", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", @@ -24017,21 +24017,21 @@ }, "packages/authentication-client": { "name": "@feathersjs/authentication-client", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17" + "@feathersjs/authentication": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.17", - "@feathersjs/express": "^5.0.17", - "@feathersjs/memory": "^5.0.17", - "@feathersjs/rest-client": "^5.0.17", - "@feathersjs/socketio": "^5.0.17", - "@feathersjs/socketio-client": "^5.0.17", + "@feathersjs/authentication-local": "^5.0.18", + "@feathersjs/express": "^5.0.18", + "@feathersjs/memory": "^5.0.18", + "@feathersjs/rest-client": "^5.0.18", + "@feathersjs/socketio": "^5.0.18", + "@feathersjs/socketio-client": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "axios": "^1.6.5", @@ -24050,19 +24050,19 @@ }, "packages/authentication-local": { "name": "@feathersjs/authentication-local", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/authentication": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", "bcryptjs": "^2.4.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/memory": "^5.0.17", - "@feathersjs/schema": "^5.0.17", + "@feathersjs/memory": "^5.0.18", + "@feathersjs/schema": "^5.0.18", "@types/bcryptjs": "^2.4.6", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", @@ -24082,16 +24082,16 @@ }, "packages/authentication-oauth": { "name": "@feathersjs/authentication-oauth", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/express": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/koa": "^5.0.17", - "@feathersjs/schema": "^5.0.17", + "@feathersjs/authentication": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/express": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/koa": "^5.0.18", + "@feathersjs/schema": "^5.0.18", "cookie-session": "^2.0.0", "grant": "^5.4.22", "koa-session": "^6.4.0", @@ -24099,7 +24099,7 @@ "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/memory": "^5.0.17", + "@feathersjs/memory": "^5.0.18", "@types/cookie-session": "^2.0.48", "@types/express": "^4.17.21", "@types/koa-session": "^6.4.5", @@ -24124,10 +24124,10 @@ }, "packages/cli": { "name": "@feathersjs/cli", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/generators": "^5.0.17", + "@feathersjs/generators": "^5.0.18", "chalk": "^5.3.0", "commander": "^11.1.0" }, @@ -24135,23 +24135,23 @@ "feathers": "bin/feathers" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.17", - "@feathersjs/authentication": "^5.0.17", - "@feathersjs/authentication-client": "^5.0.17", - "@feathersjs/authentication-local": "^5.0.17", - "@feathersjs/authentication-oauth": "^5.0.17", - "@feathersjs/configuration": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/express": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/knex": "^5.0.17", - "@feathersjs/koa": "^5.0.17", - "@feathersjs/mongodb": "^5.0.17", - "@feathersjs/rest-client": "^5.0.17", - "@feathersjs/schema": "^5.0.17", - "@feathersjs/socketio": "^5.0.17", - "@feathersjs/transport-commons": "^5.0.17", - "@feathersjs/typebox": "^5.0.17", + "@feathersjs/adapter-commons": "^5.0.18", + "@feathersjs/authentication": "^5.0.18", + "@feathersjs/authentication-client": "^5.0.18", + "@feathersjs/authentication-local": "^5.0.18", + "@feathersjs/authentication-oauth": "^5.0.18", + "@feathersjs/configuration": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/express": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/knex": "^5.0.18", + "@feathersjs/koa": "^5.0.18", + "@feathersjs/mongodb": "^5.0.18", + "@feathersjs/rest-client": "^5.0.18", + "@feathersjs/schema": "^5.0.18", + "@feathersjs/socketio": "^5.0.18", + "@feathersjs/transport-commons": "^5.0.18", + "@feathersjs/typebox": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "@types/prettier": "^2.7.3", @@ -24172,22 +24172,22 @@ }, "packages/client": { "name": "@feathersjs/client", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/authentication-client": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/rest-client": "^5.0.17", - "@feathersjs/socketio-client": "^5.0.17" + "@feathersjs/authentication-client": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/rest-client": "^5.0.18", + "@feathersjs/socketio-client": "^5.0.18" }, "devDependencies": { "@babel/core": "^7.23.7", "@babel/preset-env": "^7.23.8", - "@feathersjs/express": "^5.0.17", - "@feathersjs/memory": "^5.0.17", - "@feathersjs/socketio": "^5.0.17", - "@feathersjs/tests": "^5.0.17", + "@feathersjs/express": "^5.0.18", + "@feathersjs/memory": "^5.0.18", + "@feathersjs/socketio": "^5.0.18", + "@feathersjs/tests": "^5.0.18", "babel-loader": "^9.1.3", "mocha": "^10.2.0", "node-fetch": "^2.6.1", @@ -24210,7 +24210,7 @@ }, "packages/commons": { "name": "@feathersjs/commons", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "devDependencies": { "@types/mocha": "^10.0.6", @@ -24230,12 +24230,12 @@ }, "packages/configuration": { "name": "@feathersjs/configuration", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/schema": "^5.0.17", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/schema": "^5.0.18", "@types/config": "^3.3.3", "config": "^3.3.10" }, @@ -24256,10 +24256,10 @@ } }, "packages/create-feathers": { - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/cli": "^5.0.17" + "@feathersjs/cli": "^5.0.18" }, "bin": { "create-feathers": "bin/create-feathers" @@ -24274,10 +24274,10 @@ }, "packages/errors": { "name": "@feathersjs/errors", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "devDependencies": { - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/feathers": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "mocha": "^10.2.0", @@ -24291,14 +24291,14 @@ }, "packages/express": { "name": "@feathersjs/express", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/transport-commons": "^5.0.17", + "@feathersjs/authentication": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/transport-commons": "^5.0.18", "@types/compression": "^1.7.5", "@types/cors": "^2.8.17", "@types/express": "^4.17.21", @@ -24308,8 +24308,8 @@ "express": "^4.18.2" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.17", - "@feathersjs/tests": "^5.0.17", + "@feathersjs/authentication-local": "^5.0.18", + "@feathersjs/tests": "^5.0.18", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", @@ -24330,10 +24330,10 @@ }, "packages/feathers": { "name": "@feathersjs/feathers", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.17", + "@feathersjs/commons": "^5.0.18", "@feathersjs/hooks": "^0.8.1", "events": "^3.3.0" }, @@ -24355,7 +24355,7 @@ }, "packages/generators": { "name": "@feathersjs/generators", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { "@featherscloud/pinion": "^0.5.0", @@ -24365,23 +24365,23 @@ "typescript": "^5.3.3" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.17", - "@feathersjs/authentication": "^5.0.17", - "@feathersjs/authentication-client": "^5.0.17", - "@feathersjs/authentication-local": "^5.0.17", - "@feathersjs/authentication-oauth": "^5.0.17", - "@feathersjs/configuration": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/express": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/knex": "^5.0.17", - "@feathersjs/koa": "^5.0.17", - "@feathersjs/mongodb": "^5.0.17", - "@feathersjs/rest-client": "^5.0.17", - "@feathersjs/schema": "^5.0.17", - "@feathersjs/socketio": "^5.0.17", - "@feathersjs/transport-commons": "^5.0.17", - "@feathersjs/typebox": "^5.0.17", + "@feathersjs/adapter-commons": "^5.0.18", + "@feathersjs/authentication": "^5.0.18", + "@feathersjs/authentication-client": "^5.0.18", + "@feathersjs/authentication-local": "^5.0.18", + "@feathersjs/authentication-oauth": "^5.0.18", + "@feathersjs/configuration": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/express": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/knex": "^5.0.18", + "@feathersjs/koa": "^5.0.18", + "@feathersjs/mongodb": "^5.0.18", + "@feathersjs/rest-client": "^5.0.18", + "@feathersjs/schema": "^5.0.18", + "@feathersjs/socketio": "^5.0.18", + "@feathersjs/transport-commons": "^5.0.18", + "@feathersjs/typebox": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "@types/prettier": "^2.7.3", @@ -24408,17 +24408,17 @@ }, "packages/knex": { "name": "@feathersjs/knex", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17" + "@feathersjs/adapter-commons": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.17", - "@feathersjs/schema": "^5.0.17", + "@feathersjs/adapter-tests": "^5.0.18", + "@feathersjs/schema": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "knex": "^3.1.0", @@ -24441,14 +24441,14 @@ }, "packages/koa": { "name": "@feathersjs/koa", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/authentication": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/transport-commons": "^5.0.17", + "@feathersjs/authentication": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/transport-commons": "^5.0.18", "@koa/cors": "^5.0.0", "@types/koa": "^2.14.0", "@types/koa__cors": "^5.0.0", @@ -24461,9 +24461,9 @@ "koa-static": "^5.0.0" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.17", - "@feathersjs/memory": "^5.0.17", - "@feathersjs/tests": "^5.0.17", + "@feathersjs/authentication-local": "^5.0.18", + "@feathersjs/memory": "^5.0.18", + "@feathersjs/tests": "^5.0.18", "@types/koa-compose": "^3.2.8", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", @@ -24479,17 +24479,17 @@ }, "packages/memory": { "name": "@feathersjs/memory", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", + "@feathersjs/adapter-commons": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", "sift": "^17.0.1" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/adapter-tests": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "mocha": "^10.2.0", @@ -24503,17 +24503,17 @@ }, "packages/mongodb": { "name": "@feathersjs/mongodb", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17" + "@feathersjs/adapter-commons": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.17", - "@feathersjs/schema": "^5.0.17", + "@feathersjs/adapter-tests": "^5.0.18", + "@feathersjs/schema": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "mocha": "^10.2.0", @@ -24534,19 +24534,19 @@ }, "packages/rest-client": { "name": "@feathersjs/rest-client", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", "@types/superagent": "^8.1.1", "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/express": "^5.0.17", - "@feathersjs/memory": "^5.0.17", - "@feathersjs/tests": "^5.0.17", + "@feathersjs/express": "^5.0.18", + "@feathersjs/memory": "^5.0.18", + "@feathersjs/tests": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "@types/node-fetch": "^2.6.11", @@ -24570,13 +24570,13 @@ }, "packages/schema": { "name": "@feathersjs/schema", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/adapter-commons": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/adapter-commons": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", "@feathersjs/hooks": "^0.8.1", "@types/json-schema": "^7.0.15", "ajv": "^8.12.0", @@ -24584,7 +24584,7 @@ "json-schema-to-ts": "^3.0.0" }, "devDependencies": { - "@feathersjs/memory": "^5.0.17", + "@feathersjs/memory": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "ajv-formats": "^2.1.1", @@ -24625,18 +24625,18 @@ }, "packages/socketio": { "name": "@feathersjs/socketio", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/transport-commons": "^5.0.17", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/transport-commons": "^5.0.18", "socket.io": "^4.7.4" }, "devDependencies": { - "@feathersjs/express": "^5.0.17", - "@feathersjs/memory": "^5.0.17", - "@feathersjs/tests": "^5.0.17", + "@feathersjs/express": "^5.0.18", + "@feathersjs/memory": "^5.0.18", + "@feathersjs/tests": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "lodash": "^4.17.21", @@ -24655,17 +24655,17 @@ }, "packages/socketio-client": { "name": "@feathersjs/socketio-client", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/transport-commons": "^5.0.17" + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/transport-commons": "^5.0.18" }, "devDependencies": { - "@feathersjs/commons": "^5.0.17", - "@feathersjs/memory": "^5.0.17", - "@feathersjs/socketio": "^5.0.17", - "@feathersjs/tests": "^5.0.17", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/memory": "^5.0.18", + "@feathersjs/socketio": "^5.0.18", + "@feathersjs/tests": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "mocha": "^10.2.0", @@ -24684,7 +24684,7 @@ }, "packages/tests": { "name": "@feathersjs/tests", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { "@types/lodash": "^4.14.202", @@ -24692,7 +24692,7 @@ "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/feathers": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "mocha": "^10.2.0", @@ -24710,12 +24710,12 @@ }, "packages/transport-commons": { "name": "@feathersjs/transport-commons", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", "encodeurl": "^1.0.2", "lodash": "^4.17.21" }, @@ -24739,10 +24739,10 @@ }, "packages/typebox": { "name": "@feathersjs/typebox", - "version": "5.0.17", + "version": "5.0.18", "license": "MIT", "dependencies": { - "@feathersjs/schema": "^5.0.17", + "@feathersjs/schema": "^5.0.18", "@sinclair/typebox": "^0.25.0" }, "devDependencies": { diff --git a/packages/adapter-commons/CHANGELOG.md b/packages/adapter-commons/CHANGELOG.md index b2b1353d3d..b8326e7c70 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/adapter-commons + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/adapter-commons diff --git a/packages/adapter-commons/package.json b/packages/adapter-commons/package.json index 20af5309f8..26f7a46740 100644 --- a/packages/adapter-commons/package.json +++ b/packages/adapter-commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-commons", - "version": "5.0.17", + "version": "5.0.18", "description": "Shared database adapter utility functions", "homepage": "https://feathersjs.com", "keywords": [ @@ -50,9 +50,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17" + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18" }, "devDependencies": { "@types/mocha": "^10.0.6", diff --git a/packages/adapter-tests/CHANGELOG.md b/packages/adapter-tests/CHANGELOG.md index ab70aee9e5..a1d20310e1 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/adapter-tests + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/adapter-tests diff --git a/packages/adapter-tests/package.json b/packages/adapter-tests/package.json index 719a024e6f..ef486b1082 100644 --- a/packages/adapter-tests/package.json +++ b/packages/adapter-tests/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/adapter-tests", - "version": "5.0.17", + "version": "5.0.18", "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 1188c3a324..4bd022e136 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/authentication-client + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/authentication-client diff --git a/packages/authentication-client/package.json b/packages/authentication-client/package.json index 68681f82e1..0a4dd8ae30 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,18 +53,18 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17" + "@feathersjs/authentication": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.17", - "@feathersjs/express": "^5.0.17", - "@feathersjs/memory": "^5.0.17", - "@feathersjs/rest-client": "^5.0.17", - "@feathersjs/socketio": "^5.0.17", - "@feathersjs/socketio-client": "^5.0.17", + "@feathersjs/authentication-local": "^5.0.18", + "@feathersjs/express": "^5.0.18", + "@feathersjs/memory": "^5.0.18", + "@feathersjs/rest-client": "^5.0.18", + "@feathersjs/socketio": "^5.0.18", + "@feathersjs/socketio-client": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "axios": "^1.6.5", diff --git a/packages/authentication-local/CHANGELOG.md b/packages/authentication-local/CHANGELOG.md index 928c96d902..3a3ca3fa56 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/authentication-local + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/authentication-local diff --git a/packages/authentication-local/package.json b/packages/authentication-local/package.json index 90d02a80d2..401d2af773 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,16 +53,16 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/authentication": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", "bcryptjs": "^2.4.3", "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/memory": "^5.0.17", - "@feathersjs/schema": "^5.0.17", + "@feathersjs/memory": "^5.0.18", + "@feathersjs/schema": "^5.0.18", "@types/bcryptjs": "^2.4.6", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", diff --git a/packages/authentication-oauth/CHANGELOG.md b/packages/authentication-oauth/CHANGELOG.md index 7218bc6bf1..62394c1368 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/authentication-oauth + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/authentication-oauth diff --git a/packages/authentication-oauth/package.json b/packages/authentication-oauth/package.json index 63d67f9a05..ea21beb1e3 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,13 +54,13 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/express": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/koa": "^5.0.17", - "@feathersjs/schema": "^5.0.17", + "@feathersjs/authentication": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/express": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/koa": "^5.0.18", + "@feathersjs/schema": "^5.0.18", "cookie-session": "^2.0.0", "grant": "^5.4.22", "koa-session": "^6.4.0", @@ -68,7 +68,7 @@ "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/memory": "^5.0.17", + "@feathersjs/memory": "^5.0.18", "@types/cookie-session": "^2.0.48", "@types/express": "^4.17.21", "@types/koa-session": "^6.4.5", diff --git a/packages/authentication/CHANGELOG.md b/packages/authentication/CHANGELOG.md index a0113c3d83..133a74b8c0 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/authentication + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/authentication diff --git a/packages/authentication/package.json b/packages/authentication/package.json index 640991b337..8fd8bd4e14 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,12 +53,12 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", "@feathersjs/hooks": "^0.8.1", - "@feathersjs/schema": "^5.0.17", - "@feathersjs/transport-commons": "^5.0.17", + "@feathersjs/schema": "^5.0.18", + "@feathersjs/transport-commons": "^5.0.18", "@types/jsonwebtoken": "^9.0.5", "jsonwebtoken": "^9.0.2", "lodash": "^4.17.21", @@ -66,7 +66,7 @@ "uuid": "^9.0.1" }, "devDependencies": { - "@feathersjs/memory": "^5.0.17", + "@feathersjs/memory": "^5.0.18", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index fd82e8eadf..c35b7ca769 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/cli + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) ### Bug Fixes diff --git a/packages/cli/package.json b/packages/cli/package.json index bcf0fcf9fe..5fdaf8e1ea 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/index.js", "type": "module", @@ -53,28 +53,28 @@ "access": "public" }, "dependencies": { - "@feathersjs/generators": "^5.0.17", + "@feathersjs/generators": "^5.0.18", "chalk": "^5.3.0", "commander": "^11.1.0" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.17", - "@feathersjs/authentication": "^5.0.17", - "@feathersjs/authentication-client": "^5.0.17", - "@feathersjs/authentication-local": "^5.0.17", - "@feathersjs/authentication-oauth": "^5.0.17", - "@feathersjs/configuration": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/express": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/knex": "^5.0.17", - "@feathersjs/koa": "^5.0.17", - "@feathersjs/mongodb": "^5.0.17", - "@feathersjs/rest-client": "^5.0.17", - "@feathersjs/schema": "^5.0.17", - "@feathersjs/socketio": "^5.0.17", - "@feathersjs/transport-commons": "^5.0.17", - "@feathersjs/typebox": "^5.0.17", + "@feathersjs/adapter-commons": "^5.0.18", + "@feathersjs/authentication": "^5.0.18", + "@feathersjs/authentication-client": "^5.0.18", + "@feathersjs/authentication-local": "^5.0.18", + "@feathersjs/authentication-oauth": "^5.0.18", + "@feathersjs/configuration": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/express": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/knex": "^5.0.18", + "@feathersjs/koa": "^5.0.18", + "@feathersjs/mongodb": "^5.0.18", + "@feathersjs/rest-client": "^5.0.18", + "@feathersjs/schema": "^5.0.18", + "@feathersjs/socketio": "^5.0.18", + "@feathersjs/transport-commons": "^5.0.18", + "@feathersjs/typebox": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "@types/prettier": "^2.7.3", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index d69d6db0ed..9d7f901e16 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/client + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/client diff --git a/packages/client/package.json b/packages/client/package.json index 95df823aea..b127d7f526 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.17", + "version": "5.0.18", "repository": { "type": "git", "url": "https://github.com/feathersjs/feathers.git", @@ -49,19 +49,19 @@ "IE 11" ], "dependencies": { - "@feathersjs/authentication-client": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/rest-client": "^5.0.17", - "@feathersjs/socketio-client": "^5.0.17" + "@feathersjs/authentication-client": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/rest-client": "^5.0.18", + "@feathersjs/socketio-client": "^5.0.18" }, "devDependencies": { "@babel/core": "^7.23.7", "@babel/preset-env": "^7.23.8", - "@feathersjs/express": "^5.0.17", - "@feathersjs/memory": "^5.0.17", - "@feathersjs/socketio": "^5.0.17", - "@feathersjs/tests": "^5.0.17", + "@feathersjs/express": "^5.0.18", + "@feathersjs/memory": "^5.0.18", + "@feathersjs/socketio": "^5.0.18", + "@feathersjs/tests": "^5.0.18", "babel-loader": "^9.1.3", "mocha": "^10.2.0", "node-fetch": "^2.6.1", diff --git a/packages/commons/CHANGELOG.md b/packages/commons/CHANGELOG.md index 60fb0021d2..af5e311dfa 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/commons + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/commons diff --git a/packages/commons/package.json b/packages/commons/package.json index 12677f9c62..2f2aec9903 100644 --- a/packages/commons/package.json +++ b/packages/commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/commons", - "version": "5.0.17", + "version": "5.0.18", "description": "Shared Feathers utility functions", "homepage": "https://feathersjs.com", "keywords": [ diff --git a/packages/configuration/CHANGELOG.md b/packages/configuration/CHANGELOG.md index a3d4115222..a7e14a11f3 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/configuration + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/configuration diff --git a/packages/configuration/package.json b/packages/configuration/package.json index 431c05fab3..80ebf95ade 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -58,9 +58,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/schema": "^5.0.17", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/schema": "^5.0.18", "@types/config": "^3.3.3", "config": "^3.3.10" }, diff --git a/packages/create-feathers/CHANGELOG.md b/packages/create-feathers/CHANGELOG.md index 994df116fd..6fd3e851bb 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package create-feathers + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package create-feathers diff --git a/packages/create-feathers/package.json b/packages/create-feathers/package.json index c5b71274b5..8084ae1718 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "bin": { "create-feathers": "./bin/create-feathers" @@ -48,7 +48,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/cli": "^5.0.17" + "@feathersjs/cli": "^5.0.18" }, "gitHead": "90caf635aec850550b9d37bea2762af959d9e8d5" } diff --git a/packages/errors/CHANGELOG.md b/packages/errors/CHANGELOG.md index 52ed7bf36a..d69b006f7b 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/errors + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/errors diff --git a/packages/errors/package.json b/packages/errors/package.json index 7872cc49fa..2c8384c401 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,7 +49,7 @@ "*.js" ], "devDependencies": { - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/feathers": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "mocha": "^10.2.0", diff --git a/packages/express/CHANGELOG.md b/packages/express/CHANGELOG.md index 5d07bd813e..58ede4ef0e 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/express + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/express diff --git a/packages/express/package.json b/packages/express/package.json index 08feb67e91..10998c90d5 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -52,11 +52,11 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/transport-commons": "^5.0.17", + "@feathersjs/authentication": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/transport-commons": "^5.0.18", "@types/compression": "^1.7.5", "@types/cors": "^2.8.17", "@types/express": "^4.17.21", @@ -66,8 +66,8 @@ "express": "^4.18.2" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.17", - "@feathersjs/tests": "^5.0.17", + "@feathersjs/authentication-local": "^5.0.18", + "@feathersjs/tests": "^5.0.18", "@types/lodash": "^4.14.202", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", diff --git a/packages/feathers/CHANGELOG.md b/packages/feathers/CHANGELOG.md index 2018e7425b..24acd69782 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/feathers + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/feathers diff --git a/packages/feathers/package.json b/packages/feathers/package.json index 708f3b16c7..4f4ce3ab94 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.17", + "version": "5.0.18", "homepage": "http://feathersjs.com", "repository": { "type": "git", @@ -58,7 +58,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.17", + "@feathersjs/commons": "^5.0.18", "@feathersjs/hooks": "^0.8.1", "events": "^3.3.0" }, diff --git a/packages/generators/CHANGELOG.md b/packages/generators/CHANGELOG.md index c44c466893..633c875518 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +### Bug Fixes + +- **cli:** Another fix for CLI ES module loading ([#3397](https://github.com/feathersjs/feathers/issues/3397)) ([3cb3bc9](https://github.com/feathersjs/feathers/commit/3cb3bc9a32602d82193b781b583ed0f37044e778)) + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/generators diff --git a/packages/generators/package.json b/packages/generators/package.json index 1a973c3d0a..093f400a53 100644 --- a/packages/generators/package.json +++ b/packages/generators/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/generators", - "version": "5.0.17", + "version": "5.0.18", "description": "Feathers CLI core generators, powered by Pinion", "homepage": "https://feathersjs.com", "keywords": [ @@ -60,23 +60,23 @@ "typescript": "^5.3.3" }, "devDependencies": { - "@feathersjs/adapter-commons": "^5.0.17", - "@feathersjs/authentication": "^5.0.17", - "@feathersjs/authentication-client": "^5.0.17", - "@feathersjs/authentication-local": "^5.0.17", - "@feathersjs/authentication-oauth": "^5.0.17", - "@feathersjs/configuration": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/express": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/knex": "^5.0.17", - "@feathersjs/koa": "^5.0.17", - "@feathersjs/mongodb": "^5.0.17", - "@feathersjs/rest-client": "^5.0.17", - "@feathersjs/schema": "^5.0.17", - "@feathersjs/socketio": "^5.0.17", - "@feathersjs/transport-commons": "^5.0.17", - "@feathersjs/typebox": "^5.0.17", + "@feathersjs/adapter-commons": "^5.0.18", + "@feathersjs/authentication": "^5.0.18", + "@feathersjs/authentication-client": "^5.0.18", + "@feathersjs/authentication-local": "^5.0.18", + "@feathersjs/authentication-oauth": "^5.0.18", + "@feathersjs/configuration": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/express": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/knex": "^5.0.18", + "@feathersjs/koa": "^5.0.18", + "@feathersjs/mongodb": "^5.0.18", + "@feathersjs/rest-client": "^5.0.18", + "@feathersjs/schema": "^5.0.18", + "@feathersjs/socketio": "^5.0.18", + "@feathersjs/transport-commons": "^5.0.18", + "@feathersjs/typebox": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "@types/prettier": "^2.7.3", diff --git a/packages/knex/CHANGELOG.md b/packages/knex/CHANGELOG.md index 699753045a..c492801dc5 100644 --- a/packages/knex/CHANGELOG.md +++ b/packages/knex/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/knex + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/knex diff --git a/packages/knex/package.json b/packages/knex/package.json index 57fe07abce..1142d89a0a 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -51,17 +51,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17" + "@feathersjs/adapter-commons": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18" }, "peerDependencies": { "knex": ">=3.1.0" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.17", - "@feathersjs/schema": "^5.0.17", + "@feathersjs/adapter-tests": "^5.0.18", + "@feathersjs/schema": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "knex": "^3.1.0", diff --git a/packages/koa/CHANGELOG.md b/packages/koa/CHANGELOG.md index 67a48df81b..f648415bf6 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/koa + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/koa diff --git a/packages/koa/package.json b/packages/koa/package.json index 0ba31f3fa3..657bffd353 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,11 +49,11 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/transport-commons": "^5.0.17", + "@feathersjs/authentication": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/transport-commons": "^5.0.18", "@koa/cors": "^5.0.0", "@types/koa": "^2.14.0", "@types/koa-qs": "^2.0.3", @@ -66,9 +66,9 @@ "koa-static": "^5.0.0" }, "devDependencies": { - "@feathersjs/authentication-local": "^5.0.17", - "@feathersjs/memory": "^5.0.17", - "@feathersjs/tests": "^5.0.17", + "@feathersjs/authentication-local": "^5.0.18", + "@feathersjs/memory": "^5.0.18", + "@feathersjs/tests": "^5.0.18", "@types/koa-compose": "^3.2.8", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", diff --git a/packages/memory/CHANGELOG.md b/packages/memory/CHANGELOG.md index dde2e95199..5d83ef036d 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/memory + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/memory diff --git a/packages/memory/package.json b/packages/memory/package.json index dd79a10abe..4c0f06d0a1 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.17", + "version": "5.0.18", "homepage": "https://github.com/feathersjs/feathers", "main": "lib/", "types": "lib/", @@ -49,14 +49,14 @@ "lib": "lib" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", + "@feathersjs/adapter-commons": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", "sift": "^17.0.1" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/adapter-tests": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "mocha": "^10.2.0", diff --git a/packages/mongodb/CHANGELOG.md b/packages/mongodb/CHANGELOG.md index 0b06d34859..23f7bc747a 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/mongodb + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/mongodb diff --git a/packages/mongodb/package.json b/packages/mongodb/package.json index d44b29fa70..3f6b8495c1 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -51,17 +51,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17" + "@feathersjs/adapter-commons": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18" }, "peerDependencies": { "mongodb": "^6.3.0" }, "devDependencies": { - "@feathersjs/adapter-tests": "^5.0.17", - "@feathersjs/schema": "^5.0.17", + "@feathersjs/adapter-tests": "^5.0.18", + "@feathersjs/schema": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "mocha": "^10.2.0", diff --git a/packages/rest-client/CHANGELOG.md b/packages/rest-client/CHANGELOG.md index 106cc950b0..c46afb7cba 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/rest-client + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/rest-client diff --git a/packages/rest-client/package.json b/packages/rest-client/package.json index e9262be30f..854d193908 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,16 +53,16 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", "@types/superagent": "^8.1.1", "qs": "^6.11.2" }, "devDependencies": { - "@feathersjs/express": "^5.0.17", - "@feathersjs/memory": "^5.0.17", - "@feathersjs/tests": "^5.0.17", + "@feathersjs/express": "^5.0.18", + "@feathersjs/memory": "^5.0.18", + "@feathersjs/tests": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "@types/node-fetch": "^2.6.11", diff --git a/packages/schema/CHANGELOG.md b/packages/schema/CHANGELOG.md index d114831fe6..e15331a5a0 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/schema + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/schema diff --git a/packages/schema/package.json b/packages/schema/package.json index c8807e6f78..a74071a655 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,10 +54,10 @@ "access": "public" }, "dependencies": { - "@feathersjs/adapter-commons": "^5.0.17", - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/adapter-commons": "^5.0.18", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", "@feathersjs/hooks": "^0.8.1", "@types/json-schema": "^7.0.15", "ajv": "^8.12.0", @@ -65,7 +65,7 @@ "json-schema-to-ts": "^3.0.0" }, "devDependencies": { - "@feathersjs/memory": "^5.0.17", + "@feathersjs/memory": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "ajv-formats": "^2.1.1", diff --git a/packages/socketio-client/CHANGELOG.md b/packages/socketio-client/CHANGELOG.md index 1aa0a92255..f74f35cc5a 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/socketio-client + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/socketio-client diff --git a/packages/socketio-client/package.json b/packages/socketio-client/package.json index 116b3e175d..952b82c627 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,14 +54,14 @@ "access": "public" }, "dependencies": { - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/transport-commons": "^5.0.17" + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/transport-commons": "^5.0.18" }, "devDependencies": { - "@feathersjs/commons": "^5.0.17", - "@feathersjs/memory": "^5.0.17", - "@feathersjs/socketio": "^5.0.17", - "@feathersjs/tests": "^5.0.17", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/memory": "^5.0.18", + "@feathersjs/socketio": "^5.0.18", + "@feathersjs/tests": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "mocha": "^10.2.0", diff --git a/packages/socketio/CHANGELOG.md b/packages/socketio/CHANGELOG.md index 11faeb09d1..d56c28740b 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/socketio + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/socketio diff --git a/packages/socketio/package.json b/packages/socketio/package.json index 530270d8a3..0144e5e787 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -53,15 +53,15 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", - "@feathersjs/transport-commons": "^5.0.17", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", + "@feathersjs/transport-commons": "^5.0.18", "socket.io": "^4.7.4" }, "devDependencies": { - "@feathersjs/express": "^5.0.17", - "@feathersjs/memory": "^5.0.17", - "@feathersjs/tests": "^5.0.17", + "@feathersjs/express": "^5.0.18", + "@feathersjs/memory": "^5.0.18", + "@feathersjs/tests": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "lodash": "^4.17.21", diff --git a/packages/tests/CHANGELOG.md b/packages/tests/CHANGELOG.md index 5a126a8a71..7eace324bb 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/tests + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/tests diff --git a/packages/tests/package.json b/packages/tests/package.json index 0893b2e8b8..979aee34c0 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -49,7 +49,7 @@ "lodash": "^4.17.21" }, "devDependencies": { - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/feathers": "^5.0.18", "@types/mocha": "^10.0.6", "@types/node": "^20.11.5", "mocha": "^10.2.0", diff --git a/packages/transport-commons/CHANGELOG.md b/packages/transport-commons/CHANGELOG.md index 3382fef0bb..2411d093a3 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/transport-commons + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/transport-commons diff --git a/packages/transport-commons/package.json b/packages/transport-commons/package.json index 8fb6a836d3..9360f19691 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,9 +54,9 @@ "*.js" ], "dependencies": { - "@feathersjs/commons": "^5.0.17", - "@feathersjs/errors": "^5.0.17", - "@feathersjs/feathers": "^5.0.17", + "@feathersjs/commons": "^5.0.18", + "@feathersjs/errors": "^5.0.18", + "@feathersjs/feathers": "^5.0.18", "encodeurl": "^1.0.2", "lodash": "^4.17.21" }, diff --git a/packages/typebox/CHANGELOG.md b/packages/typebox/CHANGELOG.md index 0f600180f5..a10acf2670 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.18](https://github.com/feathersjs/feathers/compare/v5.0.17...v5.0.18) (2024-01-22) + +**Note:** Version bump only for package @feathersjs/typebox + ## [5.0.17](https://github.com/feathersjs/feathers/compare/v5.0.16...v5.0.17) (2024-01-22) **Note:** Version bump only for package @feathersjs/typebox diff --git a/packages/typebox/package.json b/packages/typebox/package.json index 31843a6d55..2a1dfb72c5 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.17", + "version": "5.0.18", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -54,7 +54,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/schema": "^5.0.17", + "@feathersjs/schema": "^5.0.18", "@sinclair/typebox": "^0.25.0" }, "devDependencies": {