Skip to content

chore: upgrade to mutagen 0.18.2 #75

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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MutagenSdk/Proto/filesystem/behavior/probe_mode.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/selection/selection.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/service/daemon/daemon.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/service/prompting/prompting.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/synchronization/configuration.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/synchronization/core/change.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/synchronization/core/conflict.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/synchronization/core/entry.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/synchronization/core/ignore/syntax.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/synchronization/core/mode.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/synchronization/core/problem.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/synchronization/hashing/algorithm.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/synchronization/rsync/receive.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/synchronization/scan_mode.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/synchronization/session.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/synchronization/stage_mode.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/synchronization/state.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/synchronization/version.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/synchronization/watch_mode.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MutagenSdk/Proto/url/url.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions MutagenSdk/Update-Proto.ps1
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ param (

$ErrorActionPreference = "Stop"

$repo = "mutagen-io/mutagen"
$repo = "coder/mutagen"
$protoPrefix = "pkg"
$entryFiles = @(
"service/daemon/daemon.proto",
@@ -24,7 +24,7 @@ if (Test-Path $cloneDir) {
Push-Location $cloneDir
try {
& git.exe clean -fdx
if ($LASTEXITCODE -ne 0) { throw "Failed to clean $mutagenTag" }
if ($LASTEXITCODE -ne 0) { throw "Failed to clean $cloneDir" }
# If we're already on the tag, we don't need to fetch or checkout.
if ((& git.exe name-rev --name-only HEAD) -eq "tags/$mutagenTag") {
Write-Host "Already on $mutagenTag"
@@ -96,6 +96,7 @@ foreach ($entryFile in $entryFiles) {

$repoRoot = Resolve-Path (Join-Path $PSScriptRoot "..")
Push-Location $repoRoot
$outputDir = Resolve-Path $outputDir
if (Test-Path $outputDir) {
Remove-Item -Recurse -Force $outputDir
}
2 changes: 1 addition & 1 deletion scripts/Get-Mutagen.ps1
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ $goArch = switch ($arch) {

# Download the mutagen binary from our bucket for this platform if we don't have
# it yet (or it's different).
$mutagenVersion = "v0.18.1"
$mutagenVersion = "v0.18.2"
$mutagenPath = Join-Path $PSScriptRoot "files\mutagen-windows-$($arch).exe"
$mutagenUrl = "https://storage.googleapis.com/coder-desktop/mutagen/$($mutagenVersion)/mutagen-windows-$($goArch).exe"
$mutagenEtagFile = $mutagenPath + ".etag"
Loading