@objectql/driver-fs 4.0.3 → 4.0.5

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 +52 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,57 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Patch release 4.0.5 - Bug fixes and stability improvements
8
+ - Updated dependencies
9
+ - @objectql/driver-memory@4.0.5
10
+ - @objectql/types@4.0.5
11
+
12
+ ## 4.0.4
13
+
14
+ ### Patch Changes
15
+
16
+ - **Patch Release v4.0.4**
17
+
18
+ This patch release includes bug fixes, driver improvements, and enhanced test coverage:
19
+
20
+ ### Driver Improvements
21
+ - **MongoDB Driver**: Fixed bulk operations, transaction support, and type safety improvements
22
+ - **FileSystem Driver**: Fixed TCK test compatibility with dataDir parameter
23
+ - **SQL Driver**: Enhanced TCK test compatibility and fixed test failures
24
+ - **Redis Driver**: Improved TCK test configuration and dependencies
25
+ - **Driver Utils**: Added shared utilities package for cross-driver functionality
26
+
27
+ ### Testing & Quality
28
+ - Added comprehensive TCK (Technology Compatibility Kit) compliance tests for all drivers
29
+ - Expanded TCK test suite to 30+ comprehensive tests
30
+ - Enhanced test infrastructure with better error handling
31
+ - Added --passWithNoTests flag for packages without tests
32
+
33
+ ### Type Safety
34
+ - Improved type safety in MongoDB driver update methods
35
+ - Better handling of atomic operators in MongoDB driver
36
+ - Enhanced type definitions across driver layer
37
+
38
+ ### Documentation
39
+ - Added comprehensive driver documentation
40
+ - Enhanced official documentation with Phase 2 implementation summaries
41
+ - Improved protocol layer documentation
42
+
43
+ ### Infrastructure
44
+ - Standardized driver layer implementation
45
+ - Enhanced protocol layer with better abstraction
46
+ - Improved GitHub Actions workflow configurations
47
+ - Better CI/CD pipeline stability
48
+
49
+ This release maintains full backward compatibility with v4.0.3.
50
+
51
+ - Updated dependencies
52
+ - @objectql/driver-memory@4.0.4
53
+ - @objectql/types@4.0.4
54
+
3
55
  ## 4.0.3
4
56
 
5
57
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectql/driver-fs",
3
- "version": "4.0.3",
3
+ "version": "4.0.5",
4
4
  "description": "File system driver for ObjectQL - JSON file-based storage with one file per table",
5
5
  "keywords": [
6
6
  "objectql",
@@ -21,9 +21,9 @@
21
21
  "package.json"
22
22
  ],
23
23
  "dependencies": {
24
- "@objectstack/spec": "^0.8.0",
25
- "@objectql/types": "4.0.3",
26
- "@objectql/driver-memory": "4.0.3"
24
+ "@objectstack/spec": "^0.8.2",
25
+ "@objectql/driver-memory": "4.0.5",
26
+ "@objectql/types": "4.0.5"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/jest": "^29.0.0",