Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: coder/coder
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.34.5
Choose a base ref
...
head repository: coder/coder
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.34.6
Choose a head ref
  • 4 commits
  • 6 files changed
  • 4 contributors

Commits on Jul 1, 2026

  1. fix: correct gvisor replace directive to match module path (#26822) (…

    …conflicts) (#26921)
    
    Backport of #26822
    
    Original PR: #26822 — fix: correct gvisor replace directive to match
    module path
    Merge commit: f77d006
    Requested by: @denisra
    
    Co-authored-by: @denisra
    github-actions[bot] authored Jul 1, 2026
    Configuration menu
    Copy the full SHA
    92c345b View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2026

  1. Configuration menu
    Copy the full SHA
    94a997d View commit details
    Browse the repository at this point in the history
  2. fix(site): redirect to new organization after create (#26890) (#26930)

    Backport of #26890
    
    Original PR: #26890 — fix(site): redirect to new organization after
    create
    Merge commit: 3e0875d
    Requested by: @aslilac
    
    Co-authored-by: McKayla はな <mckayla@hey.com>
    github-actions[bot] and aslilac authored Jul 7, 2026
    Configuration menu
    Copy the full SHA
    db643c8 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2026

  1. fix(site/src/pages/AISettingsPage): match Formik onSubmit args in Bed…

    …rock story (#27211)
    
    > 🤖 This PR was written by Coder Agents on behalf of Jake Howell.
    
    Test-only fix for `release/2.34`.
    
    ### Problem
    
    The `AddBedrockWithoutStaticCredentials` interaction test in
    `ProviderForm.stories.tsx` asserts:
    
    ```ts
    expect(args.onSubmit).toHaveBeenCalledWith(expect.objectContaining({ type: "bedrock", ... }))
    ```
    
    Formik invokes `onSubmit(values, formikHelpers)` with **two** arguments,
    so `toHaveBeenCalledWith` never matches and the storybook/Chromatic
    interaction test fails deterministically. This breaks storybook CI for
    **any** PR targeting `release/2.34` (e.g. the #27083 backport in
    #27144).
    
    `main` and `release/2.35` don't hit this because #25848 refactored the
    story there to forward only `values` to the spy; that refactor was never
    backported to 2.34.
    
    ### Fix
    
    Match the second argument with `expect.anything()` so the assertion
    reflects Formik's actual call signature. Test-only, minimal, no product
    code change.
    
    Verified on 2.34: `ProviderForm` storybook stories (13) pass; lint
    clean.
    jakehwll authored Jul 14, 2026
    Configuration menu
    Copy the full SHA
    660dc56 View commit details
    Browse the repository at this point in the history
Loading