@feathersjs/generators 5.0.2 → 5.0.4

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,19 @@
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.4](https://github.com/feathersjs/feathers/compare/v5.0.3...v5.0.4) (2023-04-12)
7
+
8
+ ### Bug Fixes
9
+
10
+ - Make sure all Readme files are up to date ([#3154](https://github.com/feathersjs/feathers/issues/3154)) ([a5f0b38](https://github.com/feathersjs/feathers/commit/a5f0b38bbf2a11486415a39533bcc6c67fb51e3e))
11
+
12
+ ## [5.0.3](https://github.com/feathersjs/feathers/compare/v5.0.2...v5.0.3) (2023-04-05)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **dependencies:** Update all dependencies ([#3139](https://github.com/feathersjs/feathers/issues/3139)) ([f24276e](https://github.com/feathersjs/feathers/commit/f24276e9a909e2e58a0730c730258ce1f70f4028))
17
+ - **generators:** Properly log unhandled rejection ([#3149](https://github.com/feathersjs/feathers/issues/3149)) ([eda8f78](https://github.com/feathersjs/feathers/commit/eda8f78fa5084c3247ad10b051610b3c51a13d24))
18
+
6
19
  ## [5.0.2](https://github.com/feathersjs/feathers/compare/v5.0.1...v5.0.2) (2023-03-23)
7
20
 
8
21
  ### Bug Fixes
package/README.md CHANGED
@@ -13,7 +13,7 @@ npm install @feathersjs/generators --save-dev
13
13
 
14
14
  ## Documentation
15
15
 
16
- Refer to the [Feathers documentation](https://docs.feathersjs.com) for more details.
16
+ Refer to the [Feathers CLI guide](https://feathersjs.com/guides/cli/) for more details.
17
17
 
18
18
  ## License
19
19
 
@@ -9,8 +9,8 @@ import { logger } from './logger'
9
9
  const port = app.get('port')
10
10
  const host = app.get('host')
11
11
 
12
- process.on('unhandledRejection', (reason, p) =>
13
- logger.error('Unhandled Rejection at: Promise ', p, reason)
12
+ process.on('unhandledRejection', (reason) =>
13
+ logger.error('Unhandled Rejection %O', reason)
14
14
  )
15
15
 
16
16
  app.listen(port).then(() => {
@@ -8,8 +8,8 @@ import { logger } from './logger'
8
8
  const port = app.get('port')
9
9
  const host = app.get('host')
10
10
 
11
- process.on('unhandledRejection', (reason, p) =>
12
- logger.error('Unhandled Rejection at: Promise ', p, reason)
11
+ process.on('unhandledRejection', (reason) =>
12
+ logger.error('Unhandled Rejection %O', reason)
13
13
  )
14
14
 
15
15
  app.listen(port).then(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feathersjs/generators",
3
- "version": "5.0.2",
3
+ "version": "5.0.4",
4
4
  "description": "Feathers CLI core generators, powered by Pinion",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "keywords": [
@@ -55,41 +55,41 @@
55
55
  "@feathershq/pinion": "^0.3.5",
56
56
  "chalk": "^4.0.1",
57
57
  "lodash": "^4.17.21",
58
- "prettier": "^2.8.4",
59
- "typescript": "^4.9.5"
58
+ "prettier": "^2.8.7",
59
+ "typescript": "^5.0.3"
60
60
  },
61
61
  "devDependencies": {
62
- "@feathersjs/adapter-commons": "^5.0.1",
63
- "@feathersjs/authentication": "^5.0.1",
64
- "@feathersjs/authentication-client": "^5.0.2",
65
- "@feathersjs/authentication-local": "^5.0.1",
66
- "@feathersjs/authentication-oauth": "^5.0.1",
67
- "@feathersjs/configuration": "^5.0.1",
68
- "@feathersjs/errors": "^5.0.1",
69
- "@feathersjs/express": "^5.0.1",
70
- "@feathersjs/feathers": "^5.0.1",
71
- "@feathersjs/knex": "^5.0.1",
72
- "@feathersjs/koa": "^5.0.1",
73
- "@feathersjs/mongodb": "^5.0.1",
74
- "@feathersjs/rest-client": "^5.0.1",
75
- "@feathersjs/schema": "^5.0.1",
76
- "@feathersjs/socketio": "^5.0.1",
77
- "@feathersjs/transport-commons": "^5.0.1",
78
- "@feathersjs/typebox": "^5.0.1",
62
+ "@feathersjs/adapter-commons": "^5.0.4",
63
+ "@feathersjs/authentication": "^5.0.4",
64
+ "@feathersjs/authentication-client": "^5.0.4",
65
+ "@feathersjs/authentication-local": "^5.0.4",
66
+ "@feathersjs/authentication-oauth": "^5.0.4",
67
+ "@feathersjs/configuration": "^5.0.4",
68
+ "@feathersjs/errors": "^5.0.4",
69
+ "@feathersjs/express": "^5.0.4",
70
+ "@feathersjs/feathers": "^5.0.4",
71
+ "@feathersjs/knex": "^5.0.4",
72
+ "@feathersjs/koa": "^5.0.4",
73
+ "@feathersjs/mongodb": "^5.0.4",
74
+ "@feathersjs/rest-client": "^5.0.4",
75
+ "@feathersjs/schema": "^5.0.4",
76
+ "@feathersjs/socketio": "^5.0.4",
77
+ "@feathersjs/transport-commons": "^5.0.4",
78
+ "@feathersjs/typebox": "^5.0.4",
79
79
  "@types/mocha": "^10.0.1",
80
- "@types/node": "^18.14.6",
80
+ "@types/node": "^18.15.11",
81
81
  "@types/prettier": "^2.7.2",
82
82
  "axios": "^1.3.4",
83
83
  "mocha": "^10.2.0",
84
- "mongodb": "^5.1.0",
84
+ "mongodb": "^5.2.0",
85
85
  "mssql": "^9.1.1",
86
86
  "mysql": "^2.18.1",
87
87
  "pg": "^8.10.0",
88
88
  "shx": "^0.3.4",
89
- "sqlite3": "^5.1.4",
89
+ "sqlite3": "^5.1.6",
90
90
  "ts-node": "^10.9.1",
91
- "type-fest": "^3.6.1",
92
- "typescript": "^4.9.5"
91
+ "type-fest": "^3.8.0",
92
+ "typescript": "^5.0.3"
93
93
  },
94
- "gitHead": "9b5239bf12f52f7e6b80405b465dcb1e1c65b623"
94
+ "gitHead": "376e89040991db500f1f327aa699322543315039"
95
95
  }