@volontariapp/messaging 2.10.0-snap-8e4f7a0 → 2.10.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,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - README bump
8
+
9
+ - Updated dependencies []:
10
+ - @volontariapp/contracts@4.3.2
11
+ - @volontariapp/shared@0.8.1
12
+
3
13
  ## 2.10.0
4
14
 
5
15
  ### Minor Changes
package/README.md CHANGED
@@ -13,7 +13,7 @@ The **LOB (Local Outbox)** pattern is used to ensure reliable message delivery b
13
13
  3. **Outbox Table**: The `event_queue` (or `jobs_outbox`) table stores the event with its payload (`before`/`after`) and status (`PENDING`).
14
14
  4. **Dispatcher**: A background worker polls the outbox table, sends the message to the broker (RabbitMQ/Kafka), and marks the record as `COMPLETED`.
15
15
 
16
- ### 📦 Package Structure
16
+ ### Package Structure
17
17
 
18
18
  This package centralizes all message definitions to ensure type safety across the monorepo.
19
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volontariapp/messaging",
3
- "version": "2.10.0-snap-8e4f7a0",
3
+ "version": "2.10.1",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -33,11 +33,11 @@
33
33
  "test": "echo \"No tests yet\""
34
34
  },
35
35
  "devDependencies": {
36
- "@volontariapp/testing": "1.0.1",
36
+ "@volontariapp/testing": "1.0.2",
37
37
  "typescript": "5.7.3"
38
38
  },
39
39
  "dependencies": {
40
- "@volontariapp/contracts": "4.3.1",
41
- "@volontariapp/shared": "0.8.0"
40
+ "@volontariapp/contracts": "4.3.2",
41
+ "@volontariapp/shared": "0.8.1"
42
42
  }
43
43
  }