v0.1.0 — Initial MVP Release#6
Merged
Merged
Conversation
- Seed data: dynamically discover plugins from plugin.json instead of hardcoding 70+ lines of plugin metadata (names, routes, icons, order) - PluginManifest types: add RuntimePlugin to @naap/types for the API/DB shape; replace 5 local PluginManifest copies with canonical imports - User/AuthUser types: add canonical AuthUser and User to @naap/types; replace 5 local copies, delete deprecated LegacyShellUser - Port duplication: all 11 plugin backends now read devPort from plugin.json instead of hardcoding fallback ports - Add DeepPartial<T> utility type for validation/provisioning functions Verified: prisma seed exits 0, all 11 plugins return bundleUrl via API, login returns token, shell loads HTTP 200, tsc --noEmit passes on packages/types, apps/web-next, and services/base-svc. Co-authored-by: Cursor <cursoragent@cursor.com>
Comprehensive release notes covering platform features, 11 plugins, core services, plugin SDK, development process, and architecture. Co-authored-by: Cursor <cursoragent@cursor.com>
Contributor
|
@seanhanca is attempting to deploy a commit to the Livepeer Foundation Team on Vercel. A member of the Team first needs to authorize it. |
| .filter(dir => fs.existsSync(path.join(pluginsDir, dir, 'plugin.json'))) | ||
| .map(dir => { | ||
| const manifest = JSON.parse( | ||
| fs.readFileSync(path.join(pluginsDir, dir, 'plugin.json'), 'utf8') |
Contributor
Comment on lines
+11
to
+14
| email: string | null; | ||
| displayName: string | null; | ||
| avatarUrl: string | null; | ||
| address: string | null; |
Contributor
There was a problem hiding this comment.
Suggested change
| email: string | null; | |
| displayName: string | null; | |
| avatarUrl: string | null; | |
| address: string | null; | |
| email?: string | null; | |
| displayName?: string | null; | |
| avatarUrl?: string | null; | |
| address?: string | null; |
AuthUser fields (email, displayName, avatarUrl, address) are marked as required with null value instead of optional, breaking code that handles undefined fields
This was referenced Feb 27, 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.
v0.1.0 — Initial MVP Release
Changes
seed.tswithdiscoverPlugins()that reads fromplugins/*/plugin.jsonat seed timeRuntimePlugininterface to@naap/typesfor API/DB shape; replaced 5 localPluginManifestcopies with canonical importsAuthUserandUsertypes to@naap/types; replaced 5 local copies across the codebase; deleted deprecatedLegacyShellUserdevPortfromplugin.jsoninstead of hardcoding fallback portsDeepPartial<T>utility type for validation/provisioning function signaturesRELEASE_NOTES_v0.1.0.mdcovering platform features, plugins, SDK, development process, and architectureVerification
prisma seedexits 0 with dynamic plugin discovery (11 plugins fromplugin.json)bundleUrlvia/api/v1/base/plugins/personalizedadmin@livepeer.orgtsc --noEmitpasses onpackages/types,apps/web-next,services/base-svcstart.sh stop --all && start.sh start --allcycle: all 11 backends pass deep health checksTag
v0.1.0tagged on this commit. SeeRELEASE_NOTES_v0.1.0.mdfor the full release notes.Made with Cursor