Skip to content

Commit 7ca3af3

Browse files
authored
chore: update mutagen to v0.18.3 (#83)
1 parent e200dd4 commit 7ca3af3

27 files changed

+27
-26
lines changed

App/Services/MutagenController.cs

+1
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,7 @@ private void StartDaemonProcess()
549549
_daemonProcess.StartInfo.FileName = _mutagenExecutablePath;
550550
_daemonProcess.StartInfo.Arguments = "daemon run";
551551
_daemonProcess.StartInfo.Environment.Add("MUTAGEN_DATA_DIRECTORY", _mutagenDataDirectory);
552+
_daemonProcess.StartInfo.Environment.Add("MUTAGEN_SSH_CONFIG_PATH", "none"); // do not use ~/.ssh/config
552553
// hide the console window
553554
_daemonProcess.StartInfo.CreateNoWindow = true;
554555
// shell needs to be disabled since we set the environment

MutagenSdk/Proto/filesystem/behavior/probe_mode.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/selection/selection.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/service/daemon/daemon.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/service/prompting/prompting.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/service/synchronization/synchronization.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/compression/algorithm.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/configuration.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/core/change.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/core/conflict.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/core/entry.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/core/ignore/ignore_vcs_mode.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/core/ignore/syntax.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/core/mode.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/core/permissions_mode.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/core/problem.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/core/symbolic_link_mode.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/hashing/algorithm.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/rsync/receive.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/scan_mode.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/session.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/stage_mode.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/state.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/version.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/synchronization/watch_mode.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutagenSdk/Proto/url/url.proto

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/Get-Mutagen.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ $goArch = switch ($arch) {
3131

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

0 commit comments

Comments
 (0)