From 4f7c3b19e4753e24f7439c1447d0784cf398ace0 Mon Sep 17 00:00:00 2001 From: David Luecke Date: Thu, 8 Oct 2020 22:48:57 -0700 Subject: [PATCH] chore(release): publish v4.5.9 --- lerna.json | 2 +- packages/authentication-client/CHANGELOG.md | 8 +++++++ packages/authentication-client/package.json | 24 ++++++++++----------- packages/authentication-local/CHANGELOG.md | 11 ++++++++++ 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 | 8 +++++++ packages/client/package.json | 22 +++++++++---------- packages/commons/CHANGELOG.md | 8 +++++++ packages/commons/package.json | 2 +- packages/configuration/CHANGELOG.md | 11 ++++++++++ packages/configuration/package.json | 4 ++-- packages/errors/CHANGELOG.md | 8 +++++++ packages/errors/package.json | 4 ++-- packages/express/CHANGELOG.md | 8 +++++++ packages/express/package.json | 14 ++++++------ packages/feathers/CHANGELOG.md | 8 +++++++ packages/feathers/package.json | 4 ++-- packages/primus-client/CHANGELOG.md | 8 +++++++ packages/primus-client/package.json | 12 +++++------ packages/primus/CHANGELOG.md | 8 +++++++ packages/primus/package.json | 12 +++++------ packages/rest-client/CHANGELOG.md | 11 ++++++++++ packages/rest-client/package.json | 12 +++++------ packages/socketio-client/CHANGELOG.md | 8 +++++++ packages/socketio-client/package.json | 12 +++++------ packages/socketio/CHANGELOG.md | 8 +++++++ packages/socketio/package.json | 12 +++++------ packages/tests/CHANGELOG.md | 8 +++++++ packages/tests/package.json | 4 ++-- packages/transport-commons/CHANGELOG.md | 8 +++++++ packages/transport-commons/package.json | 8 +++---- 35 files changed, 235 insertions(+), 87 deletions(-) diff --git a/lerna.json b/lerna.json index 8f72a4f8df..5b90ad43af 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages": [ "packages/*" ], - "version": "4.5.8", + "version": "4.5.9", "command": { "bootstrap": { "hoist": true diff --git a/packages/authentication-client/CHANGELOG.md b/packages/authentication-client/CHANGELOG.md index 7eff6d4b9b..83af9e7035 100644 --- a/packages/authentication-client/CHANGELOG.md +++ b/packages/authentication-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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + +**Note:** Version bump only for package @feathersjs/authentication-client + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) diff --git a/packages/authentication-client/package.json b/packages/authentication-client/package.json index a2b920a58b..8193f76345 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.8", + "version": "4.5.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -52,20 +52,20 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^4.5.8", - "@feathersjs/commons": "^4.5.8", - "@feathersjs/errors": "^4.5.8", - "@feathersjs/feathers": "^4.5.8", + "@feathersjs/authentication": "^4.5.9", + "@feathersjs/commons": "^4.5.9", + "@feathersjs/errors": "^4.5.9", + "@feathersjs/feathers": "^4.5.9", "debug": "^4.2.0" }, "devDependencies": { - "@feathersjs/authentication-local": "^4.5.8", - "@feathersjs/express": "^4.5.8", - "@feathersjs/primus": "^4.5.8", - "@feathersjs/primus-client": "^4.5.8", - "@feathersjs/rest-client": "^4.5.8", - "@feathersjs/socketio": "^4.5.8", - "@feathersjs/socketio-client": "^4.5.8", + "@feathersjs/authentication-local": "^4.5.9", + "@feathersjs/express": "^4.5.9", + "@feathersjs/primus": "^4.5.9", + "@feathersjs/primus-client": "^4.5.9", + "@feathersjs/rest-client": "^4.5.9", + "@feathersjs/socketio": "^4.5.9", + "@feathersjs/socketio-client": "^4.5.9", "@types/debug": "^4.1.5", "@types/mocha": "^8.0.3", "@types/node": "^14.11.1", diff --git a/packages/authentication-local/CHANGELOG.md b/packages/authentication-local/CHANGELOG.md index 1240deec6c..ab5260412b 100644 --- a/packages/authentication-local/CHANGELOG.md +++ b/packages/authentication-local/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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + + +### Bug Fixes + +* **authentication-local:** Keep non-objects in protect hook ([#2085](https://github.com/feathersjs/feathers/issues/2085)) ([5a65e2e](https://github.com/feathersjs/feathers/commit/5a65e2e6cee0a15614f23ee2e0d3c25d3365027d)) + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/authentication-local diff --git a/packages/authentication-local/package.json b/packages/authentication-local/package.json index 6871320f82..8134ed744e 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.8", + "version": "4.5.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -52,9 +52,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^4.5.8", - "@feathersjs/errors": "^4.5.8", - "@feathersjs/feathers": "^4.5.8", + "@feathersjs/authentication": "^4.5.9", + "@feathersjs/errors": "^4.5.9", + "@feathersjs/feathers": "^4.5.9", "bcryptjs": "^2.4.3", "debug": "^4.2.0", "lodash": "^4.17.20" diff --git a/packages/authentication-oauth/CHANGELOG.md b/packages/authentication-oauth/CHANGELOG.md index 7b63c70939..5d62c3b18e 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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + + +### Bug Fixes + +* **authentication-oauth:** Always end session after oAuth flows are finished ([#2087](https://github.com/feathersjs/feathers/issues/2087)) ([d219d0d](https://github.com/feathersjs/feathers/commit/d219d0d89c5e45aa289dd67cb0c8bdc05044c846)) + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/authentication-oauth diff --git a/packages/authentication-oauth/package.json b/packages/authentication-oauth/package.json index 6b0d4de654..d71609ffde 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.8", + "version": "4.5.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -52,10 +52,10 @@ "access": "public" }, "dependencies": { - "@feathersjs/authentication": "^4.5.8", - "@feathersjs/errors": "^4.5.8", - "@feathersjs/express": "^4.5.8", - "@feathersjs/feathers": "^4.5.8", + "@feathersjs/authentication": "^4.5.9", + "@feathersjs/errors": "^4.5.9", + "@feathersjs/express": "^4.5.9", + "@feathersjs/feathers": "^4.5.9", "debug": "^4.2.0", "express-session": "^1.17.1", "grant": "^4.7.0", diff --git a/packages/authentication/CHANGELOG.md b/packages/authentication/CHANGELOG.md index 087289539a..5eff12cca6 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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + +**Note:** Version bump only for package @feathersjs/authentication + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/authentication diff --git a/packages/authentication/package.json b/packages/authentication/package.json index c6ba478584..5b1f6c9cbc 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.8", + "version": "4.5.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -52,9 +52,9 @@ "access": "public" }, "dependencies": { - "@feathersjs/errors": "^4.5.8", - "@feathersjs/feathers": "^4.5.8", - "@feathersjs/transport-commons": "^4.5.8", + "@feathersjs/errors": "^4.5.9", + "@feathersjs/feathers": "^4.5.9", + "@feathersjs/transport-commons": "^4.5.9", "@types/jsonwebtoken": "^8.5.0", "debug": "^4.2.0", "jsonwebtoken": "^8.5.1", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index dfdf6cf80f..1ef4942ec4 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + +**Note:** Version bump only for package @feathersjs/client + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/client diff --git a/packages/client/package.json b/packages/client/package.json index c61d76f5d5..780ec9c207 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.8", + "version": "4.5.9", "repository": { "type": "git", "url": "https://github.com/feathersjs/feathers.git" @@ -51,16 +51,16 @@ "devDependencies": { "@babel/core": "^7.11.6", "@babel/preset-env": "^7.11.5", - "@feathersjs/authentication-client": "^4.5.8", - "@feathersjs/errors": "^4.5.8", - "@feathersjs/express": "^4.5.8", - "@feathersjs/feathers": "^4.5.8", - "@feathersjs/primus": "^4.5.8", - "@feathersjs/primus-client": "^4.5.8", - "@feathersjs/rest-client": "^4.5.8", - "@feathersjs/socketio": "^4.5.8", - "@feathersjs/socketio-client": "^4.5.8", - "@feathersjs/tests": "^4.5.8", + "@feathersjs/authentication-client": "^4.5.9", + "@feathersjs/errors": "^4.5.9", + "@feathersjs/express": "^4.5.9", + "@feathersjs/feathers": "^4.5.9", + "@feathersjs/primus": "^4.5.9", + "@feathersjs/primus-client": "^4.5.9", + "@feathersjs/rest-client": "^4.5.9", + "@feathersjs/socketio": "^4.5.9", + "@feathersjs/socketio-client": "^4.5.9", + "@feathersjs/tests": "^4.5.9", "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 3a9e3512d2..582f56bfe7 100644 --- a/packages/commons/CHANGELOG.md +++ b/packages/commons/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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + +**Note:** Version bump only for package @feathersjs/commons + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/commons diff --git a/packages/commons/package.json b/packages/commons/package.json index 05bbd10ec5..93d5cf434a 100644 --- a/packages/commons/package.json +++ b/packages/commons/package.json @@ -1,6 +1,6 @@ { "name": "@feathersjs/commons", - "version": "4.5.8", + "version": "4.5.9", "description": "Shared Feathers utility functions", "homepage": "https://feathersjs.com", "keywords": [ diff --git a/packages/configuration/CHANGELOG.md b/packages/configuration/CHANGELOG.md index d4240f3c48..3c62e294ad 100644 --- a/packages/configuration/CHANGELOG.md +++ b/packages/configuration/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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + + +### Bug Fixes + +* **configuration:** Fix handling of config values that start with . or .. but are not actually relative paths; e.g. ".foo" or "..bar" ([#2065](https://github.com/feathersjs/feathers/issues/2065)) ([d07bf59](https://github.com/feathersjs/feathers/commit/d07bf5902e9c8c606f16b9523472972d3d2e9b49)) + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/configuration diff --git a/packages/configuration/package.json b/packages/configuration/package.json index 0f9c7610e3..44f4d9904a 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.8", + "version": "4.5.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -57,7 +57,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/feathers": "^4.5.8", + "@feathersjs/feathers": "^4.5.9", "config": "^3.3.1", "debug": "^4.2.0" }, diff --git a/packages/errors/CHANGELOG.md b/packages/errors/CHANGELOG.md index a068433f8b..5b6204c9cf 100644 --- a/packages/errors/CHANGELOG.md +++ b/packages/errors/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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + +**Note:** Version bump only for package @feathersjs/errors + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/errors diff --git a/packages/errors/package.json b/packages/errors/package.json index 902af15bb7..725dae77ea 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.8", + "version": "4.5.9", "homepage": "https://feathersjs.com", "main": "lib/index", "types": "index.d.ts", @@ -48,7 +48,7 @@ "debug": "^4.2.0" }, "devDependencies": { - "@feathersjs/feathers": "^4.5.8", + "@feathersjs/feathers": "^4.5.9", "express": "^4.17.1", "mocha": "^8.1.3" }, diff --git a/packages/express/CHANGELOG.md b/packages/express/CHANGELOG.md index ed065c2212..9e624c1964 100644 --- a/packages/express/CHANGELOG.md +++ b/packages/express/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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + +**Note:** Version bump only for package @feathersjs/express + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/express diff --git a/packages/express/package.json b/packages/express/package.json index 6489227cd4..a6c6ec5449 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.8", + "version": "4.5.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "index.d.ts", @@ -49,8 +49,8 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^4.5.8", - "@feathersjs/errors": "^4.5.8", + "@feathersjs/commons": "^4.5.9", + "@feathersjs/errors": "^4.5.9", "@types/express": "^4.17.8", "debug": "^4.2.0", "express": "^4.17.1", @@ -58,10 +58,10 @@ "uberproto": "^2.0.6" }, "devDependencies": { - "@feathersjs/authentication": "^4.5.8", - "@feathersjs/authentication-local": "^4.5.8", - "@feathersjs/feathers": "^4.5.8", - "@feathersjs/tests": "^4.5.8", + "@feathersjs/authentication": "^4.5.9", + "@feathersjs/authentication-local": "^4.5.9", + "@feathersjs/feathers": "^4.5.9", + "@feathersjs/tests": "^4.5.9", "axios": "^0.20.0", "lodash": "^4.17.20", "mocha": "^8.1.3" diff --git a/packages/feathers/CHANGELOG.md b/packages/feathers/CHANGELOG.md index 3a3e6fc3cd..d07406e748 100644 --- a/packages/feathers/CHANGELOG.md +++ b/packages/feathers/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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + +**Note:** Version bump only for package @feathersjs/feathers + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/feathers diff --git a/packages/feathers/package.json b/packages/feathers/package.json index 07325a2c2c..72efc71dcc 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.8", + "version": "4.5.9", "homepage": "http://feathersjs.com", "repository": { "type": "git", @@ -54,7 +54,7 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^4.5.8", + "@feathersjs/commons": "^4.5.9", "debug": "^4.2.0", "events": "^3.2.0", "uberproto": "^2.0.6" diff --git a/packages/primus-client/CHANGELOG.md b/packages/primus-client/CHANGELOG.md index c71d1161ff..0cd781c4b6 100644 --- a/packages/primus-client/CHANGELOG.md +++ b/packages/primus-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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + +**Note:** Version bump only for package @feathersjs/primus-client + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/primus-client diff --git a/packages/primus-client/package.json b/packages/primus-client/package.json index 313b885ba4..613a3fe96d 100644 --- a/packages/primus-client/package.json +++ b/packages/primus-client/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/primus-client", "description": "Client services for Primus and feathers-primus", - "version": "4.5.8", + "version": "4.5.9", "homepage": "https://feathersjs.com", "main": "lib/index.js", "types": "index.d.ts", @@ -49,13 +49,13 @@ "access": "public" }, "dependencies": { - "@feathersjs/transport-commons": "^4.5.8" + "@feathersjs/transport-commons": "^4.5.9" }, "devDependencies": { - "@feathersjs/commons": "^4.5.8", - "@feathersjs/feathers": "^4.5.8", - "@feathersjs/primus": "^4.5.8", - "@feathersjs/tests": "^4.5.8", + "@feathersjs/commons": "^4.5.9", + "@feathersjs/feathers": "^4.5.9", + "@feathersjs/primus": "^4.5.9", + "@feathersjs/tests": "^4.5.9", "feathers-memory": "^4.1.0", "mocha": "^8.1.3", "ws": "^7.3.1" diff --git a/packages/primus/CHANGELOG.md b/packages/primus/CHANGELOG.md index 9b916cd47f..a42bebb045 100644 --- a/packages/primus/CHANGELOG.md +++ b/packages/primus/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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + +**Note:** Version bump only for package @feathersjs/primus + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/primus diff --git a/packages/primus/package.json b/packages/primus/package.json index 45614d1208..618efa1ad6 100644 --- a/packages/primus/package.json +++ b/packages/primus/package.json @@ -1,7 +1,7 @@ { "name": "@feathersjs/primus", "description": "The Feathers Primus real-time API provider", - "version": "4.5.8", + "version": "4.5.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "index.d.ts", @@ -49,17 +49,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/transport-commons": "^4.5.8", + "@feathersjs/transport-commons": "^4.5.9", "debug": "^4.2.0", "primus": "^7.3.5", "primus-emitter": "^3.1.1", "uberproto": "^2.0.6" }, "devDependencies": { - "@feathersjs/commons": "^4.5.8", - "@feathersjs/express": "^4.5.8", - "@feathersjs/feathers": "^4.5.8", - "@feathersjs/tests": "^4.5.8", + "@feathersjs/commons": "^4.5.9", + "@feathersjs/express": "^4.5.9", + "@feathersjs/feathers": "^4.5.9", + "@feathersjs/tests": "^4.5.9", "feathers-memory": "^4.1.0", "lodash": "^4.17.20", "mocha": "^8.1.3", diff --git a/packages/rest-client/CHANGELOG.md b/packages/rest-client/CHANGELOG.md index d25014c2e2..4cc0cd19e3 100644 --- a/packages/rest-client/CHANGELOG.md +++ b/packages/rest-client/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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + + +### Bug Fixes + +* **rest-client:** Handle non-JSON errors with fetch adapter ([#2086](https://github.com/feathersjs/feathers/issues/2086)) ([e24217a](https://github.com/feathersjs/feathers/commit/e24217ad1e784ad71cd9d64fe1727dd02f039991)) + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/rest-client diff --git a/packages/rest-client/package.json b/packages/rest-client/package.json index 6668120643..4f0ccdd746 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.8", + "version": "4.5.9", "homepage": "https://feathersjs.com", "main": "lib/index.js", "types": "index.d.ts", @@ -49,8 +49,8 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^4.5.8", - "@feathersjs/errors": "^4.5.8", + "@feathersjs/commons": "^4.5.9", + "@feathersjs/errors": "^4.5.9", "qs": "^6.9.4" }, "devDependencies": { @@ -58,9 +58,9 @@ "@angular/core": "^10.1.2", "@angular/http": "^7.2.16", "@angular/platform-browser": "^10.1.2", - "@feathersjs/express": "^4.5.8", - "@feathersjs/feathers": "^4.5.8", - "@feathersjs/tests": "^4.5.8", + "@feathersjs/express": "^4.5.9", + "@feathersjs/feathers": "^4.5.9", + "@feathersjs/tests": "^4.5.9", "axios": "^0.20.0", "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 5530748393..44ac90ae08 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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + +**Note:** Version bump only for package @feathersjs/socketio-client + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/socketio-client diff --git a/packages/socketio-client/package.json b/packages/socketio-client/package.json index b35c0a3b21..9adb374915 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.8", + "version": "4.5.9", "homepage": "https://feathersjs.com", "main": "lib/index.js", "types": "index.d.ts", @@ -40,14 +40,14 @@ "access": "public" }, "dependencies": { - "@feathersjs/transport-commons": "^4.5.8", + "@feathersjs/transport-commons": "^4.5.9", "@types/socket.io-client": "^1.4.33" }, "devDependencies": { - "@feathersjs/commons": "^4.5.8", - "@feathersjs/feathers": "^4.5.8", - "@feathersjs/socketio": "^4.5.8", - "@feathersjs/tests": "^4.5.8", + "@feathersjs/commons": "^4.5.9", + "@feathersjs/feathers": "^4.5.9", + "@feathersjs/socketio": "^4.5.9", + "@feathersjs/tests": "^4.5.9", "feathers-memory": "^4.1.0", "mocha": "^8.1.3", "socket.io-client": "^2.3.0" diff --git a/packages/socketio/CHANGELOG.md b/packages/socketio/CHANGELOG.md index 093fd22894..60b311919f 100644 --- a/packages/socketio/CHANGELOG.md +++ b/packages/socketio/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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + +**Note:** Version bump only for package @feathersjs/socketio + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/socketio diff --git a/packages/socketio/package.json b/packages/socketio/package.json index d07e20ecdc..2bb7d50088 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.8", + "version": "4.5.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "index.d.ts", @@ -49,17 +49,17 @@ "access": "public" }, "dependencies": { - "@feathersjs/transport-commons": "^4.5.8", + "@feathersjs/transport-commons": "^4.5.9", "@types/socket.io": "^2.1.11", "debug": "^4.2.0", "socket.io": "^2.3.0", "uberproto": "^2.0.6" }, "devDependencies": { - "@feathersjs/commons": "^4.5.8", - "@feathersjs/express": "^4.5.8", - "@feathersjs/feathers": "^4.5.8", - "@feathersjs/tests": "^4.5.8", + "@feathersjs/commons": "^4.5.9", + "@feathersjs/express": "^4.5.9", + "@feathersjs/feathers": "^4.5.9", + "@feathersjs/tests": "^4.5.9", "@types/mocha": "^8.0.3", "@types/mongodb": "^3.5.27", "@types/node": "^14.11.1", diff --git a/packages/tests/CHANGELOG.md b/packages/tests/CHANGELOG.md index 3964bf242c..932124c834 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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + +**Note:** Version bump only for package @feathersjs/tests + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/tests diff --git a/packages/tests/package.json b/packages/tests/package.json index 66e30c5c9c..aaa4d0174c 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.8", + "version": "4.5.9", "homepage": "https://feathersjs.com", "main": "lib/", "keywords": [ @@ -46,7 +46,7 @@ "lodash": "^4.17.20" }, "devDependencies": { - "@feathersjs/feathers": "^4.5.8", + "@feathersjs/feathers": "^4.5.9", "@types/axios": "^0.14.0", "@types/debug": "^4.1.5", "@types/lodash": "^4.14.161", diff --git a/packages/transport-commons/CHANGELOG.md b/packages/transport-commons/CHANGELOG.md index 3cfff9a34d..a4a3354c45 100644 --- a/packages/transport-commons/CHANGELOG.md +++ b/packages/transport-commons/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. +## [4.5.9](https://github.com/feathersjs/feathers/compare/v4.5.8...v4.5.9) (2020-10-09) + +**Note:** Version bump only for package @feathersjs/transport-commons + + + + + ## [4.5.8](https://github.com/feathersjs/feathers/compare/v4.5.7...v4.5.8) (2020-08-12) **Note:** Version bump only for package @feathersjs/transport-commons diff --git a/packages/transport-commons/package.json b/packages/transport-commons/package.json index 0007964683..768a73c3c4 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.8", + "version": "4.5.9", "homepage": "https://feathersjs.com", "main": "lib/", "types": "lib/", @@ -43,14 +43,14 @@ "access": "public" }, "dependencies": { - "@feathersjs/commons": "^4.5.8", - "@feathersjs/errors": "^4.5.8", + "@feathersjs/commons": "^4.5.9", + "@feathersjs/errors": "^4.5.9", "debug": "^4.2.0", "lodash": "^4.17.20", "radix-router": "^3.0.1" }, "devDependencies": { - "@feathersjs/feathers": "^4.5.8", + "@feathersjs/feathers": "^4.5.9", "@types/debug": "^4.1.5", "@types/mocha": "^8.0.3", "@types/node": "^14.11.1",