mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-17 21:26:00 +00:00
Merge branch 'stable'
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -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/*",
|
||||||
|
|||||||
@@ -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 = {};
|
||||||
|
|||||||
Reference in New Issue
Block a user