@feathersjs/schema 5.0.8 → 5.0.10

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -6
  2. package/package.json +15 -12
package/CHANGELOG.md CHANGED
@@ -3,21 +3,23 @@
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.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19)
7
-
8
- **Note:** Version bump only for package @feathersjs/schema
9
-
6
+ ## [5.0.10](https://github.com/feathersjs/feathers/compare/v5.0.9...v5.0.10) (2023-10-03)
10
7
 
8
+ ### Bug Fixes
11
9
 
10
+ - **schema:** Add typescript as peerDependency ([#3287](https://github.com/feathersjs/feathers/issues/3287)) ([cb562ee](https://github.com/feathersjs/feathers/commit/cb562eeddfa88e34fe5727d4000fa037746b0249))
12
11
 
13
-
14
- ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14)
12
+ ## [5.0.9](https://github.com/feathersjs/feathers/compare/v5.0.8...v5.0.9) (2023-09-27)
15
13
 
16
14
  **Note:** Version bump only for package @feathersjs/schema
17
15
 
16
+ ## [5.0.8](https://github.com/feathersjs/feathers/compare/v5.0.7...v5.0.8) (2023-07-19)
18
17
 
18
+ **Note:** Version bump only for package @feathersjs/schema
19
19
 
20
+ ## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14)
20
21
 
22
+ **Note:** Version bump only for package @feathersjs/schema
21
23
 
22
24
  ## [5.0.6](https://github.com/feathersjs/feathers/compare/v5.0.5...v5.0.6) (2023-06-15)
23
25
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@feathersjs/schema",
3
3
  "description": "A common data schema definition format",
4
- "version": "5.0.8",
4
+ "version": "5.0.10",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "main": "lib/",
7
7
  "types": "lib/",
@@ -54,24 +54,27 @@
54
54
  "access": "public"
55
55
  },
56
56
  "dependencies": {
57
- "@feathersjs/adapter-commons": "^5.0.8",
58
- "@feathersjs/commons": "^5.0.8",
59
- "@feathersjs/errors": "^5.0.8",
60
- "@feathersjs/feathers": "^5.0.8",
57
+ "@feathersjs/adapter-commons": "^5.0.10",
58
+ "@feathersjs/commons": "^5.0.10",
59
+ "@feathersjs/errors": "^5.0.10",
60
+ "@feathersjs/feathers": "^5.0.10",
61
61
  "@feathersjs/hooks": "^0.8.1",
62
- "@types/json-schema": "^7.0.12",
62
+ "@types/json-schema": "^7.0.13",
63
63
  "ajv": "^8.12.0",
64
64
  "ajv-formats": "^2.1.1",
65
- "json-schema-to-ts": "^2.9.1"
65
+ "json-schema-to-ts": "^2.9.2"
66
66
  },
67
67
  "devDependencies": {
68
- "@feathersjs/memory": "^5.0.8",
69
- "@types/mocha": "^10.0.1",
70
- "@types/node": "^20.4.2",
68
+ "@feathersjs/memory": "^5.0.10",
69
+ "@types/mocha": "^10.0.2",
70
+ "@types/node": "^20.8.2",
71
71
  "ajv-formats": "^2.1.1",
72
72
  "mocha": "^10.2.0",
73
73
  "shx": "^0.3.4",
74
- "typescript": "^5.1.6"
74
+ "typescript": "^5.2.2"
75
75
  },
76
- "gitHead": "414336a047a556f1986b4bb253416d5b8a973d9f"
76
+ "peerDependencies": {
77
+ "typescript": ">=4.7"
78
+ },
79
+ "gitHead": "463dedcd35b16e43bc55e04df877ca82ed38dcea"
77
80
  }