@zmdb/mssql 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 +4 -4
package/README.md CHANGED
@@ -6,7 +6,7 @@ and driver contracts come from `@zmdb/orm`. `mssqlVertical` pairs this dialect w
6
6
  ## Install
7
7
 
8
8
  ```bash
9
- yarn add @zmdb/mssql@1.0.0-beta.1 @zmdb/sql@1.0.0-beta.1 @zmdb/migrations@1.0.0-beta.1 mssql@^12.7.0
9
+ yarn add @zmdb/mssql@1.0.0-beta.2 @zmdb/sql@1.0.0-beta.2 @zmdb/migrations@1.0.0-beta.2 mssql@^12.7.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/mssql@12.3.0
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
  `mssql` is an optional peer in package metadata; install it explicitly for this recipe. Importing the vertical does not import the SDK or open a connection. Pass an already-connected pool to
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zmdb/mssql",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.2",
4
4
  "description": "Complete SQL Server vertical for zmdb: T-SQL compilation, migrations, structural node-mssql execution, catalog introspection, and capability metadata.",
5
5
  "keywords": [
6
6
  "database",
@@ -38,11 +38,11 @@
38
38
  "test": "vitest run"
39
39
  },
40
40
  "dependencies": {
41
- "@zmdb/migrations": "1.0.0-beta.1"
41
+ "@zmdb/migrations": "1.0.0-beta.2"
42
42
  },
43
43
  "peerDependencies": {
44
- "@zmdb/orm": "1.0.0-beta.1",
45
- "@zmdb/sql": "1.0.0-beta.1",
44
+ "@zmdb/orm": "1.0.0-beta.2",
45
+ "@zmdb/sql": "1.0.0-beta.2",
46
46
  "mssql": "^12.7.0"
47
47
  },
48
48
  "peerDependenciesMeta": {