Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
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 orlearn 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:main
Choose a base ref
Loading
...
head repository:coder/coder
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare:release/2.22
Choose a head ref
Loading
  • 13commits
  • 150files changed
  • 21contributors

Commits on May 5, 2025

  1. fix: fix size for non-squared app icons (cherry-pick#17663) (#17669)

    Co-authored-by: Bruno Quaresma <bruno@coder.com>fix: fix size for non-squared app icons (#17663)
    Configuration menu
    Copy the full SHA
    816a4edView commit details
    Browse the repository at this point in the history

Commits on May 6, 2025

  1. fix: fix windsurf icon on light theme (cherry-pick#17679) (#17686)

    Co-authored-by: Bruno Quaresma <bruno@coder.com>fix: fix windsurf icon on light theme (#17679)
    Configuration menu
    Copy the full SHA
    e4558e2View commit details
    Browse the repository at this point in the history

Commits on May 14, 2025

  1. chore: update alpine 3.21.2 => 3.21.3 (cherry-pick#17773) (#17799)

    Co-authored-by: Charlie Voiselle <464492+angrycub@users.noreply.github.com>
    @gcp-cherry-pick-bot@angrycub
    gcp-cherry-pick-bot[bot] andangrycub authoredMay 14, 2025
    Configuration menu
    Copy the full SHA
    2e96160View commit details
    Browse the repository at this point in the history

Commits on May 15, 2025

  1. chore: cherry pick for release 2.22 (#17842)

    Co-authored-by: Ethan <39577870+ethanndickson@users.noreply.github.com>Co-authored-by: Michael Suchacz <203725896+ibetitsmike@users.noreply.github.com>Co-authored-by: Danny Kopping <danny@coder.com>Co-authored-by: Yevhenii Shcherbina <evgeniy.shcherbina.es@gmail.com>Co-authored-by: Dean Sheather <dean@deansheather.com>Co-authored-by: Mathias Fredriksson <mafredri@gmail.com>Co-authored-by: Danny Kopping <dannykopping@gmail.com>Co-authored-by: Steven Masley <stevenmasley@gmail.com>
    @stirby@ethanndickson
    @ibetitsmike@dannykopping@evgeniy-scherbina@deansheather@mafredri@Emyrk
    9 people authoredMay 15, 2025
    Configuration menu
    Copy the full SHA
    3a5c2d7View commit details
    Browse the repository at this point in the history
  2. chore: cherry-pick remaining PRs into2.22(#17851)

    Co-authored-by: Sas Swart <sas.swart.cdk@gmail.com>Co-authored-by: Yevhenii Shcherbina <evgeniy.shcherbina.es@gmail.com>
    @dannykopping@SasSwart@evgeniy-scherbina
    3 people authoredMay 15, 2025
    Configuration menu
    Copy the full SHA
    ffccfb9View commit details
    Browse the repository at this point in the history
  3. chore: allow MCP to use reduced agent token scope (#17858)

    Backports the following PRs:-#17688-#17692-#17604Signed-off-by: Thomas Kosiewski <tk@coder.com>---------Signed-off-by: Thomas Kosiewski <tk@coder.com>Co-authored-by: Cian Johnston <cian@coder.com>
    @ThomasK33@johnstcn
    ThomasK33 andjohnstcn authoredMay 15, 2025
    Configuration menu
    Copy the full SHA
    4a70bdcView commit details
    Browse the repository at this point in the history

Commits on May 16, 2025

  1. chore: cherry pick migrations for release 2.22 (#17873)

    Co-authored-by: brettkolodny <brettkolodny@gmail.com>Co-authored-by: Danielle Maywood <danielle@themaywoods.com>Co-authored-by: Steven Masley <Emyrk@users.noreply.github.com>
    @stirby@brettkolodny
    @DanielleMaywood@Emyrk
    4 people authoredMay 16, 2025
    Configuration menu
    Copy the full SHA
    b568aa7View commit details
    Browse the repository at this point in the history

Commits on May 20, 2025

  1. fix: correct environment variable name for MCP app status slug (cherr…

    …y-pick#17948) (#17950)Cherry-picked fix: correct environment variable name for MCP app statusslug (#17948)Fixed environment variable name for app status slug in Claude MCPconfiguration from `CODER_MCP_CLAUDE_APP_STATUS_SLUG` to`CODER_MCP_APP_STATUS_SLUG` to maintain consistency with other MCPenvironment variables.This also caused the User level Claude.md to not contain instructions toreport its progress, so it did not receive status reports.Co-authored-by: Thomas Kosiewski <tk@coder.com>
    @gcp-cherry-pick-bot@ThomasK33
    gcp-cherry-pick-bot[bot] andThomasK33 authoredMay 20, 2025
    Configuration menu
    Copy the full SHA
    32f093eView commit details
    Browse the repository at this point in the history
  2. chore: cherry-pick#17934into 2.22 (#17952)

    Cherry-pick of#17934---------Signed-off-by: Thomas Kosiewski <tk@coder.com>Signed-off-by: Danny Kopping <dannykopping@gmail.com>Co-authored-by: Thomas Kosiewski <tk@coder.com>
    @dannykopping@ThomasK33
    dannykopping andThomasK33 authoredMay 20, 2025
    Configuration menu
    Copy the full SHA
    8708d81View commit details
    Browse the repository at this point in the history

Commits on May 21, 2025

  1. fix: stop extending API key access if OIDC refresh is available (cher…

    …ry-pick#17878) (#17960)Cherry-picked fix: stop extending API key access if OIDC refresh isavailable (#17878)fixes#17070Cleans up our handling of APIKey expiration and OIDC to keep themseparate concepts. For an OIDC-login APIKey, both the APIKey and OIDClink must be valid to login. If the OIDC link is expired and we have arefresh token, we will attempt to refresh.OIDC refreshes do not have any effect on APIKey expiry.#17070 (comment)explains why this is the correct behavior.Co-authored-by: Spike Curtis <spike@coder.com>
    @gcp-cherry-pick-bot@spikecurtis
    gcp-cherry-pick-bot[bot] andspikecurtis authoredMay 21, 2025
    Configuration menu
    Copy the full SHA
    4fe7ee2View commit details
    Browse the repository at this point in the history

Commits on May 29, 2025

  1. fix: handleworkspace.agent andagent.workspace.owner in `coder s…

    …sh` (cherry-pick#18093) (#18096)Co-authored-by: Ethan <39577870+ethanndickson@users.noreply.github.com>Closes#18088.
    @gcp-cherry-pick-bot@ethanndickson
    gcp-cherry-pick-bot[bot] andethanndickson authoredMay 29, 2025
    Configuration menu
    Copy the full SHA
    a9b1ccdView commit details
    Browse the repository at this point in the history
  2. chore: add JetBrains icon (cherry-pick#18073) (#18097)

    Co-authored-by: Atif Ali <atif@coder.com>
    @gcp-cherry-pick-bot@matifali
    gcp-cherry-pick-bot[bot] andmatifali authoredMay 29, 2025
    Configuration menu
    Copy the full SHA
    0156f0fView commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2025

  1. chore: add windows icon (cherry-pick#18312) (#18321)

    Co-authored-by: ケイラ <mckayla@hey.com>
    @gcp-cherry-pick-bot@aslilac
    gcp-cherry-pick-bot[bot] andaslilac authoredJun 11, 2025
    Configuration menu
    Copy the full SHA
    37de9f3View commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp