Commit 6dc1750
committed
chore: refresh the vendored console to 2cb8d78e24ad + fix the refresh bump type (#3528)
`@objectstack/console` ships a PREBUILT objectui SPA pinned by `.objectui-sha`,
so a merged objectui fix is not live for anyone until that pin moves — the
release pipeline clones objectui at the pin, builds it, and publishes the dist
alongside the framework. The screen-flow fixes for #3528 landed in objectui
(#2830, #2833) and were stranded there. This bumps the pin from cf2d56e32a11 to
2cb8d78e24ad so they ship, along with everything else merged frontend-side
since the last refresh.
Also fixes the bump-type detection in scripts/bump-objectui.sh, which decides
whether a refresh is a minor or a patch. It tested the range with
`git log --format=%s A..B | grep -qiE '^feat'`, but under `set -o pipefail`
`grep -q` exits on the first match and the still-writing `git log` takes
SIGPIPE, so the pipeline returned 141 and the test ALWAYS fell to the else
branch. Every refresh was silently stamped `patch`, feature ranges included —
this range has 20+ `feat` commits and was about to be stamped `patch` too.
Counting with `grep -c` drains the input, so there is no signal and the count
is truthful.
Verified: with the fix the same invocation now writes
`"@objectstack/console": minor`. `check:console-sha` passes (no dist in this
checkout — nothing to drift against); the pinned commit is objectui `main`,
which its own CI builds on every PR.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01LX9ut3MK3KykE11S9bJmv51 parent 0cdb57a commit 6dc1750
3 files changed
Lines changed: 55 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
92 | 92 | | |
93 | 93 | | |
94 | 94 | | |
95 | | - | |
96 | | - | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
97 | 105 | | |
98 | 106 | | |
99 | 107 | | |
| |||
0 commit comments