@objectql/driver-fs 0.1.0 → 3.0.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 +60 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,68 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 3.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 38b01f4: **Major Release: Version 2.0.0 - Unified Package Versioning**
|
|
8
|
+
|
|
9
|
+
This is a coordinated major release that unifies all ObjectQL packages to version 2.0.0, establishing a synchronized versioning strategy across the entire ecosystem.
|
|
10
|
+
|
|
11
|
+
### 🎯 Key Changes
|
|
12
|
+
|
|
13
|
+
- **Unified Versioning**: All core packages now share the same version number (2.0.0)
|
|
14
|
+
- **Fixed Group Management**: Updated changeset configuration to include all @objectql packages in the fixed versioning group
|
|
15
|
+
- **Simplified Maintenance**: Future releases will automatically maintain version consistency across the entire monorepo
|
|
16
|
+
|
|
17
|
+
### 📦 Packages Included
|
|
18
|
+
|
|
19
|
+
All ObjectQL packages are now synchronized at version 2.0.0:
|
|
20
|
+
|
|
21
|
+
- Foundation: `@objectql/types`, `@objectql/core`, `@objectql/platform-node`
|
|
22
|
+
- Drivers: `@objectql/driver-sql`, `@objectql/driver-mongo`, `@objectql/driver-redis`, `@objectql/driver-fs`, `@objectql/driver-memory`, `@objectql/driver-localstorage`, `@objectql/driver-excel`, `@objectql/sdk`
|
|
23
|
+
- Runtime: `@objectql/server`
|
|
24
|
+
- Tools: `@objectql/cli`, `@objectql/create`
|
|
25
|
+
|
|
26
|
+
### ⚠️ Breaking Changes
|
|
27
|
+
|
|
28
|
+
This is marked as a major version due to the version number change. The API remains stable and backward compatible. No code changes are required when upgrading.
|
|
29
|
+
|
|
30
|
+
### 🔄 Migration
|
|
31
|
+
|
|
32
|
+
Simply update all `@objectql/*` packages to `^2.0.0` in your `package.json`:
|
|
33
|
+
|
|
34
|
+
```json
|
|
35
|
+
{
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@objectql/core": "^2.0.0",
|
|
38
|
+
"@objectql/driver-sql": "^2.0.0"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### 📝 Notes
|
|
44
|
+
|
|
45
|
+
This release establishes a foundation for coordinated major releases across the ObjectQL ecosystem, ensuring compatibility and simplifying dependency management for users.
|
|
46
|
+
|
|
47
|
+
### Patch Changes
|
|
48
|
+
|
|
49
|
+
- Updated dependencies [38b01f4]
|
|
50
|
+
- @objectql/types@3.0.0
|
|
51
|
+
|
|
52
|
+
## 0.1.1
|
|
53
|
+
|
|
54
|
+
### Patch Changes
|
|
55
|
+
|
|
56
|
+
- Release version bump with latest improvements and bug fixes
|
|
57
|
+
- Updated dependencies
|
|
58
|
+
- @objectql/types@1.9.1
|
|
59
|
+
|
|
3
60
|
All notable changes to the @objectql/driver-fs package will be documented in this file.
|
|
4
61
|
|
|
5
62
|
## [0.1.1] - 2024-01-16
|
|
6
63
|
|
|
7
64
|
### Added
|
|
65
|
+
|
|
8
66
|
- `initialData` configuration option to pre-populate data on initialization
|
|
9
67
|
- `clear(objectName)` method to clear all data for a specific object
|
|
10
68
|
- `clearAll()` method to clear all data from all objects
|
|
@@ -15,6 +73,7 @@ All notable changes to the @objectql/driver-fs package will be documented in thi
|
|
|
15
73
|
- Support for empty JSON files
|
|
16
74
|
|
|
17
75
|
### Improved
|
|
76
|
+
|
|
18
77
|
- Enhanced JSON parse error messages with more detailed information
|
|
19
78
|
- Better documentation with examples for all new features
|
|
20
79
|
- Added 7 new test cases (total: 36 tests)
|
|
@@ -23,6 +82,7 @@ All notable changes to the @objectql/driver-fs package will be documented in thi
|
|
|
23
82
|
## [0.1.0] - 2024-01-16
|
|
24
83
|
|
|
25
84
|
### Added
|
|
85
|
+
|
|
26
86
|
- Initial release of FileSystem Driver for ObjectQL
|
|
27
87
|
- One JSON file per table/object type
|
|
28
88
|
- 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.
|
|
3
|
+
"version": "3.0.0",
|
|
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": "
|
|
24
|
+
"@objectql/types": "3.0.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/jest": "^29.0.0",
|