@zmdb/mysql 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.
- package/README.md +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ driver contracts come from `@zmdb/orm`. `mysqlVertical` pairs this dialect with
|
|
|
6
6
|
## Install
|
|
7
7
|
|
|
8
8
|
```bash
|
|
9
|
-
yarn add @zmdb/mysql@1.0.0-beta.
|
|
9
|
+
yarn add @zmdb/mysql@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
|
|
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 vertical neither imports the SDK nor creates a pool. Applications choose pool options such as charset and
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zmdb/mysql",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.2",
|
|
4
4
|
"description": "Complete MySQL compiler, migrations, introspection, and structural mysql2 driver vertical for zmdb.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"database",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"test": "vitest run"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@zmdb/migrations": "1.0.0-beta.
|
|
42
|
+
"@zmdb/migrations": "1.0.0-beta.2"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@zmdb/orm": "1.0.0-beta.
|
|
46
|
-
"@zmdb/sql": "1.0.0-beta.
|
|
45
|
+
"@zmdb/orm": "1.0.0-beta.2",
|
|
46
|
+
"@zmdb/sql": "1.0.0-beta.2",
|
|
47
47
|
"mysql2": "^3.24.3"
|
|
48
48
|
},
|
|
49
49
|
"peerDependenciesMeta": {
|