- Notifications
You must be signed in to change notification settings - Fork907
chore: push proto changes tov1.6
#17874
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -15,16 +15,19 @@ import "github.com/coder/coder/v2/apiversion" | ||
// | ||
// API v1.5: | ||
// - Add new field named `prebuilt_workspace_build_stage` enum in the Metadata message. | ||
// - Add new field named `running_agent_auth_tokens` to provisioner job metadata | ||
// - Add new field named `resource_replacements` in PlanComplete & CompletedJob.WorkspaceBuild. | ||
// - Add new field named `api_key_scope` to WorkspaceAgent to support running without user data access. | ||
// - Add `plan` field to `CompletedJob.TemplateImport`. | ||
// | ||
// API v1.6: | ||
dannykopping marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
// - Add `module_files` field to `CompletedJob.TemplateImport`. | ||
// - Add previous parameter values to 'WorkspaceBuild' jobs. Provisioner passes | ||
// the previous values for the `terraform apply` to enforce monotonicity | ||
// in the terraform provider. | ||
const ( | ||
CurrentMajor = 1 | ||
CurrentMinor =6 | ||
) | ||
// CurrentVersion is the current provisionerd API version. | ||
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -354,8 +354,8 @@ message PlanComplete { | ||
repeated Module modules = 7; | ||
repeated Preset presets = 8; | ||
bytes plan = 9; | ||
repeated ResourceReplacement resource_replacements = 10; | ||
bytes module_files = 11; | ||
dannykopping marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading.Please reload this page. | ||
} | ||
// ApplyRequest asks the provisioner to apply the changes. Apply MUST be preceded by a successful plan request/response | ||
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.