- Notifications
You must be signed in to change notification settings - Fork907
feat(agent): addParentId
to agent manifest#17888
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
fdf5651
b316482
fa9d6ba
99d83a7
da47a73
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
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.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Should we also assert that parent is nil if not specified in the manifest? (Essentially the inverse of the test you added) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I've updated the original test to have the |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -45,9 +45,13 @@ import ( | ||
// PushResourcesMonitoringUsage RPCs on the Agent API. | ||
// - Added support for reporting connection events for auditing via the | ||
// ReportConnection RPC on the Agent API. | ||
// | ||
// API v2.5: | ||
// - Shipped in Coder v2.xx.x // TODO(DanielleMaywood): Update version | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I think we can make an educated guess at 2.23 :) but this is fine for now. | ||
// - Added `ParentId` to the agent manifest. | ||
const ( | ||
CurrentMajor = 2 | ||
CurrentMinor =5 | ||
) | ||
var CurrentVersion = apiversion.New(CurrentMajor, CurrentMinor) |
Uh oh!
There was an error while loading.Please reload this page.