1. 19 4月, 2026 1 次提交
    • Mohamed Aziz Mejri's avatar
      Neon integration (#3178) · 661e1438
      Mohamed Aziz Mejri 提交于
      ### Context for review bots :
      
      1.The agent can execute sql commands directly on production , this is
      fine because they user may choose to start with a simple setup first and
      use the production database directly (in a follow up PR we should give
      the users the ability to sync dev branch to match production branch).The
      user also has the possiblity to revert database changes .
      2.Right now there’s no warning for destructive changes before migration
      , this is fine for now as we're gonna add a follow up PR for this
      3.When linking an existing neon project that doesnt have a developement
      database , we're setting the default branch as the active branch . This
      is fine because the user may prefer to start a simple setup at the
      beginning and work directly on the production database , in addition
      since the project was created outside dyad it may have a developement
      branch named differently so it wouldnt be wise to auto create one here .
      However, in a follow up PR we should allow the user to manually create
      branches and sync dev branch to match production .
      4.neon is only available for next.js now
      5.We dont have enough tests for now, i am gonna add a follow-up PR to
      cover this
      <!-- devin-review-badge-begin -->
      
      ---
      
      <a href="https://app.devin.ai/review/dyad-sh/dyad/pull/3178"
      target="_blank">
        <picture>
      <source media="(prefers-color-scheme: dark)"
      srcset="https://static.devin.ai/assets/gh-open-in-devin-review-dark.svg?v=1">
      <img
      src="https://static.devin.ai/assets/gh-open-in-devin-review-light.svg?v=1"
      alt="Open with Devin">
        </picture>
      </a>
      <!-- devin-review-badge-end -->
      
      ---------
      Co-authored-by: 's avatarClaude Opus 4.6 (1M context) <noreply@anthropic.com>
      661e1438
  2. 16 4月, 2026 1 次提交
  3. 15 4月, 2026 1 次提交
    • Nour Zakhma's avatar
      Feature/pause queue (#3077) · f2265f83
      Nour Zakhma 提交于
      closes #3075 
      Implements pause/resume functionality for the message queue processing
      system, allowing users to pause automatic processing of queued messages
      and selectively resume. Includes session-level persistence via
      sessionStorage.
      
      
      <img width="594" height="694" alt="Capture d&#39;écran 2026-03-26
      045040"
      src="https://github.com/user-attachments/assets/2cf9648f-7be1-466c-971c-e2e96faccd0d"
      />
      
      
      9 comprehensive E2E test cases covering:
      Pause/Resume button visibility
      Pause functionality and message blocking
      Resume processing
      SessionStorage persistence (empty & non-empty cases)
      Multiple pause/resume cycles
      Per-chat isolation
      Visual styling
      f2265f83
  4. 14 4月, 2026 2 次提交
  5. 10 4月, 2026 5 次提交
  6. 09 4月, 2026 10 次提交
  7. 08 4月, 2026 11 次提交
  8. 07 4月, 2026 4 次提交
  9. 03 4月, 2026 3 次提交
  10. 02 4月, 2026 2 次提交
    • Will Chen's avatar
      Bump to v0.42.0-beta.1 (#3120) · 2b00a4e2
      Will Chen 提交于
      #skip-bb
      Co-authored-by: 's avatarClaude <noreply@anthropic.com>
      2b00a4e2
    • Mohamed Aziz Mejri's avatar
      Add search query highlighting to version panel (#3117) · 2f73912b
      Mohamed Aziz Mejri 提交于
      ## Summary
      This PR adds visual highlighting of search query matches in the
      VersionPane component, making it easier for users to identify which
      versions match their search criteria.
      
      ## Key Changes
      - **New `HighlightMatch` component**: Created a reusable component that
      highlights matching text segments with a yellow background (with dark
      mode support). The matching is case-insensitive.
      - **Version number highlighting**: Applied highlighting to version
      numbers in the version list header
      - **Version hash highlighting**: Applied highlighting to the short
      commit hash (OID) displayed next to version numbers
      - **Message highlighting**: Applied highlighting to version messages,
      including those with reverted version information
      
      ## Implementation Details
      - The `HighlightMatch` component performs case-insensitive substring
      matching and wraps matched text in a `<mark>` element with Tailwind
      classes (`bg-yellow-200 dark:bg-yellow-800 rounded-sm`)
      - Search query is trimmed before being passed to the highlighting
      function to avoid unnecessary whitespace
      - The highlighting is applied consistently across all searchable text
      fields in the version pane (version numbers, hashes, and messages)
      - The implementation preserves existing message transformation logic for
      "Reverted" messages while adding highlighting on top
      <!-- devin-review-badge-begin -->
      
      ---
      
      <a href="https://app.devin.ai/review/dyad-sh/dyad/pull/3117"
      target="_blank">
        <picture>
      <source media="(prefers-color-scheme: dark)"
      srcset="https://static.devin.ai/assets/gh-open-in-devin-review-dark.svg?v=1">
      <img
      src="https://static.devin.ai/assets/gh-open-in-devin-review-light.svg?v=1"
      alt="Open with Devin">
        </picture>
      </a>
      <!-- devin-review-badge-end -->
      2f73912b