This repository was archived by the owner on May 4, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Merge upstream main and preserve Copilot provider support #51
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
a75f125
Merge upstream main while preserving Copilot provider and web UX inte…
zortos293 8277727
Fix upstream-sync regressions from CI and PR review
zortos293 f557a7b
Fix provider status cache quotaSnapshots omission
zortos293 c94fe72
Fix remaining upstream-sync review regressions
zortos293 c367391
Fix latest upstream-sync review regressions
zortos293 398e200
Fix newest upstream-sync review regressions
zortos293 2b39a03
Fix remaining upstream-sync review regressions
zortos293 862c2db
Fix newest upstream-sync review regressions
zortos293 8357e9a
Fix remaining late-review regressions on upstream sync PR
zortos293 8d174a3
Fix remaining upstream merge regressions covering data fidelity, prov…
zortos293 d82941e
Fix Claude launchArgs persistence via settings patch API
zortos293 0735ce1
Fix Claude alias gating, prerelease version parsing, and provider ses…
zortos293 9e34a6e
Preserve user preference on disabled provider, fix provider patch def…
zortos293 cc650d4
Merge Windows PATH sources and add regression coverage
zortos293 06966fe
Reapply Task 15 Opus 4.7 gating and runtime fixes onto upstream merge
zortos293 e9a0432
Reapply web state persistence fixes for logical project IDs and deter…
zortos293 0c2e587
Fix provider replacement invariants and desktop migration safety
zortos293 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -138,12 +138,12 @@ jobs: | |
| matrix: | ||
| include: | ||
| - label: macOS arm64 | ||
| runner: macos-14 | ||
| runner: macos-26 | ||
|
capy-ai[bot] marked this conversation as resolved.
capy-ai[bot] marked this conversation as resolved.
capy-ai[bot] marked this conversation as resolved.
capy-ai[bot] marked this conversation as resolved.
capy-ai[bot] marked this conversation as resolved.
capy-ai[bot] marked this conversation as resolved.
capy-ai[bot] marked this conversation as resolved.
capy-ai[bot] marked this conversation as resolved.
Contributor
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. [🟠 High] [🔵 Bug] The new release matrix hard-codes Blacksmith runner labels for the macOS and Linux jobs, but those labels are not standard GitHub-hosted runners. Blacksmith requires separate runner provisioning/app installation, and this fork is a personal repository ( # .github/workflows/release.yml
- label: macOS arm64
runner: blacksmith-12vcpu-macos-26
...
- label: Linux x64
runner: blacksmith-32vcpu-ubuntu-2404 |
||
| platform: mac | ||
| target: dmg | ||
| arch: arm64 | ||
| - label: macOS x64 | ||
| runner: macos-15-intel | ||
| runner: macos-26-intel | ||
| platform: mac | ||
| target: dmg | ||
| arch: x64 | ||
|
|
@@ -153,10 +153,15 @@ jobs: | |
| target: AppImage | ||
| arch: x64 | ||
| - label: Windows x64 | ||
| runner: windows-2022 | ||
| runner: windows-2022 # blacksmith-32vcpu-windows-2025 | ||
| platform: win | ||
| target: nsis | ||
| arch: x64 | ||
| # - label: Windows arm64 | ||
| # runner: windows-11-arm | ||
| # platform: win | ||
| # target: nsis | ||
| # arch: arm64 | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v6 | ||
|
|
@@ -269,6 +274,18 @@ jobs: | |
| done | ||
| fi | ||
|
|
||
| # Enable if Windows arm64 builds are enabled. | ||
| # Windows updater metadata is channel-specific (for example | ||
| # "latest.yml" or "nightly.yml"). Suffix each per-arch copy so the | ||
| # release job can merge matching arm64/x64 manifests back into one | ||
| # canonical manifest per channel. | ||
| # if [[ "${{ matrix.platform }}" == "win" ]]; then | ||
| # shopt -s nullglob | ||
| # for manifest in release-publish/*.yml; do | ||
| # mv "$manifest" "${manifest%.yml}-win-${{ matrix.arch }}.yml" | ||
| # done | ||
| # fi | ||
|
|
||
| - name: Upload build artifacts | ||
| uses: actions/upload-artifact@v7 | ||
| with: | ||
|
|
@@ -292,6 +309,14 @@ jobs: | |
| with: | ||
| node-version-file: package.json | ||
|
|
||
| - name: Setup Bun | ||
| uses: oven-sh/setup-bun@v2 | ||
| with: | ||
| bun-version-file: package.json | ||
|
|
||
| - name: Install dependencies | ||
| run: bun install --frozen-lockfile --ignore-scripts | ||
|
|
||
| - name: Download all desktop artifacts | ||
| uses: actions/download-artifact@v8 | ||
| with: | ||
|
|
@@ -305,11 +330,40 @@ jobs: | |
| for x64_manifest in release-assets/*-mac-x64.yml; do | ||
| arm64_manifest="${x64_manifest%-x64.yml}.yml" | ||
| if [[ -f "$arm64_manifest" ]]; then | ||
| node scripts/merge-mac-update-manifests.ts "$arm64_manifest" "$x64_manifest" | ||
| node scripts/merge-update-manifests.ts --platform mac "$arm64_manifest" "$x64_manifest" | ||
|
capy-ai[bot] marked this conversation as resolved.
|
||
| rm -f "$x64_manifest" | ||
| fi | ||
| done | ||
|
|
||
| # - name: Merge Windows updater manifests | ||
| # run: | | ||
| # shopt -s nullglob | ||
| # found_windows_manifest=false | ||
| # for x64_manifest in release-assets/*-win-x64.yml; do | ||
| # if [[ "$(basename "$x64_manifest")" == builder-debug-* ]]; then | ||
| # continue | ||
| # fi | ||
|
|
||
| # arm64_manifest="${x64_manifest/-x64.yml/-arm64.yml}" | ||
| # output_manifest="${x64_manifest/-win-x64.yml/.yml}" | ||
| # if [[ ! -f "$arm64_manifest" ]]; then | ||
| # echo "Missing matching arm64 Windows manifest for $x64_manifest" >&2 | ||
| # exit 1 | ||
| # fi | ||
|
|
||
| # found_windows_manifest=true | ||
| # node scripts/merge-update-manifests.ts --platform win \ | ||
| # "$arm64_manifest" \ | ||
| # "$x64_manifest" \ | ||
| # "$output_manifest" | ||
| # rm -f "$arm64_manifest" "$x64_manifest" | ||
| # done | ||
|
|
||
| # if [[ "$found_windows_manifest" != true ]]; then | ||
| # echo "No Windows updater manifests found to merge." >&2 | ||
| # exit 1 | ||
| # fi | ||
|
|
||
| - name: Publish release | ||
| if: needs.preflight.outputs.previous_tag != '' | ||
| uses: softprops/action-gh-release@v2 | ||
|
|
@@ -392,6 +446,9 @@ jobs: | |
| with: | ||
| node-version-file: package.json | ||
|
|
||
| - name: Install dependencies | ||
| run: bun install --frozen-lockfile | ||
|
|
||
| - id: update_versions | ||
| name: Update version strings | ||
| env: | ||
|
|
||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,4 +22,3 @@ apps/web/src/components/__screenshots__ | |
| __screenshots__/ | ||
| .tanstack | ||
| squashfs-root/ | ||
| core.* | ||
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
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.