feat(service-datasource-admin): open-source the runtime datasource admin mechanism (ADR-0015 Addendum)#1502
Merged
Conversation
feat(studio): AI-draft review/diff mode in the object designer (v1) (#1456) objectui@fdd083657e2da9832059492d4c88e818a5990a8d
…min mechanism (ADR-0015 Addendum) Move the runtime UI-created datasource lifecycle (list/test/create/update/ remove) out of the private cloud repo into the open framework as @objectstack/service-datasource-admin, sitting next to its federation sibling @objectstack/service-external-datasource. This package is mechanism only: credential storage is delegated to a host-provided SecretBinder over any ICryptoProvider (framework default: InMemoryCryptoProvider), and drivers to a swappable factory. The tier line falls on which crypto provider / driver factory a host injects — a neutral technical seam — so a managed credential vault + multi-tenant overlay can be layered on by a private host without forking. Consistent with the connector / outbox / approval tiering principle: charge for credential custody + multi-tenant ops + scale, not for the ability to manage a datasource. - workspace:* deps, Apache-2.0, exports . and ./contracts - serve is NOT wired to mount this by default yet (OSS-edition identity TBD) - 29 tests pass; typecheck + build (incl. dts) clean Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This was referenced Jun 2, 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.
What
Adds
@objectstack/service-datasource-admin— the runtime UI-created datasource lifecycle (list / test-connection / create / update / remove) from ADR-0015 Addendum. Moved wholesale out of the privatecloudrepo into the open framework, next to its federation sibling@objectstack/service-external-datasource.Why open-source
The package is mechanism only — there was no actual paid feature in it. Credential storage is delegated to a host-provided
SecretBinderover anyICryptoProvider(framework default:InMemoryCryptoProvider), and drivers to a swappable factory. The tier line falls on which crypto provider / driver factory a host injects — a neutral technical seam — so a managed credential vault + multi-tenant overlay can be layered on by a private host without forking.This makes the datasource split exactly mirror the connector / outbox / approval tiering principle: charge for credential custody + multi-tenant ops + scale, not for the ability to manage a datasource at all.
Notes
workspace:*deps, Apache-2.0, exports.and./contractsserveis not wired to mount this by default yet (OSS-edition identity is a pending product decision)🤖 Generated with Claude Code