Skip to content

Commit

Permalink
chore(release): publish v5.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
daffl committed Apr 12, 2023
1 parent a5f0b38 commit 376e890
Show file tree
Hide file tree
Showing 54 changed files with 331 additions and 170 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [5.0.4](https://github.com/feathersjs/feathers/compare/v5.0.3...v5.0.4) (2023-04-12)

### Bug Fixes

- **adapter-commons:** Support non-default import to ease use with ESM projects ([d06f2cf](https://github.com/feathersjs/feathers/commit/d06f2cfcadda7dc23f0e2bec44f64e6be8500d02))
- Make sure all Readme files are up to date ([#3154](https://github.com/feathersjs/feathers/issues/3154)) ([a5f0b38](https://github.com/feathersjs/feathers/commit/a5f0b38bbf2a11486415a39533bcc6c67fb51e3e))
- **memory:** Fix memory adapter readme ([#3153](https://github.com/feathersjs/feathers/issues/3153)) ([a9d826a](https://github.com/feathersjs/feathers/commit/a9d826a7dbe7df4501fbf82a47d2c3a77ca9e0c0))
- **typebox:** Implement custom TypeBuilder for backwards compatibility ([#3150](https://github.com/feathersjs/feathers/issues/3150)) ([962bd87](https://github.com/feathersjs/feathers/commit/962bd87217212320b1a68f6556a16b8a6b8f757c))

## [5.0.3](https://github.com/feathersjs/feathers/compare/v5.0.2...v5.0.3) (2023-04-05)

### 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.3",
"version": "5.0.4",
"command": {
"bootstrap": {
"hoist": true
Expand Down
6 changes: 6 additions & 0 deletions packages/adapter-commons/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.4](https://github.com/feathersjs/feathers/compare/v5.0.3...v5.0.4) (2023-04-12)

### Bug Fixes

- Make sure all Readme files are up to date ([#3154](https://github.com/feathersjs/feathers/issues/3154)) ([a5f0b38](https://github.com/feathersjs/feathers/commit/a5f0b38bbf2a11486415a39533bcc6c67fb51e3e))

## [5.0.3](https://github.com/feathersjs/feathers/compare/v5.0.2...v5.0.3) (2023-04-05)

### Bug Fixes
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.3",
"version": "5.0.4",
"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.3",
"@feathersjs/errors": "^5.0.3",
"@feathersjs/feathers": "^5.0.3"
"@feathersjs/commons": "^5.0.4",
"@feathersjs/errors": "^5.0.4",
"@feathersjs/feathers": "^5.0.4"
},
"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.4](https://github.com/feathersjs/feathers/compare/v5.0.3...v5.0.4) (2023-04-12)

### Bug Fixes

- **adapter-commons:** Support non-default import to ease use with ESM projects ([d06f2cf](https://github.com/feathersjs/feathers/commit/d06f2cfcadda7dc23f0e2bec44f64e6be8500d02))

## [5.0.3](https://github.com/feathersjs/feathers/compare/v5.0.2...v5.0.3) (2023-04-05)

### Bug Fixes
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.3",
"version": "5.0.4",
"description": "Feathers shared database adapter test suite",
"homepage": "https://feathersjs.com",
"keywords": [
Expand Down
6 changes: 6 additions & 0 deletions packages/authentication-client/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.4](https://github.com/feathersjs/feathers/compare/v5.0.3...v5.0.4) (2023-04-12)

### Bug Fixes

- Make sure all Readme files are up to date ([#3154](https://github.com/feathersjs/feathers/issues/3154)) ([a5f0b38](https://github.com/feathersjs/feathers/commit/a5f0b38bbf2a11486415a39533bcc6c67fb51e3e))

## [5.0.3](https://github.com/feathersjs/feathers/compare/v5.0.2...v5.0.3) (2023-04-05)

### Bug Fixes
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.3",
"version": "5.0.4",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -53,18 +53,18 @@
"access": "public"
},
"dependencies": {
"@feathersjs/authentication": "^5.0.3",
"@feathersjs/commons": "^5.0.3",
"@feathersjs/errors": "^5.0.3",
"@feathersjs/feathers": "^5.0.3"
"@feathersjs/authentication": "^5.0.4",
"@feathersjs/commons": "^5.0.4",
"@feathersjs/errors": "^5.0.4",
"@feathersjs/feathers": "^5.0.4"
},
"devDependencies": {
"@feathersjs/authentication-local": "^5.0.3",
"@feathersjs/express": "^5.0.3",
"@feathersjs/memory": "^5.0.3",
"@feathersjs/rest-client": "^5.0.3",
"@feathersjs/socketio": "^5.0.3",
"@feathersjs/socketio-client": "^5.0.3",
"@feathersjs/authentication-local": "^5.0.4",
"@feathersjs/express": "^5.0.4",
"@feathersjs/memory": "^5.0.4",
"@feathersjs/rest-client": "^5.0.4",
"@feathersjs/socketio": "^5.0.4",
"@feathersjs/socketio-client": "^5.0.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"axios": "^1.3.4",
Expand Down
6 changes: 6 additions & 0 deletions packages/authentication-local/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.4](https://github.com/feathersjs/feathers/compare/v5.0.3...v5.0.4) (2023-04-12)

### Bug Fixes

- Make sure all Readme files are up to date ([#3154](https://github.com/feathersjs/feathers/issues/3154)) ([a5f0b38](https://github.com/feathersjs/feathers/commit/a5f0b38bbf2a11486415a39533bcc6c67fb51e3e))

## [5.0.3](https://github.com/feathersjs/feathers/compare/v5.0.2...v5.0.3) (2023-04-05)

### Bug Fixes
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.3",
"version": "5.0.4",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -53,16 +53,16 @@
"access": "public"
},
"dependencies": {
"@feathersjs/authentication": "^5.0.3",
"@feathersjs/commons": "^5.0.3",
"@feathersjs/errors": "^5.0.3",
"@feathersjs/feathers": "^5.0.3",
"@feathersjs/authentication": "^5.0.4",
"@feathersjs/commons": "^5.0.4",
"@feathersjs/errors": "^5.0.4",
"@feathersjs/feathers": "^5.0.4",
"bcryptjs": "^2.4.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@feathersjs/memory": "^5.0.3",
"@feathersjs/schema": "^5.0.3",
"@feathersjs/memory": "^5.0.4",
"@feathersjs/schema": "^5.0.4",
"@types/bcryptjs": "^2.4.2",
"@types/lodash": "^4.14.192",
"@types/mocha": "^10.0.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/authentication-oauth/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.4](https://github.com/feathersjs/feathers/compare/v5.0.3...v5.0.4) (2023-04-12)

### Bug Fixes

- Make sure all Readme files are up to date ([#3154](https://github.com/feathersjs/feathers/issues/3154)) ([a5f0b38](https://github.com/feathersjs/feathers/commit/a5f0b38bbf2a11486415a39533bcc6c67fb51e3e))

## [5.0.3](https://github.com/feathersjs/feathers/compare/v5.0.2...v5.0.3) (2023-04-05)

### Bug Fixes
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.3",
"version": "5.0.4",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -54,21 +54,21 @@
"access": "public"
},
"dependencies": {
"@feathersjs/authentication": "^5.0.3",
"@feathersjs/commons": "^5.0.3",
"@feathersjs/errors": "^5.0.3",
"@feathersjs/express": "^5.0.3",
"@feathersjs/feathers": "^5.0.3",
"@feathersjs/koa": "^5.0.3",
"@feathersjs/schema": "^5.0.3",
"@feathersjs/authentication": "^5.0.4",
"@feathersjs/commons": "^5.0.4",
"@feathersjs/errors": "^5.0.4",
"@feathersjs/express": "^5.0.4",
"@feathersjs/feathers": "^5.0.4",
"@feathersjs/koa": "^5.0.4",
"@feathersjs/schema": "^5.0.4",
"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.3",
"@feathersjs/memory": "^5.0.4",
"@types/cookie-session": "^2.0.44",
"@types/express": "^4.17.17",
"@types/koa-session": "^6.4.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/authentication/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.4](https://github.com/feathersjs/feathers/compare/v5.0.3...v5.0.4) (2023-04-12)

### Bug Fixes

- Make sure all Readme files are up to date ([#3154](https://github.com/feathersjs/feathers/issues/3154)) ([a5f0b38](https://github.com/feathersjs/feathers/commit/a5f0b38bbf2a11486415a39533bcc6c67fb51e3e))

## [5.0.3](https://github.com/feathersjs/feathers/compare/v5.0.2...v5.0.3) (2023-04-05)

### Bug Fixes
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.3",
"version": "5.0.4",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -53,20 +53,20 @@
"access": "public"
},
"dependencies": {
"@feathersjs/commons": "^5.0.3",
"@feathersjs/errors": "^5.0.3",
"@feathersjs/feathers": "^5.0.3",
"@feathersjs/commons": "^5.0.4",
"@feathersjs/errors": "^5.0.4",
"@feathersjs/feathers": "^5.0.4",
"@feathersjs/hooks": "^0.8.1",
"@feathersjs/schema": "^5.0.3",
"@feathersjs/transport-commons": "^5.0.3",
"@feathersjs/schema": "^5.0.4",
"@feathersjs/transport-commons": "^5.0.4",
"@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.3",
"@feathersjs/memory": "^5.0.4",
"@types/lodash": "^4.14.192",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
Expand Down
6 changes: 6 additions & 0 deletions packages/cli/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.4](https://github.com/feathersjs/feathers/compare/v5.0.3...v5.0.4) (2023-04-12)

### Bug Fixes

- Make sure all Readme files are up to date ([#3154](https://github.com/feathersjs/feathers/issues/3154)) ([a5f0b38](https://github.com/feathersjs/feathers/commit/a5f0b38bbf2a11486415a39533bcc6c67fb51e3e))

## [5.0.3](https://github.com/feathersjs/feathers/compare/v5.0.2...v5.0.3) (2023-04-05)

### Bug Fixes
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.3",
"version": "5.0.4",
"homepage": "https://feathersjs.com",
"main": "lib/",
"bin": {
Expand Down Expand Up @@ -52,28 +52,28 @@
"access": "public"
},
"dependencies": {
"@feathersjs/generators": "^5.0.3",
"@feathersjs/generators": "^5.0.4",
"chalk": "^4.0.1",
"commander": "^10.0.0"
},
"devDependencies": {
"@feathersjs/adapter-commons": "^5.0.3",
"@feathersjs/authentication": "^5.0.3",
"@feathersjs/authentication-client": "^5.0.3",
"@feathersjs/authentication-local": "^5.0.3",
"@feathersjs/authentication-oauth": "^5.0.3",
"@feathersjs/configuration": "^5.0.3",
"@feathersjs/errors": "^5.0.3",
"@feathersjs/express": "^5.0.3",
"@feathersjs/feathers": "^5.0.3",
"@feathersjs/knex": "^5.0.3",
"@feathersjs/koa": "^5.0.3",
"@feathersjs/mongodb": "^5.0.3",
"@feathersjs/rest-client": "^5.0.3",
"@feathersjs/schema": "^5.0.3",
"@feathersjs/socketio": "^5.0.3",
"@feathersjs/transport-commons": "^5.0.3",
"@feathersjs/typebox": "^5.0.3",
"@feathersjs/adapter-commons": "^5.0.4",
"@feathersjs/authentication": "^5.0.4",
"@feathersjs/authentication-client": "^5.0.4",
"@feathersjs/authentication-local": "^5.0.4",
"@feathersjs/authentication-oauth": "^5.0.4",
"@feathersjs/configuration": "^5.0.4",
"@feathersjs/errors": "^5.0.4",
"@feathersjs/express": "^5.0.4",
"@feathersjs/feathers": "^5.0.4",
"@feathersjs/knex": "^5.0.4",
"@feathersjs/koa": "^5.0.4",
"@feathersjs/mongodb": "^5.0.4",
"@feathersjs/rest-client": "^5.0.4",
"@feathersjs/schema": "^5.0.4",
"@feathersjs/socketio": "^5.0.4",
"@feathersjs/transport-commons": "^5.0.4",
"@feathersjs/typebox": "^5.0.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@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.4](https://github.com/feathersjs/feathers/compare/v5.0.3...v5.0.4) (2023-04-12)

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

## [5.0.3](https://github.com/feathersjs/feathers/compare/v5.0.2...v5.0.3) (2023-04-05)

### Bug Fixes
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.3",
"version": "5.0.4",
"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.3",
"@feathersjs/errors": "^5.0.3",
"@feathersjs/feathers": "^5.0.3",
"@feathersjs/rest-client": "^5.0.3",
"@feathersjs/socketio-client": "^5.0.3"
"@feathersjs/authentication-client": "^5.0.4",
"@feathersjs/errors": "^5.0.4",
"@feathersjs/feathers": "^5.0.4",
"@feathersjs/rest-client": "^5.0.4",
"@feathersjs/socketio-client": "^5.0.4"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@feathersjs/express": "^5.0.3",
"@feathersjs/memory": "^5.0.3",
"@feathersjs/socketio": "^5.0.3",
"@feathersjs/tests": "^5.0.3",
"@feathersjs/express": "^5.0.4",
"@feathersjs/memory": "^5.0.4",
"@feathersjs/socketio": "^5.0.4",
"@feathersjs/tests": "^5.0.4",
"babel-loader": "^9.1.2",
"mocha": "^10.2.0",
"mocha-puppeteer": "^0.14.0",
Expand Down
Loading

0 comments on commit 376e890

Please sign in to comment.