@zmdb/transport-grpc 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 +6 -6
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -6,15 +6,15 @@ application shutdown without parsing `.proto` files at runtime.
6
6
  ## Install
7
7
 
8
8
  ```bash
9
- yarn add @zmdb/app@1.0.0-beta.1 @zmdb/protobuf@1.0.0-beta.1 @zmdb/transport-grpc@1.0.0-beta.1 @grpc/grpc-js@^1.14.4
10
- yarn add @zmdb/validator@1.0.0-beta.1
11
- yarn add --dev @zmdb/compiler@1.0.0-beta.1
9
+ yarn add @zmdb/app@1.0.0-beta.2 @zmdb/protobuf@1.0.0-beta.2 @zmdb/transport-grpc@1.0.0-beta.2 @grpc/grpc-js@^1.14.4
10
+ yarn add @zmdb/validator@1.0.0-beta.2
11
+ yarn add --dev @zmdb/compiler@1.0.0-beta.2
12
12
  ```
13
13
 
14
- > **Prerelease** (`1.0.0-beta.1`). Requires **Node.js 26+** and is **ESM-only**. Ships built ESM `.js` + `.d.ts` under `./dist`.
14
+ > **Prerelease** (`1.0.0-beta.2`). Requires **Node.js 26+** and is **ESM-only**. Ships built ESM `.js` + `.d.ts` under `./dist`.
15
15
 
16
- The sole peer is `@grpc/grpc-js@^1.14.4`. The package is not installed by `yarn add zmdb@1.0.0-beta.1`; `@zmdb/protobuf` supplies the source-level service artifact, `@zmdb/compiler` emits it at build
17
- time, and the generated validators import the `@zmdb/validator` runtime ABI.
16
+ The sole peer is `@grpc/grpc-js@^1.14.4`. The package is not installed by `yarn add @zmdb/core@1.0.0-beta.2`; `@zmdb/protobuf` supplies the source-level service artifact, `@zmdb/compiler` emits it at
17
+ build time, and the generated validators import the `@zmdb/validator` runtime ABI.
18
18
 
19
19
  ## Usage
20
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zmdb/transport-grpc",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.2",
4
4
  "description": "Typed gRPC server and client integration for generated @zmdb/protobuf service artifacts and the @zmdb/app lifecycle.",
5
5
  "keywords": [
6
6
  "grpc",
@@ -38,11 +38,11 @@
38
38
  "test": "vitest run"
39
39
  },
40
40
  "dependencies": {
41
- "@zmdb/protobuf": "1.0.0-beta.1"
41
+ "@zmdb/protobuf": "1.0.0-beta.2"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "@grpc/grpc-js": "^1.14.4",
45
- "@zmdb/app": "1.0.0-beta.1"
45
+ "@zmdb/app": "1.0.0-beta.2"
46
46
  },
47
47
  "engines": {
48
48
  "node": ">=26"