@objectql/driver-fs 4.1.0 → 4.2.0
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 +18 -0
- package/package.json +12 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Release v4.2.0
|
|
8
|
+
- Protocol layer: Added GraphQL, JSON-RPC, and OData v4 protocol adapters
|
|
9
|
+
- Drivers: Added Excel, filesystem, and Redis drivers
|
|
10
|
+
- Plugins: Added formula engine, security RBAC, and validator plugins
|
|
11
|
+
- CLI: Added `objectql create` scaffolding tool
|
|
12
|
+
- Core: Performance improvements and strict type enforcement
|
|
13
|
+
- Testing: Added Driver TCK and Protocol TCK conformance suites
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @objectql/types@4.2.0
|
|
19
|
+
- @objectql/driver-memory@4.2.0
|
|
20
|
+
|
|
3
21
|
## 4.0.6
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectql/driver-fs",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "File system driver for ObjectQL - JSON file-based storage with one file per table",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"objectql",
|
|
@@ -14,6 +14,12 @@
|
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"main": "dist/index.js",
|
|
16
16
|
"types": "dist/index.d.ts",
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
20
|
+
"default": "./dist/index.js"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
17
23
|
"files": [
|
|
18
24
|
"dist",
|
|
19
25
|
"README.md",
|
|
@@ -21,14 +27,13 @@
|
|
|
21
27
|
"package.json"
|
|
22
28
|
],
|
|
23
29
|
"dependencies": {
|
|
24
|
-
"@objectstack/spec": "^1.
|
|
25
|
-
"
|
|
26
|
-
"@objectql/driver-memory": "4.
|
|
30
|
+
"@objectstack/spec": "^1.1.0",
|
|
31
|
+
"zod": "^3.24.1",
|
|
32
|
+
"@objectql/driver-memory": "4.2.0",
|
|
33
|
+
"@objectql/types": "4.2.0"
|
|
27
34
|
},
|
|
28
35
|
"devDependencies": {
|
|
29
|
-
"@types/jest": "^29.0.0",
|
|
30
36
|
"@types/node": "^20.0.0",
|
|
31
|
-
"jest": "^29.0.0",
|
|
32
37
|
"typescript": "^5.0.0"
|
|
33
38
|
},
|
|
34
39
|
"repository": {
|
|
@@ -38,6 +43,6 @@
|
|
|
38
43
|
},
|
|
39
44
|
"scripts": {
|
|
40
45
|
"build": "tsc",
|
|
41
|
-
"test": "
|
|
46
|
+
"test": "vitest run"
|
|
42
47
|
}
|
|
43
48
|
}
|