@objectql/driver-excel 0.2.1 → 3.0.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 CHANGED
@@ -1,5 +1,86 @@
1
1
  # @objectql/driver-excel
2
2
 
3
+ ## 3.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 79d04e1: Patch release for January 2026 updates
8
+
9
+ This patch includes minor improvements and maintenance updates:
10
+
11
+ - Enhanced type safety across core packages
12
+ - Improved error handling in drivers
13
+ - Documentation updates
14
+ - Performance optimizations
15
+
16
+ - faeef39: Release version 1.9.2 with latest improvements and bug fixes
17
+
18
+ This patch release includes stability improvements and bug fixes backported from the development branch.
19
+
20
+ - Updated dependencies [79d04e1]
21
+ - Updated dependencies [faeef39]
22
+ - @objectql/types@3.0.1
23
+
24
+ ## 3.0.0
25
+
26
+ ### Major Changes
27
+
28
+ - 38b01f4: **Major Release: Version 2.0.0 - Unified Package Versioning**
29
+
30
+ 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.
31
+
32
+ ### 🎯 Key Changes
33
+
34
+ - **Unified Versioning**: All core packages now share the same version number (2.0.0)
35
+ - **Fixed Group Management**: Updated changeset configuration to include all @objectql packages in the fixed versioning group
36
+ - **Simplified Maintenance**: Future releases will automatically maintain version consistency across the entire monorepo
37
+
38
+ ### 📦 Packages Included
39
+
40
+ All ObjectQL packages are now synchronized at version 2.0.0:
41
+
42
+ - Foundation: `@objectql/types`, `@objectql/core`, `@objectql/platform-node`
43
+ - Drivers: `@objectql/driver-sql`, `@objectql/driver-mongo`, `@objectql/driver-redis`, `@objectql/driver-fs`, `@objectql/driver-memory`, `@objectql/driver-localstorage`, `@objectql/driver-excel`, `@objectql/sdk`
44
+ - Runtime: `@objectql/server`
45
+ - Tools: `@objectql/cli`, `@objectql/create`
46
+
47
+ ### ⚠️ Breaking Changes
48
+
49
+ 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.
50
+
51
+ ### 🔄 Migration
52
+
53
+ Simply update all `@objectql/*` packages to `^2.0.0` in your `package.json`:
54
+
55
+ ```json
56
+ {
57
+ "dependencies": {
58
+ "@objectql/core": "^2.0.0",
59
+ "@objectql/driver-sql": "^2.0.0"
60
+ }
61
+ }
62
+ ```
63
+
64
+ ### 📝 Notes
65
+
66
+ This release establishes a foundation for coordinated major releases across the ObjectQL ecosystem, ensuring compatibility and simplifying dependency management for users.
67
+
68
+ ### Patch Changes
69
+
70
+ - Updated dependencies [38b01f4]
71
+ - @objectql/types@3.0.0
72
+
73
+ ## 1.9.2
74
+
75
+ ### Patch Changes
76
+
77
+ - Release version 1.9.2 with latest improvements and bug fixes
78
+
79
+ This patch release includes stability improvements and bug fixes backported from the development branch.
80
+
81
+ - Updated dependencies
82
+ - @objectql/types@1.9.2
83
+
3
84
  ## 0.2.1
4
85
 
5
86
  ### Patch Changes
package/EXAMPLE.md CHANGED
@@ -193,6 +193,6 @@ The Excel file will look like this:
193
193
 
194
194
  ## Next Steps
195
195
 
196
- - Explore the [full API documentation](../README.md)
197
- - Check out other drivers: [SQL](../../sql), [MongoDB](../../mongo), [Memory](../../memory)
196
+ - Explore the [full API documentation](./README.md)
197
+ - Check out other drivers: [SQL](../sql), [MongoDB](../mongo), [Memory](../memory)
198
198
  - Learn about [ObjectQL](../../../README.md)
package/README.md CHANGED
@@ -630,15 +630,15 @@ MIT
630
630
 
631
631
  ## 🔗 Related Packages
632
632
 
633
- - [@objectql/types](../foundation/types) - Core ObjectQL types
634
- - [@objectql/core](../foundation/core) - ObjectQL core engine
633
+ - [@objectql/types](../../foundation/types) - Core ObjectQL types
634
+ - [@objectql/core](../../foundation/core) - ObjectQL core engine
635
635
  - [@objectql/driver-memory](../memory) - In-memory driver
636
636
  - [@objectql/driver-sql](../sql) - SQL database driver
637
637
  - [@objectql/driver-mongo](../mongo) - MongoDB driver
638
638
 
639
639
  ## 🙏 Contributing
640
640
 
641
- Contributions are welcome! Please read our [Contributing Guide](../../CONTRIBUTING.md) for details.
641
+ Contributions are welcome! Please see the repository's issue tracker and pull request guidelines.
642
642
 
643
643
  ## 🐛 Issues
644
644
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectql/driver-excel",
3
- "version": "0.2.1",
3
+ "version": "3.0.1",
4
4
  "description": "Excel file driver for ObjectQL - Read/write data from Excel files (.xlsx) with flexible storage modes",
5
5
  "keywords": [
6
6
  "objectql",
@@ -17,7 +17,7 @@
17
17
  "types": "dist/index.d.ts",
18
18
  "dependencies": {
19
19
  "exceljs": "^4.4.0",
20
- "@objectql/types": "1.9.1"
20
+ "@objectql/types": "3.0.1"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/jest": "^29.0.0",