@zmdb/cockroach 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 +2 -2
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -6,7 +6,7 @@ repository and driver contracts come from `@zmdb/orm`. `cockroachVertical` pairs
6
6
  ## Install
7
7
 
8
8
  ```bash
9
- yarn add @zmdb/cockroach@1.0.0-beta.1 @zmdb/sql@1.0.0-beta.1 @zmdb/migrations@1.0.0-beta.1 pg@^8.23.0
9
+ yarn add @zmdb/cockroach@1.0.0-beta.2 @zmdb/sql@1.0.0-beta.2 @zmdb/migrations@1.0.0-beta.2 pg@^8.23.0
10
10
  ```
11
11
 
12
12
  For the TypeScript snippets, install the declaration inputs used by the packed consumer:
@@ -15,7 +15,7 @@ For the TypeScript snippets, install the declaration inputs used by the packed c
15
15
  yarn add --dev typescript@7.0.2 @types/node@26.4.1 @types/pg@8.23.1
16
16
  ```
17
17
 
18
- Use Node.js 26+ and ESM. Keep the required `@zmdb/sql` and `@zmdb/orm` peers aligned with this package's version; npm resolves those peers. An application already using `zmdb` adds its selected
18
+ Use Node.js 26+ and ESM. Keep the required `@zmdb/sql` and `@zmdb/orm` peers aligned with this package's version; npm resolves those peers. An application already using `@zmdb/core` adds its selected
19
19
  database package and client rather than replacing the product facade.
20
20
 
21
21
  The package installs its PostgreSQL-family parent, not `pg`. Install `pg` explicitly for this recipe; no client or pool is loaded by importing the vertical.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zmdb/cockroach",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.2",
4
4
  "description": "CockroachDB vertical for zmdb: PostgreSQL-family dialect overrides, migrations, catalog introspection, retries, and a pg-protocol driver.",
5
5
  "keywords": [
6
6
  "cockroachdb",
@@ -39,12 +39,12 @@
39
39
  "test": "vitest run"
40
40
  },
41
41
  "dependencies": {
42
- "@zmdb/migrations": "1.0.0-beta.1",
43
- "@zmdb/postgres": "1.0.0-beta.1"
42
+ "@zmdb/migrations": "1.0.0-beta.2",
43
+ "@zmdb/postgres": "1.0.0-beta.2"
44
44
  },
45
45
  "peerDependencies": {
46
- "@zmdb/orm": "1.0.0-beta.1",
47
- "@zmdb/sql": "1.0.0-beta.1"
46
+ "@zmdb/orm": "1.0.0-beta.2",
47
+ "@zmdb/sql": "1.0.0-beta.2"
48
48
  },
49
49
  "engines": {
50
50
  "node": ">=26"