Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
fa1b27b
fix(mobile): style inline code with the app mono face (#6631)
TolgaCinisli Sep 8, 2026
86c189e
fix(buzz-acp): wake held ACP threads and fence forked sessions (#7340)
salman1993 Sep 8, 2026
cd54e26
fix(agent): route GPT-5+ model-service FQNs to Responses (#7358)
baxen Sep 8, 2026
44316ff
feat(mesh): upgrade to mesh-llm 0.76.0-rc8 and recommend Qwen3.8 27B …
micspiral Sep 8, 2026
218633b
fix(link-preview): keep composer fetches user-paced (#7211)
tellaho Sep 8, 2026
c045321
fix(acp): pace targeted overflow recovery on consumer capacity (#7325)
loganj Sep 8, 2026
93761e4
fix(mobile): render push notification sender identity as npub (#7494)
loganj Sep 9, 2026
bfc3848
fix(desktop): shared npub identity foundation (canonicalNpub, PubKey …
loganj Sep 9, 2026
ad2a841
fix(desktop): npub identity displays for mention, member, and workflo…
loganj Sep 9, 2026
2226b6f
fix(desktop): npub identity controls across profile, agents, and work…
loganj Sep 9, 2026
82656ff
fix(mobile): standardize public-key identity display on npub (#7493)
loganj Sep 9, 2026
ad9591c
fix(desktop): order unnamed roster members by full canonical npub (#7…
loganj Sep 9, 2026
12023a3
fix(desktop): require a Codex adapter with Astra support (#7427)
sbddesign Sep 9, 2026
051c3a2
fix(buzz-acp): report missing models without retrying (#7538)
ngthuydiem Sep 9, 2026
cec5c8f
fix(desktop): let inbox title and message author names truncate under…
cynfria Sep 10, 2026
0020907
fix(relay): reject presence updates when Redis storage fails (#7532)
loganj Sep 10, 2026
092c6a7
fix(markdown): align mention chip wrapping (#7501)
tellaho Sep 10, 2026
813bbd1
fix(acp): integrate the Buzz Pi adapter fork (#7552)
salman1993 Sep 11, 2026
6146c4f
feat(git): add default-branch management to relay and CLI (#7562)
wesbillman Sep 11, 2026
9847b09
test(desktop): isolate login-shell probe measurements (#7570)
wesbillman Sep 11, 2026
f3408fc
fix(desktop): isolate quota backoff and reuse channel discovery roste…
wesbillman Sep 11, 2026
d074576
fix(mobile): bind same-name mentions to exact selected identities (#7…
loganj Sep 11, 2026
ec11f8e
fix(avatars): scale agent squircles from normalized paths (#7307)
tellaho Sep 11, 2026
44c1cc7
feat(buzz-cli): render an agent-friendly command tree in --help (#7584)
salman1993 Sep 11, 2026
9136cd2
[lenny] sync: merge upstream/main (24 commits) into product/main
Sep 11, 2026
0fe7c28
[lenny] fix: drop obsolete pi_launcher block (upstream deleted the mo…
Sep 11, 2026
6573251
[lenny] fix(desktop): drop unused truncatePubkey import left by the m…
mfethe1 Sep 11, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
9 changes: 8 additions & 1 deletion .github/workflows/_ci-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ jobs:
desktop-core:
name: Desktop Core
runs-on: ubuntu-latest
timeout-minutes: 45
# The compiled-flag verification step rebuilds the workspace for each
# BUZZ_BUILD_* state and runs the full suite under all three compile
# states; the complete recipe needs ~46m, so budget 60m.
timeout-minutes: 60
if: github.event_name == 'push' || inputs.desktop || inputs.desktop_rust || inputs.rust
permissions:
contents: read
Expand Down Expand Up @@ -92,6 +95,10 @@ jobs:
run: just desktop-tauri-test
env:
CMAKE_POLICY_VERSION_MINIMUM: "3.5"
- name: Desktop Mesh feature tests
run: cargo test --manifest-path desktop/src-tauri/Cargo.toml --features mesh-llm --lib
env:
CMAKE_POLICY_VERSION_MINIMUM: "3.5"
- name: Desktop Tauri compiled-flag verification
run: just desktop-tauri-test-compiled-flags
env:
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/_ci-relay.yml
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,19 @@ jobs:
VALUES ('00000000-0000-4000-8000-00000000c0de', 'localhost:3000')
ON CONFLICT (lower(host)) DO NOTHING
;"
- name: Git default-branch route and clone regressions
env:
# The preceding step already applied and reconciled schema/schema.sql.
BUZZ_TEST_SCHEMA_MODE: desired
BUZZ_TEST_DATABASE_URL: postgres://buzz:${{ env.BUZZ_TEST_POSTGRES_PASSWORD }}@localhost:5432/buzz
BUZZ_TEST_REDIS_URL: redis://localhost:6379
BUZZ_TEST_S3_ENDPOINT: http://localhost:9000
BUZZ_TEST_S3_BUCKET: buzz-media
run: |
cargo nextest run \
--archive-file target/ci/backend-integration-tests.tar.zst \
-E 'package(buzz-relay) and test(/api::git::settings::tests::external_infra::/)' \
--run-ignored ignored-only
- name: Workflow message provenance unit tests
# The relay's workflow_sink suite is not selected by the infra-free
# unit job. Its ignored database cases run in the isolated PostgreSQL
Expand Down
Loading
Loading