Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r8gYU-00B9PK-4a for pgadmin-hackers@arkaria.postgresql.org; Thu, 30 Nov 2023 12:54:10 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1r8gYS-00HPea-MM for pgadmin-hackers@arkaria.postgresql.org; Thu, 30 Nov 2023 12:54:08 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r8gYS-00HPeS-D0 for pgadmin-hackers@lists.postgresql.org; Thu, 30 Nov 2023 12:54:08 +0000 Received: from out-21.smtp.github.com ([192.30.252.204]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r8gYP-0086dP-JJ for pgadmin-hackers@lists.postgresql.org; Thu, 30 Nov 2023 12:54:06 +0000 Received: from github.com (hubbernetes-node-d946df8.ac4-iad.github.net [10.52.125.37]) by smtp.github.com (Postfix) with ESMTPA id CC0B3700BFF for ; Thu, 30 Nov 2023 04:54:04 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2023; t=1701348844; bh=pAlv7FnTsr21Q1fm2SJbdKaUVubKosnIZ6iHTXpP45w=; h=Date:From:To:Subject:From; b=ep6b1K3sNts0Y6sGEr0wWuOHE/iHws+uLrAM0zOt0ACx0USGvYmdl7EHC2o9KXsGO NtexUSrxaJAvnpC8j5zmp4NchjxEtuoAoYvRs/4vVLeZGVvFx4x+X5S3lMLPLLbqSF r7fEB8hYsj4OlkFIfSSZzx0JMm4Nq5dVgBhKEOBc= Date: Thu, 30 Nov 2023 04:54:04 -0800 From: Anil Sahoo To: pgadmin-hackers@lists.postgresql.org Message-ID: Subject: [pgadmin-org/pgadmin4] f2876c: 1. Fixed an issue where database name was missing ... Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-GitHub-Recipient-Address: pgadmin-hackers@lists.postgresql.org X-Auto-Response-Suppress: All List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Branch: refs/heads/master Home: https://github.com/pgadmin-org/pgadmin4 Commit: f2876cabe8bc701db76987e32bd569b4bd3cba1c https://github.com/pgadmin-org/pgadmin4/commit/f2876cabe8bc701db76987e32bd569b4bd3cba1c Author: Anil Sahoo Date: 2023-11-30 (Thu, 30 Nov 2023) Changed paths: M web/pgadmin/browser/server_groups/servers/databases/__init__.py A web/pgadmin/tools/sqleditor/static/js/components/dialogs/CloseRunningDialog.jsx M web/pgadmin/tools/sqleditor/static/js/components/sections/MainToolBar.jsx Log Message: ----------- 1. Fixed an issue where database name was missing in an error message if name contains any special characters. #6488 2. Add a confirmation dialog before closing a query tool when a query is already running.