Skip to content

Releases: orhun/rustypaste-cli

v0.9.0

27 Mar 20:30
fdccfed
Compare
Choose a tag to compare

Added

  • Add argument to specify filename by @tessus in #88

rustypaste >=0.15.0 supports overriding the file name by using filename header. You can also use this functionality in rpaste as follows:

rpaste -n filename-on-server.txt awesome.txt

Changed

Removed

New Contributors

v0.8.0

05 Sep 18:09
5b074bb
Compare
Choose a tag to compare

Added

  • Add option to delete file(s) from server (#54)

rustpaste now supports deleting files starting from 0.14.0 thus a new flag (-d) is added to rpaste.

rpaste -d file.txt

To use this feature, set tokens for both rustypaste and rustypaste-cli in the configuration file via delete_tokens / delete_token option.

Changed

  • Use IsTerminal from stdlib (#55)
  • Disable Rust beta builds
  • Upgrade dependencies

v0.7.0

12 Aug 17:14
508d5db
Compare
Choose a tag to compare

Added

  • Added -l flag for retrieving file list from the server (#45)

For example:

rpaste -l  # JSON output
rpaste -lp # Table output (pretty)

[server].expose_list option should be set to true on rustypaste server for this flag to work.

Removed

  • Remove extra newline from version output (#36)

v0.6.0

08 Jul 20:39
b165121
Compare
Choose a tag to compare

Changed

  • Automatically detect if the data is piped (#28)

Now when data is piped into rpaste, there is no reason to add - as a file.

Before:

cat whatever.txt | rpaste -

After:

cat whatever.txt | rpaste
  • Upgrade dependencies

v0.5.0

01 Jul 10:01
94b0d52
Compare
Choose a tag to compare

Added

  • Support using the OS TLS trust store (#18)
    • Added use-native-certs feature flag for enabling the default TLS implementation.

Changed

  • Mention the platform-specific configuration directory in the documentation (#10)
  • Upgrade dependencies

Fixed

  • Fix the server version retrieval (#17)

v0.4.0

30 May 23:45
164a965
Compare
Choose a tag to compare

Added

  • Support uploading one shot URLs

rustypaste supports one shot URL uploads since 0.10.0. To use this feature:

rpaste -ou https://example.com/some/long/url
  • Add example for using the stdin
  • Add installation instructions for Alpine Linux

Changed

v0.3.0

31 Dec 14:22
8dd710f
Compare
Choose a tag to compare

Added

  • Add a progress bar for upload
    • Now you can track the upload status for big files!
    • Thanks to @svenstaro for the suggestion!

Updated

  • Upgrade dependencies

v0.2.0

04 Oct 16:32
9895aa8
Compare
Choose a tag to compare

Added

  • Add --server-version flag
    • With the last release of rustypaste, it is now possible to retrieve the server version via /version endpoint.
    • You can print the server version with using -V/--server-version flag with rustypaste-cli.

Updated

  • Upgrade dependencies
  • Enable GitHub Sponsors for funding
    • Consider supporting me for my open-source work 💖

v0.1.11

18 Jun 17:36
280aca5
Compare
Choose a tag to compare

Updated

  • Build/release for more platforms (MacOS & Windows)

v0.1.10

18 Jun 17:13
adea539
Compare
Choose a tag to compare
v0.1.10 Pre-release
Pre-release

Updated

  • Build/release for more platforms (MacOS & Windows)

Fixed

  • Fix deployment workflow (use compatible commands for MacOS & Windows)