Skip to content

Commit

Permalink
chore(release): publish v5.0.0-pre.18
Browse files Browse the repository at this point in the history
  • Loading branch information
daffl committed Apr 11, 2022
1 parent 6511e45 commit c0b7b67
Show file tree
Hide file tree
Showing 42 changed files with 343 additions and 110 deletions.
23 changes: 23 additions & 0 deletions 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.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)


### Bug Fixes

* **adapter-tests:** Add tests for pagination in multi updates ([#2472](https://github.com/feathersjs/feathers/issues/2472)) ([98a811a](https://github.com/feathersjs/feathers/commit/98a811ac605575ff812a08d0504729a5efe7a69c))
* **core:** Ensure that dynamically registered services are always set up ([#2593](https://github.com/feathersjs/feathers/issues/2593)) ([27cc7d0](https://github.com/feathersjs/feathers/commit/27cc7d08321861cd69e6b66e1fdfa43c50664820))
* **schema:** result resolver correctly resolves paginated find result ([#2594](https://github.com/feathersjs/feathers/issues/2594)) ([6511e45](https://github.com/feathersjs/feathers/commit/6511e45bd0624f1a629530719709f4b27fecbe0b))


### Features

* **authentication:** Add setup method for auth strategies ([#1611](https://github.com/feathersjs/feathers/issues/1611)) ([a3c3581](https://github.com/feathersjs/feathers/commit/a3c35814dccdbbf6de96f04f60b226ce206c6dbe))
* **configuration:** Allow app configuration to be validated against a schema ([#2590](https://github.com/feathersjs/feathers/issues/2590)) ([a268f86](https://github.com/feathersjs/feathers/commit/a268f86da92a8ada14ed11ab456aac0a4bba5bb0))
* **core:** Add app.setup and app.teardown hook support ([#2585](https://github.com/feathersjs/feathers/issues/2585)) ([ae4ebee](https://github.com/feathersjs/feathers/commit/ae4ebee5d39957651473007c4d3adb210160e040))
* **core:** Add app.teardown functionality ([#2570](https://github.com/feathersjs/feathers/issues/2570)) ([fcdf524](https://github.com/feathersjs/feathers/commit/fcdf524ae1995bb59265d39f12e98b7794bed023))
* **core:** Finalize app.teardown() functionality ([#2584](https://github.com/feathersjs/feathers/issues/2584)) ([1a166f3](https://github.com/feathersjs/feathers/commit/1a166f3ded811ecacf0ae8cb67880bc9fa2eeafa))
* **transport-commons:** add `context.http.response` ([#2524](https://github.com/feathersjs/feathers/issues/2524)) ([5bc9d44](https://github.com/feathersjs/feathers/commit/5bc9d447043c2e2b742c73ed28ecf3b3264dd9e5))





# [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)


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.17",
"version": "5.0.0-pre.18",
"command": {
"bootstrap": {
"hoist": true
Expand Down
12 changes: 12 additions & 0 deletions packages/adapter-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.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)


### Features

* **core:** Add app.teardown functionality ([#2570](https://github.com/feathersjs/feathers/issues/2570)) ([fcdf524](https://github.com/feathersjs/feathers/commit/fcdf524ae1995bb59265d39f12e98b7794bed023))
* **core:** Finalize app.teardown() functionality ([#2584](https://github.com/feathersjs/feathers/issues/2584)) ([1a166f3](https://github.com/feathersjs/feathers/commit/1a166f3ded811ecacf0ae8cb67880bc9fa2eeafa))





# [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)

**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-pre.17",
"version": "5.0.0-pre.18",
"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.17",
"@feathersjs/errors": "^5.0.0-pre.17",
"@feathersjs/feathers": "^5.0.0-pre.17"
"@feathersjs/commons": "^5.0.0-pre.18",
"@feathersjs/errors": "^5.0.0-pre.18",
"@feathersjs/feathers": "^5.0.0-pre.18"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/adapter-tests/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.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)


### Bug Fixes

* **adapter-tests:** Add tests for pagination in multi updates ([#2472](https://github.com/feathersjs/feathers/issues/2472)) ([98a811a](https://github.com/feathersjs/feathers/commit/98a811ac605575ff812a08d0504729a5efe7a69c))





# [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)

**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-pre.17",
"version": "5.0.0-pre.18",
"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.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





# [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)

**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.17",
"version": "5.0.0-pre.18",
"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.17",
"@feathersjs/commons": "^5.0.0-pre.17",
"@feathersjs/errors": "^5.0.0-pre.17",
"@feathersjs/feathers": "^5.0.0-pre.17"
"@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"
},
"devDependencies": {
"@feathersjs/authentication-local": "^5.0.0-pre.17",
"@feathersjs/express": "^5.0.0-pre.17",
"@feathersjs/memory": "^5.0.0-pre.17",
"@feathersjs/rest-client": "^5.0.0-pre.17",
"@feathersjs/socketio": "^5.0.0-pre.17",
"@feathersjs/socketio-client": "^5.0.0-pre.17",
"@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",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"axios": "^0.26.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.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





# [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)


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.17",
"version": "5.0.0-pre.18",
"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.17",
"@feathersjs/commons": "^5.0.0-pre.17",
"@feathersjs/errors": "^5.0.0-pre.17",
"@feathersjs/feathers": "^5.0.0-pre.17",
"@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",
"bcryptjs": "^2.4.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@feathersjs/memory": "^5.0.0-pre.17",
"@feathersjs/memory": "^5.0.0-pre.18",
"@types/bcryptjs": "^2.4.2",
"@types/lodash": "^4.14.181",
"@types/mocha": "^9.1.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/authentication-oauth/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.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





# [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)

**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.17",
"version": "5.0.0-pre.18",
"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.17",
"@feathersjs/commons": "^5.0.0-pre.17",
"@feathersjs/errors": "^5.0.0-pre.17",
"@feathersjs/express": "^5.0.0-pre.17",
"@feathersjs/feathers": "^5.0.0-pre.17",
"@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",
"express-session": "^1.17.2",
"grant": "^5.4.21",
"lodash": "^4.17.21"
},
"devDependencies": {
"@feathersjs/memory": "^5.0.0-pre.17",
"@feathersjs/memory": "^5.0.0-pre.18",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/lodash": "^4.14.181",
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.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)


### Features

* **authentication:** Add setup method for auth strategies ([#1611](https://github.com/feathersjs/feathers/issues/1611)) ([a3c3581](https://github.com/feathersjs/feathers/commit/a3c35814dccdbbf6de96f04f60b226ce206c6dbe))
* **configuration:** Allow app configuration to be validated against a schema ([#2590](https://github.com/feathersjs/feathers/issues/2590)) ([a268f86](https://github.com/feathersjs/feathers/commit/a268f86da92a8ada14ed11ab456aac0a4bba5bb0))





# [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)

**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-pre.17",
"version": "5.0.0-pre.18",
"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.17",
"@feathersjs/errors": "^5.0.0-pre.17",
"@feathersjs/feathers": "^5.0.0-pre.17",
"@feathersjs/transport-commons": "^5.0.0-pre.17",
"@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",
"@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.17",
"@feathersjs/schema": "^5.0.0-pre.17",
"@feathersjs/memory": "^5.0.0-pre.18",
"@feathersjs/schema": "^5.0.0-pre.18",
"@types/lodash": "^4.14.181",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
Expand Down
8 changes: 8 additions & 0 deletions packages/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.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





# [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)

**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-pre.17",
"version": "5.0.0-pre.18",
"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-pre.17",
"@feathersjs/errors": "^5.0.0-pre.17",
"@feathersjs/feathers": "^5.0.0-pre.17",
"@feathersjs/rest-client": "^5.0.0-pre.17",
"@feathersjs/socketio-client": "^5.0.0-pre.17"
"@feathersjs/authentication-client": "^5.0.0-pre.18",
"@feathersjs/errors": "^5.0.0-pre.18",
"@feathersjs/feathers": "^5.0.0-pre.18",
"@feathersjs/rest-client": "^5.0.0-pre.18",
"@feathersjs/socketio-client": "^5.0.0-pre.18"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@feathersjs/express": "^5.0.0-pre.17",
"@feathersjs/memory": "^5.0.0-pre.17",
"@feathersjs/socketio": "^5.0.0-pre.17",
"@feathersjs/tests": "^5.0.0-pre.17",
"@feathersjs/express": "^5.0.0-pre.18",
"@feathersjs/memory": "^5.0.0-pre.18",
"@feathersjs/socketio": "^5.0.0-pre.18",
"@feathersjs/tests": "^5.0.0-pre.18",
"babel-loader": "^8.2.4",
"mocha": "^9.2.2",
"mocha-puppeteer": "^0.14.0",
Expand Down
8 changes: 8 additions & 0 deletions packages/commons/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.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/commons





# [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)

**Note:** Version bump only for package @feathersjs/commons
Expand Down
2 changes: 1 addition & 1 deletion packages/commons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@feathersjs/commons",
"version": "5.0.0-pre.17",
"version": "5.0.0-pre.18",
"description": "Shared Feathers utility functions",
"homepage": "https://feathersjs.com",
"keywords": [
Expand Down
11 changes: 11 additions & 0 deletions packages/configuration/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.18](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.17...v5.0.0-pre.18) (2022-04-11)


### Features

* **configuration:** Allow app configuration to be validated against a schema ([#2590](https://github.com/feathersjs/feathers/issues/2590)) ([a268f86](https://github.com/feathersjs/feathers/commit/a268f86da92a8ada14ed11ab456aac0a4bba5bb0))





# [5.0.0-pre.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)

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

0 comments on commit c0b7b67

Please sign in to comment.