Merge branch 'stable'

This commit is contained in:
Jan Prochazka
2025-12-29 14:12:20 +01:00
3 changed files with 13 additions and 1 deletions

View File

@@ -8,6 +8,9 @@ Builds:
- linux - application for linux - linux - application for linux
- win - application for Windows - win - application for Windows
## 6.8.2
- FIXED: Initialize storage database from envoronment variables failed with PostgreSQL
## 6.8.1 ## 6.8.1
- FIXED: Won't navigate to the relevant field on click of a field in columns #1303 - FIXED: Won't navigate to the relevant field on click of a field in columns #1303

View File

@@ -1,6 +1,6 @@
{ {
"private": true, "private": true,
"version": "6.8.1", "version": "6.8.2",
"name": "dbgate-all", "name": "dbgate-all",
"workspaces": [ "workspaces": [
"packages/*", "packages/*",

View File

@@ -69,6 +69,15 @@ function extractImportEntitiesFromEnv(env) {
conid: crypto.randomUUID(), conid: crypto.randomUUID(),
_id: undefined, _id: undefined,
id: index + 1, // autoincrement id id: index + 1, // autoincrement id
useDatabaseUrl: conn.useDatabaseUrl ? 1 : 0,
isReadOnly: conn.isReadOnly ? 1 : 0,
useSeparateSchemas: conn.useSeparateSchemas ? 1 : 0,
trustServerCertificate: conn.trustServerCertificate ? 1 : 0,
singleDatabase: conn.singleDatabase ? 1 : 0,
useSshTunnel: conn.useSshTunnel ? 1 : 0,
useSsl: conn.useSsl ? 1 : 0,
sslRejectUnauthorized: conn.sslRejectUnauthorized ? 1 : 0,
})); }));
const connectionEnvIdToDbId = {}; const connectionEnvIdToDbId = {};