8000 Comparing v1.9.1...main · coder/vscode-coder · GitHub
[go: up one dir, main page]

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/vscode-coder
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.9.1
Choose a base ref
...
head repository: coder/vscode-coder
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 14 commits
  • 50 files changed
  • 8 contributors

Commits on May 27, 2025

  1. Update CHANGELOG.md (#520)

    johnstcn authored May 27, 2025
    Configuration menu
    Copy the full SHA
    fb05c05 View commit details
    Browse the repository at this point in the history
  2. chore(deps): bump ua-parser-js from 1.0.38 to 2.0.3 (#507)

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored May 27, 2025
    Configuration menu
    Copy the full SHA
    c9d49c1 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2025

  1. Configuration menu
    Copy the full SHA
    640d97f View commit details
    Browse the repository at this point in the history
Configuration menu
Copy the full SHA
3cf861a View commit details
Browse the repository at this point in the history

Commits on Jun 3, 2025

  1. chore(deps): bump tar-fs from 2.1.2 to 2.1.3 (#527)

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 3, 2025
    Configuration menu
    Copy the full SHA
    b9aaf50 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    73f866d View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2025

  1. Configuration menu
    Copy the full SHA
    d70a586 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f785902 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2025

  1. chore(deps-dev): bump eslint-plugin-prettier from 5.4.0 to 5.4.1 (#534)

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 16, 2025
    Configuration menu
    Copy the full SHA
    bd9d1ca View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2025

  1. Add package scripts and cli library, enable integration testing (#536)

    Co-authored-by: Claude <noreply@anthropic.com>
    jaggederest and claude authored Jun 20, 2025
    Configuration menu
    Copy the full SHA
    73ea09b View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2025

  1. Configuration menu
    Copy the full SHA
    d1289c6 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2025

  1. fix: handle agent parameter in URIs (#538)

    This fixes a bug where the `agent` query parameter on the extension URI was ignored.
    
    We were previously doing:
    ```ts
    vscode.commands.executeCommand(
    	"coder.openDevContainer",
    	workspaceOwner,
    	workspaceName,
    	workspaceAgent,
    	devContainerName,
    	devContainerFolder,
    );
    ```
    where `args[2]` was the agent name, but we were discarding it:
    ```ts
    const workspaceOwner = args[0] as string;
    const workspaceName = args[1] as string;
    const workspaceAgent = undefined; // args[2] is reserved, but we do not support multiple agents yet.
    const devContainerName = args[3] as string;
    const devContainerFolder = args[4] as string;
    ```
    
    The same was true for the `coder.open` command. Presumably due to the comment saying multiple agents aren't supported, which hasn't been true for years.
    ethanndickson authored Jun 25, 2025
    Configuration menu
    Copy the full SHA
    9d80d67 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ef8546f View commit details
    Browse the repository at this point in the history
  3. v1.9.2 (#540)

    ethanndickson authored Jun 25, 2025
    Configuration menu
    Copy the full SHA
    0c73c83 View commit details
    Browse the repository at this point in the history
Loading
0