Thanks to visit codestin.com
Credit goes to github.com

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.29.1
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.29.2
Choose a head ref
  • 4 commits
  • 26 files changed
  • 8 contributors

Commits on Dec 29, 2025

  1. chore: add antigravity to allowed protocols list (#20873) (#21122)

    Co-authored-by: DevCats <[email protected]>
    Co-authored-by: blink-so[bot] <211532188+blink-so[bot]@users.noreply.github.com>
    Co-authored-by: Atif Ali <[email protected]>
    4 people authored Dec 29, 2025
    Configuration menu
    Copy the full SHA
    bd76c60 View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2026

  1. fix: backport update boundary version to 2.29 (#21290) (#21575)

    fix: update boundary version #21290
    
    required by #21561
    
    Co-authored-by: Yevhenii Shcherbina <[email protected]>
    kacpersaw and evgeniy-scherbina authored Jan 20, 2026
    Configuration menu
    Copy the full SHA
    2314e4a View commit details
    Browse the repository at this point in the history
  2. feat(cli): backport #21374 to 2.29 (#21561)

    backport #21374 to 2.29
    
    feat(cli): add --no-build flag to state push for state-only updates
    #21374
    kacpersaw authored Jan 20, 2026
    Configuration menu
    Copy the full SHA
    2e2d0dd View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2026

  1. fix: backport migration fixes (#21611)

    * #21493
    * #21496
    * #21530
    
    NB these commits were originally authored by Blink on behalf of
    @dannykopping, so amended to reflect actual authorship.
    
    
    **Repro/Verification Steps:**
    
    * Created a Coder deployment with a non-public schema via Docker compose
    on v2.28.6:
      
    * Created a DB init script under `db-init/01-create-schema.sql` with the
    following:
        ```sql
        CREATE SCHEMA IF NOT EXISTS coder AUTHORIZATION coder;
        GRANT ALL PRIVILEGES ON SCHEMA coder TO coder;
        ALTER ROLE coder SET search_path TO coder;
        ```
      * Mounted above inside the `postgres` container:
        ```diff
             volumes:
               - coder_data:/var/lib/postgresql/data
        +      - ./db-init:/docker-entrypoint-initdb.d:ro
        ```
      * Edited `CODER_PG_CONNECTION_URL` to update the search path:
        ```diff
        environment:
    - CODER_PG_CONNECTION_URL:
    "postgresql://${POSTGRES_USER:-username}:${POSTGRES_PASSWORD:-password}@database/${POSTGRES_DB:-coder}?sslmode=disable"
    + CODER_PG_CONNECTION_URL:
    "postgresql://${POSTGRES_USER:-username}:${POSTGRES_PASSWORD:-password}@database/${POSTGRES_DB:-coder}?sslmode=disable&search_path=coder"
        ```
      * Brought up the deployment:
        ```shell
    CODER_VERSION=v2.28.6 CODER_ACCESS_URL=http://localhost:7080
    POSTGRES_USER=coder POSTGRES_PASSWORD=coder docker compose up`
        ```
      * Created user / template / workspace
    
    * Updated to `v2.29.1`:
      * ```shell
    CODER_VERSION=v2.29.1 CODER_ACCESS_URL=http://localhost:7080
    POSTGRES_USER=coder POSTGRES_PASSWORD=coder docker compose up`
        ```
    
      * Observed following error:
        ```
    database-1 | 2026-01-21 15:07:17.629 UTC [102] ERROR: relation
    "public.workspace_agents" does not exist
    coder-1 | Encountered an error running "coder server", see "coder server
    --help" for more information
    database-1 | 2026-01-21 15:07:17.629 UTC [102] STATEMENT: CREATE INDEX
    IF NOT EXISTS workspace_agents_auth_instance_id_deleted_idx ON
    public.workspace_agents (auth_instance_id, deleted);
    coder-1 | error: connect to postgres: connect to postgres: migrate up:
    up: 2 errors occurred:
    coder-1 | * run statement: migration failed: relation
    "public.workspace_agents" does not exist in line 0: CREATE INDEX IF NOT
    EXISTS workspace_agents_auth_instance_id_deleted_idx ON
    public.workspace_agents (auth_instance_id, deleted);
    coder-1 | (details: pq: relation "public.workspace_agents" does not
    exist)
    coder-1 | * commit tx on unlock: pq: Could not complete operation in a
    failed transaction
        coder-1 exited with code 1
        ```
    
      * Built image locally:
        ```console
        $ make build/coder_$(./scripts/version.sh)_linux_amd64.tag
        ...
        ghcr.io/coder/coder:v2.29.1-devel-e8c482a98a67-amd64
        ```
    
      * Started with new image:
        ```shell
    CODER_VERSION=v2.29.1-devel-e8c482a98a67-amd64
    CODER_ACCESS_URL=http://localhost:7080 POSTGRES_USER=coder
    POSTGRES_PASSWORD=coder docker compose up
        ```
    
      * Observed migrations ran successfully and Coder came up successfully
    
    ---------
    
    Signed-off-by: Danny Kopping <[email protected]>
    Co-authored-by: Danny Kopping <[email protected]>
    Co-authored-by: blink-so[bot] <211532188+blink-so[bot]@users.noreply.github.com>
    3 people authored Jan 21, 2026
    Configuration menu
    Copy the full SHA
    b5360a9 View commit details
    Browse the repository at this point in the history
Loading