flashorm 2.0.6 → 2.0.8

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 CHANGED
@@ -1,4 +1,4 @@
1
- # FlashORM ORM
1
+ # FlashORM
2
2
 
3
3
  A powerful, database-agnostic migration CLI tool built in Go with multi-database support, visual database editor (FlashORM Studio), and type-safe code generation for JavaScript/TypeScript.
4
4
 
@@ -20,8 +20,10 @@ A powerful, database-agnostic migration CLI tool built in Go with multi-database
20
20
  | Operation | FlashORM | Drizzle | Prisma |
21
21
  |-----------|-------|---------|--------|
22
22
  | Insert 1000 Users | **158ms** | 224ms | 230ms |
23
+ | Insert 10 Cat + 5K Posts + 15K Comments | **2410ms** | 3028ms | 3977ms |
23
24
  | Complex Query x500 | **4071ms** | 12500ms | 56322ms |
24
- | Mixed Workload x1000 | **186ms** | 1174ms | 10863ms |
25
+ | Mixed Workload x1000 (75% read, 25% write) | **186ms** | 1174ms | 10863ms |
26
+ | Stress Test Simple Query x2000 | **122ms** | 160ms | 223ms |
25
27
  | **TOTAL** | **6947ms** | **17149ms** | **71551ms** |
26
28
 
27
29
  ## 🚀 Installation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flashorm",
3
- "version": "2.0.6",
3
+ "version": "2.0.8",
4
4
  "description": "A powerful, database-agnostic migration CLI tool with multi-database support and type-safe code generation",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -4,8 +4,8 @@ const https = require('https');
4
4
  const fs = require('fs');
5
5
  const path = require('path');
6
6
 
7
- const VERSION = '2.0.6';
8
- const REPO = 'Lumos-Labs-HQ/FlashORM';
7
+ const VERSION = '2.0.8';
8
+ const REPO = 'Lumos-Labs-HQ/flash';
9
9
 
10
10
  const platform = process.platform;
11
11
  const arch = process.arch;