@feathersjs/authentication 5.0.0-pre.34 → 5.0.0-pre.36

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,18 @@
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
+ # [5.0.0-pre.36](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.35...v5.0.0-pre.36) (2023-01-29)
7
+
8
+ ### Bug Fixes
9
+
10
+ - Update all dependencies ([#3024](https://github.com/feathersjs/feathers/issues/3024)) ([283dc47](https://github.com/feathersjs/feathers/commit/283dc4798d85584bc031e6e54b83b4ea77d1edd0))
11
+
12
+ # [5.0.0-pre.35](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.34...v5.0.0-pre.35) (2023-01-12)
13
+
14
+ ### Features
15
+
16
+ - **generators:** Move core code generators to shared generators package ([#2982](https://github.com/feathersjs/feathers/issues/2982)) ([0328d22](https://github.com/feathersjs/feathers/commit/0328d2292153870bc43958f73d2c6f288a8cec17))
17
+
6
18
  # [5.0.0-pre.34](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.33...v5.0.0-pre.34) (2022-12-14)
7
19
 
8
20
  ### Bug Fixes
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2022 Feathers
3
+ Copyright (c) 2023 Feathers Contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -18,6 +18,6 @@ Refer to the [Feathers authentication API documentation](https://docs.feathersjs
18
18
 
19
19
  ## License
20
20
 
21
- Copyright (c) 2022 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
21
+ Copyright (c) 2023 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
22
22
 
23
23
  Licensed under the [MIT license](LICENSE).
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": "5.0.0-pre.34",
4
+ "version": "5.0.0-pre.36",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "main": "lib/",
7
7
  "types": "lib/",
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "scripts": {
44
44
  "prepublish": "npm run compile",
45
- "pack": "npm pack --pack-destination ../cli/test/build",
45
+ "pack": "npm pack --pack-destination ../generators/test/build",
46
46
  "compile": "shx rm -rf lib/ && tsc && npm run pack",
47
47
  "test": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
48
48
  },
@@ -53,28 +53,28 @@
53
53
  "access": "public"
54
54
  },
55
55
  "dependencies": {
56
- "@feathersjs/commons": "^5.0.0-pre.34",
57
- "@feathersjs/errors": "^5.0.0-pre.34",
58
- "@feathersjs/feathers": "^5.0.0-pre.34",
56
+ "@feathersjs/commons": "^5.0.0-pre.36",
57
+ "@feathersjs/errors": "^5.0.0-pre.36",
58
+ "@feathersjs/feathers": "^5.0.0-pre.36",
59
59
  "@feathersjs/hooks": "^0.7.6",
60
- "@feathersjs/schema": "^5.0.0-pre.34",
61
- "@feathersjs/transport-commons": "^5.0.0-pre.34",
62
- "@types/jsonwebtoken": "^8.5.9",
63
- "jsonwebtoken": "^8.5.1",
60
+ "@feathersjs/schema": "^5.0.0-pre.36",
61
+ "@feathersjs/transport-commons": "^5.0.0-pre.36",
62
+ "@types/jsonwebtoken": "^9.0.1",
63
+ "jsonwebtoken": "^9.0.0",
64
64
  "lodash": "^4.17.21",
65
65
  "long-timeout": "^0.1.1",
66
66
  "uuid": "^9.0.0"
67
67
  },
68
68
  "devDependencies": {
69
- "@feathersjs/memory": "^5.0.0-pre.34",
69
+ "@feathersjs/memory": "^5.0.0-pre.36",
70
70
  "@types/lodash": "^4.14.191",
71
71
  "@types/mocha": "^10.0.1",
72
- "@types/node": "^18.11.10",
72
+ "@types/node": "^18.11.18",
73
73
  "@types/uuid": "^9.0.0",
74
- "mocha": "^10.1.0",
74
+ "mocha": "^10.2.0",
75
75
  "shx": "^0.3.4",
76
76
  "ts-node": "^10.9.1",
77
- "typescript": "^4.9.3"
77
+ "typescript": "^4.9.4"
78
78
  },
79
- "gitHead": "42cca600d00f0b3b9d89fa79be30fcd46bc50132"
79
+ "gitHead": "9a107b463cc80d7f3c28553c908987e05b0b634a"
80
80
  }