Skip to content

Commit 18b7f4a

Browse files
committed
chore(release): publish v5.0.1
1 parent 8904873 commit 18b7f4a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+10360
-30681
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)
7+
8+
### Bug Fixes
9+
10+
- **core:** Add PaginationParams to general find method ([#3095](https://github.com/feathersjs/feathers/issues/3095)) ([8ebdcf5](https://github.com/feathersjs/feathers/commit/8ebdcf5107fae5fa23920390052b871033de3a0a))
11+
- **core:** Use Symbol.for to instantiate shared symbols ([#3087](https://github.com/feathersjs/feathers/issues/3087)) ([7f3fc21](https://github.com/feathersjs/feathers/commit/7f3fc2167576f228f8183568eb52b077160e8d65))
12+
- **generators:** Conditionally import channels in Express app ([#3106](https://github.com/feathersjs/feathers/issues/3106)) ([c2dbaaa](https://github.com/feathersjs/feathers/commit/c2dbaaa4d1d5a5675b5812a7ed2317076ac414fe))
13+
- **koa:** Replace koa-bodyparser with koa-body ([#3093](https://github.com/feathersjs/feathers/issues/3093)) ([2456bf8](https://github.com/feathersjs/feathers/commit/2456bf882c99ae2cddd1a39bffba7e61217fc055))
14+
- **memory/mongodb:** $select as only property & force 'id' in '$select' ([#3081](https://github.com/feathersjs/feathers/issues/3081)) ([fbe3cf5](https://github.com/feathersjs/feathers/commit/fbe3cf5199e102b5aeda2ae33828d5034df3d105))
15+
- **transport-commons:** Fix dispatching of arrays ([#3075](https://github.com/feathersjs/feathers/issues/3075)) ([98fdda5](https://github.com/feathersjs/feathers/commit/98fdda53187acee88137b39662c766cc62cd7b55))
16+
617
# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)
718

819
### Bug Fixes

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"ci": false,
33
"packages": ["packages/*"],
4-
"version": "5.0.0",
4+
"version": "5.0.1",
55
"command": {
66
"bootstrap": {
77
"hoist": true

package-lock.json

Lines changed: 10050 additions & 30511 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/adapter-commons/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)
7+
8+
### Bug Fixes
9+
10+
- **core:** Add PaginationParams to general find method ([#3095](https://github.com/feathersjs/feathers/issues/3095)) ([8ebdcf5](https://github.com/feathersjs/feathers/commit/8ebdcf5107fae5fa23920390052b871033de3a0a))
11+
- **core:** Use Symbol.for to instantiate shared symbols ([#3087](https://github.com/feathersjs/feathers/issues/3087)) ([7f3fc21](https://github.com/feathersjs/feathers/commit/7f3fc2167576f228f8183568eb52b077160e8d65))
12+
613
# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)
714

815
**Note:** Version bump only for package @feathersjs/adapter-commons

packages/adapter-commons/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@feathersjs/adapter-commons",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"description": "Shared database adapter utility functions",
55
"homepage": "https://feathersjs.com",
66
"keywords": [
@@ -50,9 +50,9 @@
5050
"access": "public"
5151
},
5252
"dependencies": {
53-
"@feathersjs/commons": "^5.0.0",
54-
"@feathersjs/errors": "^5.0.0",
55-
"@feathersjs/feathers": "^5.0.0"
53+
"@feathersjs/commons": "^5.0.1",
54+
"@feathersjs/errors": "^5.0.1",
55+
"@feathersjs/feathers": "^5.0.1"
5656
},
5757
"devDependencies": {
5858
"@types/mocha": "^10.0.1",

packages/adapter-tests/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)
7+
8+
### Bug Fixes
9+
10+
- **memory/mongodb:** $select as only property & force 'id' in '$select' ([#3081](https://github.com/feathersjs/feathers/issues/3081)) ([fbe3cf5](https://github.com/feathersjs/feathers/commit/fbe3cf5199e102b5aeda2ae33828d5034df3d105))
11+
612
# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)
713

814
**Note:** Version bump only for package @feathersjs/adapter-tests

packages/adapter-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@feathersjs/adapter-tests",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"description": "Feathers shared database adapter test suite",
55
"homepage": "https://feathersjs.com",
66
"keywords": [

packages/authentication-client/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)
7+
8+
**Note:** Version bump only for package @feathersjs/authentication-client
9+
610
# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)
711

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

packages/authentication-client/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@feathersjs/authentication-client",
33
"description": "The authentication plugin for feathers-client",
4-
"version": "5.0.0",
4+
"version": "5.0.1",
55
"homepage": "https://feathersjs.com",
66
"main": "lib/",
77
"types": "lib/",
@@ -53,18 +53,18 @@
5353
"access": "public"
5454
},
5555
"dependencies": {
56-
"@feathersjs/authentication": "^5.0.0",
57-
"@feathersjs/commons": "^5.0.0",
58-
"@feathersjs/errors": "^5.0.0",
59-
"@feathersjs/feathers": "^5.0.0"
56+
"@feathersjs/authentication": "^5.0.1",
57+
"@feathersjs/commons": "^5.0.1",
58+
"@feathersjs/errors": "^5.0.1",
59+
"@feathersjs/feathers": "^5.0.1"
6060
},
6161
"devDependencies": {
62-
"@feathersjs/authentication-local": "^5.0.0",
63-
"@feathersjs/express": "^5.0.0",
64-
"@feathersjs/memory": "^5.0.0",
65-
"@feathersjs/rest-client": "^5.0.0",
66-
"@feathersjs/socketio": "^5.0.0",
67-
"@feathersjs/socketio-client": "^5.0.0",
62+
"@feathersjs/authentication-local": "^5.0.1",
63+
"@feathersjs/express": "^5.0.1",
64+
"@feathersjs/memory": "^5.0.1",
65+
"@feathersjs/rest-client": "^5.0.1",
66+
"@feathersjs/socketio": "^5.0.1",
67+
"@feathersjs/socketio-client": "^5.0.1",
6868
"@types/mocha": "^10.0.1",
6969
"@types/node": "^18.14.6",
7070
"axios": "^1.3.4",

packages/authentication-local/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)
7+
8+
**Note:** Version bump only for package @feathersjs/authentication-local
9+
610
# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)
711

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

packages/authentication-local/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@feathersjs/authentication-local",
33
"description": "Local authentication strategy for @feathers/authentication",
4-
"version": "5.0.0",
4+
"version": "5.0.1",
55
"homepage": "https://feathersjs.com",
66
"main": "lib/",
77
"types": "lib/",
@@ -53,16 +53,16 @@
5353
"access": "public"
5454
},
5555
"dependencies": {
56-
"@feathersjs/authentication": "^5.0.0",
57-
"@feathersjs/commons": "^5.0.0",
58-
"@feathersjs/errors": "^5.0.0",
59-
"@feathersjs/feathers": "^5.0.0",
56+
"@feathersjs/authentication": "^5.0.1",
57+
"@feathersjs/commons": "^5.0.1",
58+
"@feathersjs/errors": "^5.0.1",
59+
"@feathersjs/feathers": "^5.0.1",
6060
"bcryptjs": "^2.4.3",
6161
"lodash": "^4.17.21"
6262
},
6363
"devDependencies": {
64-
"@feathersjs/memory": "^5.0.0",
65-
"@feathersjs/schema": "^5.0.0",
64+
"@feathersjs/memory": "^5.0.1",
65+
"@feathersjs/schema": "^5.0.1",
6666
"@types/bcryptjs": "^2.4.2",
6767
"@types/lodash": "^4.14.191",
6868
"@types/mocha": "^10.0.1",

packages/authentication-oauth/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)
7+
8+
**Note:** Version bump only for package @feathersjs/authentication-oauth
9+
610
# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)
711

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

packages/authentication-oauth/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@feathersjs/authentication-oauth",
33
"description": "oAuth 1 and 2 authentication for Feathers. Powered by Grant.",
4-
"version": "5.0.0",
4+
"version": "5.0.1",
55
"homepage": "https://feathersjs.com",
66
"main": "lib/",
77
"types": "lib/",
@@ -54,21 +54,21 @@
5454
"access": "public"
5555
},
5656
"dependencies": {
57-
"@feathersjs/authentication": "^5.0.0",
58-
"@feathersjs/commons": "^5.0.0",
59-
"@feathersjs/errors": "^5.0.0",
60-
"@feathersjs/express": "^5.0.0",
61-
"@feathersjs/feathers": "^5.0.0",
62-
"@feathersjs/koa": "^5.0.0",
63-
"@feathersjs/schema": "^5.0.0",
57+
"@feathersjs/authentication": "^5.0.1",
58+
"@feathersjs/commons": "^5.0.1",
59+
"@feathersjs/errors": "^5.0.1",
60+
"@feathersjs/express": "^5.0.1",
61+
"@feathersjs/feathers": "^5.0.1",
62+
"@feathersjs/koa": "^5.0.1",
63+
"@feathersjs/schema": "^5.0.1",
6464
"cookie-session": "^2.0.0",
6565
"grant": "^5.4.21",
6666
"koa-session": "^6.4.0",
6767
"lodash": "^4.17.21",
6868
"qs": "^6.11.1"
6969
},
7070
"devDependencies": {
71-
"@feathersjs/memory": "^5.0.0",
71+
"@feathersjs/memory": "^5.0.1",
7272
"@types/cookie-session": "^2.0.44",
7373
"@types/express": "^4.17.17",
7474
"@types/koa-session": "^5.10.6",

packages/authentication/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)
7+
8+
**Note:** Version bump only for package @feathersjs/authentication
9+
610
# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)
711

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

packages/authentication/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@feathersjs/authentication",
33
"description": "Add Authentication to your FeathersJS app.",
4-
"version": "5.0.0",
4+
"version": "5.0.1",
55
"homepage": "https://feathersjs.com",
66
"main": "lib/",
77
"types": "lib/",
@@ -53,20 +53,20 @@
5353
"access": "public"
5454
},
5555
"dependencies": {
56-
"@feathersjs/commons": "^5.0.0",
57-
"@feathersjs/errors": "^5.0.0",
58-
"@feathersjs/feathers": "^5.0.0",
56+
"@feathersjs/commons": "^5.0.1",
57+
"@feathersjs/errors": "^5.0.1",
58+
"@feathersjs/feathers": "^5.0.1",
5959
"@feathersjs/hooks": "^0.8.1",
60-
"@feathersjs/schema": "^5.0.0",
61-
"@feathersjs/transport-commons": "^5.0.0",
60+
"@feathersjs/schema": "^5.0.1",
61+
"@feathersjs/transport-commons": "^5.0.1",
6262
"@types/jsonwebtoken": "^9.0.1",
6363
"jsonwebtoken": "^9.0.0",
6464
"lodash": "^4.17.21",
6565
"long-timeout": "^0.1.1",
6666
"uuid": "^9.0.0"
6767
},
6868
"devDependencies": {
69-
"@feathersjs/memory": "^5.0.0",
69+
"@feathersjs/memory": "^5.0.1",
7070
"@types/lodash": "^4.14.191",
7171
"@types/mocha": "^10.0.1",
7272
"@types/node": "^18.14.6",

packages/cli/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)
7+
8+
**Note:** Version bump only for package @feathersjs/cli
9+
610
# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)
711

812
**Note:** Version bump only for package @feathersjs/cli

packages/cli/package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@feathersjs/cli",
33
"description": "The command line interface for creating Feathers applications",
4-
"version": "5.0.0",
4+
"version": "5.0.1",
55
"homepage": "https://feathersjs.com",
66
"main": "lib/",
77
"bin": {
@@ -52,28 +52,28 @@
5252
"access": "public"
5353
},
5454
"dependencies": {
55-
"@feathersjs/generators": "^5.0.0",
55+
"@feathersjs/generators": "^5.0.1",
5656
"chalk": "^4.0.1",
5757
"commander": "^10.0.0"
5858
},
5959
"devDependencies": {
60-
"@feathersjs/adapter-commons": "^5.0.0",
61-
"@feathersjs/authentication": "^5.0.0",
62-
"@feathersjs/authentication-client": "^5.0.0",
63-
"@feathersjs/authentication-local": "^5.0.0",
64-
"@feathersjs/authentication-oauth": "^5.0.0",
65-
"@feathersjs/configuration": "^5.0.0",
66-
"@feathersjs/errors": "^5.0.0",
67-
"@feathersjs/express": "^5.0.0",
68-
"@feathersjs/feathers": "^5.0.0",
69-
"@feathersjs/knex": "^5.0.0",
70-
"@feathersjs/koa": "^5.0.0",
71-
"@feathersjs/mongodb": "^5.0.0",
72-
"@feathersjs/rest-client": "^5.0.0",
73-
"@feathersjs/schema": "^5.0.0",
74-
"@feathersjs/socketio": "^5.0.0",
75-
"@feathersjs/transport-commons": "^5.0.0",
76-
"@feathersjs/typebox": "^5.0.0",
60+
"@feathersjs/adapter-commons": "^5.0.1",
61+
"@feathersjs/authentication": "^5.0.1",
62+
"@feathersjs/authentication-client": "^5.0.1",
63+
"@feathersjs/authentication-local": "^5.0.1",
64+
"@feathersjs/authentication-oauth": "^5.0.1",
65+
"@feathersjs/configuration": "^5.0.1",
66+
"@feathersjs/errors": "^5.0.1",
67+
"@feathersjs/express": "^5.0.1",
68+
"@feathersjs/feathers": "^5.0.1",
69+
"@feathersjs/knex": "^5.0.1",
70+
"@feathersjs/koa": "^5.0.1",
71+
"@feathersjs/mongodb": "^5.0.1",
72+
"@feathersjs/rest-client": "^5.0.1",
73+
"@feathersjs/schema": "^5.0.1",
74+
"@feathersjs/socketio": "^5.0.1",
75+
"@feathersjs/transport-commons": "^5.0.1",
76+
"@feathersjs/typebox": "^5.0.1",
7777
"@types/mocha": "^10.0.1",
7878
"@types/node": "^18.14.6",
7979
"@types/prettier": "^2.7.2",

packages/client/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)
7+
8+
**Note:** Version bump only for package @feathersjs/client
9+
610
# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)
711

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

packages/client/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@feathersjs/client",
33
"description": "A module that consolidates Feathers client modules for REST (jQuery, Request, Superagent) and Websocket (Socket.io, Primus) connections",
4-
"version": "5.0.0",
4+
"version": "5.0.1",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/feathersjs/feathers.git",
@@ -49,19 +49,19 @@
4949
"IE 11"
5050
],
5151
"dependencies": {
52-
"@feathersjs/authentication-client": "^5.0.0",
53-
"@feathersjs/errors": "^5.0.0",
54-
"@feathersjs/feathers": "^5.0.0",
55-
"@feathersjs/rest-client": "^5.0.0",
56-
"@feathersjs/socketio-client": "^5.0.0"
52+
"@feathersjs/authentication-client": "^5.0.1",
53+
"@feathersjs/errors": "^5.0.1",
54+
"@feathersjs/feathers": "^5.0.1",
55+
"@feathersjs/rest-client": "^5.0.1",
56+
"@feathersjs/socketio-client": "^5.0.1"
5757
},
5858
"devDependencies": {
5959
"@babel/core": "^7.21.0",
6060
"@babel/preset-env": "^7.20.2",
61-
"@feathersjs/express": "^5.0.0",
62-
"@feathersjs/memory": "^5.0.0",
63-
"@feathersjs/socketio": "^5.0.0",
64-
"@feathersjs/tests": "^5.0.0",
61+
"@feathersjs/express": "^5.0.1",
62+
"@feathersjs/memory": "^5.0.1",
63+
"@feathersjs/socketio": "^5.0.1",
64+
"@feathersjs/tests": "^5.0.1",
6565
"babel-loader": "^9.1.2",
6666
"mocha": "^10.2.0",
6767
"mocha-puppeteer": "^0.14.0",

0 commit comments

Comments
 (0)