[14/15] Pre-deploy task infrastructure and service-abstractions bump - #167
Open
UnknownJoe796 wants to merge 5 commits into
Open
[14/15] Pre-deploy task infrastructure and service-abstractions bump#167UnknownJoe796 wants to merge 5 commits into
UnknownJoe796 wants to merge 5 commits into
Conversation
UnknownJoe796
force-pushed
the
v53/nonblocking-streaming
branch
from
July 29, 2026 22:54
a5a26e9 to
f71b359
Compare
UnknownJoe796
force-pushed
the
v53/predeploy-tasks
branch
from
July 29, 2026 22:54
33d0632 to
dbffe94
Compare
Migrate to the service-abstractions build that moves file operations onto
PublicFileSystem (ExternalFile/ExternalPath) and redesigns UpdateRestrictions.
No source changes were required: PublicFileSystem stays the real interface name
(so PublicFileSystem.Settings resolves), the file API surface is retained, and
the updateRestrictions {} DSL is unchanged. Full compile + files/media JVM tests
pass (26 and 44 tests, 0 failures).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01CZcMBYJ3cDozwwvftgory7
(cherry picked from commit 596611a)
(cherry picked from commit d094af0)
modelInfo now registers its table on a ServerBuilder, so it needs that context. SyntaxTest registered its user table from a PrincipalType companion, which cannot supply one; that registration moves onto the Server builder. (cherry picked from commit cc1dde2)
A plain ksp() declaration no longer covers test sources after the service-abstractions bump, so the test models generated no DataClassPaths and the test source set stopped compiling. (cherry picked from commit c1409d9)
UnknownJoe796
force-pushed
the
v53/nonblocking-streaming
branch
from
July 30, 2026 02:20
f71b359 to
8423e03
Compare
UnknownJoe796
force-pushed
the
v53/predeploy-tasks
branch
from
July 30, 2026 02:20
dbffe94 to
63b320b
Compare
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.
Introduces
PreDeployTask: work that runs once per deploy, before the serverserves traffic, as distinct from per-instance
StartupTask.Also bumps service-abstractions, which the table work in the next PR needs.
Two fixes here are additions rather than replayed history, both consequences of
that bump: the notifications test helpers need a
ServerBuildercontext nowthat
modelInforegisters its table, andtyped's test source set needs thedatabase processor registered explicitly -- a plain
ksp()declaration no longercovers test sources, so its test models generated no
DataClassPathsand thesource set stopped compiling.