Uh oh!
There was an error while loading. Please reload this page.
feat(console): pass workspace name as production env displayName (IA PR-5) - #2228
Merged
Conversation
…(IA PR-5) Companion to cloud IA PR-5 (naming collapse). CreateWorkspaceDialog now passes the workspace name to provisionProductionEnvironment as displayName, so the born-with-env production environment inherits the workspace name instead of the generic "Production" default. Without this the control plane's per-request path had no name to inherit and fell back to "Production". Pairs with cloud environment-lifecycle (envDisplayName = displayName) and auto-default-environment-plugin (org-name fallback). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The latest updates on your projects. Learn more about Vercel for GitHub. |
Uh oh!
There was an error while loading. Please reload this page.
Contributor
✅ Console Performance Budget
📦 Bundle Size Report
Size Limits
|
os-zhuang pushed a commit
that referenced
this pull request
Jul 4, 2026
…x main) #2228 changed CreateWorkspaceDialog to pass the workspace name through as the production env `displayName`, but left this test asserting only `{ organizationId }` — so it fails on main for every branch that includes the change. Align the assertion with the shipped behavior. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QWcZRYnJXN3YXFTbm3PLg5
os-zhuang added a commit
that referenced
this pull request
Jul 4, 2026
…llow-up) (#2229) Scope the Access pillar's permission-set rail server-side via client.list('permission', { packageId }) so environment-owned platform defaults are excluded by the backend's package_id provenance filter (they were leaking because the metadata list rows don't echo the provenance columns, defeating the prior client-side filter). Removes the unused scopePermissionSetList helper. Also aligns the CreateWorkspaceDialog test with #2228 (workspace name → env displayName), which was red on main. Verified live against an objectstack --fresh showcase backend (rail 6→2 sets, objects 84→20). Addresses #2223 item 1.
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 freeto 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.
Companion to cloud #739 (IA PR-5 naming collapse).
CreateWorkspaceDialognow passes the workspace name toprovisionProductionEnvironmentasdisplayName, so the born-with-env production environment inherits the workspace name instead of the generic"Production"default.Before:
provisionProductionEnvironment({ organizationId })→ the control plane's per-request path had no name to inherit → fell back to"Production". A workspace "李娜的客户管理" ended up with an unrelated environment "Production".After:
provisionProductionEnvironment({ organizationId, displayName: name.trim() })→ env inherits the workspace name.Pairs with cloud
environment-lifecycle(envDisplayName = displayName) andauto-default-environment-plugin(org-name fallback). 6-line change, one file.🤖 Generated with Claude Code