@objectql/platform-node 1.9.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +84 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,89 @@
1
1
  # @objectql/platform-node
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/core@3.0.1
23
+ - @objectql/types@3.0.1
24
+
25
+ ## 3.0.0
26
+
27
+ ### Major Changes
28
+
29
+ - 38b01f4: **Major Release: Version 2.0.0 - Unified Package Versioning**
30
+
31
+ 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.
32
+
33
+ ### 🎯 Key Changes
34
+
35
+ - **Unified Versioning**: All core packages now share the same version number (2.0.0)
36
+ - **Fixed Group Management**: Updated changeset configuration to include all @objectql packages in the fixed versioning group
37
+ - **Simplified Maintenance**: Future releases will automatically maintain version consistency across the entire monorepo
38
+
39
+ ### 📦 Packages Included
40
+
41
+ All ObjectQL packages are now synchronized at version 2.0.0:
42
+
43
+ - Foundation: `@objectql/types`, `@objectql/core`, `@objectql/platform-node`
44
+ - Drivers: `@objectql/driver-sql`, `@objectql/driver-mongo`, `@objectql/driver-redis`, `@objectql/driver-fs`, `@objectql/driver-memory`, `@objectql/driver-localstorage`, `@objectql/driver-excel`, `@objectql/sdk`
45
+ - Runtime: `@objectql/server`
46
+ - Tools: `@objectql/cli`, `@objectql/create`
47
+
48
+ ### ⚠️ Breaking Changes
49
+
50
+ 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.
51
+
52
+ ### 🔄 Migration
53
+
54
+ Simply update all `@objectql/*` packages to `^2.0.0` in your `package.json`:
55
+
56
+ ```json
57
+ {
58
+ "dependencies": {
59
+ "@objectql/core": "^2.0.0",
60
+ "@objectql/driver-sql": "^2.0.0"
61
+ }
62
+ }
63
+ ```
64
+
65
+ ### 📝 Notes
66
+
67
+ This release establishes a foundation for coordinated major releases across the ObjectQL ecosystem, ensuring compatibility and simplifying dependency management for users.
68
+
69
+ ### Patch Changes
70
+
71
+ - Updated dependencies [38b01f4]
72
+ - @objectql/core@3.0.0
73
+ - @objectql/types@3.0.0
74
+
75
+ ## 1.9.2
76
+
77
+ ### Patch Changes
78
+
79
+ - Release version 1.9.2 with latest improvements and bug fixes
80
+
81
+ This patch release includes stability improvements and bug fixes backported from the development branch.
82
+
83
+ - Updated dependencies
84
+ - @objectql/types@1.9.2
85
+ - @objectql/core@1.9.2
86
+
3
87
  ## 1.9.1
4
88
 
5
89
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectql/platform-node",
3
- "version": "1.9.1",
3
+ "version": "3.0.1",
4
4
  "description": "Node.js platform utilities for ObjectQL - File system integration, YAML loading, and plugin management",
5
5
  "keywords": [
6
6
  "objectql",
@@ -18,8 +18,8 @@
18
18
  "dependencies": {
19
19
  "fast-glob": "^3.3.2",
20
20
  "js-yaml": "^4.1.1",
21
- "@objectql/types": "1.9.1",
22
- "@objectql/core": "1.9.1"
21
+ "@objectql/types": "3.0.1",
22
+ "@objectql/core": "3.0.1"
23
23
  },
24
24
  "devDependencies": {
25
25
  "typescript": "^5.3.0"