with one click
streamlit-rebase
// Rebase our custom fork of the Streamlit repository onto new upstream Streamlit release
// Rebase our custom fork of the Streamlit repository onto new upstream Streamlit release
Update sharing-editor sample apps from the streamlit/docs repository
Create or update a changeset fragment (.changeset/*.md) reflecting the changes made in the current session or branch. Use this skill whenever the user asks to add a changeset, create a changeset, update a changeset, or says something like "add changeset", "changeset", or "version bump". Also use it proactively when you notice user-facing changes have been made but no changeset exists yet.
| name | streamlit-rebase |
| description | Rebase our custom fork of the Streamlit repository onto new upstream Streamlit release |
| disable-model-invocation | true |
| argument-hint | ["new-version"] |
Rebase the stlite customization branch onto a new upstream Streamlit release.
Navigate to the /streamlit submodule directory
Fetch the latest tags from upstream:
git fetch upstream --tags
Infer the current base branch such as stlite-1.44.0-4.
Our project naming convention is stlite-[upstream-version](-[customization-version])?.
Use this to determine the previous upstream version tag,
and ask me to confirm it before proceeding.
The base Streamlit version tag can be inferred from the current branch name as well.
CURRENT_STLITE_BRANCH="INFERRED_BRANCH_NAME_HERE"
CURRENT_BASE_STREAMLIT_VERSION_TAG="INFERRED_TAG_NAME_HERE"
Assume NEW_BASE_STREAMLIT_VERSION_TAG is the tag name of the new upstream release, e.g., 1.45.0.
NEW_BASE_STREAMLIT_VERSION_TAG=$ARGUMENTS
Determine the new stlite customized branch name, e.g., stlite-1.45.0.
NEW_STLITE_BRANCH=stlite-$ARGUMENTS
Create the new stlite customization branch from the current one:
git checkout -b $NEW_STLITE_BRANCH $CURRENT_STLITE_BRANCH
Rebase onto the new upstream tag:
git rebase --onto $NEW_BASE_STREAMLIT_VERSION_TAG $CURRENT_BASE_STREAMLIT_VERSION_TAG $NEW_STLITE_BRANCH
If conflicts occur:
git status to identify conflicting filesgit add on resolved filesgit rebase --continueRepeat until rebase completes
Verify with git log --oneline that customization commits are on top of the new tag
Self double-check the rebase with two diff comparisons. Both should match except for trivially explainable differences (e.g., files the stlite customization deletes, conflict-resolution overhead in files you manually merged):
a. The diff between $CURRENT_STLITE_BRANCH and $NEW_STLITE_BRANCH should match the diff between $CURRENT_BASE_STREAMLIT_VERSION_TAG and $NEW_BASE_STREAMLIT_VERSION_TAG (upstream delta preserved):
git diff $CURRENT_STLITE_BRANCH..$NEW_STLITE_BRANCH --stat > /tmp/stlite-delta.txt
git diff $CURRENT_BASE_STREAMLIT_VERSION_TAG..$NEW_BASE_STREAMLIT_VERSION_TAG --stat > /tmp/upstream-delta.txt
diff /tmp/stlite-delta.txt /tmp/upstream-delta.txt
b. The diff between $NEW_BASE_STREAMLIT_VERSION_TAG and $NEW_STLITE_BRANCH should match the diff between $CURRENT_BASE_STREAMLIT_VERSION_TAG and $CURRENT_STLITE_BRANCH (customization delta preserved). In particular, the set of customized files should be identical:
git diff $NEW_BASE_STREAMLIT_VERSION_TAG..$NEW_STLITE_BRANCH --name-only | sort > /tmp/files-new.txt
git diff $CURRENT_BASE_STREAMLIT_VERSION_TAG..$CURRENT_STLITE_BRANCH --name-only | sort > /tmp/files-old.txt
diff /tmp/files-old.txt /tmp/files-new.txt # should be empty
Summarize any differences (what file, how many lines, and why it's expected) and show the summary to the user so they can confirm the rebase is clean.
After the rebase, update shared dependency versions in packages/*/package.json to match streamlit/frontend/*/package.json.
For each dependency that appears in both a packages/*/package.json and a streamlit/frontend/*/package.json,
if the version in streamlit/frontend/*/package.json is newer, update the version in packages/*/package.json to match.
Note: @vitejs/plugin-react in packages/* and @vitejs/plugin-react-swc in streamlit/frontend/* are different packages — do not align them.
After updating, run yarn install to regenerate the lockfile.
Alignment policy: follow upstream as long as it works. The dep alignment is best-effort, not strict. Most of stlite's packages have their own build pipelines and don't share a module graph with upstream, so build-tool bumps in particular are landing into different blast radii than upstream's CI saw. Past rebases hit three regressions because of blanket alignment:
make kernel exits non-zero from
packages/react's tsc --noEmit && vite build..yarnrc.yml introduces newer
settings (e.g. npmMinimalAgeGate) that older Yarn rejects. Symptom:
make kernel fails before any TS compiles, on workspace install.@rollup/plugin-commonjs, breaking @stlite/react's bundle in the
browser even though make browser exits clean. Symptom: page-load
Calling \require` for "react" in an environment that doesn't expose
the `require` function`. Only surfaces in a real browser, not in CI.Rule of thumb: build-tool deps (vite, vitest, typescript, the
various vite-plugin-*, and the packageManager Yarn pin) should match
upstream only if the build chain stays green and a manual yarn start
in packages/browser (loaded in a real browser) shows no console errors.
Otherwise, leave them at their current versions in packages/* and
leave a top-level "//" comment in the affected package.json noting
the pin and the follow-up condition for retrying the bump
(see packages/react/package.json for an example).
Runtime/type-shared deps still align unconditionally — anything imported
across the package boundary (e.g. protobufjs because we consume
@streamlit/protobuf, @types/react, @emotion/*).
Verify the rebase produces a working browser bundle, not just clean
builds. CI's make browser only compiles — it doesn't execute. After
the dep alignment in step 12 (especially after any vite, plugin-react,
or @emotion bump), run:
yarn workspace @stlite/browser start
Then load http://localhost:3001/demos/basic-mount/ in a real browser
(or via Playwright MCP) and confirm:
st.write("Hello") shows)If errors surface, narrow the dep bump that caused it and either pin that one dep back or update the alignment skip-list above.