node-cqrs 1.2.0-beta.0 → 1.2.0-beta.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 +25 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,28 @@
1
+ # [1.2.0-beta.1](https://github.com/snatalenko/node-cqrs/compare/v1.1.1...v1.2.0-beta.1) (2026-07-17)
2
+
3
+
4
+
5
+ # [1.2.0-beta.0](https://github.com/snatalenko/node-cqrs/compare/v1.1.0...v1.2.0-beta.0) (2026-06-17)
6
+
7
+
8
+ ### Features
9
+
10
+ * Add sqlite-workers submodule for async SQLite reads ([1987a40](https://github.com/snatalenko/node-cqrs/commit/1987a403fdfd38a57cf4b2c82bc79e88568bc32e))
11
+ * Allow SQLite worker connections to be created with a custom factory ([fb39cf1](https://github.com/snatalenko/node-cqrs/commit/fb39cf1e3be51c279de6571262c360bf057dea28))
12
+
13
+ ### Internal Fixes
14
+
15
+ * Move duplicate worker utils into src/shared/worker-utils/ ([8b3c383](https://github.com/snatalenko/node-cqrs/commit/8b3c383be41edd40fcedfbb663104e4f5d530bcc))
16
+
17
+
18
+ ## [1.1.1](https://github.com/snatalenko/node-cqrs/compare/v1.2.0-beta.0...v1.1.1) (2026-07-17)
19
+
20
+
21
+ ### Fixes
22
+
23
+ * Chained pipelines not preserving FIFO action start order ([ba27d1d](https://github.com/snatalenko/node-cqrs/commit/ba27d1d3be700c69c87e0df6e7385ea784824e63))
24
+
25
+
1
26
  # [1.2.0-beta.0](https://github.com/snatalenko/node-cqrs/compare/v1.1.0...v1.2.0-beta.0) (2026-06-17)
2
27
 
3
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-cqrs",
3
- "version": "1.2.0-beta.0",
3
+ "version": "1.2.0-beta.1",
4
4
  "description": "TypeScript CQRS/Event Sourcing toolkit for Node.js with DI, sagas, projections, and optional Worker, RabbitMQ, and SQLite adapters",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -123,7 +123,7 @@
123
123
  ],
124
124
  "dependencies": {
125
125
  "async-iterable-buffer": "^1.1.0",
126
- "async-parallel-pipe": "^1.0.2",
126
+ "async-parallel-pipe": "^1.0.4",
127
127
  "di0": "^1.3.0"
128
128
  },
129
129
  "devDependencies": {
@@ -135,7 +135,6 @@
135
135
  "@rollup/plugin-node-resolve": "^16.0.3",
136
136
  "@rollup/plugin-terser": "^1.0.0",
137
137
  "@types/amqplib": "^0.10.8",
138
- "ioredis": "^5.0.0",
139
138
  "@types/better-sqlite3": "^7.6.13",
140
139
  "@types/jest": "^29.5.14",
141
140
  "@types/node": "^25.5.0",
@@ -148,6 +147,7 @@
148
147
  "eslint": "^9.39.4",
149
148
  "eslint-plugin-jest": "^28.14.0",
150
149
  "globals": "^17.4.0",
150
+ "ioredis": "^5.0.0",
151
151
  "jest": "^29.7.0",
152
152
  "mongodb": "^6.21.0",
153
153
  "rollup": "^4.59.0",