metal-orm 1.1.16 → 1.1.19

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 +6 -6
package/README.md CHANGED
@@ -175,7 +175,7 @@ You don’t have to use decorators, but when you do, you’re still on the same
175
175
  <a id="installation"></a>
176
176
  ## Installation 📦
177
177
 
178
- **Requirements:** Node.js ≥ 20.0.0. For TypeScript projects, use TS 5.6+ to get the standard decorators API and typings.
178
+ **Requirements:** Node.js ≥ 22.0.0. For TypeScript projects, use TS 5.6+ to get the standard decorators API and typings.
179
179
 
180
180
  ```bash
181
181
  # npm
@@ -196,7 +196,7 @@ MetalORM compiles SQL; you bring your own driver:
196
196
  | SQLite | `sqlite3` | `npm install sqlite3` |
197
197
  | SQLite | `better-sqlite3` | `npm install better-sqlite3` |
198
198
  | PostgreSQL | `pg` | `npm install pg` |
199
- | SQL Server | `tedious` | `npm install tedious` |
199
+ | SQL Server | `tedious` | `npm install tedious` (Node 22+) |
200
200
 
201
201
  Pick the matching dialect (`MySqlDialect`, `SQLiteDialect`, `PostgresDialect`, `MSSQLDialect`) when compiling queries.
202
202
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "metal-orm",
3
- "version": "1.1.16",
3
+ "version": "1.1.19",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "types": "./dist/index.d.ts",
10
10
  "engines": {
11
- "node": ">=20.0.0"
11
+ "node": ">=22.0.0"
12
12
  },
13
13
  "bin": {
14
14
  "metal-orm-gen": "./scripts/generate-entities.mjs"
@@ -50,7 +50,7 @@
50
50
  "mysql2": "^3.22.5",
51
51
  "pg": "^8.22.0",
52
52
  "sqlite3": "^6.0.1",
53
- "tedious": "^19.2.1"
53
+ "tedious": "^20.0.0"
54
54
  },
55
55
  "peerDependenciesMeta": {
56
56
  "better-sqlite3": {
@@ -77,8 +77,8 @@
77
77
  },
78
78
  "devDependencies": {
79
79
  "@electric-sql/pglite": "^0.5.3",
80
- "@typescript-eslint/eslint-plugin": "^8.62.0",
81
- "@typescript-eslint/parser": "^8.62.0",
80
+ "@typescript-eslint/eslint-plugin": "^8.62.1",
81
+ "@typescript-eslint/parser": "^8.62.1",
82
82
  "@vitest/ui": "^4.1.9",
83
83
  "better-sqlite3": "^12.11.1",
84
84
  "eslint": "^10.6.0",
@@ -91,7 +91,7 @@
91
91
  "pg": "^8.22.0",
92
92
  "sqlite3": "^6.0.1",
93
93
  "supertest": "^7.2.2",
94
- "tedious": "^19.2.1",
94
+ "tedious": "^20.0.0",
95
95
  "tsup": "^8.5.1",
96
96
  "tsx": "^4.22.4",
97
97
  "typescript": "^5.9.3",