@objectql/driver-fs 4.0.3 → 4.0.4

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