1. 04 Jul, 2026 3 commits
  2. 03 Jul, 2026 16 commits
  3. 02 Jul, 2026 8 commits
  4. 01 Jul, 2026 2 commits
  5. 30 Jun, 2026 4 commits
  6. 29 Jun, 2026 1 commit
  7. 28 Jun, 2026 3 commits
  8. 27 Jun, 2026 3 commits
    • fix(openai): harden Chat-to-Responses compatibility (#5772) · 3a506f50
      Add a shared Responses-to-Chat stream state machine and use it from the OpenAI relay path. Preserve assistant text alongside tool calls, bind tool argument deltas by output_index, map incomplete finish reasons, support reasoning/custom tool events, and buffer upstream SSE for non-stream Chat clients.
      
      Add deterministic service tests and relay SSE tests for the conversion path.
      
      Related to #5745.
      Calcium-Ion committed
    • fix(web): render custom HTML and Markdown content consistently (#5760) · 0b48ad86
      * fix(markdown): render announcement markdown consistently
      
      - support soft line breaks for announcement markdown without changing the default parser behavior.
      - add explicit markdown element styles so lists, tables, code blocks, and quotes render correctly when typography styles are unavailable.
      - apply the announcement markdown mode in both the popover and detail dialog for consistent display.
      
      * refactor(markdown): simplify fallback markdown styles
      
      - remove duplicate typography utility classes now covered by explicit markdown element fallbacks.
      - keep the markdown renderer behavior unchanged while reducing class noise.
      - modernize small helper expressions to satisfy targeted lint checks.
      
      * fix(content): render custom HTML consistently
      
      - add shared rich content rendering so custom HTML and Markdown use the same path across public pages and announcements.
      - reuse common URL and HTML detection instead of duplicating content format checks per page.
      - keep custom home content inside the standard public layout while preserving full-page iframe rendering for external URLs.
      QuentinHsu committed