Skip to content

Commit

Permalink
chore(release): publish v5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
daffl committed Mar 15, 2023
1 parent 8904873 commit 18b7f4a
Show file tree
Hide file tree
Showing 55 changed files with 10,360 additions and 30,681 deletions.
11 changes: 11 additions & 0 deletions 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.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)

### Bug Fixes

- **core:** Add PaginationParams to general find method ([#3095](https://github.com/feathersjs/feathers/issues/3095)) ([8ebdcf5](https://github.com/feathersjs/feathers/commit/8ebdcf5107fae5fa23920390052b871033de3a0a))
- **core:** Use Symbol.for to instantiate shared symbols ([#3087](https://github.com/feathersjs/feathers/issues/3087)) ([7f3fc21](https://github.com/feathersjs/feathers/commit/7f3fc2167576f228f8183568eb52b077160e8d65))
- **generators:** Conditionally import channels in Express app ([#3106](https://github.com/feathersjs/feathers/issues/3106)) ([c2dbaaa](https://github.com/feathersjs/feathers/commit/c2dbaaa4d1d5a5675b5812a7ed2317076ac414fe))
- **koa:** Replace koa-bodyparser with koa-body ([#3093](https://github.com/feathersjs/feathers/issues/3093)) ([2456bf8](https://github.com/feathersjs/feathers/commit/2456bf882c99ae2cddd1a39bffba7e61217fc055))
- **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))
- **transport-commons:** Fix dispatching of arrays ([#3075](https://github.com/feathersjs/feathers/issues/3075)) ([98fdda5](https://github.com/feathersjs/feathers/commit/98fdda53187acee88137b39662c766cc62cd7b55))

# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"ci": false,
"packages": ["packages/*"],
"version": "5.0.0",
"version": "5.0.1",
"command": {
"bootstrap": {
"hoist": true
Expand Down
40,561 changes: 10,050 additions & 30,511 deletions package-lock.json

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions packages/adapter-commons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)

### Bug Fixes

- **core:** Add PaginationParams to general find method ([#3095](https://github.com/feathersjs/feathers/issues/3095)) ([8ebdcf5](https://github.com/feathersjs/feathers/commit/8ebdcf5107fae5fa23920390052b871033de3a0a))
- **core:** Use Symbol.for to instantiate shared symbols ([#3087](https://github.com/feathersjs/feathers/issues/3087)) ([7f3fc21](https://github.com/feathersjs/feathers/commit/7f3fc2167576f228f8183568eb52b077160e8d65))

# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)

**Note:** Version bump only for package @feathersjs/adapter-commons
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",
"version": "5.0.1",
"description": "Shared database adapter utility functions",
"homepage": "https://feathersjs.com",
"keywords": [
Expand Down Expand Up @@ -50,9 +50,9 @@
"access": "public"
},
"dependencies": {
"@feathersjs/commons": "^5.0.0",
"@feathersjs/errors": "^5.0.0",
"@feathersjs/feathers": "^5.0.0"
"@feathersjs/commons": "^5.0.1",
"@feathersjs/errors": "^5.0.1",
"@feathersjs/feathers": "^5.0.1"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/adapter-tests/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)

### Bug Fixes

- **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))

# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)

**Note:** Version bump only for package @feathersjs/adapter-tests
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",
"version": "5.0.1",
"description": "Feathers shared database adapter test suite",
"homepage": "https://feathersjs.com",
"keywords": [
Expand Down
4 changes: 4 additions & 0 deletions packages/authentication-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)

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

# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)

**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",
"version": "5.0.1",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -53,18 +53,18 @@
"access": "public"
},
"dependencies": {
"@feathersjs/authentication": "^5.0.0",
"@feathersjs/commons": "^5.0.0",
"@feathersjs/errors": "^5.0.0",
"@feathersjs/feathers": "^5.0.0"
"@feathersjs/authentication": "^5.0.1",
"@feathersjs/commons": "^5.0.1",
"@feathersjs/errors": "^5.0.1",
"@feathersjs/feathers": "^5.0.1"
},
"devDependencies": {
"@feathersjs/authentication-local": "^5.0.0",
"@feathersjs/express": "^5.0.0",
"@feathersjs/memory": "^5.0.0",
"@feathersjs/rest-client": "^5.0.0",
"@feathersjs/socketio": "^5.0.0",
"@feathersjs/socketio-client": "^5.0.0",
"@feathersjs/authentication-local": "^5.0.1",
"@feathersjs/express": "^5.0.1",
"@feathersjs/memory": "^5.0.1",
"@feathersjs/rest-client": "^5.0.1",
"@feathersjs/socketio": "^5.0.1",
"@feathersjs/socketio-client": "^5.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.6",
"axios": "^1.3.4",
Expand Down
4 changes: 4 additions & 0 deletions packages/authentication-local/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)

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

# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)

**Note:** Version bump only for package @feathersjs/authentication-local
Expand Down
14 changes: 7 additions & 7 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",
"version": "5.0.1",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -53,16 +53,16 @@
"access": "public"
},
"dependencies": {
"@feathersjs/authentication": "^5.0.0",
"@feathersjs/commons": "^5.0.0",
"@feathersjs/errors": "^5.0.0",
"@feathersjs/feathers": "^5.0.0",
"@feathersjs/authentication": "^5.0.1",
"@feathersjs/commons": "^5.0.1",
"@feathersjs/errors": "^5.0.1",
"@feathersjs/feathers": "^5.0.1",
"bcryptjs": "^2.4.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@feathersjs/memory": "^5.0.0",
"@feathersjs/schema": "^5.0.0",
"@feathersjs/memory": "^5.0.1",
"@feathersjs/schema": "^5.0.1",
"@types/bcryptjs": "^2.4.2",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
Expand Down
4 changes: 4 additions & 0 deletions packages/authentication-oauth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)

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

# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)

**Note:** Version bump only for package @feathersjs/authentication-oauth
Expand Down
18 changes: 9 additions & 9 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",
"version": "5.0.1",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -54,21 +54,21 @@
"access": "public"
},
"dependencies": {
"@feathersjs/authentication": "^5.0.0",
"@feathersjs/commons": "^5.0.0",
"@feathersjs/errors": "^5.0.0",
"@feathersjs/express": "^5.0.0",
"@feathersjs/feathers": "^5.0.0",
"@feathersjs/koa": "^5.0.0",
"@feathersjs/schema": "^5.0.0",
"@feathersjs/authentication": "^5.0.1",
"@feathersjs/commons": "^5.0.1",
"@feathersjs/errors": "^5.0.1",
"@feathersjs/express": "^5.0.1",
"@feathersjs/feathers": "^5.0.1",
"@feathersjs/koa": "^5.0.1",
"@feathersjs/schema": "^5.0.1",
"cookie-session": "^2.0.0",
"grant": "^5.4.21",
"koa-session": "^6.4.0",
"lodash": "^4.17.21",
"qs": "^6.11.1"
},
"devDependencies": {
"@feathersjs/memory": "^5.0.0",
"@feathersjs/memory": "^5.0.1",
"@types/cookie-session": "^2.0.44",
"@types/express": "^4.17.17",
"@types/koa-session": "^5.10.6",
Expand Down
4 changes: 4 additions & 0 deletions packages/authentication/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)

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

# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)

**Note:** Version bump only for package @feathersjs/authentication
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",
"version": "5.0.1",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -53,20 +53,20 @@
"access": "public"
},
"dependencies": {
"@feathersjs/commons": "^5.0.0",
"@feathersjs/errors": "^5.0.0",
"@feathersjs/feathers": "^5.0.0",
"@feathersjs/commons": "^5.0.1",
"@feathersjs/errors": "^5.0.1",
"@feathersjs/feathers": "^5.0.1",
"@feathersjs/hooks": "^0.8.1",
"@feathersjs/schema": "^5.0.0",
"@feathersjs/transport-commons": "^5.0.0",
"@feathersjs/schema": "^5.0.1",
"@feathersjs/transport-commons": "^5.0.1",
"@types/jsonwebtoken": "^9.0.1",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"long-timeout": "^0.1.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@feathersjs/memory": "^5.0.0",
"@feathersjs/memory": "^5.0.1",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.6",
Expand Down
4 changes: 4 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)

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

# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)

**Note:** Version bump only for package @feathersjs/cli
Expand Down
38 changes: 19 additions & 19 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@feathersjs/cli",
"description": "The command line interface for creating Feathers applications",
"version": "5.0.0",
"version": "5.0.1",
"homepage": "https://feathersjs.com",
"main": "lib/",
"bin": {
Expand Down Expand Up @@ -52,28 +52,28 @@
"access": "public"
},
"dependencies": {
"@feathersjs/generators": "^5.0.0",
"@feathersjs/generators": "^5.0.1",
"chalk": "^4.0.1",
"commander": "^10.0.0"
},
"devDependencies": {
"@feathersjs/adapter-commons": "^5.0.0",
"@feathersjs/authentication": "^5.0.0",
"@feathersjs/authentication-client": "^5.0.0",
"@feathersjs/authentication-local": "^5.0.0",
"@feathersjs/authentication-oauth": "^5.0.0",
"@feathersjs/configuration": "^5.0.0",
"@feathersjs/errors": "^5.0.0",
"@feathersjs/express": "^5.0.0",
"@feathersjs/feathers": "^5.0.0",
"@feathersjs/knex": "^5.0.0",
"@feathersjs/koa": "^5.0.0",
"@feathersjs/mongodb": "^5.0.0",
"@feathersjs/rest-client": "^5.0.0",
"@feathersjs/schema": "^5.0.0",
"@feathersjs/socketio": "^5.0.0",
"@feathersjs/transport-commons": "^5.0.0",
"@feathersjs/typebox": "^5.0.0",
"@feathersjs/adapter-commons": "^5.0.1",
"@feathersjs/authentication": "^5.0.1",
"@feathersjs/authentication-client": "^5.0.1",
"@feathersjs/authentication-local": "^5.0.1",
"@feathersjs/authentication-oauth": "^5.0.1",
"@feathersjs/configuration": "^5.0.1",
"@feathersjs/errors": "^5.0.1",
"@feathersjs/express": "^5.0.1",
"@feathersjs/feathers": "^5.0.1",
"@feathersjs/knex": "^5.0.1",
"@feathersjs/koa": "^5.0.1",
"@feathersjs/mongodb": "^5.0.1",
"@feathersjs/rest-client": "^5.0.1",
"@feathersjs/schema": "^5.0.1",
"@feathersjs/socketio": "^5.0.1",
"@feathersjs/transport-commons": "^5.0.1",
"@feathersjs/typebox": "^5.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.6",
"@types/prettier": "^2.7.2",
Expand Down
4 changes: 4 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.0.1](https://github.com/feathersjs/feathers/compare/v5.0.0...v5.0.1) (2023-03-15)

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

# [5.0.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.38...v5.0.0) (2023-02-24)

**Note:** Version bump only for package @feathersjs/client
Expand Down
20 changes: 10 additions & 10 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@feathersjs/client",
"description": "A module that consolidates Feathers client modules for REST (jQuery, Request, Superagent) and Websocket (Socket.io, Primus) connections",
"version": "5.0.0",
"version": "5.0.1",
"repository": {
"type": "git",
"url": "https://github.com/feathersjs/feathers.git",
Expand Down Expand Up @@ -49,19 +49,19 @@
"IE 11"
],
"dependencies": {
"@feathersjs/authentication-client": "^5.0.0",
"@feathersjs/errors": "^5.0.0",
"@feathersjs/feathers": "^5.0.0",
"@feathersjs/rest-client": "^5.0.0",
"@feathersjs/socketio-client": "^5.0.0"
"@feathersjs/authentication-client": "^5.0.1",
"@feathersjs/errors": "^5.0.1",
"@feathersjs/feathers": "^5.0.1",
"@feathersjs/rest-client": "^5.0.1",
"@feathersjs/socketio-client": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@feathersjs/express": "^5.0.0",
"@feathersjs/memory": "^5.0.0",
"@feathersjs/socketio": "^5.0.0",
"@feathersjs/tests": "^5.0.0",
"@feathersjs/express": "^5.0.1",
"@feathersjs/memory": "^5.0.1",
"@feathersjs/socketio": "^5.0.1",
"@feathersjs/tests": "^5.0.1",
"babel-loader": "^9.1.2",
"mocha": "^10.2.0",
"mocha-puppeteer": "^0.14.0",
Expand Down
Loading

0 comments on commit 18b7f4a

Please sign in to comment.