fix: update Copilot CLI version to 1.0.6 via compiler constants#51
Merged
jamesadevine merged 3 commits intomainfrom Mar 17, 2026
Merged
fix: update Copilot CLI version to 1.0.6 via compiler constants#51jamesadevine merged 3 commits intomainfrom
jamesadevine merged 3 commits intomainfrom
Conversation
Co-authored-by: jamesadevine <4742697+jamesadevine@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update GitHub Copilot CLI version to 1.0.6
fix: update Copilot CLI version to 1.0.6
Mar 17, 2026
Collaborator
|
@copilot perhaps we should move this to a compiler replacement instead of statically defined in the base yaml. Probably also best to make this change for the 1es compiler and standardize on the same approach. |
Co-authored-by: jamesadevine <4742697+jamesadevine@users.noreply.github.com>
Contributor
Author
Done in e081061. I moved both version strings out of the static YAML templates and into named constants in
Both follow the same pattern already used for Warning Firewall rules blocked me from connecting to one or more addresses (expand for details)I tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
Copilot
AI
changed the title
fix: update Copilot CLI version to 1.0.6
fix: update Copilot CLI version to 1.0.6 via compiler constants
Mar 17, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Generated pipelines were pinned to a stale Copilot CLI version (
0.0.407). This moves the CLI version strings out of the static YAML templates and into named constants incommon.rs, using template markers — the same approach used forAWF_VERSIONandcompiler_version.Changes Made
src/compile/common.rs: Added two new version constants:COPILOT_CLI_VERSION = "1.0.6"forMicrosoft.Copilot.CLI.linux-x64(standalone pipelines)AGENCY_CLI_VERSION = "2026.1.22.4"foragency.linux-x64(1ES pipelines)templates/base.yml: Replaced hardcoded-Version 0.0.407with{{ copilot_version }}template marker (both occurrences)templates/1es-base.yml: Replaced hardcoded-Version 2026.1.22.4with{{ agency_version }}template markersrc/compile/standalone.rs: ImportedCOPILOT_CLI_VERSIONand wired up the{{ copilot_version }}replacementsrc/compile/onees.rs: ImportedAGENCY_CLI_VERSIONand wired up the{{ agency_version }}replacementFuture version bumps only require updating the constant in
common.rs.Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.