[PR #245] [MERGED] fix(core-connections): CB-595 add index to connection name in case of… #1554

Closed
opened 2026-03-07 21:04:34 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/dbeaver/cloudbeaver/pull/245
Author: @devnaumov
Created: 12/16/2020
Status: Merged
Merged: 12/21/2020
Merged by: @Wroud

Base: develHead: fix/avoid-same-connection-names


📝 Commits (10+)

  • 22453fd fix(core-connections): CB-595 add index to connection name in case of duplicate names
  • 040a5af fix(core-connections): CB-595 add autofill for connection name(public)
  • 8883d7a fix(core-connections): CB-595 add autofill for connection name(public)
  • a79dc66 fix(core-connections): CB-595 code style fixes
  • e17f0e9 fix(core-connections): CB-595 add url autofill support
  • 93a2e8b fix(core-connections): CB-595 update autofill regex logic
  • 036730a fix(core-connections): CB-595 moved onChange logic to
  • 21328a8 fix(core-connections): CB-595 changed regex to match host.com
  • 9a9a462 fix(core-connections): CB-595 remove regex name template check
  • d0a862a fix(core-connections): CB-595 changed prevParameters to prevGeneratedName

📊 Changes

10 files changed (+202 additions, -77 deletions)

View changed files

📝 webapp/packages/core-connections/src/Administration/Connections/ConnectionForm/ConnectionFormController.ts (+57 -3)
📝 webapp/packages/core-connections/src/Administration/Connections/ConnectionForm/Options/OptionsController.ts (+29 -27)
📝 webapp/packages/core-connections/src/locales/en.ts (+2 -0)
📝 webapp/packages/core-connections/src/locales/ru.ts (+2 -0)
📝 webapp/packages/plugin-connection-custom/src/CustomConnection/ConnectionFormDialog/ConnectionForm/ConnectionForm.tsx (+13 -3)
📝 webapp/packages/plugin-connection-custom/src/CustomConnection/ConnectionFormDialog/ConnectionForm/IFormController.ts (+1 -1)
📝 webapp/packages/plugin-connection-custom/src/CustomConnection/ConnectionFormDialog/ConnectionForm/ParametersForm.tsx (+3 -6)
📝 webapp/packages/plugin-connection-custom/src/CustomConnection/ConnectionFormDialog/ConnectionFormDialogController.ts (+91 -37)
📝 webapp/packages/plugin-connection-custom/src/locales/en.ts (+2 -0)
📝 webapp/packages/plugin-connection-custom/src/locales/ru.ts (+2 -0)

📄 Description

… duplicate names


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/dbeaver/cloudbeaver/pull/245 **Author:** [@devnaumov](https://github.com/devnaumov) **Created:** 12/16/2020 **Status:** ✅ Merged **Merged:** 12/21/2020 **Merged by:** [@Wroud](https://github.com/Wroud) **Base:** `devel` ← **Head:** `fix/avoid-same-connection-names` --- ### 📝 Commits (10+) - [`22453fd`](https://github.com/dbeaver/cloudbeaver/commit/22453fd4711390cd9a1ffad28ac6beae7f6bc853) fix(core-connections): CB-595 add index to connection name in case of duplicate names - [`040a5af`](https://github.com/dbeaver/cloudbeaver/commit/040a5af667f8bd8ddde57d743b5458ef6f74dc2e) fix(core-connections): CB-595 add autofill for connection name(public) - [`8883d7a`](https://github.com/dbeaver/cloudbeaver/commit/8883d7a6101716241056e67fa1ad5388c588f43b) fix(core-connections): CB-595 add autofill for connection name(public) - [`a79dc66`](https://github.com/dbeaver/cloudbeaver/commit/a79dc66c7d4d6d8a4216bef1021b48b2c9025fef) fix(core-connections): CB-595 code style fixes - [`e17f0e9`](https://github.com/dbeaver/cloudbeaver/commit/e17f0e97e5f7325e44bb1d4c7d29d39e71e9a9e3) fix(core-connections): CB-595 add url autofill support - [`93a2e8b`](https://github.com/dbeaver/cloudbeaver/commit/93a2e8b512b14d47d10dd7ff3c12dd816d8160c4) fix(core-connections): CB-595 update autofill regex logic - [`036730a`](https://github.com/dbeaver/cloudbeaver/commit/036730acabef017b47e6d3da5c8d66e87041d693) fix(core-connections): CB-595 moved onChange logic to <SubmittingForm/> - [`21328a8`](https://github.com/dbeaver/cloudbeaver/commit/21328a84b25380aa7be339ded1f1ef8b7f8e3582) fix(core-connections): CB-595 changed regex to match host.com - [`9a9a462`](https://github.com/dbeaver/cloudbeaver/commit/9a9a462a908c6ec0a7156a68d0016330b77bec06) fix(core-connections): CB-595 remove regex name template check - [`d0a862a`](https://github.com/dbeaver/cloudbeaver/commit/d0a862a635371e1f561e3234a6a4ddfa4e4efb4c) fix(core-connections): CB-595 changed prevParameters to prevGeneratedName ### 📊 Changes **10 files changed** (+202 additions, -77 deletions) <details> <summary>View changed files</summary> 📝 `webapp/packages/core-connections/src/Administration/Connections/ConnectionForm/ConnectionFormController.ts` (+57 -3) 📝 `webapp/packages/core-connections/src/Administration/Connections/ConnectionForm/Options/OptionsController.ts` (+29 -27) 📝 `webapp/packages/core-connections/src/locales/en.ts` (+2 -0) 📝 `webapp/packages/core-connections/src/locales/ru.ts` (+2 -0) 📝 `webapp/packages/plugin-connection-custom/src/CustomConnection/ConnectionFormDialog/ConnectionForm/ConnectionForm.tsx` (+13 -3) 📝 `webapp/packages/plugin-connection-custom/src/CustomConnection/ConnectionFormDialog/ConnectionForm/IFormController.ts` (+1 -1) 📝 `webapp/packages/plugin-connection-custom/src/CustomConnection/ConnectionFormDialog/ConnectionForm/ParametersForm.tsx` (+3 -6) 📝 `webapp/packages/plugin-connection-custom/src/CustomConnection/ConnectionFormDialog/ConnectionFormDialogController.ts` (+91 -37) 📝 `webapp/packages/plugin-connection-custom/src/locales/en.ts` (+2 -0) 📝 `webapp/packages/plugin-connection-custom/src/locales/ru.ts` (+2 -0) </details> ### 📄 Description … duplicate names --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-07 21:04:34 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/cloudbeaver#1554
No description provided.