dbnexus 0.1.4 β†’ 0.1.5

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
@@ -11,11 +11,12 @@
11
11
  - πŸ”Œ **Multiple Databases** - PostgreSQL, MySQL, MariaDB, SQLite
12
12
  - πŸ”„ **Schema Sync** - Compare and migrate schemas between databases
13
13
  - πŸ“Š **Data Sync** - Synchronize table data with conflict resolution
14
- - 🎨 **Schema Diagram** - Visual database schema editor
14
+ - πŸ—ΊοΈ **Schema Diagram** - Visual database schema editor with drag-and-drop
15
+ - πŸ”— **FK Navigation** - Click foreign key values to query referenced rows
15
16
  - πŸ“œ **Query History** - Track and replay queries
16
17
  - πŸ”’ **Secure** - Encrypted credentials with AES-256-GCM
17
18
  - πŸ›‘οΈ **Safety First** - Production guardrails for dangerous queries
18
- - πŸ”Ž **Connection Scanning** - Discover databases via local ports, Docker containers, env/compose files, and SQLite files
19
+ - πŸ”Ž **Auto-Discovery** - Scan for databases via ports, Docker, env files
19
20
 
20
21
  ## Installation
21
22
 
@@ -83,17 +84,20 @@ DBNEXUS_DATA_DIR=/custom/path dbnexus
83
84
  - Organize connections into projects and groups
84
85
  - Test connection health
85
86
  - Encrypted credential storage
87
+ - Auto-discover databases via port scanning and Docker
86
88
 
87
89
  ### Query Editor
88
90
 
89
91
  - Execute SQL queries with syntax highlighting
90
92
  - View results in a data grid
91
93
  - Edit data inline
94
+ - **Click FK values to navigate to referenced rows**
92
95
  - Query history and saved queries
93
96
 
94
97
  ### Schema Management
95
98
 
96
99
  - Browse tables, columns, indexes, and foreign keys
100
+ - Visual schema diagram with drag-and-drop
97
101
  - Compare schemas between databases
98
102
  - Generate migration SQL
99
103
  - Apply schema changes
@@ -105,13 +109,6 @@ DBNEXUS_DATA_DIR=/custom/path dbnexus
105
109
  - Bulk data operations
106
110
  - Dump and restore databases
107
111
 
108
- ### Schema Diagram
109
-
110
- - Visual database schema editor
111
- - Drag-and-drop table relationships
112
- - Create and modify tables visually
113
- - Export diagrams
114
-
115
112
  ## Requirements
116
113
 
117
114
  - Node.js 18 or higher
@@ -144,7 +141,6 @@ rm -rf ~/.dbnexus
144
141
 
145
142
  ## Documentation
146
143
 
147
- - [Full Documentation](https://docs.dbnexus.dev)
148
144
  - [GitHub Repository](https://github.com/akademskig/dbnexus)
149
145
  - [Issue Tracker](https://github.com/akademskig/dbnexus/issues)
150
146
 
@@ -158,7 +154,6 @@ MIT Β© DB Nexus Team
158
154
 
159
155
  ## Support
160
156
 
161
- - πŸ“§ Email: <admin@dbnexus.dev>
162
157
  - πŸ› Issues: [GitHub Issues](https://github.com/akademskig/dbnexus/issues)
163
158
  - πŸ’¬ Discussions: [GitHub Discussions](https://github.com/akademskig/dbnexus/discussions)
164
159
 
package/dist/index.js CHANGED
@@ -32,7 +32,7 @@ for (let i = 0; i < args.length; i++) {
32
32
  }
33
33
 
34
34
  if (showVersion) {
35
- console.log('0.1.2');
35
+ console.log('0.1.5');
36
36
  process.exit(0);
37
37
  }
38
38