- Notifications
You must be signed in to change notification settings - Fork1.1k
Comparing changes
Open a pull request
base repository:coder/coder
Uh oh!
There was an error while loading.Please reload this page.
base:v2.26.0
head repository:coder/coder
Uh oh!
There was an error while loading.Please reload this page.
compare:release/2.26
- 9commits
- 22files changed
- 9contributors
Commits on Sep 11, 2025
[2.26 backport] fix: pin pg_dump version when generating schema (#19696…
…) (#19765)This is required by#19756 The latest release of all `pg_dump` major versions, going back to 13,started inserting `\restrict` `\unrestrict` keywords into dumps. Thiscurrently breaks sqlc in `gen/dump` and our check migration script. Fulldetails of the postgres change are available here:https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=575f54d4cTo fix, we'll always use the `pg_dump` in our postgres 13.21 dockerimage for schema dumps, instead of what's on the runner/local machine.Coder doesn't restore from postgres dumps, so we're not vulnerable toattacks that would be patched by the latest postgres version.Regardless, we'll unpin ASAP.Once sqlc is updated to handle these keywords, we need to startstripping them when comparing the schema in the migration check script,and then we can unpin the pg_dump version. This is being tracked atcoder/internal#965Co-authored-by: Ethan <39577870+ethanndickson@users.noreply.github.com>
[2.26 backport] perf(enterprise): remove expensive GetWorkspaces quer…
Commits on Oct 1, 2025
fix(coderd): ensure agent WebSocket conn is cleaned up (#19711) (#20094)
Co-authored-by: Danielle Maywood <danielle@themaywoods.com>
Commits on Oct 15, 2025
fix: avoid connection logging crashes in agent [2.26] (#20306)
# For release 2.26- Ignore errors when reporting a connection from the server, just logthem instead- Translate connection log IP `localhost` to `127.0.0.1` on both theserver and the agent- Temporary fix: convert invalid IPs to `127.0.0.1` since the databaseforbids NULLRelates to#20194
Commits on Oct 16, 2025
Commits on Oct 28, 2025
fix: initialize pseudo console with default size for SSH sessions [2.…
…26] (#20491)> Resolved an invalid parameter error (-2147024809) during PTY creationon Windows 11 22H2 (but not only) when connecting via JetBrains Toolboxwhich spawns the native SSH client with `-tt` forcing PTY allocationeven though there is no "terminal" on the client side to query its size.>> CreatePseudoConsole doesn't accept a 0x0 (zero width and zero height)console size and unfortunately, there is NO explicit documentation inthe official Microsoft documentation that states the minimum validvalues or explicitly prohibits 0x0.>> Looking at real-world implementations in the search results, allexamples use reasonable non-zero values.>> I tested this with a local Windows VM registered to dev.coder.com i.e.externally managed workspace.Relates to#20468Co-authored-by: Faur Ioan-Aurel <fioan89@gmail.com>
Commits on Nov 10, 2025
Commits on Nov 27, 2025
Commits on Dec 1, 2025
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:git diff v2.26.0...release/2.26
Uh oh!
There was an error while loading.Please reload this page.