@objectql/driver-fs 0.1.0 → 0.1.1
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 +11 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Release version bump with latest improvements and bug fixes
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @objectql/types@1.9.1
|
|
10
|
+
|
|
3
11
|
All notable changes to the @objectql/driver-fs package will be documented in this file.
|
|
4
12
|
|
|
5
13
|
## [0.1.1] - 2024-01-16
|
|
6
14
|
|
|
7
15
|
### Added
|
|
16
|
+
|
|
8
17
|
- `initialData` configuration option to pre-populate data on initialization
|
|
9
18
|
- `clear(objectName)` method to clear all data for a specific object
|
|
10
19
|
- `clearAll()` method to clear all data from all objects
|
|
@@ -15,6 +24,7 @@ All notable changes to the @objectql/driver-fs package will be documented in thi
|
|
|
15
24
|
- Support for empty JSON files
|
|
16
25
|
|
|
17
26
|
### Improved
|
|
27
|
+
|
|
18
28
|
- Enhanced JSON parse error messages with more detailed information
|
|
19
29
|
- Better documentation with examples for all new features
|
|
20
30
|
- Added 7 new test cases (total: 36 tests)
|
|
@@ -23,6 +33,7 @@ All notable changes to the @objectql/driver-fs package will be documented in thi
|
|
|
23
33
|
## [0.1.0] - 2024-01-16
|
|
24
34
|
|
|
25
35
|
### Added
|
|
36
|
+
|
|
26
37
|
- Initial release of FileSystem Driver for ObjectQL
|
|
27
38
|
- One JSON file per table/object type
|
|
28
39
|
- Atomic write operations with temp file + rename strategy
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectql/driver-fs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "File system driver for ObjectQL - JSON file-based storage with one file per table",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"objectql",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"package.json"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@objectql/types": "1.9.
|
|
24
|
+
"@objectql/types": "1.9.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/jest": "^29.0.0",
|