Dev#404
Merged
Merged
Conversation
Mestway
approved these changes
Jul 23, 2026
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Mestway
approved these changes
Jul 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several improvements to the connector management experience, focusing on making advanced connection parameters less prominent, automating display name generation for connectors, and adding an API endpoint for renaming user connectors. The UI no longer prompts users for a connection name during creation; instead, a display name is auto-generated from key parameters, and users can rename connectors later if desired. Additionally, backend and API changes support these new behaviors.
Connector display name automation and API enhancements:
Auto-generation of connector display names: The UI now derives a connector's display name automatically based on key connection parameters (e.g., host, database, project_id) using the new
deriveConnectorDisplayNamefunction inconnectorNames.ts. Users are no longer prompted for a connection name during creation. [1] [2] [3] [4] [5] [6] [7] [8] [9]Backend support for renaming connectors: A new PATCH API endpoint (
/api/connectors/<connector_id>) allows users to rename their connectors after creation, with validation and admin protections. [1] [2]Parameter UI improvements:
port,endpoint,workgroup,output_location,location,query_timeout) are now marked as"advanced": truein their parameter definitions. This allows the UI to hide these fields by default, reducing clutter for most users. [1] [2] [3] [4] [5] [6] [7] [8] [9]API and type updates:
type_nameanddisplay_namefor connectors, and the frontendConnectorInstancetype reflects this. [1] [2]These changes streamline the connector creation workflow, reduce user friction, and improve the clarity and management of connector display names.