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

Commits on Apr 7, 2025

  1. feat: allow presets to define prebuilds (#373)

    * feat: allow presets to define prebuilds* document prebuild parameters* remove todo* make gen* Add integration testing* Allow presets to define 0 parameters* additional documentation for prebuilds
    @SasSwart
    SasSwart authoredApr 7, 2025
    Configuration menu
    Copy the full SHA
    ef92eeaView commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3a2c18dView commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2025

  1. feat:form_typeandstylingmetadata arguments added (#375)

    Adds `form_type` as a field to parameters. By default, legacy behavior is maintained by deducing the default `form_type` value from the existing inputs.`styling` argument also added for cosmetic usage on the frontend form
    @Emyrk
    Emyrk authoredApr 8, 2025
    Configuration menu
    Copy the full SHA
    8804c44View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2025

  1. chore: change OptionType to alias for usage as string (#377)

    To be backwards compatible using this repo as a library, use a stringalias. This allows using the 'type' as a `string` or the new enum.Since enum validation is quite weak in Go, this is baiscallyfunctionally equvialent.
    @Emyrk
    Emyrk authoredApr 9, 2025
    Configuration menu
    Copy the full SHA
    d90c181View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2025

  1. feat: add the option to debug the coder terraform provider (#378)

    Setting the debug flag runs the provider as a standalone process and provides an environment variable that can be set for Terraform to use it. One can then attach a debugger to the provider process.
    @SasSwart
    SasSwart authoredApr 10, 2025
    Configuration menu
    Copy the full SHA
    53a68cdView commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2025

  1. chore: enhance parameter validation error messages (#379)

    * chore: implement validation in an exported function* chore: enhance parameter validation error messages
    @Emyrk
    Emyrk authoredApr 14, 2025
    Configuration menu
    Copy the full SHA
    f66adacView commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2025

  1. chore: update to go 1.24.2 (#382)

    Co-authored-by: Danny Kopping <dannykopping@gmail.com>
    @johnstcn@dannykopping
    johnstcn anddannykopping authoredApr 15, 2025
    Configuration menu
    Copy the full SHA
    e40c9b9View commit details
    Browse the repository at this point in the history
  2. build(deps): Bump golang.org/x/crypto from 0.33.0 to 0.35.0 (#380)

    Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.33.0 to 0.35.0.- [Commits](golang/crypto@v0.33.0...v0.35.0)---updated-dependencies:- dependency-name: golang.org/x/crypto  dependency-version: 0.35.0  dependency-type: indirect...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    @dependabot
    dependabot[bot] authoredApr 15, 2025
    Configuration menu
    Copy the full SHA
    e51ae3aView commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2025

  1. build(deps): Bump golang.org/x/net from 0.34.0 to 0.38.0 (#383)

    Bumps [golang.org/x/net](https://github.com/golang/net) from 0.34.0 to 0.38.0.- [Commits](golang/net@v0.34.0...v0.38.0)---updated-dependencies:- dependency-name: golang.org/x/net  dependency-version: 0.38.0  dependency-type: indirect...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    @dependabot
    dependabot[bot] authoredApr 17, 2025
    Configuration menu
    Copy the full SHA
    c86bb5cView commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2025

  1. test: rbac role test assertion to handle site wide roles (#385)

    Site wide roles have empty string org_ids
    @Emyrk
    Emyrk authoredApr 23, 2025
    Configuration menu
    Copy the full SHA
    f871a43View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2025

  1. test: unit test to document validation behavior of parameters (#387)

    Documenting validation behavior with a unit test
    @Emyrk
    Emyrk authoredApr 30, 2025
    Configuration menu
    Copy the full SHA
    ac2f9bfView commit details
    Browse the repository at this point in the history
  2. test: add more validation test cases (#388)

    Some of these cases you would expect it to be an error, but thevalidation passes
    @Emyrk
    Emyrk authoredApr 30, 2025
    Configuration menu
    Copy the full SHA
    4e7da25View commit details
    Browse the repository at this point in the history

Commits on May 2, 2025

  1. feat: reuse agent tokens when a prebuilt agent reinitializes (#374)

    * feat: allow presets to define prebuilds* document prebuild parameters* remove todo* make gen* feat: reuse agent tokens when a prebuilt agent reinitializes* WIP: get agent.go ready to be merged with support for prebuilds* fix: ensure the agent token is reused for prebuilds* lint and make gen* simplify function* test: rbac role test assertion to handle site wide rolesSite wide roles have empty string org_ids---------Co-authored-by: Steven Masley <stevenmasley@gmail.com>
    @SasSwart@Emyrk
    SasSwart andEmyrk authoredMay 2, 2025
    Configuration menu
    Copy the full SHA
    5648efbView commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    21147bfView commit details
    Browse the repository at this point in the history

Commits on May 7, 2025

  1. feat: parameter validation refactored to single function (#381)

    Validation bugs resolved:- Number parameters require valid number strings- Input values must be in the option set
    @Emyrk
    Emyrk authoredMay 7, 2025
    Configuration menu
    Copy the full SHA
    3c74804View commit details
    Browse the repository at this point in the history

Commits on May 8, 2025

  1. feat: enforce monotonicity in terraform provider (#392)

    Previous value must come from env var.
    @Emyrk
    Emyrk authoredMay 8, 2025
    Configuration menu
    Copy the full SHA
    8692a56View commit details
    Browse the repository at this point in the history

Commits on May 9, 2025

  1. docs: link to additional documentation for prebuilt workspaces (#395)

    * docs: link to additional documentation for prebuilt workspaces* improve wording
    @SasSwart
    SasSwart authoredMay 9, 2025
    Configuration menu
    Copy the full SHA
    4126ff4View commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp