Skip to content

Commit 8697ecc

Browse files
committed
chore(release): publish v4.5.12
1 parent 67a7e31 commit 8697ecc

40 files changed

+314
-92
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## [4.5.12](https://github.com/feathersjs/feathers/compare/v4.5.11...v4.5.12) (2022-01-06)
7+
8+
9+
### Bug Fixes
10+
11+
* **authentication-oauth:** OAuth redirect lost sometimes due to session store race ([#2514](https://github.com/feathersjs/feathers/issues/2514)) ([#2515](https://github.com/feathersjs/feathers/issues/2515)) ([67a7e31](https://github.com/feathersjs/feathers/commit/67a7e31ae332992f3b52bdb35e3848f66726cbc6))
12+
* Update all dependencies for crow release ([#2520](https://github.com/feathersjs/feathers/issues/2520)) ([1c63e6b](https://github.com/feathersjs/feathers/commit/1c63e6be37ff85edbe8dd318415ca6919864c033))

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "4.5.11",
6+
"version": "4.5.12",
77
"command": {
88
"bootstrap": {
99
"hoist": true

packages/adapter-commons/CHANGELOG.md

+11
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+
## [4.5.12](https://github.com/feathersjs/databases/compare/v4.5.11...v4.5.12) (2022-01-06)
7+
8+
9+
### Bug Fixes
10+
11+
* Update all dependencies for crow release ([#2520](https://github.com/feathersjs/databases/issues/2520)) ([1c63e6b](https://github.com/feathersjs/databases/commit/1c63e6be37ff85edbe8dd318415ca6919864c033))
12+
13+
14+
15+
16+
617
## [4.5.11](https://github.com/feathersjs/databases/compare/v4.5.10...v4.5.11) (2020-12-05)
718

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

packages/adapter-commons/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@feathersjs/adapter-commons",
3-
"version": "4.5.11",
3+
"version": "4.5.12",
44
"description": "Shared database adapter utility functions",
55
"homepage": "https://feathersjs.com",
66
"keywords": [
@@ -48,9 +48,9 @@
4848
"access": "public"
4949
},
5050
"dependencies": {
51-
"@feathersjs/commons": "^4.5.11",
52-
"@feathersjs/errors": "^4.5.11",
53-
"@feathersjs/feathers": "^4.5.11"
51+
"@feathersjs/commons": "^4.5.12",
52+
"@feathersjs/errors": "^4.5.12",
53+
"@feathersjs/feathers": "^4.5.12"
5454
},
5555
"devDependencies": {
5656
"@types/mocha": "^9.0.0",

packages/adapter-tests/CHANGELOG.md

+11
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+
## [4.5.12](https://github.com/feathersjs/databases/compare/v4.5.11...v4.5.12) (2022-01-06)
7+
8+
9+
### Bug Fixes
10+
11+
* Update all dependencies for crow release ([#2520](https://github.com/feathersjs/databases/issues/2520)) ([1c63e6b](https://github.com/feathersjs/databases/commit/1c63e6be37ff85edbe8dd318415ca6919864c033))
12+
13+
14+
15+
16+
617
## [4.5.11](https://github.com/feathersjs/databases/compare/v4.5.10...v4.5.11) (2020-12-05)
718

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

packages/adapter-tests/package.json

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

packages/authentication-client/CHANGELOG.md

+11
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+
## [4.5.12](https://github.com/feathersjs/feathers/compare/v4.5.11...v4.5.12) (2022-01-06)
7+
8+
9+
### Bug Fixes
10+
11+
* Update all dependencies for crow release ([#2520](https://github.com/feathersjs/feathers/issues/2520)) ([1c63e6b](https://github.com/feathersjs/feathers/commit/1c63e6be37ff85edbe8dd318415ca6919864c033))
12+
13+
14+
15+
16+
617
## [4.5.11](https://github.com/feathersjs/feathers/compare/v4.5.10...v4.5.11) (2020-12-05)
718

819

packages/authentication-client/package.json

+12-12
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": "4.5.11",
4+
"version": "4.5.12",
55
"homepage": "https://feathersjs.com",
66
"main": "lib/",
77
"types": "lib/",
@@ -52,20 +52,20 @@
5252
"access": "public"
5353
},
5454
"dependencies": {
55-
"@feathersjs/authentication": "^4.5.11",
56-
"@feathersjs/commons": "^4.5.11",
57-
"@feathersjs/errors": "^4.5.11",
58-
"@feathersjs/feathers": "^4.5.11",
55+
"@feathersjs/authentication": "^4.5.12",
56+
"@feathersjs/commons": "^4.5.12",
57+
"@feathersjs/errors": "^4.5.12",
58+
"@feathersjs/feathers": "^4.5.12",
5959
"debug": "^4.3.3"
6060
},
6161
"devDependencies": {
62-
"@feathersjs/authentication-local": "^4.5.11",
63-
"@feathersjs/express": "^4.5.11",
64-
"@feathersjs/primus": "^4.5.11",
65-
"@feathersjs/primus-client": "^4.5.11",
66-
"@feathersjs/rest-client": "^4.5.11",
67-
"@feathersjs/socketio": "^4.5.11",
68-
"@feathersjs/socketio-client": "^4.5.11",
62+
"@feathersjs/authentication-local": "^4.5.12",
63+
"@feathersjs/express": "^4.5.12",
64+
"@feathersjs/primus": "^4.5.12",
65+
"@feathersjs/primus-client": "^4.5.12",
66+
"@feathersjs/rest-client": "^4.5.12",
67+
"@feathersjs/socketio": "^4.5.12",
68+
"@feathersjs/socketio-client": "^4.5.12",
6969
"@types/debug": "^4.1.7",
7070
"@types/mocha": "^9.0.0",
7171
"@types/node": "^17.0.8",

packages/authentication-local/CHANGELOG.md

+11
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+
## [4.5.12](https://github.com/feathersjs/feathers/compare/v4.5.11...v4.5.12) (2022-01-06)
7+
8+
9+
### Bug Fixes
10+
11+
* Update all dependencies for crow release ([#2520](https://github.com/feathersjs/feathers/issues/2520)) ([1c63e6b](https://github.com/feathersjs/feathers/commit/1c63e6be37ff85edbe8dd318415ca6919864c033))
12+
13+
14+
15+
16+
617
## [4.5.11](https://github.com/feathersjs/feathers/compare/v4.5.10...v4.5.11) (2020-12-05)
718

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

packages/authentication-local/package.json

+4-4
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": "4.5.11",
4+
"version": "4.5.12",
55
"homepage": "https://feathersjs.com",
66
"main": "lib/",
77
"types": "lib/",
@@ -52,9 +52,9 @@
5252
"access": "public"
5353
},
5454
"dependencies": {
55-
"@feathersjs/authentication": "^4.5.11",
56-
"@feathersjs/errors": "^4.5.11",
57-
"@feathersjs/feathers": "^4.5.11",
55+
"@feathersjs/authentication": "^4.5.12",
56+
"@feathersjs/errors": "^4.5.12",
57+
"@feathersjs/feathers": "^4.5.12",
5858
"bcryptjs": "^2.4.3",
5959
"debug": "^4.3.3",
6060
"lodash": "^4.17.21"

packages/authentication-oauth/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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+
## [4.5.12](https://github.com/feathersjs/feathers/compare/v4.5.11...v4.5.12) (2022-01-06)
7+
8+
9+
### Bug Fixes
10+
11+
* **authentication-oauth:** OAuth redirect lost sometimes due to session store race ([#2514](https://github.com/feathersjs/feathers/issues/2514)) ([#2515](https://github.com/feathersjs/feathers/issues/2515)) ([67a7e31](https://github.com/feathersjs/feathers/commit/67a7e31ae332992f3b52bdb35e3848f66726cbc6))
12+
* Update all dependencies for crow release ([#2520](https://github.com/feathersjs/feathers/issues/2520)) ([1c63e6b](https://github.com/feathersjs/feathers/commit/1c63e6be37ff85edbe8dd318415ca6919864c033))
13+
14+
15+
16+
17+
618
## [4.5.11](https://github.com/feathersjs/feathers/compare/v4.5.10...v4.5.11) (2020-12-05)
719

820

packages/authentication-oauth/package.json

+5-5
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": "4.5.11",
4+
"version": "4.5.12",
55
"homepage": "https://feathersjs.com",
66
"main": "lib/",
77
"types": "lib/",
@@ -52,10 +52,10 @@
5252
"access": "public"
5353
},
5454
"dependencies": {
55-
"@feathersjs/authentication": "^4.5.11",
56-
"@feathersjs/errors": "^4.5.11",
57-
"@feathersjs/express": "^4.5.11",
58-
"@feathersjs/feathers": "^4.5.11",
55+
"@feathersjs/authentication": "^4.5.12",
56+
"@feathersjs/errors": "^4.5.12",
57+
"@feathersjs/express": "^4.5.12",
58+
"@feathersjs/feathers": "^4.5.12",
5959
"debug": "^4.3.3",
6060
"express-session": "^1.17.2",
6161
"grant": "^4.7.0",

packages/authentication/CHANGELOG.md

+11
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+
## [4.5.12](https://github.com/feathersjs/feathers/compare/v4.5.11...v4.5.12) (2022-01-06)
7+
8+
9+
### Bug Fixes
10+
11+
* Update all dependencies for crow release ([#2520](https://github.com/feathersjs/feathers/issues/2520)) ([1c63e6b](https://github.com/feathersjs/feathers/commit/1c63e6be37ff85edbe8dd318415ca6919864c033))
12+
13+
14+
15+
16+
617
## [4.5.11](https://github.com/feathersjs/feathers/compare/v4.5.10...v4.5.11) (2020-12-05)
718

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

packages/authentication/package.json

+4-4
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": "4.5.11",
4+
"version": "4.5.12",
55
"homepage": "https://feathersjs.com",
66
"main": "lib/",
77
"types": "lib/",
@@ -52,9 +52,9 @@
5252
"access": "public"
5353
},
5454
"dependencies": {
55-
"@feathersjs/errors": "^4.5.11",
56-
"@feathersjs/feathers": "^4.5.11",
57-
"@feathersjs/transport-commons": "^4.5.11",
55+
"@feathersjs/errors": "^4.5.12",
56+
"@feathersjs/feathers": "^4.5.12",
57+
"@feathersjs/transport-commons": "^4.5.12",
5858
"@types/jsonwebtoken": "^8.5.6",
5959
"debug": "^4.3.3",
6060
"jsonwebtoken": "^8.5.1",

packages/client/CHANGELOG.md

+11
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+
## [4.5.12](https://github.com/feathersjs/feathers/compare/v4.5.11...v4.5.12) (2022-01-06)
7+
8+
9+
### Bug Fixes
10+
11+
* Update all dependencies for crow release ([#2520](https://github.com/feathersjs/feathers/issues/2520)) ([1c63e6b](https://github.com/feathersjs/feathers/commit/1c63e6be37ff85edbe8dd318415ca6919864c033))
12+
13+
14+
15+
16+
617
## [4.5.11](https://github.com/feathersjs/feathers/compare/v4.5.10...v4.5.11) (2020-12-05)
718

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

packages/client/package.json

+11-11
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": "4.5.11",
4+
"version": "4.5.12",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/feathersjs/feathers.git"
@@ -51,16 +51,16 @@
5151
"devDependencies": {
5252
"@babel/core": "^7.16.7",
5353
"@babel/preset-env": "^7.16.7",
54-
"@feathersjs/authentication-client": "^4.5.11",
55-
"@feathersjs/errors": "^4.5.11",
56-
"@feathersjs/express": "^4.5.11",
57-
"@feathersjs/feathers": "^4.5.11",
58-
"@feathersjs/primus": "^4.5.11",
59-
"@feathersjs/primus-client": "^4.5.11",
60-
"@feathersjs/rest-client": "^4.5.11",
61-
"@feathersjs/socketio": "^4.5.11",
62-
"@feathersjs/socketio-client": "^4.5.11",
63-
"@feathersjs/tests": "^4.5.11",
54+
"@feathersjs/authentication-client": "^4.5.12",
55+
"@feathersjs/errors": "^4.5.12",
56+
"@feathersjs/express": "^4.5.12",
57+
"@feathersjs/feathers": "^4.5.12",
58+
"@feathersjs/primus": "^4.5.12",
59+
"@feathersjs/primus-client": "^4.5.12",
60+
"@feathersjs/rest-client": "^4.5.12",
61+
"@feathersjs/socketio": "^4.5.12",
62+
"@feathersjs/socketio-client": "^4.5.12",
63+
"@feathersjs/tests": "^4.5.12",
6464
"babel-loader": "^8.2.3",
6565
"body-parser": "^1.19.1",
6666
"feathers-memory": "^4.1.0",

packages/commons/CHANGELOG.md

+11
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+
## [4.5.12](https://github.com/feathersjs/feathers/compare/v4.5.11...v4.5.12) (2022-01-06)
7+
8+
9+
### Bug Fixes
10+
11+
* Update all dependencies for crow release ([#2520](https://github.com/feathersjs/feathers/issues/2520)) ([1c63e6b](https://github.com/feathersjs/feathers/commit/1c63e6be37ff85edbe8dd318415ca6919864c033))
12+
13+
14+
15+
16+
617
## [4.5.11](https://github.com/feathersjs/feathers/compare/v4.5.10...v4.5.11) (2020-12-05)
718

819
**Note:** Version bump only for package @feathersjs/commons

packages/commons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@feathersjs/commons",
3-
"version": "4.5.11",
3+
"version": "4.5.12",
44
"description": "Shared Feathers utility functions",
55
"homepage": "https://feathersjs.com",
66
"keywords": [

packages/configuration/CHANGELOG.md

+11
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+
## [4.5.12](https://github.com/feathersjs/feathers/compare/v4.5.11...v4.5.12) (2022-01-06)
7+
8+
9+
### Bug Fixes
10+
11+
* Update all dependencies for crow release ([#2520](https://github.com/feathersjs/feathers/issues/2520)) ([1c63e6b](https://github.com/feathersjs/feathers/commit/1c63e6be37ff85edbe8dd318415ca6919864c033))
12+
13+
14+
15+
16+
617
## [4.5.11](https://github.com/feathersjs/feathers/compare/v4.5.10...v4.5.11) (2020-12-05)
718

819
**Note:** Version bump only for package @feathersjs/configuration

packages/configuration/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@feathersjs/configuration",
33
"description": "A small configuration module for your Feathers application.",
4-
"version": "4.5.11",
4+
"version": "4.5.12",
55
"homepage": "https://feathersjs.com",
66
"main": "lib/",
77
"types": "lib/",
@@ -57,7 +57,7 @@
5757
"access": "public"
5858
},
5959
"dependencies": {
60-
"@feathersjs/feathers": "^4.5.11",
60+
"@feathersjs/feathers": "^4.5.12",
6161
"config": "^3.3.6",
6262
"debug": "^4.3.3"
6363
},

0 commit comments

Comments
 (0)