From e6b82b809c21da298501a12b82e72e166468994b Mon Sep 17 00:00:00 2001 From: David Luecke Date: Tue, 19 May 2020 11:03:54 -0700 Subject: [PATCH] chore(release): publish v5.0.0-pre.0 --- lerna.json | 7 +++++-- packages/authentication-client/CHANGELOG.md | 16 ++++++++++++++++ packages/authentication-client/package.json | 20 ++++++++++---------- packages/authentication-local/CHANGELOG.md | 8 ++++++++ packages/authentication-local/package.json | 8 ++++---- packages/authentication-oauth/CHANGELOG.md | 11 +++++++++++ packages/authentication-oauth/package.json | 10 +++++----- packages/authentication/CHANGELOG.md | 8 ++++++++ packages/authentication/package.json | 8 ++++---- packages/client/CHANGELOG.md | 21 +++++++++++++++++++++ packages/client/package.json | 18 +++++++++--------- packages/commons/CHANGELOG.md | 12 ++++++++++++ packages/commons/package.json | 3 +-- packages/configuration/CHANGELOG.md | 17 +++++++++++++++++ packages/configuration/package.json | 4 ++-- packages/errors/CHANGELOG.md | 11 +++++++++++ packages/errors/package.json | 7 +++---- packages/express/CHANGELOG.md | 11 +++++++++++ packages/express/package.json | 14 +++++++------- packages/feathers/CHANGELOG.md | 12 ++++++++++++ packages/feathers/package.json | 4 ++-- packages/rest-client/CHANGELOG.md | 8 ++++++++ packages/rest-client/package.json | 12 ++++++------ packages/socketio-client/CHANGELOG.md | 8 ++++++++ packages/socketio-client/package.json | 12 ++++++------ packages/socketio/CHANGELOG.md | 16 ++++++++++++++++ packages/socketio/package.json | 12 ++++++------ packages/tests/CHANGELOG.md | 8 ++++++++ packages/tests/package.json | 4 ++-- packages/transport-commons/CHANGELOG.md | 17 +++++++++++++++++ packages/transport-commons/package.json | 8 ++++---- 31 files changed, 260 insertions(+), 75 deletions(-) diff --git a/lerna.json b/lerna.json index 76ba57e03f..994967906b 100644 --- a/lerna.json +++ b/lerna.json @@ -3,13 +3,16 @@ "packages": [ "packages/*" ], - "version": "4.5.4", + "version": "5.0.0-pre.0", "command": { "bootstrap": { "hoist": true }, "publish": { - "allowBranch": ["master", "dove"], + "allowBranch": [ + "master", + "dove" + ], "message": "chore(release): publish %s", "conventionalCommits": true, "createRelease": "github" diff --git a/packages/authentication-client/CHANGELOG.md b/packages/authentication-client/CHANGELOG.md index 2bc97945a6..d4667e8232 100644 --- a/packages/authentication-client/CHANGELOG.md +++ b/packages/authentication-client/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19) + + +### chore + +* **package:** Remove @feathersjs/primus packages from core ([#1919](https://github.com/feathersjs/feathers/issues/1919)) ([d20b7d5](https://github.com/feathersjs/feathers/commit/d20b7d5a70f4d3306e294696156e8aa0337c35e9)), closes [#1899](https://github.com/feathersjs/feathers/issues/1899) + + +### BREAKING CHANGES + +* **package:** Remove primus packages to be moved into the ecosystem. + + + + + ## [4.5.4](https://github.com/feathersjs/feathers/compare/v4.5.3...v4.5.4) (2020-04-29) **Note:** Version bump only for package @feathersjs/authentication-client diff --git a/packages/authentication-client/package.json b/packages/authentication-client/package.json index 4f37da65cc..0e085156b5 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": "4.5.4", + "version": "5.0.0-pre.0", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -43,18 +43,18 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^4.5.3", - "@feathersjs/commons": "^4.5.3", - "@feathersjs/errors": "^4.5.3", - "@feathersjs/feathers": "^4.5.3", + "@feathersjs/authentication": "^5.0.0-pre.0", + "@feathersjs/commons": "^5.0.0-pre.0", + "@feathersjs/errors": "^5.0.0-pre.0", + "@feathersjs/feathers": "^5.0.0-pre.0", "debug": "^4.1.1" }, "devDependencies": { - "@feathersjs/authentication-local": "^4.5.4", - "@feathersjs/express": "^4.5.4", - "@feathersjs/rest-client": "^4.5.4", - "@feathersjs/socketio": "^4.5.4", - "@feathersjs/socketio-client": "^4.5.4", + "@feathersjs/authentication-local": "^5.0.0-pre.0", + "@feathersjs/express": "^5.0.0-pre.0", + "@feathersjs/rest-client": "^5.0.0-pre.0", + "@feathersjs/socketio": "^5.0.0-pre.0", + "@feathersjs/socketio-client": "^5.0.0-pre.0", "@types/debug": "^4.1.5", "@types/mocha": "^7.0.2", "@types/node": "^14.0.1", diff --git a/packages/authentication-local/CHANGELOG.md b/packages/authentication-local/CHANGELOG.md index c9f6ef04d0..3d2c585bd8 100644 --- a/packages/authentication-local/CHANGELOG.md +++ b/packages/authentication-local/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19) + +**Note:** Version bump only for package @feathersjs/authentication-local + + + + + ## [4.5.4](https://github.com/feathersjs/feathers/compare/v4.5.3...v4.5.4) (2020-04-29) diff --git a/packages/authentication-local/package.json b/packages/authentication-local/package.json index f64713d73b..78fdbfaefa 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": "4.5.4", + "version": "5.0.0-pre.0", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -43,9 +43,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^4.5.3", - "@feathersjs/errors": "^4.5.3", - "@feathersjs/feathers": "^4.5.3", + "@feathersjs/authentication": "^5.0.0-pre.0", + "@feathersjs/errors": "^5.0.0-pre.0", + "@feathersjs/feathers": "^5.0.0-pre.0", "bcryptjs": "^2.4.3", "debug": "^4.1.1", "lodash": "^4.17.15" diff --git a/packages/authentication-oauth/CHANGELOG.md b/packages/authentication-oauth/CHANGELOG.md index 412d32a2aa..192d7fb9c2 100644 --- a/packages/authentication-oauth/CHANGELOG.md +++ b/packages/authentication-oauth/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19) + + +### Bug Fixes + +* **authentication-oauth:** Updated typings for projects with strictNullChecks ([#1941](https://github.com/feathersjs/feathers/issues/1941)) ([be91206](https://github.com/feathersjs/feathers/commit/be91206e3dba1e65a81412b7aa636bece3ab4aa2)) + + + + + ## [4.5.4](https://github.com/feathersjs/feathers/compare/v4.5.3...v4.5.4) (2020-04-29) diff --git a/packages/authentication-oauth/package.json b/packages/authentication-oauth/package.json index a9f2016ae0..84eccb82ea 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": "4.5.4", + "version": "5.0.0-pre.0", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -43,10 +43,10 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^4.5.3", - "@feathersjs/errors": "^4.5.3", - "@feathersjs/express": "^4.5.4", - "@feathersjs/feathers": "^4.5.3", + "@feathersjs/authentication": "^5.0.0-pre.0", + "@feathersjs/errors": "^5.0.0-pre.0", + "@feathersjs/express": "^5.0.0-pre.0", + "@feathersjs/feathers": "^5.0.0-pre.0", "debug": "^4.1.1", "express-session": "^1.17.1", "grant": "^4.7.0", diff --git a/packages/authentication/CHANGELOG.md b/packages/authentication/CHANGELOG.md index 390f5df20e..88edd6206f 100644 --- a/packages/authentication/CHANGELOG.md +++ b/packages/authentication/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19) + +**Note:** Version bump only for package @feathersjs/authentication + + + + + ## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17) diff --git a/packages/authentication/package.json b/packages/authentication/package.json index 4e228f7555..5dc6599bc2 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": "4.5.3", + "version": "5.0.0-pre.0", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -43,9 +43,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/errors": "^4.5.3", - "@feathersjs/feathers": "^4.5.3", - "@feathersjs/transport-commons": "^4.5.3", + "@feathersjs/errors": "^5.0.0-pre.0", + "@feathersjs/feathers": "^5.0.0-pre.0", + "@feathersjs/transport-commons": "^5.0.0-pre.0", "@types/jsonwebtoken": "^8.5.0", "debug": "^4.1.1", "jsonwebtoken": "^8.5.1", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 88ed943ff8..8935f88c3b 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19) + + +### chore + +* **package:** Remove @feathersjs/primus packages from core ([#1919](https://github.com/feathersjs/feathers/issues/1919)) ([d20b7d5](https://github.com/feathersjs/feathers/commit/d20b7d5a70f4d3306e294696156e8aa0337c35e9)), closes [#1899](https://github.com/feathersjs/feathers/issues/1899) + + +### Features + +* **core:** use @feathers/hooks and add async type ([#1929](https://github.com/feathersjs/feathers/issues/1929)) ([a5c4756](https://github.com/feathersjs/feathers/commit/a5c47562eae8410c82fe2f6308f26f8e78b6a3e8)) + + +### BREAKING CHANGES + +* **package:** Remove primus packages to be moved into the ecosystem. + + + + + ## [4.5.4](https://github.com/feathersjs/feathers/compare/v4.5.3...v4.5.4) (2020-04-29) **Note:** Version bump only for package @feathersjs/client diff --git a/packages/client/package.json b/packages/client/package.json index 1186517616..889870282b 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": "4.5.4", + "version": "5.0.0-pre.0", "repository": { "type": "git", "url": "https://github.com/feathersjs/feathers.git" @@ -39,18 +39,18 @@ "IE 10" ], "dependencies": { - "@feathersjs/authentication-client": "^4.5.4", - "@feathersjs/errors": "^4.5.3", - "@feathersjs/express": "^4.5.3", - "@feathersjs/feathers": "^4.5.3", - "@feathersjs/rest-client": "^4.5.3", - "@feathersjs/socketio": "^4.5.3", - "@feathersjs/socketio-client": "^4.5.3" + "@feathersjs/authentication-client": "^5.0.0-pre.0", + "@feathersjs/errors": "^5.0.0-pre.0", + "@feathersjs/express": "^5.0.0-pre.0", + "@feathersjs/feathers": "^5.0.0-pre.0", + "@feathersjs/rest-client": "^5.0.0-pre.0", + "@feathersjs/socketio": "^5.0.0-pre.0", + "@feathersjs/socketio-client": "^5.0.0-pre.0" }, "devDependencies": { "@babel/core": "^7.9.0", "@babel/preset-env": "^7.9.0", - "@feathersjs/tests": "^4.5.2", + "@feathersjs/tests": "^5.0.0-pre.0", "babel-loader": "^8.1.0", "body-parser": "^1.19.0", "feathers-memory": "^4.1.0", diff --git a/packages/commons/CHANGELOG.md b/packages/commons/CHANGELOG.md index fe45147957..dfef028eab 100644 --- a/packages/commons/CHANGELOG.md +++ b/packages/commons/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19) + + +### Features + +* **core:** Migrate @feathersjs/feathers to TypeScript ([#1963](https://github.com/feathersjs/feathers/issues/1963)) ([7812529](https://github.com/feathersjs/feathers/commit/7812529ff0f1008e21211f1d01efbc49795dbe55)) +* **core:** use @feathers/hooks and add async type ([#1929](https://github.com/feathersjs/feathers/issues/1929)) ([a5c4756](https://github.com/feathersjs/feathers/commit/a5c47562eae8410c82fe2f6308f26f8e78b6a3e8)) + + + + + ## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17) **Note:** Version bump only for package @feathersjs/commons diff --git a/packages/commons/package.json b/packages/commons/package.json index c9be763075..a20d3a93ea 100644 --- a/packages/commons/package.json +++ b/packages/commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/commons", - "version": "4.5.4", + "version": "5.0.0-pre.0", "description": "Shared Feathers utility functions", "homepage": "https://feathersjs.com", "keywords": [ @@ -40,7 +40,6 @@ "publishConfig": { "access": "public" }, - "dependencies": {}, "devDependencies": { "@types/mocha": "^7.0.2", "@types/node": "^14.0.1", diff --git a/packages/configuration/CHANGELOG.md b/packages/configuration/CHANGELOG.md index 07fa2aeb45..57f933f50e 100644 --- a/packages/configuration/CHANGELOG.md +++ b/packages/configuration/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19) + + +### chore + +* **configuration:** Remove environment variable substitution ([#1942](https://github.com/feathersjs/feathers/issues/1942)) ([caaa21f](https://github.com/feathersjs/feathers/commit/caaa21ffdc6a8dcac82fb403c91d9d4b781a6c0a)) + + +### BREAKING CHANGES + +* **configuration:** Falls back to node-config instead of adding additional +functionality like path replacements and automatic environment variable insertion. + + + + + ## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17) **Note:** Version bump only for package @feathersjs/configuration diff --git a/packages/configuration/package.json b/packages/configuration/package.json index 130024d6fe..7e368d4057 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": "4.5.3", + "version": "5.0.0-pre.0", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -48,7 +48,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/feathers": "^4.5.3", + "@feathersjs/feathers": "^5.0.0-pre.0", "config": "^3.3.1", "debug": "^4.1.1" }, diff --git a/packages/errors/CHANGELOG.md b/packages/errors/CHANGELOG.md index 7726dfb437..4264e2bee9 100644 --- a/packages/errors/CHANGELOG.md +++ b/packages/errors/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19) + + +### Bug Fixes + +* **errors:** Format package.json with spaces ([cbd31c1](https://github.com/feathersjs/feathers/commit/cbd31c10c2c574de63d6ca5e55dbfb73a5fdd758)) + + + + + ## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17) diff --git a/packages/errors/package.json b/packages/errors/package.json index fe12e6a10a..309024e2aa 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": "4.5.3", + "version": "5.0.0-pre.0", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -37,9 +37,8 @@ "publishConfig": { "access": "public" }, - "dependencies": {}, "devDependencies": { - "@feathersjs/feathers": "^4.5.3", + "@feathersjs/feathers": "^5.0.0-pre.0", "@types/mocha": "^7.0.2", "@types/node": "^14.0.1", "mocha": "^7.1.2", @@ -48,4 +47,4 @@ "typescript": "^3.9.2" }, "gitHead": "9b9f0f13387341bdd320f1e66feda828fca2c9f2" -} \ No newline at end of file +} diff --git a/packages/express/CHANGELOG.md b/packages/express/CHANGELOG.md index 334b4211e2..0882ef2aef 100644 --- a/packages/express/CHANGELOG.md +++ b/packages/express/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19) + + +### Features + +* **core:** use @feathers/hooks and add async type ([#1929](https://github.com/feathersjs/feathers/issues/1929)) ([a5c4756](https://github.com/feathersjs/feathers/commit/a5c47562eae8410c82fe2f6308f26f8e78b6a3e8)) + + + + + ## [4.5.4](https://github.com/feathersjs/feathers/compare/v4.5.3...v4.5.4) (2020-04-29) **Note:** Version bump only for package @feathersjs/express diff --git a/packages/express/package.json b/packages/express/package.json index d1da58ef30..730393c2c0 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": "4.5.4", + "version": "5.0.0-pre.0", "homepage": "https://feathersjs.com", "main": "lib/", "types": "index.d.ts", @@ -40,8 +40,8 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^4.5.3", - "@feathersjs/errors": "^4.5.3", + "@feathersjs/commons": "^5.0.0-pre.0", + "@feathersjs/errors": "^5.0.0-pre.0", "@types/express": "^4.17.6", "debug": "^4.1.1", "express": "^4.17.1", @@ -49,10 +49,10 @@ "uberproto": "^2.0.6" }, "devDependencies": { - "@feathersjs/authentication": "^4.5.3", - "@feathersjs/authentication-local": "^4.5.4", - "@feathersjs/feathers": "^4.5.3", - "@feathersjs/tests": "^4.5.3", + "@feathersjs/authentication": "^5.0.0-pre.0", + "@feathersjs/authentication-local": "^5.0.0-pre.0", + "@feathersjs/feathers": "^5.0.0-pre.0", + "@feathersjs/tests": "^5.0.0-pre.0", "axios": "^0.19.2", "lodash": "^4.17.15", "mocha": "^7.1.2" diff --git a/packages/feathers/CHANGELOG.md b/packages/feathers/CHANGELOG.md index 0a3c5dccf9..ecb9b2923e 100644 --- a/packages/feathers/CHANGELOG.md +++ b/packages/feathers/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19) + + +### Features + +* **core:** Migrate @feathersjs/feathers to TypeScript ([#1963](https://github.com/feathersjs/feathers/issues/1963)) ([7812529](https://github.com/feathersjs/feathers/commit/7812529ff0f1008e21211f1d01efbc49795dbe55)) +* **core:** use @feathers/hooks and add async type ([#1929](https://github.com/feathersjs/feathers/issues/1929)) ([a5c4756](https://github.com/feathersjs/feathers/commit/a5c47562eae8410c82fe2f6308f26f8e78b6a3e8)) + + + + + ## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17) diff --git a/packages/feathers/package.json b/packages/feathers/package.json index 1f21e8459d..c246bcd3b0 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": "4.5.4", + "version": "5.0.0-pre.0", "homepage": "http://feathersjs.com", "repository": { "type": "git", @@ -46,7 +46,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^4.5.4", + "@feathersjs/commons": "^5.0.0-pre.0", "@feathersjs/hooks": "^0.4.0-alpha.0", "debug": "^4.1.1", "events": "^3.1.0", diff --git a/packages/rest-client/CHANGELOG.md b/packages/rest-client/CHANGELOG.md index 444f2626a3..e0b26efdad 100644 --- a/packages/rest-client/CHANGELOG.md +++ b/packages/rest-client/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19) + +**Note:** Version bump only for package @feathersjs/rest-client + + + + + ## [4.5.4](https://github.com/feathersjs/feathers/compare/v4.5.3...v4.5.4) (2020-04-29) **Note:** Version bump only for package @feathersjs/rest-client diff --git a/packages/rest-client/package.json b/packages/rest-client/package.json index 2e0625b90d..1568cc839a 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": "4.5.4", + "version": "5.0.0-pre.0", "homepage": "https://feathersjs.com", "main": "lib/index.js", "types": "index.d.ts", @@ -40,8 +40,8 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^4.5.3", - "@feathersjs/errors": "^4.5.3", + "@feathersjs/commons": "^5.0.0-pre.0", + "@feathersjs/errors": "^5.0.0-pre.0", "qs": "^6.9.4" }, "devDependencies": { @@ -49,9 +49,9 @@ "@angular/core": "^9.1.7", "@angular/http": "^7.2.16", "@angular/platform-browser": "^9.1.7", - "@feathersjs/express": "^4.5.4", - "@feathersjs/feathers": "^4.5.3", - "@feathersjs/tests": "^4.5.3", + "@feathersjs/express": "^5.0.0-pre.0", + "@feathersjs/feathers": "^5.0.0-pre.0", + "@feathersjs/tests": "^5.0.0-pre.0", "axios": "^0.19.2", "body-parser": "^1.19.0", "feathers-memory": "^4.1.0", diff --git a/packages/socketio-client/CHANGELOG.md b/packages/socketio-client/CHANGELOG.md index fff3e4c020..29e4ada599 100644 --- a/packages/socketio-client/CHANGELOG.md +++ b/packages/socketio-client/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19) + +**Note:** Version bump only for package @feathersjs/socketio-client + + + + + ## [4.5.4](https://github.com/feathersjs/feathers/compare/v4.5.3...v4.5.4) (2020-04-29) **Note:** Version bump only for package @feathersjs/socketio-client diff --git a/packages/socketio-client/package.json b/packages/socketio-client/package.json index 210f5e5667..8e65b10aa1 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": "4.5.4", + "version": "5.0.0-pre.0", "homepage": "https://feathersjs.com", "main": "lib/index.js", "types": "index.d.ts", @@ -40,14 +40,14 @@ "access": "public" }, "dependencies": { - "@feathersjs/transport-commons": "^4.5.3", + "@feathersjs/transport-commons": "^5.0.0-pre.0", "@types/socket.io-client": "^1.4.33" }, "devDependencies": { - "@feathersjs/commons": "^4.5.3", - "@feathersjs/feathers": "^4.5.3", - "@feathersjs/socketio": "^4.5.4", - "@feathersjs/tests": "^4.5.3", + "@feathersjs/commons": "^5.0.0-pre.0", + "@feathersjs/feathers": "^5.0.0-pre.0", + "@feathersjs/socketio": "^5.0.0-pre.0", + "@feathersjs/tests": "^5.0.0-pre.0", "feathers-memory": "^4.1.0", "mocha": "^7.1.2", "socket.io-client": "^2.3.0" diff --git a/packages/socketio/CHANGELOG.md b/packages/socketio/CHANGELOG.md index b455c69663..b755ee77de 100644 --- a/packages/socketio/CHANGELOG.md +++ b/packages/socketio/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19) + + +### Features + +* **transport-commons:** Remove legacy message format and unnecessary client timeouts ([#1939](https://github.com/feathersjs/feathers/issues/1939)) ([5538881](https://github.com/feathersjs/feathers/commit/5538881a08bc130de42c5984055729d8336f8615)) + + +### BREAKING CHANGES + +* **transport-commons:** Removes the old message format and client service timeout + + + + + ## [4.5.4](https://github.com/feathersjs/feathers/compare/v4.5.3...v4.5.4) (2020-04-29) **Note:** Version bump only for package @feathersjs/socketio diff --git a/packages/socketio/package.json b/packages/socketio/package.json index 1b9c08947f..578b38ae1f 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": "4.5.4", + "version": "5.0.0-pre.0", "homepage": "https://feathersjs.com", "main": "lib/", "types": "index.d.ts", @@ -40,17 +40,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/transport-commons": "^4.5.3", + "@feathersjs/transport-commons": "^5.0.0-pre.0", "@types/socket.io": "^2.1.6", "debug": "^4.1.1", "socket.io": "^2.3.0", "uberproto": "^2.0.6" }, "devDependencies": { - "@feathersjs/commons": "^4.5.3", - "@feathersjs/express": "^4.5.4", - "@feathersjs/feathers": "^4.5.3", - "@feathersjs/tests": "^4.5.3", + "@feathersjs/commons": "^5.0.0-pre.0", + "@feathersjs/express": "^5.0.0-pre.0", + "@feathersjs/feathers": "^5.0.0-pre.0", + "@feathersjs/tests": "^5.0.0-pre.0", "@types/mocha": "^7.0.2", "@types/mongodb": "^3.5.17", "@types/node": "^14.0.1", diff --git a/packages/tests/CHANGELOG.md b/packages/tests/CHANGELOG.md index 8cfdbafdb2..8cbfdbb105 100644 --- a/packages/tests/CHANGELOG.md +++ b/packages/tests/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19) + +**Note:** Version bump only for package @feathersjs/tests + + + + + ## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17) **Note:** Version bump only for package @feathersjs/tests diff --git a/packages/tests/package.json b/packages/tests/package.json index 4822c97c62..778b5a25a2 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": "4.5.3", + "version": "5.0.0-pre.0", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -46,7 +46,7 @@ "lodash": "^4.17.15" }, "devDependencies": { - "@feathersjs/feathers": "^4.5.3", + "@feathersjs/feathers": "^5.0.0-pre.0", "@types/axios": "^0.14.0", "@types/debug": "^4.1.5", "@types/lodash": "^4.14.151", diff --git a/packages/transport-commons/CHANGELOG.md b/packages/transport-commons/CHANGELOG.md index 6663eff2eb..481024d048 100644 --- a/packages/transport-commons/CHANGELOG.md +++ b/packages/transport-commons/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [5.0.0-pre.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19) + + +### Features + +* **core:** use @feathers/hooks and add async type ([#1929](https://github.com/feathersjs/feathers/issues/1929)) ([a5c4756](https://github.com/feathersjs/feathers/commit/a5c47562eae8410c82fe2f6308f26f8e78b6a3e8)) +* **transport-commons:** Remove legacy message format and unnecessary client timeouts ([#1939](https://github.com/feathersjs/feathers/issues/1939)) ([5538881](https://github.com/feathersjs/feathers/commit/5538881a08bc130de42c5984055729d8336f8615)) + + +### BREAKING CHANGES + +* **transport-commons:** Removes the old message format and client service timeout + + + + + ## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17) **Note:** Version bump only for package @feathersjs/transport-commons diff --git a/packages/transport-commons/package.json b/packages/transport-commons/package.json index 77ffde99a9..cf9dc43903 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": "4.5.3", + "version": "5.0.0-pre.0", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -43,14 +43,14 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^4.5.3", - "@feathersjs/errors": "^4.5.3", + "@feathersjs/commons": "^5.0.0-pre.0", + "@feathersjs/errors": "^5.0.0-pre.0", "debug": "^4.1.1", "lodash": "^4.17.15", "radix-router": "^3.0.1" }, "devDependencies": { - "@feathersjs/feathers": "^4.5.3", + "@feathersjs/feathers": "^5.0.0-pre.0", "@types/debug": "^4.1.5", "@types/mocha": "^7.0.2", "@types/node": "^14.0.1",