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/terraform-provider-coder
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.20.1
Choose a base ref
...
head repository: coder/terraform-provider-coder
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.21.0
Choose a head ref
  • 4 commits
  • 6 files changed
  • 2 contributors

Commits on Apr 3, 2024

  1. build(deps): Bump contributor-assistant/github-action from 2.3.1 to 2…

    ….3.2 (#201)
    
    Bumps [contributor-assistant/github-action](https://github.com/contributor-assistant/github-action) from 2.3.1 to 2.3.2.
    - [Release notes](https://github.com/contributor-assistant/github-action/releases)
    - [Commits](contributor-assistant/github-action@v2.3.1...v2.3.2)
    
    ---
    updated-dependencies:
    - dependency-name: contributor-assistant/github-action
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 3, 2024
    Configuration menu
    Copy the full SHA
    d27a3b6 View commit details
    Browse the repository at this point in the history
  2. build(deps): Bump google.golang.org/protobuf from 1.30.0 to 1.33.0 (#200

    )
    
    Bumps google.golang.org/protobuf from 1.30.0 to 1.33.0.
    
    ---
    updated-dependencies:
    - dependency-name: google.golang.org/protobuf
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 3, 2024
    Configuration menu
    Copy the full SHA
    9ae64fd View commit details
    Browse the repository at this point in the history
  3. build(deps): Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#199)

    Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.8.4 to 1.9.0.
    - [Release notes](https://github.com/stretchr/testify/releases)
    - [Commits](stretchr/testify@v1.8.4...v1.9.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/stretchr/testify
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 3, 2024
    Configuration menu
    Copy the full SHA
    f3a205c View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2024

  1. fix(provider): coalesce arch to armv7 if on 32-bit arm (#210)

    This PR modifies the `coder_provisioner` datasource to return `arch` as `armv7` if `GOARCH=arm`.
    This fixes an issue where users on 32-bit arm platforms would be unable to create a template with
    ```
    resource "coder_agent" "main" {
      arch           = data.coder_provisioner.me.arch
      ...
    }
    ```
    
    and would instead need to manually specify
    
    ```
    resource "coder_agent" "main" {
      arch           = "armv7"
      ...
    }
    ```
    johnstcn authored Apr 18, 2024
    Configuration menu
    Copy the full SHA
    b94b7ea View commit details
    Browse the repository at this point in the history
Loading