@feathersjs/authentication 4.5.15 → 4.5.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.5.17](https://github.com/feathersjs/feathers/compare/v4.5.16...v4.5.17) (2023-07-17)
7
+
8
+ **Note:** Version bump only for package @feathersjs/authentication
9
+
10
+
11
+
12
+
13
+
14
+ ## [4.5.16](https://github.com/feathersjs/feathers/compare/v4.5.15...v4.5.16) (2023-02-24)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **dependencies:** Update dependencies ([70335c4](https://github.com/feathersjs/feathers/commit/70335c4c7c0fd15ab6d1c2a617eb17fcf864fadf))
20
+
21
+
22
+
23
+
24
+
6
25
  ## [4.5.15](https://github.com/feathersjs/feathers/compare/v4.5.14...v4.5.15) (2022-05-17)
7
26
 
8
27
  **Note:** Version bump only for package @feathersjs/authentication
package/lib/core.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  import { SignOptions, Secret, VerifyOptions } from 'jsonwebtoken';
3
4
  import { Application, Params } from '@feathersjs/feathers';
4
5
  import { IncomingMessage, ServerResponse } from 'http';
@@ -9,7 +10,7 @@ export interface AuthenticationRequest {
9
10
  strategy?: string;
10
11
  [key: string]: any;
11
12
  }
12
- export declare type ConnectionEvent = 'login' | 'logout' | 'disconnect';
13
+ export type ConnectionEvent = 'login' | 'logout' | 'disconnect';
13
14
  export interface AuthenticationStrategy {
14
15
  /**
15
16
  * Implement this method to get access to the AuthenticationService
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@feathersjs/authentication",
3
3
  "description": "Add Authentication to your FeathersJS app.",
4
- "version": "4.5.15",
4
+ "version": "4.5.17",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "main": "lib/",
7
7
  "types": "lib/",
@@ -52,12 +52,12 @@
52
52
  "access": "public"
53
53
  },
54
54
  "dependencies": {
55
- "@feathersjs/errors": "^4.5.15",
56
- "@feathersjs/feathers": "^4.5.15",
57
- "@feathersjs/transport-commons": "^4.5.15",
58
- "@types/jsonwebtoken": "^8.5.6",
55
+ "@feathersjs/errors": "^4.5.17",
56
+ "@feathersjs/feathers": "^4.5.17",
57
+ "@feathersjs/transport-commons": "^4.5.17",
58
+ "@types/jsonwebtoken": "^9.0.0",
59
59
  "debug": "^4.3.3",
60
- "jsonwebtoken": "^8.5.1",
60
+ "jsonwebtoken": "^9.0.0",
61
61
  "lodash": "^4.17.21",
62
62
  "long-timeout": "^0.1.1",
63
63
  "uuid": "^8.3.2"
@@ -74,5 +74,5 @@
74
74
  "ts-node": "^10.4.0",
75
75
  "typescript": "^4.5.4"
76
76
  },
77
- "gitHead": "d0e9600002975296ab8de926acd317d0a73fce5c"
77
+ "gitHead": "022a407dab1e813d23b283d145dfff9a870541ee"
78
78
  }