@zmdb/singlestore 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`. `singlestoreVertical` pai
6
6
  ## Install
7
7
 
8
8
  ```bash
9
- yarn add @zmdb/singlestore@1.0.0-beta.1 @zmdb/sql@1.0.0-beta.1 @zmdb/migrations@1.0.0-beta.1 mysql2@^3.24.3
9
+ yarn add @zmdb/singlestore@1.0.0-beta.2 @zmdb/sql@1.0.0-beta.2 @zmdb/migrations@1.0.0-beta.2 mysql2@^3.24.3
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
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
  `mysql2` is an optional peer in package metadata; install it explicitly for this recipe. The package depends on its MySQL-family parent and accepts an application-owned client.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zmdb/singlestore",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.2",
4
4
  "description": "SingleStore vertical for zmdb: MySQL-family compilation, storage-aware migrations, catalog introspection, and mysql2 driver binding.",
5
5
  "keywords": [
6
6
  "database",
@@ -39,12 +39,12 @@
39
39
  "test": "vitest run"
40
40
  },
41
41
  "dependencies": {
42
- "@zmdb/migrations": "1.0.0-beta.1",
43
- "@zmdb/mysql": "1.0.0-beta.1"
42
+ "@zmdb/migrations": "1.0.0-beta.2",
43
+ "@zmdb/mysql": "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
  "mysql2": "^3.24.3"
49
49
  },
50
50
  "peerDependenciesMeta": {