@zmdb/app 1.0.0-beta.1 → 1.0.0-beta.2

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/README.md +3 -3
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -3,13 +3,13 @@
3
3
  The protocol-neutral application kernel for zmdb. It owns Stage-3 metadata, dependency injection, modules, lifecycle, transport-neutral messaging, command applications, events, CQRS, state machines,
4
4
  health contracts, and dependency-free observability ports.
5
5
 
6
- For the cohesive server product, install `zmdb` and use `zmdb/app` for application concerns. The [server journey](https://ambasta.github.io/zmdb/docs/web-overview.html) combines HTTP and selected jobs
7
- under this lifecycle.
6
+ For the cohesive server product, install `@zmdb/core` and use `@zmdb/core/app` for application concerns. The [server journey](https://ambasta.github.io/zmdb/docs/web-overview.html) combines HTTP and
7
+ selected jobs under this lifecycle.
8
8
 
9
9
  ## Advanced: install the kernel alone
10
10
 
11
11
  ```bash
12
- yarn add @zmdb/app@1.0.0-beta.1
12
+ yarn add @zmdb/app@1.0.0-beta.2
13
13
  ```
14
14
 
15
15
  The package is ESM-only and requires Node.js 26 or later.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zmdb/app",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.2",
4
4
  "description": "Protocol-neutral application kernel for zmdb: Stage-3 metadata, dependency injection, modules, lifecycle, messaging, commands, events, CQRS, state, health, and observability.",
5
5
  "keywords": [
6
6
  "application-framework",
@@ -86,10 +86,10 @@
86
86
  "test": "vitest run"
87
87
  },
88
88
  "dependencies": {
89
- "@zmdb/orm": "1.0.0-beta.1",
90
- "@zmdb/schema": "1.0.0-beta.1",
91
- "@zmdb/sql": "1.0.0-beta.1",
92
- "@zmdb/validator": "1.0.0-beta.1"
89
+ "@zmdb/orm": "1.0.0-beta.2",
90
+ "@zmdb/schema": "1.0.0-beta.2",
91
+ "@zmdb/sql": "1.0.0-beta.2",
92
+ "@zmdb/validator": "1.0.0-beta.2"
93
93
  },
94
94
  "engines": {
95
95
  "node": ">=26"