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:v2.24.2
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:v2.24.3
Choose a head ref
Loading
  • 9commits
  • 32files changed
  • 10contributors

Commits on Jul 16, 2025

  1. chore: publish CLI binaries and detached signatures to releases.coder…

    ….com (#18901)Cherry pick(e4d3453)Starting with version 2.24.X , Coder CLI binaries & correspondingdetached signatures will get published to the GCS bucketreleases.coder.com.
    @jdomeracki-coder
    jdomeracki-coder authoredJul 16, 2025
    Configuration menu
    Copy the full SHA
    3e0645cView commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2025

  1. chore: add openai icon (cherry-pick#19118) (#19175)

    Co-authored-by: ケイラ <mckayla@hey.com>Co-authored-by: 35C4n0r <70096901+35C4n0r@users.noreply.github.com>
    @gcp-cherry-pick-bot@aslilac@35C4n0r
    3 people authoredAug 5, 2025
    Configuration menu
    Copy the full SHA
    d6b2ca1View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2025

  1. chore: cherry-pick coder desktop + corporate vpn fixes for 2.24 (#19177)

    This backports the coder/coder fixes forcoder/coder-desktop-windows#147 andcoder/coder-desktop-macos#201 to v2.24, andfixes a bug where Coder Desktop logs were duplicated on Windows.1.#19124(`c64b3c0d8327edbfad4cc7bc373bdb873cd7e26b`)    - Required for CI to pass.2.#19125(`9f2dc72d9a3d9feecf28bc30cd1234394a0e5c37`)    - Required for CI to pass.3.#19143(`914daac2dcf700817d4ae248a6e8014f64654fe7`)    - Required for CI to pass.4.#19023(`618121cba39833db7c1ca4653d7ce7745d5aff57`)- First implementation of fix forcoder/coder-desktop-windows#1475.#19069(`ba0b124a1daaddde590f5839afebe803330981be`)- Partially reverts previous commit, actual fix forcoder/coder-desktop-windows#1476.#19052(`19171e27c9624c435f97d4ae5e3b61c649bc7063`)    - Avoid duplicating logs on Coder Desktop Windows7.#19080(`18b037d0086cd6eca11e6180b36a302badaa5a5f`)- Updates coder/tailscale reference, lets Coder Desktop macOS use theslim binary to run Coder Connect.    I've tested my latest build of Coder Desktop against a Coder serverrunning this branch, just as a sanity check.---------Co-authored-by: Cian Johnston <cian@coder.com>Co-authored-by: Dean Sheather <dean@deansheather.com>
    @ethanndickson@johnstcn@deansheather
    3 people authoredAug 6, 2025
    Configuration menu
    Copy the full SHA
    bc502b5View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2025

  1. fix: pin Nix version to 2.28.4 to avoid JSON type error (#19223)

    Pin Nix version to 2.28.4 in dogfood workflowPins the Nix version in the dogfood workflow to 2.28.4 to avoid a JSONtype error that occurs with Nix 2.29 and above.Change-Id: Ie024d5070dbe5901952fc52463c6602363ef8886Signed-off-by: Thomas Kosiewski [tk@coder.com](mailto:tk@coder.com)Signed-off-by: Thomas Kosiewski <tk@coder.com>
    @ThomasK33
    ThomasK33 authoredAug 7, 2025
    Configuration menu
    Copy the full SHA
    9df4992View commit details
    Browse the repository at this point in the history
  2. fix: upgrade to 1.24.6 to fix race in lib/pq queries (#19214) (#19219)

    THIS IS A SECURITY FIX - cherry-picks#19214 upgrade to go 1.24.6 to avoidgolang/go#74831(CVE-2025-47907)Also points to a new version of our lib/pq fork that worked around theGo issue, which should restore better performance.
    @spikecurtis
    spikecurtis authoredAug 7, 2025
    Configuration menu
    Copy the full SHA
    7f6cefdView commit details
    Browse the repository at this point in the history
  3. chore(coderd/database): optimize AuditLogs queries (cherry-pick#18600)…

    … (#19193)A customer who recently upgraded their deployment to 2.24 is seeingtheir audit log queries take longer than a minute to load (resulting ina gateway timeout). As such, Support's requested we backport this fix to2.24 (in the next patch), as it does not require a database migration.### Original PR Description (#18600):Closes#17689This PR optimizes the audit logs query performance by extracting thecount operation into a separate query and replacing the OR-basedworkspace_builds with conditional joins.## Query changes* Extracted count query to separate one* Replaced single `workspace_builds` join with OR conditions withseparate conditional joins* Added conditional joins* `wb_build` for workspace_build audit logs (which is a direct lookup)    * `wb_workspace` for workspace create audit logs (via workspace)Optimized AuditLogsOffset query:https://explain.dalibo.com/plan/4g1hbedg4a564bg8New CountAuditLogs query:https://explain.dalibo.com/plan/ga2fbcecb9efbce3Co-authored-by: Kacper Sawicki <kacper@coder.com>
    @ethanndickson@kacpersaw
    ethanndickson andkacpersaw authoredAug 7, 2025
    Configuration menu
    Copy the full SHA
    5ff7496View commit details
    Browse the repository at this point in the history
  4. fix: use system context for querying workspaces when deleting users (#…

    …19211) (#19227)Backport of#19211 to our ESR, v2.24, since this is a kind of bad(albeit rare) bug and very easy to fix.### Original PRCloses#19209.In `templates.go`, we do this to make sure we count ALL workspaces for atemplate before we try and delete that template:https://github.com/coder/coder/blob/dc598856e3be0926573dbbe2ec680e95a139093a/coderd/templates.go#L81-L99However, we weren't doing the same when attempting to delete users,leading to the linked issue. We can solve the issue the same way as wedo for templates.
    @ethanndickson
    ethanndickson authoredAug 7, 2025
    Configuration menu
    Copy the full SHA
    c219a9aView commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1e284feView commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1be409cView commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp