distant

🚧 (Alpha stage software) Library and tooling that supports remote filesystem and process operations. 🚧

Downloads
111K
Stars
566
Committers
1

Bot releases are visible (Hide)

distant - distant v0.20.0 Latest Release

Published by github-actions[bot] over 1 year ago

Release Notes

All changes described in these alpha releases:

Fixed

  • When terminating a connection using distant manager kill, the connection is
    now properly dropped, resulting servers waiting to terminate due to
    --shutdown lonely=N to now shutdown accordingly
  • Zombies from spawned servers via distant launch manager://localhost are now
    properly terminated by checking the exit status of processes
distant - distant v0.20.0-alpha.13

Published by github-actions[bot] over 1 year ago

Release Notes

Added

  • Support for --shell with optional path to an explicit shell as an option
    when executing distant spawn in order to run the command within a shell
    rather than directly
  • semver crate to be used for version information in protocol and manager
  • is_compatible_with function to root of distant-protocol crate that checks
    if a provided version is compatible with the protocol

Changed

  • distant_protocol::PROTOCOL_VERSION now uses the crate's major, minor, and
    patch version at compile-time (parsed via const-str crate) to streamline
    version handling between crate and protocol
  • Protocol and manager now supply a version request instead of capabilities and
    the capabilities of protocol are now a Vec<String> to contain a set of more
    broad capabilities instead of every possible request type

Fixed

  • CLI commands like distant manager select will now output errors in a JSON
    format when configured to communicate using JSON
  • distant-ssh2 no longer caches the remote family globally, but instead
    caches it per Ssh instance

Removed

  • Cmd::program and Cmd::arguments functions as they were misleading (didn't
    do what distant-local or distant-ssh2 do)
  • Removed Capability and Capabilities from protocol and manager
distant - distant v0.20.0-alpha.12

Published by github-actions[bot] over 1 year ago

Release Notes

Changed

  • Minimum Rust version is now 1.70.0 due to bump in grep-cli minimum
    requirement. This technically applied to v0.20.0-alpha.11, but wasn't caught
    until the dependency updated

Fixed

  • distant --help will now return exit code of 0
  • distant --version will now return exit code of 0
distant - distant v0.20.0-alpha.11

Published by github-actions[bot] over 1 year ago

Release Notes

Added

  • CLI now supports -c <STR> and --cmd <STR> to use a given string as the
    command as an alternative to -- <CMD> <ARG> <ARG>
  • Add build for FreeBSD

Changed

  • Cli no longer uses -c as shorthand for specifying a config file
  • --file option for generating completion has been renamed to --output
  • CLI command to generate config files now defaults to printing to stdout with
    --output providing the option to write to a file
  • Artifacts built now use format of distant-<TRIPLE>
distant - Latest Build

Published by github-actions[bot] over 1 year ago

This is the latest commit (6feeb2d0126898bd5027889da245ba658cbb1e72) built for testing.
This is not guaranteed to pass all tests or even function properly.

distant - distant v0.20.0-alpha.10

Published by github-actions[bot] over 1 year ago

Release Notes

Added

  • use_hidden, use_ignore_files, use_parent_ignore_files,
    use_git_ignore, use_global_git_ignore, and use_git_exclude as new
    options for searching

Changed

  • Searching now disables all standard filters by default with re-introducing
    the ability to set the filters by individual options

Fixed

  • Failing to start a search will no longer cause the search task to exit when
    using the local server, which would result in no more searches being able to
    be executed

Binaries

Standalone binaries are built out for Windows (x86_64), MacOS (Intel & ARM), and Linux (x86_64, aarch64, armv7).

  • linux64-gnu-x86 is the x86-64 release on Linux using libc
  • linux64-gnu-aarch64 is the aarch64 release on Linux using libc
  • linux64-gnu-arm-v7 is the arm-v7 release on Linux using libc (for Raspberry PI)
  • linux64-musl-x86 is the x86-64 release on Linux using musl (static binary, no libc dependency)
  • linux64-musl-aarch64 is the aarch64 release on Linux using musl (static binary, no libc dependency)
  • macos is a universal binary for Mac OS that supports x86-64 and aarch64 (ARM) platforms
  • win64 is the x86-64 release on Windows using MSVC

SHA256 Checksums

dc2c33ba400adbfb084e3c6d49b19448ffbba5124211377c3808171464701f4a  distant-macos
7c3b3c3ffcad5f19fe1b85bbf2ee244e208cf36c46d58698fe7bb4e706f4261b  distant-win64.exe
028997eeadeec7ae2e4d384473671910928a5f89ea063ca941798116a934040b  distant-linux64-gnu-x86
45893625421ff5421c1871c101eb01886097e158e17c11e42c3ccf2c9de30586  distant-linux64-gnu-aarch64
f765188e763696c3aa12921d947a7d212d964b92a1dff07c9abd2109ac04c7d7  distant-linux64-gnu-arm-v7
0f572fcf65cd7d32fc51aff3fe121f8a76dda91a6db28f0fd3759c50478aaea9  distant-linux64-musl-x86
0d3a429adc194e6d60c4297763ce288622755870ef2d9c64c7814b422222c7ba  distant-linux64-musl-aarch64
distant - distant v0.20.0-alpha.9

Published by github-actions[bot] over 1 year ago

Release Notes

Added

  • Request and Response types from distant-net now support an optional
    Header to send miscellaneous information

Changed

  • Change structure now provides a single path instead of paths with the
    distant-local implementation sending a separate Changed event per path
  • ChangeDetails now includes a renamed field to capture the new path name
    when known
  • DistantApi now handles batch requests in parallel, returning the results in
    order. To achieve the previous sequential processing of batch requests, the
    header value sequence needs to be set to true
  • Rename GenericServerRef to ServerRef and remove ServerRef trait,
    refactoring TcpServerRef, UnixSocketServerRef, and WindowsPipeServerRef
    to use the struct instead of Box<dyn ServerRef>
  • Update Reply trait and associated implementations to be non-blocking &
    synchronous as opposed to asynchronous to avoid deadlocks and also be more
    performant

Fixed

  • Username and password now support full character sets outside of @ for
    passwords and : and @ for usernames

Binaries

Standalone binaries are built out for Windows (x86_64), MacOS (Intel & ARM), and Linux (x86_64, aarch64, armv7).

  • linux64-gnu-x86 is the x86-64 release on Linux using libc
  • linux64-gnu-aarch64 is the aarch64 release on Linux using libc
  • linux64-gnu-arm-v7 is the arm-v7 release on Linux using libc (for Raspberry PI)
  • linux64-musl-x86 is the x86-64 release on Linux using musl (static binary, no libc dependency)
  • linux64-musl-aarch64 is the aarch64 release on Linux using musl (static binary, no libc dependency)
  • macos is a universal binary for Mac OS that supports x86-64 and aarch64 (ARM) platforms
  • win64 is the x86-64 release on Windows using MSVC

SHA256 Checksums

51b93b3d23cf55a58e55d0b3194699a153c24b32c77408ff951e44e749d1bd7d  distant-macos
cc702af7e0a4e260d917c7f8e1d1565ef707fe74de471b4cf0c5e7656082fea1  distant-win64.exe
612e588d4f61c61ad37e0bfe75986ede1b6f0e3bd3fd484d69067d225f53ff7d  distant-linux64-gnu-x86
91e53e217567ebacb010eca9ccbb0aaa839142d44571c93d1d724aaed0a707ee  distant-linux64-gnu-aarch64
ad12f3f2098acd8d1dea361a275ee0ffce7061bb7ee9702fdae99e4748d9da88  distant-linux64-gnu-arm-v7
026d64408d564f3308ceda05b50a0db3e30774e64fd3683c198234900191f9cd  distant-linux64-musl-x86
0f7164d530d1d4056811d5cef15f69c5d1b7d5f4b04df21922ad1ed444a02367  distant-linux64-musl-aarch64
distant - distant v0.20.0-alpha.8

Published by github-actions[bot] over 1 year ago

Release Notes

Added

  • distant-local now has two features: macos-fsevent and macos-kqueue.
    These are used to indicate what kind of file watching to support (for MacOS).
    The default is macos-fsevent.
  • [server.watch] configuration is now available with the following
    settings:
    • native = <bool> to specify whether to use native watching or polling
      (default true)
    • poll_interval = <secs> to specify seconds to wait between polling
      attempts (only for polling watcher)
    • compare_contents = <bool> to specify how polling watcher will evaluate a
      file change (default false)
    • debounce_timeout = <secs> to specify how long to wait before sending a
      change notification (will aggregate and merge changes)
    • debounce_tick_rate = <secs> to specify how long to wait between event
      aggregation loops
  • distant-protocol response for a change now supports these additional
    fields:
    • timestamp (serialized as ts) to communicate the seconds since unix
      epoch when the event was received
    • details containing attributes (clarify changes on attribute kind) and
      extra (to convey arbitrary platform-specific extra information)

Changed

  • Bump minimum Rust version to 1.68.0

Removed

Binaries

Standalone binaries are built out for Windows (x86_64), MacOS (Intel & ARM), and Linux (x86_64, aarch64, armv7).

  • linux64-gnu-x86 is the x86-64 release on Linux using libc
  • linux64-gnu-aarch64 is the aarch64 release on Linux using libc
  • linux64-gnu-arm-v7 is the arm-v7 release on Linux using libc (for Raspberry PI)
  • linux64-musl-x86 is the x86-64 release on Linux using musl (static binary, no libc dependency)
  • linux64-musl-aarch64 is the aarch64 release on Linux using musl (static binary, no libc dependency)
  • macos is a universal binary for Mac OS that supports x86-64 and aarch64 (ARM) platforms
  • win64 is the x86-64 release on Windows using MSVC

SHA256 Checksums

0499070e13bc953e551a0a1b2efbbc5ccb47aad2f17e3989c3ffa61148e29cfe  distant-macos
78f006d9c4faf92139a4cdfdb253298434e38c6d2eeca7b17d89fb94bac62205  distant-win64.exe
b083566ab7b18d8ffb0fab139f41cc5032380dcae7ca3fd5d090148cd4b9489e  distant-linux64-gnu-x86
104a5c1efde1a3f017bdbefc4c5bb1d715a7b0665f587f8a8c5e9a0d114cf660  distant-linux64-gnu-aarch64
d863eaef29a22e97f148442d0ca6d797af5f0ad59be8e9f18540c804db5d5b4c  distant-linux64-gnu-arm-v7
822d8e2513f28a14ec7c216638d4066665adef192461cd426fe8529929273349  distant-linux64-musl-x86
7f7e5f306002963a62658855ae36f804c6a6382cf3d9aaeae8e2deb3288a4bdf  distant-linux64-musl-aarch64
distant - distant v0.20.0-alpha.7

Published by github-actions[bot] over 1 year ago

Release Notes

Added

  • New SetPermissions enum variant on protocol request
  • New set_permissions method available DistantApi and implemented by local
    server (ssh unavailable due to https://github.com/wez/wezterm/issues/3784)
  • Implementation of DistantChannelExt::set_permissions
  • distant version to display information about connected server
  • distant manager service install now accepts additional arguments to provide
    the manager on startup

Changed

  • CLI --lsp [<SCHEME>] scheme now expects just the scheme and not ://
  • Moved distant_net::common::authentication to separate crate distant-auth
  • Moved distant_net::common::authentication::Keychain to
    distant_net::common::Keychain
  • Moved distant_net::common::transport::framed::codec::encryption::SecretKey
    and similar to distant_net::common::SecretKey
  • Search matches reported with match key are now inlined as either a byte
    array or a string and no longer an object with a type and value field
  • Unset options and values are not now returned in JSON serialization versus
    the explicit null value provided
  • Capabilities message type has been changed to Version with new struct to
    report the version information that includes a server version string,
    protocol version tuple, and capabilities
  • distant_core::api::local moved to distant_local

Removed

  • distant capabilities has been removed in favor of distant version

Binaries

Standalone binaries are built out for Windows (x86_64), MacOS (Intel & ARM), and Linux (x86_64, aarch64, armv7).

  • linux64-gnu-x86 is the x86-64 release on Linux using libc
  • linux64-gnu-aarch64 is the aarch64 release on Linux using libc
  • linux64-gnu-arm-v7 is the arm-v7 release on Linux using libc (for Raspberry PI)
  • linux64-musl-x86 is the x86-64 release on Linux using musl (static binary, no libc dependency)
  • linux64-musl-aarch64 is the aarch64 release on Linux using musl (static binary, no libc dependency)
  • macos is a universal binary for Mac OS that supports x86-64 and aarch64 (ARM) platforms
  • win64 is the x86-64 release on Windows using MSVC

SHA256 Checksums

52655dbae3ae337d9f2ae898125268317367f7396496ba8b35ebf2bef84750c3  distant-macos
9c535a7b49c777b9fad1ae847e5f8f4ff53471c380ea6224efa84ce4b0151bff  distant-win64.exe
6daf643c8338c1ec87b663c550a10e9e2f1c34770998c8975bc826b4bb28e8ff  distant-linux64-gnu-x86
6b8d1200808744bc60bf9b335218461162e2b8896ecf44a2998e98df592644d3  distant-linux64-gnu-aarch64
aa68500ee867bfae18e65c9ce6db7d570ba280e64c41b03c1f56a884d0375fa9  distant-linux64-gnu-arm-v7
31df47a14157ccefa1605b950337ef4964cf90682908bcc1637db8e3ca48064a  distant-linux64-musl-x86
ea7de06779ff75ca8add2cef49ccfa1b057aebb0b0a29f8c80bd8cfd74d54d93  distant-linux64-musl-aarch64
distant - distant v0.20.0-alpha.6

Published by github-actions[bot] over 1 year ago

Release Notes

Changed

  • Renamed distant_core::data to distant_core::protocol
  • CLI --lsp now accepts an optional scheme to be used instead of
    distant://, which is the default
  • RemoteLspProcess now takes a second argument, scheme, which dictates
    whether to translate distant:// or something else

Binaries

Standalone binaries are built out for Windows (x86_64), MacOS (Intel & ARM), and Linux (x86_64, aarch64, armv7).

  • linux64-gnu-x86 is the x86-64 release on Linux using libc
  • linux64-gnu-aarch64 is the aarch64 release on Linux using libc
  • linux64-gnu-arm-v7 is the arm-v7 release on Linux using libc (for Raspberry PI)
  • linux64-musl-x86 is the x86-64 release on Linux using musl (static binary, no libc dependency)
  • linux64-musl-aarch64 is the aarch64 release on Linux using musl (static binary, no libc dependency)
  • macos is a universal binary for Mac OS that supports x86-64 and aarch64 (ARM) platforms
  • win64 is the x86-64 release on Windows using MSVC

SHA256 Checksums

ef2827563f6d9231e4c92410233525b5675befa2407c13338ae0a931dc58197a  distant-macos
a2f2b3adda7d9abbebb50f12a183c871c7905d2bf34e1108b8aa85d95c05d22f  distant-win64.exe
8b5bc79b9559350c013a81839132b5c5d88fc39e9677e9fe4169c57849c009a2  distant-linux64-gnu-x86
6175a7cfbb1262a00683212a6e0b35819e3f806136de54a9c0397f94ab070e08  distant-linux64-gnu-aarch64
4930ecf4aad3bd265ec54984a10e41ee70564dd79140d1fa5190fd0a6dcb2e66  distant-linux64-gnu-arm-v7
afda62101763940f842e9fd75354f27dbd2b837f591325d49bb051870a8cd6d1  distant-linux64-musl-x86
60ab369db2644c990f910e8bbe8cc3d6cf8102072f894e23624335526ffc5790  distant-linux64-musl-aarch64
distant - distant v0.20.0-alpha.5

Published by github-actions[bot] over 1 year ago

Release Notes

Added

  • CLI now offers the following new subcommands
    • distant fs copy is a refactoring of distant client action copy
    • distant fs exists is a refactoring of distant client action exists
    • distant fs read is a refactoring of distant client action file-read,
      distant client action file-read-text, and distant client action dir-read
    • distant fs rename is a refactoring of distant client action rename
    • distant fs write is a refactoring of distant client action file-write,
      distant client action file-write-text, distant client action file-append,
    • distant fs make-dir is a refactoring of distant client action dir-create
    • distant fs metadata is a refactoring of distant client action metadata
    • distant fs remove is a refactoring of distant client action remove
    • distant fs search is a refactoring of distant client action search
    • distant fs watch is a refactoring of distant client action watch
    • distant spawn is a refactoring of distant client action proc-spawn
      with distant client lsp merged in using the --lsp flag
    • distant system-info is a refactoring of distant client action system-info
  • Search now supports upward as a directional setting to traverse upward
    looking for results rather than recursing downward

Changed

  • CLI subcommands refactored
    • distant client select moved to distant manager select
    • distant client action moved to distant action
    • distant client launch moved to distant launch
    • distant client connect moved to distant connect
    • distant client lsp moved to distant lsp
    • distant client repl moved to distant api
    • distant client shell moved to distant shell

Removed

  • distant-core crate no longer offers the clap feature

Fixed

  • distant launch manager://localhost now rejects a bind address of ssh
    as the SSH_CONNECTION environment variable isn't available in most cases

Binaries

Standalone binaries are built out for Windows (x86_64), MacOS (Intel & ARM), and Linux (x86_64, aarch64, armv7).

  • linux64-gnu-x86 is the x86-64 release on Linux using libc
  • linux64-gnu-aarch64 is the aarch64 release on Linux using libc
  • linux64-gnu-arm-v7 is the arm-v7 release on Linux using libc (for Raspberry PI)
  • linux64-musl-x86 is the x86-64 release on Linux using musl (static binary, no libc dependency)
  • linux64-musl-aarch64 is the aarch64 release on Linux using musl (static binary, no libc dependency)
  • macos is a universal binary for Mac OS that supports x86-64 and aarch64 (ARM) platforms
  • win64 is the x86-64 release on Windows using MSVC

SHA256 Checksums

41d453f3aad90af5bf8ebcedd493322db0054d447c3b00a0e9d564ed09e58765  distant-macos
d0b43b8aa75c03513a600c4e78003d94ad3be7a85c3b9e2996175c4a871646c5  distant-win64.exe
3a981daee5a7dfebd6494e9ae5bee66e2652887a98b07453dc5e80248db234a7  distant-linux64-gnu-x86
a026a66e15b8cde75a9a17cdf5ffdaf84c3517bd8785308b20e8553d07bb6f03  distant-linux64-gnu-aarch64
e278cb38a321300145c315038c29daed37d8c23e53578ccb5dd1d063f5fc0cee  distant-linux64-gnu-arm-v7
3db622044d4fc402ae6cdb8455455ffba023eed36ea0dc60cb08a4ec644b3f62  distant-linux64-musl-x86
0d8e5e35b5063e3c90de16f9212d47d0a121532ed83c343c1ef0363376bbcce6  distant-linux64-musl-aarch64
distant - distant v0.20.0-alpha.4

Published by github-actions[bot] over 1 year ago

Release Notes

Added

  • Default configuration for config.toml
  • Ability to generate default configuration using
    distant generate config /path/to/config.toml
  • --current-dir option for distant client shell and distant client lsp

Changed

  • Updated a variety of dependencies to latest versions

Binaries

Standalone binaries are built out for Windows (x86_64), MacOS (Intel & ARM), and Linux (x86_64, aarch64, armv7).

  • linux64-gnu-x86 is the x86-64 release on Linux using libc
  • linux64-gnu-aarch64 is the aarch64 release on Linux using libc
  • linux64-gnu-arm-v7 is the arm-v7 release on Linux using libc (for Raspberry PI)
  • linux64-musl-x86 is the x86-64 release on Linux using musl (static binary, no libc dependency)
  • linux64-musl-aarch64 is the aarch64 release on Linux using musl (static binary, no libc dependency)
  • macos is a universal binary for Mac OS that supports x86-64 and aarch64 (ARM) platforms
  • win64 is the x86-64 release on Windows using MSVC

SHA256 Checksums

a70b1ece38d54577764df3fd24d53473bf49e1476eaffb1c87085a2ccab4abcf  distant-macos
c67ca507e5672cd364071339b000ae60a5b78bb643793501ca39f9b8c32f2df0  distant-win64.exe
1d61b0b68d3c6d8d23f5bdf2809969a8a0efc3c29e160006860caaa27707ec05  distant-linux64-gnu-x86
533e179d03c0dcf2726dd575e3430628c0cada3a1dd8e2999e448f7cbd2c8d23  distant-linux64-gnu-aarch64
ccff3ace8d626eafcce3a3814e176a9afe27acb0ba834c11281b9673d0a21ef3  distant-linux64-gnu-arm-v7
4963592efc8ab3bc4b744d1097f7150e7bdb9362619d64ce0aa8b373d76a4a16  distant-linux64-musl-x86
d67327d17e6d7d655ffa550e02d4543ae3961f525d4c0b8f78aab85bd2901a69  distant-linux64-musl-aarch64
distant - distant v0.20.0-alpha.3

Published by github-actions[bot] almost 2 years ago

Release Notes

Added

  • Frame::empty method as convenience for Frame::new(&[])
  • ClientConfig to support ReconnectStrategy and a duration serving as the
    maximum time to wait between server activity before attempting to reconnect
    from the client
  • Server sends empty frames periodically to act as heartbeats to let the client
    know if the connection is still established
  • Client now tracks length of time since last server activity and will attempt
    a reconnect if no activity beyond that point

Changed

  • Frame methods read and write no longer return an io::Result<...>
    and instead return Option<Frame<...>> and nothing respectively
  • Frame::read method now supports zero-size items
  • Client::inmemory_spawn and UntypedClient::inmemory_spawn now take a
    ClientConfig as the second argument instead of ReconnectStrategy
  • Persist option now removed from ProcSpawn message and CLI
  • Bump minimum Rust version to 1.64.0

Binaries

Standalone binaries are built out for Windows (x86_64), MacOS (Intel & ARM), and Linux (x86_64, aarch64, armv7).

  • linux64-gnu-x86 is the x86-64 release on Linux using libc
  • linux64-gnu-aarch64 is the aarch64 release on Linux using libc
  • linux64-gnu-arm-v7 is the arm-v7 release on Linux using libc (for Raspberry PI)
  • linux64-musl-x86 is the x86-64 release on Linux using musl (static binary, no libc dependency)
  • linux64-musl-aarch64 is the aarch64 release on Linux using musl (static binary, no libc dependency)
  • macos is a universal binary for Mac OS that supports x86-64 and aarch64 (ARM) platforms
  • win64 is the x86-64 release on Windows using MSVC

SHA256 Checksums

994bde5f6d0c1f6ecb3c46c11707e99cc3128095a0e7060c033c79592da3d373  distant-macos
b058e9da607891bd18ee27d452f932d02c9239af20fb9ce799adcf6107212a1d  distant-win64.exe
2b51ce38eda2e592d07a890f94f62be3b3c39afc6f5f42d873a52258d3fe3097  distant-linux64-gnu-x86
cfff2e0ba902f988d39f4de9c2077ab4362c4e201dc5dbb50e6ed319f0dceef3  distant-linux64-gnu-aarch64
30d4b9d8fa550076985680064c168454cdbcb3b08fc59672ce41f163d50724e0  distant-linux64-gnu-arm-v7
7a4ea19e244ceb06f42ec2ac63d43891209a8a29912e549ca3ed970871630904  distant-linux64-musl-x86
5ce7bf66f9e2ec995e37e29ff11bcf821c02aee7247ac9e10462dd879d294bf7  distant-linux64-musl-aarch64
distant - distant v0.20.0-alpha.2

Published by github-actions[bot] almost 2 years ago

Release Notes

Added

  • New ConnectionState and ConnectionWatcher to support watching changes to
    the client connection, supporting clone_connection_watcher and
    on_connection_change methods for the client

Changed

  • Server will now drop the connection if it receives an error (other than
    WouldBlock) while trying to read from the transport, rather than just logging
    the error, regardless of whether the error is resumable

Binaries

Standalone binaries are built out for Windows (x86_64), MacOS (Intel & ARM), and Linux (x86_64, aarch64, armv7).

  • linux64-gnu-x86 is the x86-64 release on Linux using libc
  • linux64-gnu-aarch64 is the aarch64 release on Linux using libc
  • linux64-gnu-arm-v7 is the arm-v7 release on Linux using libc (for Raspberry PI)
  • linux64-musl-x86 is the x86-64 release on Linux using musl (static binary, no libc dependency)
  • linux64-musl-aarch64 is the aarch64 release on Linux using musl (static binary, no libc dependency)
  • macos is a universal binary for Mac OS that supports x86-64 and aarch64 (ARM) platforms
  • win64 is the x86-64 release on Windows using MSVC

SHA256 Checksums

78d064f3056d0c7b398a4567b4254e3ab2d2a1d289900e3cbdd1e2954cfa5658  distant-macos
6c095cf22faff13d413e3b8c648eaa744de06f9852bbf649e6688bf25b3b6358  distant-win64.exe
a4c9f4566d2bfaf5dd4de13f9b03de5be20d04f0d4a40f68f01d01052171b817  distant-linux64-gnu-x86
55346a3088c896105cd1411f047eb191aa435ca3aabd3786f4174abe9d3fadb9  distant-linux64-gnu-aarch64
2fcc6f35ab804ffaca882ef514622f3a0cd39ef955a02ed041707ac2411f6517  distant-linux64-gnu-arm-v7
9981a7edb1ec2dab75a0107b47865bd2d77b9b16d1a23c6ae2dfa5bd0fd65c38  distant-linux64-musl-x86
8d9fc5a88d8f8f7c51f3bd2a462541f5b28653e1dc20ba7c597f6a823b6cd79b  distant-linux64-musl-aarch64
distant - distant v0.20.0-alpha.1

Published by github-actions[bot] almost 2 years ago

Release Notes

NOTE: This is incomplete as v0.20.0 is a near-complete rewrite internally.

Added

  • New contains and or types for SearchQueryCondition

Changed

  • SearchQueryCondition now escapes regex for all types except regex
  • Removed min_depth option from search
  • Updated search to properly use binary detection, filter out common ignore
    file patterns, and execute in parallel via the ignore crate and num_cpus
    crate to calculate thread count

Fixed

  • Resolution of BindAddress now properly handles hostnames ranging from
    localhost to example.com
  • Parsing of BindAddress no longer causes a stack overflow

Binaries

Standalone binaries are built out for Windows (x86_64), MacOS (Intel & ARM), and Linux (x86_64, aarch64, armv7).

  • linux64-gnu-x86 is the x86-64 release on Linux using libc
  • linux64-gnu-aarch64 is the aarch64 release on Linux using libc
  • linux64-gnu-arm-v7 is the arm-v7 release on Linux using libc (for Raspberry PI)
  • linux64-musl-x86 is the x86-64 release on Linux using musl (static binary, no libc dependency)
  • linux64-musl-aarch64 is the aarch64 release on Linux using musl (static binary, no libc dependency)
  • macos is a universal binary for Mac OS that supports x86-64 and aarch64 (ARM) platforms
  • win64 is the x86-64 release on Windows using MSVC

SHA256 Checksums

9ccf723e2fa3225634e9bb8a8d1253e0eecbae721f0ef6e1102e851a21707068  distant-macos
628ea0e1e36b4b915202ded68f7fecb957bbaac6fd8fc6e9776e68ff1b34487e  distant-win64.exe
69d6572693961cfc91ed0437a85efd1acbc3d2d8344e858397714ce35a2ece09  distant-linux64-gnu-x86
ca95653da3b1ec7abca6a1f8a2838fd3e52b29b406002d8649bec05662a5c07b  distant-linux64-gnu-aarch64
0009d25ab4f32a27fe4197adfe3ae0b9b3e2cd6ee69ec3fe0d377585be80a3c7  distant-linux64-gnu-arm-v7
c1e048863a65957a9e7131e867f657fb8e79108527c298db17ffbbc116c20312  distant-linux64-musl-x86
0639486b00d8f90bf482f06eea4c42e7bf7022a8bbe877c7665f78d3c5ce30d0  distant-linux64-musl-aarch64
distant - distant v0.19.0

Published by github-actions[bot] about 2 years ago

Release Notes

Added

  • SystemInfo via ssh backend now detects and reports username and shell
  • SystemInfo via ssh backend now reports os when windows detected
  • Capabilities request/response for server and manager that report back the
    capabilities (and descriptions) supported by the server or manager
  • Search and CancelSearch request/response for server that performs a
    search using grep crate against paths or file contents, returning results
    back as a stream
    • New Searcher available as part of distant client interface to support
      performing a search and getting back results
    • Updated DistantChannelExt to support creating a Searcher and canceling
      an ongoing search query
    • distant client action search now supported, waiting for results and
      printing them out

Changed

  • SystemInfo data type now includes two additional fields: username and
    shell. The username field represents the name of the user running the
    server process. The shell field points to the default shell associated with
    the user running the server process

Fixed

  • distant client shell will now use the default shell from system info, or
    choose between /bin/sh and cmd.exe as the default shell based on the
    family returned by a system info request
  • distant client shell properly terminates master pty when the shell exits,
    resolving the hanging that occurred for Windows cmd.exe and
    powershell.exe upon exit
  • ssh launch with login shell now only uses sh when remote family is unix
  • ssh backend implementation of copy now works more widely across windows
    systems by switching to powershell.exe to perform copy

Binaries

Standalone binaries are built out for Windows (x86_64), MacOS (Intel & ARM), and Linux (x86_64).

  • linux64-gnu is the x86-64 release on Linux using libc
  • linux64-musl is the x86-64 release on Linux using musl (static binary, no libc dependency)
  • macos is a universal binary for Mac OS that supports x86-64 and aarch64 (arm) platforms
  • win64 is the x86-64 release on Windows using MSVC

SHA256 Checksums

266697ccc262216627a6a79ab0a7ba82e4825bceae89126f6e77455628b39d8f  distant-macos
15f5ec9486d579cca24f6d4fb771aaf13c3a0bcf8c0d7ce0fc6e9119d642c1a3  distant-win64.exe
3458e2f7d9a30ca889a2309420a4433c945148ee6ff9d3f7feab36a8bc9d6d6e  distant-linux64-gnu
e0cae89a74c8f01ba88cbae986b801172ccece1b1f8437126a0256be9000b0bd  distant-linux64-musl
distant - distant v0.18.0

Published by github-actions[bot] about 2 years ago

Release Notes

Changed

  • shutdown-after replaced with shutdown that supports three options:
    1. never - server will never shutdown automatically
    2. after=N - server will shutdown after N seconds
    3. lonely=N - server will shutdown N seconds after no connections

Binaries

Standalone binaries are built out for Windows (x86_64), MacOS (Intel & ARM), and Linux (x86_64).

  • linux64-gnu is the x86-64 release on Linux using libc
  • linux64-musl is the x86-64 release on Linux using musl (static binary, no libc dependency)
  • macos is a universal binary for Mac OS that supports x86-64 and aarch64 (arm) platforms
  • win64 is the x86-64 release on Windows using MSVC

SHA256 Checksums

50791988ae76e540afae273993354d669d1ee0a34544567551c9cd2b212287a6  distant-macos
b3b6e7541d61422193eb73fc9233f227e5bdc76cf7feb66e231f169d81bb1213  distant-win64.exe
65d49688f60fb8e9e8427b407c748115db881d2eaf81c26eb4ff3f2146bf2dc4  distant-linux64-gnu
e91fb2e7aac1f0f8ebd0e9032aeb901b3656c824c8769fc5f3f19c9868f57701  distant-linux64-musl
distant - distant v0.17.6

Published by github-actions[bot] about 2 years ago

Release Notes

Fixed

  • shutdown-after cli parameter and config option now properly shuts down
    server after N seconds with no connections

Binaries

Standalone binaries are built out for Windows (x86_64), MacOS (Intel & ARM), and Linux (x86_64).

  • linux64-gnu is the x86-64 release on Linux using libc
  • linux64-musl is the x86-64 release on Linux using musl (static binary, no libc dependency)
  • macos is a universal binary for Mac OS that supports x86-64 and aarch64 (arm) platforms
  • win64 is the x86-64 release on Windows using MSVC

SHA256 Checksums

dcb3a10cc7ed5c6f63862d14fae7de671aa753c784c8e89660dce83c0709e5a5  distant-macos
245d05d28a2cb2fa970037017b53d6cbfc684d60998f39874ccdbc7df5a805c1  distant-win64.exe
c27f38accc4abf48d1f12518052ac22ac90b383d2c576a52e92dec08013df07b  distant-linux64-gnu
85184699faad4629e6dd5a6b17350ab8284ad814f625a05915d045f8b00de5e0  distant-linux64-musl
distant - distant v0.17.5

Published by github-actions[bot] about 2 years ago

Release Notes

Fixed

  • Handle RecommendedWatcher failing with an unsupported OS function on M1 Mac
    architecture running a Linux container via Docker
    (notify #423)

Binaries

Standalone binaries are built out for Windows (x86_64), MacOS (Intel & ARM), and Linux (x86_64).

  • linux64-gnu is the x86-64 release on Linux using libc
  • linux64-musl is the x86-64 release on Linux using musl (static binary, no libc dependency)
  • macos is a universal binary for Mac OS that supports x86-64 and aarch64 (arm) platforms
  • win64 is the x86-64 release on Windows using MSVC

SHA256 Checksums

cfd49ec5d21e22f970841f3d368da54aa1cc6cbda0a705a45696a30579d0c25a  distant-macos
687b6f57d92eb1deaf791638c65407f5bf428434ab0330d6a2213b1dbbb5c718  distant-win64.exe
0fa067c6ec49e63c655e686d5eac2721997b31a34237f73c559682c6bf9bc0c5  distant-linux64-gnu
0b7d7d0ea7f749139c271d133faa571a889d5147ea17db3bd6f9a0a55c43ee9b  distant-linux64-musl
distant - distant v0.17.4

Published by github-actions[bot] about 2 years ago

Release Notes

Fixed

  • Parsing of a host for Destination now correctly handles IPv6 addresses such
    that ::1 and [::1]:12345 are captured into host and port
  • Displaying of Distant and DistantSingleKeyCredentials now properly wrap
    IPv6 addresses in square brackets when a port is available

Binaries

Standalone binaries are built out for Windows (x86_64), MacOS (Intel & ARM), and Linux (x86_64).

  • linux64-gnu is the x86-64 release on Linux using libc
  • linux64-musl is the x86-64 release on Linux using musl (static binary, no libc dependency)
  • macos is a universal binary for Mac OS that supports x86-64 and aarch64 (arm) platforms
  • win64 is the x86-64 release on Windows using MSVC

SHA256 Checksums

5032b584c3644ef31b630d9c8d38eb58a72873d8a1cfada1117b264463a457c6  distant-macos
9ee8cb2241fef0680f471321b69ee33dbc94257b7e22a65ed008481e0f2fd8d1  distant-win64.exe
eb88f0b5a1d35fc80cfd4294ea93c9941af6634af5ddd2d35e919d7213a41f1b  distant-linux64-gnu
57c6eaf810c814b1343def4a5f763fbd848ed9ad2a788772b4313c9b07a425bc  distant-linux64-musl