Skip to content

Commit

Permalink
chore(release): publish v5.0.0-pre.0
Browse files Browse the repository at this point in the history
  • Loading branch information
daffl committed May 19, 2020
1 parent 095f957 commit e6b82b8
Show file tree
Hide file tree
Showing 31 changed files with 260 additions and 75 deletions.
7 changes: 5 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@
"packages": [
"packages/*"
],
"version": "4.5.4",
"version": "5.0.0-pre.0",
"command": {
"bootstrap": {
"hoist": true
},
"publish": {
"allowBranch": ["master", "dove"],
"allowBranch": [
"master",
"dove"
],
"message": "chore(release): publish %s",
"conventionalCommits": true,
"createRelease": "github"
Expand Down
16 changes: 16 additions & 0 deletions packages/authentication-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.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)


### chore

* **package:** Remove @feathersjs/primus packages from core ([#1919](https://github.com/feathersjs/feathers/issues/1919)) ([d20b7d5](https://github.com/feathersjs/feathers/commit/d20b7d5a70f4d3306e294696156e8aa0337c35e9)), closes [#1899](https://github.com/feathersjs/feathers/issues/1899)


### BREAKING CHANGES

* **package:** Remove primus packages to be moved into the ecosystem.





## [4.5.4](https://github.com/feathersjs/feathers/compare/v4.5.3...v4.5.4) (2020-04-29)

**Note:** Version bump only for package @feathersjs/authentication-client
Expand Down
20 changes: 10 additions & 10 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": "4.5.4",
"version": "5.0.0-pre.0",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -43,18 +43,18 @@
"access": "public"
},
"dependencies": {
"@feathersjs/authentication": "^4.5.3",
"@feathersjs/commons": "^4.5.3",
"@feathersjs/errors": "^4.5.3",
"@feathersjs/feathers": "^4.5.3",
"@feathersjs/authentication": "^5.0.0-pre.0",
"@feathersjs/commons": "^5.0.0-pre.0",
"@feathersjs/errors": "^5.0.0-pre.0",
"@feathersjs/feathers": "^5.0.0-pre.0",
"debug": "^4.1.1"
},
"devDependencies": {
"@feathersjs/authentication-local": "^4.5.4",
"@feathersjs/express": "^4.5.4",
"@feathersjs/rest-client": "^4.5.4",
"@feathersjs/socketio": "^4.5.4",
"@feathersjs/socketio-client": "^4.5.4",
"@feathersjs/authentication-local": "^5.0.0-pre.0",
"@feathersjs/express": "^5.0.0-pre.0",
"@feathersjs/rest-client": "^5.0.0-pre.0",
"@feathersjs/socketio": "^5.0.0-pre.0",
"@feathersjs/socketio-client": "^5.0.0-pre.0",
"@types/debug": "^4.1.5",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.1",
Expand Down
8 changes: 8 additions & 0 deletions packages/authentication-local/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.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)

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





## [4.5.4](https://github.com/feathersjs/feathers/compare/v4.5.3...v4.5.4) (2020-04-29)


Expand Down
8 changes: 4 additions & 4 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": "4.5.4",
"version": "5.0.0-pre.0",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -43,9 +43,9 @@
"access": "public"
},
"dependencies": {
"@feathersjs/authentication": "^4.5.3",
"@feathersjs/errors": "^4.5.3",
"@feathersjs/feathers": "^4.5.3",
"@feathersjs/authentication": "^5.0.0-pre.0",
"@feathersjs/errors": "^5.0.0-pre.0",
"@feathersjs/feathers": "^5.0.0-pre.0",
"bcryptjs": "^2.4.3",
"debug": "^4.1.1",
"lodash": "^4.17.15"
Expand Down
11 changes: 11 additions & 0 deletions packages/authentication-oauth/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.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)


### Bug Fixes

* **authentication-oauth:** Updated typings for projects with strictNullChecks ([#1941](https://github.com/feathersjs/feathers/issues/1941)) ([be91206](https://github.com/feathersjs/feathers/commit/be91206e3dba1e65a81412b7aa636bece3ab4aa2))





## [4.5.4](https://github.com/feathersjs/feathers/compare/v4.5.3...v4.5.4) (2020-04-29)


Expand Down
10 changes: 5 additions & 5 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": "4.5.4",
"version": "5.0.0-pre.0",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -43,10 +43,10 @@
"access": "public"
},
"dependencies": {
"@feathersjs/authentication": "^4.5.3",
"@feathersjs/errors": "^4.5.3",
"@feathersjs/express": "^4.5.4",
"@feathersjs/feathers": "^4.5.3",
"@feathersjs/authentication": "^5.0.0-pre.0",
"@feathersjs/errors": "^5.0.0-pre.0",
"@feathersjs/express": "^5.0.0-pre.0",
"@feathersjs/feathers": "^5.0.0-pre.0",
"debug": "^4.1.1",
"express-session": "^1.17.1",
"grant": "^4.7.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/authentication/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.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)

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





## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17)


Expand Down
8 changes: 4 additions & 4 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": "4.5.3",
"version": "5.0.0-pre.0",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -43,9 +43,9 @@
"access": "public"
},
"dependencies": {
"@feathersjs/errors": "^4.5.3",
"@feathersjs/feathers": "^4.5.3",
"@feathersjs/transport-commons": "^4.5.3",
"@feathersjs/errors": "^5.0.0-pre.0",
"@feathersjs/feathers": "^5.0.0-pre.0",
"@feathersjs/transport-commons": "^5.0.0-pre.0",
"@types/jsonwebtoken": "^8.5.0",
"debug": "^4.1.1",
"jsonwebtoken": "^8.5.1",
Expand Down
21 changes: 21 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
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.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)


### chore

* **package:** Remove @feathersjs/primus packages from core ([#1919](https://github.com/feathersjs/feathers/issues/1919)) ([d20b7d5](https://github.com/feathersjs/feathers/commit/d20b7d5a70f4d3306e294696156e8aa0337c35e9)), closes [#1899](https://github.com/feathersjs/feathers/issues/1899)


### Features

* **core:** use @feathers/hooks and add async type ([#1929](https://github.com/feathersjs/feathers/issues/1929)) ([a5c4756](https://github.com/feathersjs/feathers/commit/a5c47562eae8410c82fe2f6308f26f8e78b6a3e8))


### BREAKING CHANGES

* **package:** Remove primus packages to be moved into the ecosystem.





## [4.5.4](https://github.com/feathersjs/feathers/compare/v4.5.3...v4.5.4) (2020-04-29)

**Note:** Version bump only for package @feathersjs/client
Expand Down
18 changes: 9 additions & 9 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": "4.5.4",
"version": "5.0.0-pre.0",
"repository": {
"type": "git",
"url": "https://github.com/feathersjs/feathers.git"
Expand Down Expand Up @@ -39,18 +39,18 @@
"IE 10"
],
"dependencies": {
"@feathersjs/authentication-client": "^4.5.4",
"@feathersjs/errors": "^4.5.3",
"@feathersjs/express": "^4.5.3",
"@feathersjs/feathers": "^4.5.3",
"@feathersjs/rest-client": "^4.5.3",
"@feathersjs/socketio": "^4.5.3",
"@feathersjs/socketio-client": "^4.5.3"
"@feathersjs/authentication-client": "^5.0.0-pre.0",
"@feathersjs/errors": "^5.0.0-pre.0",
"@feathersjs/express": "^5.0.0-pre.0",
"@feathersjs/feathers": "^5.0.0-pre.0",
"@feathersjs/rest-client": "^5.0.0-pre.0",
"@feathersjs/socketio": "^5.0.0-pre.0",
"@feathersjs/socketio-client": "^5.0.0-pre.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@feathersjs/tests": "^4.5.2",
"@feathersjs/tests": "^5.0.0-pre.0",
"babel-loader": "^8.1.0",
"body-parser": "^1.19.0",
"feathers-memory": "^4.1.0",
Expand Down
12 changes: 12 additions & 0 deletions packages/commons/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.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)


### Features

* **core:** Migrate @feathersjs/feathers to TypeScript ([#1963](https://github.com/feathersjs/feathers/issues/1963)) ([7812529](https://github.com/feathersjs/feathers/commit/7812529ff0f1008e21211f1d01efbc49795dbe55))
* **core:** use @feathers/hooks and add async type ([#1929](https://github.com/feathersjs/feathers/issues/1929)) ([a5c4756](https://github.com/feathersjs/feathers/commit/a5c47562eae8410c82fe2f6308f26f8e78b6a3e8))





## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17)

**Note:** Version bump only for package @feathersjs/commons
Expand Down
3 changes: 1 addition & 2 deletions packages/commons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@feathersjs/commons",
"version": "4.5.4",
"version": "5.0.0-pre.0",
"description": "Shared Feathers utility functions",
"homepage": "https://feathersjs.com",
"keywords": [
Expand Down Expand Up @@ -40,7 +40,6 @@
"publishConfig": {
"access": "public"
},
"dependencies": {},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.1",
Expand Down
17 changes: 17 additions & 0 deletions packages/configuration/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.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)


### chore

* **configuration:** Remove environment variable substitution ([#1942](https://github.com/feathersjs/feathers/issues/1942)) ([caaa21f](https://github.com/feathersjs/feathers/commit/caaa21ffdc6a8dcac82fb403c91d9d4b781a6c0a))


### BREAKING CHANGES

* **configuration:** Falls back to node-config instead of adding additional
functionality like path replacements and automatic environment variable insertion.





## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17)

**Note:** Version bump only for package @feathersjs/configuration
Expand Down
4 changes: 2 additions & 2 deletions packages/configuration/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@feathersjs/configuration",
"description": "A small configuration module for your Feathers application.",
"version": "4.5.3",
"version": "5.0.0-pre.0",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -48,7 +48,7 @@
"access": "public"
},
"dependencies": {
"@feathersjs/feathers": "^4.5.3",
"@feathersjs/feathers": "^5.0.0-pre.0",
"config": "^3.3.1",
"debug": "^4.1.1"
},
Expand Down
11 changes: 11 additions & 0 deletions packages/errors/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.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)


### Bug Fixes

* **errors:** Format package.json with spaces ([cbd31c1](https://github.com/feathersjs/feathers/commit/cbd31c10c2c574de63d6ca5e55dbfb73a5fdd758))





## [4.5.3](https://github.com/feathersjs/feathers/compare/v4.5.2...v4.5.3) (2020-04-17)


Expand Down
7 changes: 3 additions & 4 deletions packages/errors/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@feathersjs/errors",
"description": "Common error types for Feathers apps",
"version": "4.5.3",
"version": "5.0.0-pre.0",
"homepage": "https://feathersjs.com",
"main": "lib/",
"types": "lib/",
Expand Down Expand Up @@ -37,9 +37,8 @@
"publishConfig": {
"access": "public"
},
"dependencies": {},
"devDependencies": {
"@feathersjs/feathers": "^4.5.3",
"@feathersjs/feathers": "^5.0.0-pre.0",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.1",
"mocha": "^7.1.2",
Expand All @@ -48,4 +47,4 @@
"typescript": "^3.9.2"
},
"gitHead": "9b9f0f13387341bdd320f1e66feda828fca2c9f2"
}
}
11 changes: 11 additions & 0 deletions packages/express/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.0](https://github.com/feathersjs/feathers/compare/v4.5.4...v5.0.0-pre.0) (2020-05-19)


### Features

* **core:** use @feathers/hooks and add async type ([#1929](https://github.com/feathersjs/feathers/issues/1929)) ([a5c4756](https://github.com/feathersjs/feathers/commit/a5c47562eae8410c82fe2f6308f26f8e78b6a3e8))





## [4.5.4](https://github.com/feathersjs/feathers/compare/v4.5.3...v4.5.4) (2020-04-29)

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

0 comments on commit e6b82b8

Please sign in to comment.