Skip to content

Commit

Permalink
chore(release): publish v5.0.0-pre.19
Browse files Browse the repository at this point in the history
  • Loading branch information
daffl committed May 1, 2022
1 parent 8c88643 commit 57f3e18
Show file tree
Hide file tree
Showing 44 changed files with 410 additions and 116 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,36 @@
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.19](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.18...v5.0.0-pre.19) (2022-05-01)


### Bug Fixes

* **adapter-commons:** Clarify adapter query filtering ([#2607](https://github.com/feathersjs/feathers/issues/2607)) ([2dac771](https://github.com/feathersjs/feathers/commit/2dac771b0a3298d6dd25994d05186701b0617718))
* **adapter-tests:** Ensure multi tests can run standalone ([#2608](https://github.com/feathersjs/feathers/issues/2608)) ([d7243f2](https://github.com/feathersjs/feathers/commit/d7243f20e84d9dde428ad8dfc7f48388ca569e6e))
* **authentication-oauth:** Fix issue with overriding the default Grant configuration ([#2615](https://github.com/feathersjs/feathers/issues/2615)) ([b345857](https://github.com/feathersjs/feathers/commit/b3458578532f9750de2940aeb8afdc75cb0b46f2))
* **authentication-oauth:** Make oAuth authentication work with cookie-session ([#2614](https://github.com/feathersjs/feathers/issues/2614)) ([9f10bfc](https://github.com/feathersjs/feathers/commit/9f10bfc75083d5bcabea77cfb385aa3965cdf6d6))
* **client:** Fix @feathersjs/client types field ([#2596](https://github.com/feathersjs/feathers/issues/2596)) ([d719f54](https://github.com/feathersjs/feathers/commit/d719f54daee63daf9ed5cc762626ca15131086de))
* **express:** Fix typo in types reference in package.json ([#2613](https://github.com/feathersjs/feathers/issues/2613)) ([eacf1b3](https://github.com/feathersjs/feathers/commit/eacf1b3474e6d9da69b8671244c23a75cff87d95))
* **transport-commons:** Ensure socket queries are always plain objects ([#2597](https://github.com/feathersjs/feathers/issues/2597)) ([97313e1](https://github.com/feathersjs/feathers/commit/97313e121cfee4199f10012e95b8507557aa507e))


### Features

* **mongodb:** Add feathers-mongodb adapter as @feathersjs/mongodb ([#2610](https://github.com/feathersjs/feathers/issues/2610)) ([6d43734](https://github.com/feathersjs/feathers/commit/6d43734a53db02c435cafc52a22dca414e5d0940))
* **schema:** Allow hooks to run resolvers in sequence ([#2609](https://github.com/feathersjs/feathers/issues/2609)) ([d85c507](https://github.com/feathersjs/feathers/commit/d85c507c76d07e48fc8e7e28ff7de0ef435e0ef8))
* **typescript:** Improve adapter typings ([#2605](https://github.com/feathersjs/feathers/issues/2605)) ([3b2ca0a](https://github.com/feathersjs/feathers/commit/3b2ca0a6a8e03e8390272c4d7e930b4bffdaacf5))
* **typescript:** Improve params and query typeability ([#2600](https://github.com/feathersjs/feathers/issues/2600)) ([df28b76](https://github.com/feathersjs/feathers/commit/df28b7619161f1df5e700326f52cca1a92dc5d28))


### BREAKING CHANGES

* **adapter-commons:** Changes the common adapter base class to use `sanitizeQuery` and `sanitizeData`





# [5.0.0-pre.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": [
"packages/*"
],
"version": "5.0.0-pre.18",
"version": "5.0.0-pre.19",
"command": {
"bootstrap": {
"hoist": true
Expand Down
23 changes: 23 additions & 0 deletions packages/adapter-commons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
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.19](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.18...v5.0.0-pre.19) (2022-05-01)


### Bug Fixes

* **adapter-commons:** Clarify adapter query filtering ([#2607](https://github.com/feathersjs/feathers/issues/2607)) ([2dac771](https://github.com/feathersjs/feathers/commit/2dac771b0a3298d6dd25994d05186701b0617718))


### Features

* **mongodb:** Add feathers-mongodb adapter as @feathersjs/mongodb ([#2610](https://github.com/feathersjs/feathers/issues/2610)) ([6d43734](https://github.com/feathersjs/feathers/commit/6d43734a53db02c435cafc52a22dca414e5d0940))
* **typescript:** Improve adapter typings ([#2605](https://github.com/feathersjs/feathers/issues/2605)) ([3b2ca0a](https://github.com/feathersjs/feathers/commit/3b2ca0a6a8e03e8390272c4d7e930b4bffdaacf5))
* **typescript:** Improve params and query typeability ([#2600](https://github.com/feathersjs/feathers/issues/2600)) ([df28b76](https://github.com/feathersjs/feathers/commit/df28b7619161f1df5e700326f52cca1a92dc5d28))


### BREAKING CHANGES

* **adapter-commons:** Changes the common adapter base class to use `sanitizeQuery` and `sanitizeData`





# [5.0.0-pre.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)


Expand Down
8 changes: 4 additions & 4 deletions packages/adapter-commons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@feathersjs/adapter-commons",
"version": "5.0.0-pre.18",
"version": "5.0.0-pre.19",
"description": "Shared database adapter utility functions",
"homepage": "https://feathersjs.com",
"keywords": [
Expand Down Expand Up @@ -49,9 +49,9 @@
"access": "public"
},
"dependencies": {
"@feathersjs/commons": "^5.0.0-pre.18",
"@feathersjs/errors": "^5.0.0-pre.18",
"@feathersjs/feathers": "^5.0.0-pre.18"
"@feathersjs/commons": "^5.0.0-pre.19",
"@feathersjs/errors": "^5.0.0-pre.19",
"@feathersjs/feathers": "^5.0.0-pre.19"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
Expand Down
17 changes: 17 additions & 0 deletions packages/adapter-tests/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.19](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.18...v5.0.0-pre.19) (2022-05-01)


### Bug Fixes

* **adapter-commons:** Clarify adapter query filtering ([#2607](https://github.com/feathersjs/feathers/issues/2607)) ([2dac771](https://github.com/feathersjs/feathers/commit/2dac771b0a3298d6dd25994d05186701b0617718))
* **adapter-tests:** Ensure multi tests can run standalone ([#2608](https://github.com/feathersjs/feathers/issues/2608)) ([d7243f2](https://github.com/feathersjs/feathers/commit/d7243f20e84d9dde428ad8dfc7f48388ca569e6e))


### BREAKING CHANGES

* **adapter-commons:** Changes the common adapter base class to use `sanitizeQuery` and `sanitizeData`





# [5.0.0-pre.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)


Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@feathersjs/adapter-tests",
"version": "5.0.0-pre.18",
"version": "5.0.0-pre.19",
"description": "Feathers shared database adapter test suite",
"homepage": "https://feathersjs.com",
"keywords": [
Expand Down
8 changes: 8 additions & 0 deletions packages/authentication-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.19](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.18...v5.0.0-pre.19) (2022-05-01)

**Note:** Version bump only for package @feathersjs/authentication-client





# [5.0.0-pre.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)

**Note:** Version bump only for package @feathersjs/authentication-client
Expand Down
22 changes: 11 additions & 11 deletions packages/authentication-client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@feathersjs/authentication-client",
"description": "The authentication plugin for feathers-client",
"version": "5.0.0-pre.18",
"version": "5.0.0-pre.19",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -52,18 +52,18 @@
"access": "public"
},
"dependencies": {
"@feathersjs/authentication": "^5.0.0-pre.18",
"@feathersjs/commons": "^5.0.0-pre.18",
"@feathersjs/errors": "^5.0.0-pre.18",
"@feathersjs/feathers": "^5.0.0-pre.18"
"@feathersjs/authentication": "^5.0.0-pre.19",
"@feathersjs/commons": "^5.0.0-pre.19",
"@feathersjs/errors": "^5.0.0-pre.19",
"@feathersjs/feathers": "^5.0.0-pre.19"
},
"devDependencies": {
"@feathersjs/authentication-local": "^5.0.0-pre.18",
"@feathersjs/express": "^5.0.0-pre.18",
"@feathersjs/memory": "^5.0.0-pre.18",
"@feathersjs/rest-client": "^5.0.0-pre.18",
"@feathersjs/socketio": "^5.0.0-pre.18",
"@feathersjs/socketio-client": "^5.0.0-pre.18",
"@feathersjs/authentication-local": "^5.0.0-pre.19",
"@feathersjs/express": "^5.0.0-pre.19",
"@feathersjs/memory": "^5.0.0-pre.19",
"@feathersjs/rest-client": "^5.0.0-pre.19",
"@feathersjs/socketio": "^5.0.0-pre.19",
"@feathersjs/socketio-client": "^5.0.0-pre.19",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
"axios": "^0.27.2",
Expand Down
11 changes: 11 additions & 0 deletions packages/authentication-local/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.19](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.18...v5.0.0-pre.19) (2022-05-01)


### Features

* **typescript:** Improve adapter typings ([#2605](https://github.com/feathersjs/feathers/issues/2605)) ([3b2ca0a](https://github.com/feathersjs/feathers/commit/3b2ca0a6a8e03e8390272c4d7e930b4bffdaacf5))





# [5.0.0-pre.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)

**Note:** Version bump only for package @feathersjs/authentication-local
Expand Down
12 changes: 6 additions & 6 deletions packages/authentication-local/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@feathersjs/authentication-local",
"description": "Local authentication strategy for @feathers/authentication",
"version": "5.0.0-pre.18",
"version": "5.0.0-pre.19",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -52,15 +52,15 @@
"access": "public"
},
"dependencies": {
"@feathersjs/authentication": "^5.0.0-pre.18",
"@feathersjs/commons": "^5.0.0-pre.18",
"@feathersjs/errors": "^5.0.0-pre.18",
"@feathersjs/feathers": "^5.0.0-pre.18",
"@feathersjs/authentication": "^5.0.0-pre.19",
"@feathersjs/commons": "^5.0.0-pre.19",
"@feathersjs/errors": "^5.0.0-pre.19",
"@feathersjs/feathers": "^5.0.0-pre.19",
"bcryptjs": "^2.4.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@feathersjs/memory": "^5.0.0-pre.18",
"@feathersjs/memory": "^5.0.0-pre.19",
"@types/bcryptjs": "^2.4.2",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
Expand Down
17 changes: 17 additions & 0 deletions packages/authentication-oauth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.19](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.18...v5.0.0-pre.19) (2022-05-01)


### Bug Fixes

* **authentication-oauth:** Fix issue with overriding the default Grant configuration ([#2615](https://github.com/feathersjs/feathers/issues/2615)) ([b345857](https://github.com/feathersjs/feathers/commit/b3458578532f9750de2940aeb8afdc75cb0b46f2))
* **authentication-oauth:** Make oAuth authentication work with cookie-session ([#2614](https://github.com/feathersjs/feathers/issues/2614)) ([9f10bfc](https://github.com/feathersjs/feathers/commit/9f10bfc75083d5bcabea77cfb385aa3965cdf6d6))


### Features

* **typescript:** Improve params and query typeability ([#2600](https://github.com/feathersjs/feathers/issues/2600)) ([df28b76](https://github.com/feathersjs/feathers/commit/df28b7619161f1df5e700326f52cca1a92dc5d28))





# [5.0.0-pre.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)

**Note:** Version bump only for package @feathersjs/authentication-oauth
Expand Down
14 changes: 7 additions & 7 deletions packages/authentication-oauth/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@feathersjs/authentication-oauth",
"description": "oAuth 1 and 2 authentication for Feathers. Powered by Grant.",
"version": "5.0.0-pre.18",
"version": "5.0.0-pre.19",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -53,17 +53,17 @@
"access": "public"
},
"dependencies": {
"@feathersjs/authentication": "^5.0.0-pre.18",
"@feathersjs/commons": "^5.0.0-pre.18",
"@feathersjs/errors": "^5.0.0-pre.18",
"@feathersjs/express": "^5.0.0-pre.18",
"@feathersjs/feathers": "^5.0.0-pre.18",
"@feathersjs/authentication": "^5.0.0-pre.19",
"@feathersjs/commons": "^5.0.0-pre.19",
"@feathersjs/errors": "^5.0.0-pre.19",
"@feathersjs/express": "^5.0.0-pre.19",
"@feathersjs/feathers": "^5.0.0-pre.19",
"express-session": "^1.17.2",
"grant": "^5.4.21",
"lodash": "^4.17.21"
},
"devDependencies": {
"@feathersjs/memory": "^5.0.0-pre.18",
"@feathersjs/memory": "^5.0.0-pre.19",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/lodash": "^4.14.182",
Expand Down
12 changes: 12 additions & 0 deletions packages/authentication/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.19](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.18...v5.0.0-pre.19) (2022-05-01)


### Features

* **typescript:** Improve adapter typings ([#2605](https://github.com/feathersjs/feathers/issues/2605)) ([3b2ca0a](https://github.com/feathersjs/feathers/commit/3b2ca0a6a8e03e8390272c4d7e930b4bffdaacf5))
* **typescript:** Improve params and query typeability ([#2600](https://github.com/feathersjs/feathers/issues/2600)) ([df28b76](https://github.com/feathersjs/feathers/commit/df28b7619161f1df5e700326f52cca1a92dc5d28))





# [5.0.0-pre.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)


Expand Down
14 changes: 7 additions & 7 deletions packages/authentication/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@feathersjs/authentication",
"description": "Add Authentication to your FeathersJS app.",
"version": "5.0.0-pre.18",
"version": "5.0.0-pre.19",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -52,19 +52,19 @@
"access": "public"
},
"dependencies": {
"@feathersjs/commons": "^5.0.0-pre.18",
"@feathersjs/errors": "^5.0.0-pre.18",
"@feathersjs/feathers": "^5.0.0-pre.18",
"@feathersjs/transport-commons": "^5.0.0-pre.18",
"@feathersjs/commons": "^5.0.0-pre.19",
"@feathersjs/errors": "^5.0.0-pre.19",
"@feathersjs/feathers": "^5.0.0-pre.19",
"@feathersjs/transport-commons": "^5.0.0-pre.19",
"@types/jsonwebtoken": "^8.5.8",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"long-timeout": "^0.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@feathersjs/memory": "^5.0.0-pre.18",
"@feathersjs/schema": "^5.0.0-pre.18",
"@feathersjs/memory": "^5.0.0-pre.19",
"@feathersjs/schema": "^5.0.0-pre.19",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
Expand Down
16 changes: 16 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.19](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.18...v5.0.0-pre.19) (2022-05-01)


### Bug Fixes

* **client:** Fix @feathersjs/client types field ([#2596](https://github.com/feathersjs/feathers/issues/2596)) ([d719f54](https://github.com/feathersjs/feathers/commit/d719f54daee63daf9ed5cc762626ca15131086de))


### Features

* **typescript:** Improve adapter typings ([#2605](https://github.com/feathersjs/feathers/issues/2605)) ([3b2ca0a](https://github.com/feathersjs/feathers/commit/3b2ca0a6a8e03e8390272c4d7e930b4bffdaacf5))





# [5.0.0-pre.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)

**Note:** Version bump only for package @feathersjs/client
Expand Down
Loading

0 comments on commit 57f3e18

Please sign in to comment.