Skip to content

Releases: LucasPickering/slumber

Version 0.10.0-beta.2

20 Dec 13:26
Compare
Choose a tag to compare
Version 0.10.0-beta.2 Pre-release
Pre-release

Release Notes

Added

  • Add back manual reload keybinding (R)
    • Mostly for development purposes
  • Add collection ID/path to help modal (#59)
    • Also add collection ID to terminal title
  • Persist UI state between sessions (#39)
  • Text window can be controlled with PgUp/PgDown/Home/End (#77)

Changed

  • [BREAKING] Key profiles/chains/requests by ID in collection file
  • [BREAKING] Merge request history into a single DB file
    • Request history (and UI state) will be lost
  • [BREAKING] show subcommand now takes a target argument
    • Right now the only option is slumber show dir, which has the same behavior as the old slumber show (except now it prints the bare directory)
  • Hide sensitive chain values in preview
  • Change fullscreen keybinding from F11 to F
    • F11 in some cases is eaten by the IDE or OS, which is annoying

Fixed

  • Don't require collection file to be present for show subcommand (#62)
  • Fix state file being created in root Slumber directory if collection file is invalid (#71)
  • Fix pane cycling while in fullscreen (#76)

Install slumber 0.10.0-beta.2

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/LucasPickering/slumber/releases/download/v0.10.0-beta.2/slumber-installer.sh | sh

Install prebuilt binaries via Homebrew

brew install LucasPickering/homebrew-tap/slumber

Download slumber 0.10.0-beta.2

File Platform Checksum
slumber-aarch64-apple-darwin.tar.xz macOS Apple Silicon checksum
slumber-x86_64-apple-darwin.tar.xz macOS Intel checksum
slumber-x86_64-unknown-linux-gnu.tar.xz Linux x64 checksum

Version 0.10.0-beta.1

06 Dec 14:17
Compare
Choose a tag to compare
Version 0.10.0-beta.1 Pre-release
Pre-release

Release Notes

Added

  • Add back manual reload keybinding (R)
    • Mostly for development purposes
  • Add collection ID/path to help modal (#59)
    • Also add collection ID to terminal title
  • Persist UI state between sessions (#39)

Changed

  • [BREAKING] Key profiles/chains/requests by ID in collection file
  • [BREAKING] Move request history from slumber/{id}.sqlite to slumber/{id}/state.sqlite
    • Request history will be lost. If you want to recover it, you can move the old file to the new location (use slumber show to find the directory location)
  • Hide sensitive chain values in preview
  • Change fullscreen keybinding from F11 to F
    • F11 in some cases is eaten by the IDE or OS, which is annoying

Fixed

  • Don't require collection file to be present for show subcommand (#62)

Install slumber 0.10.0-beta.1

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/LucasPickering/slumber/releases/download/v0.10.0-beta.1/slumber-installer.sh | sh

Install prebuilt binaries via Homebrew

brew install LucasPickering/homebrew-tap/slumber

Download slumber 0.10.0-beta.1

File Platform Checksum
slumber-aarch64-apple-darwin.tar.xz macOS Apple Silicon checksum
slumber-x86_64-apple-darwin.tar.xz macOS Intel checksum
slumber-x86_64-unknown-linux-gnu.tar.xz Linux x64 checksum

0.9.0 - 2023-11-28

28 Nov 15:32
Compare
Choose a tag to compare

Release Notes

Added

  • Add setting to toggle cursor capture
  • Add help modal
  • Add cursor navigation

Changed

  • Always show help text in footer, regardless of notification state

Install slumber 0.9.0

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/LucasPickering/slumber/releases/download/v0.9.0/slumber-installer.sh | sh

Install prebuilt binaries via Homebrew

brew install LucasPickering/homebrew-tap/slumber

Download slumber 0.9.0

File Platform Checksum
slumber-aarch64-apple-darwin.tar.xz macOS Apple Silicon checksum
slumber-x86_64-apple-darwin.tar.xz macOS Intel checksum
slumber-x86_64-unknown-linux-gnu.tar.xz Linux x64 checksum

0.8.0 - 2023-11-21

21 Nov 21:43
Compare
Choose a tag to compare

Release Notes

Added

  • Add slumber show subcommand

Changed

  • Remove keybinding to reload collection
    • Not useful now that the TUI has automatic reloading
  • Move to stable Rust channel and add MSRV of 1.74

Fixed

  • Don't panic if the collection file is invalid on first startup #34
    • The TUI will now show an empty screen, and watch the collection file for changes
  • Fix long status code reasons getting cut off in response header #40
  • Trim leading/trailing newlines from header values to prevent validation error

Install slumber 0.8.0

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/LucasPickering/slumber/releases/download/v0.8.0/slumber-installer.sh | sh

Install prebuilt binaries via Homebrew

brew install LucasPickering/homebrew-tap/slumber

Download slumber 0.8.0

File Platform Checksum
slumber-aarch64-apple-darwin.tar.xz macOS Apple Silicon checksum
slumber-x86_64-apple-darwin.tar.xz macOS Intel checksum
slumber-x86_64-unknown-linux-gnu.tar.xz Linux x64 checksum

0.7.0 - 2023-11-16

16 Nov 11:45
Compare
Choose a tag to compare

Release Notes

Added

  • Added recursive templates for profile values, using the !template tag before a value

Changed

  • Parse templates up front instead of during render
  • Switch to nom for template parsing
    • Parse errors should be better now

Install slumber 0.7.0

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/LucasPickering/slumber/releases/download/v0.7.0/slumber-installer.sh | sh

Install prebuilt binaries via Homebrew

brew install LucasPickering/homebrew-tap/slumber

Download slumber 0.7.0

File Platform Checksum
slumber-aarch64-apple-darwin.tar.xz macOS Apple Silicon checksum
slumber-x86_64-apple-darwin.tar.xz macOS Intel checksum
slumber-x86_64-unknown-linux-gnu.tar.xz Linux x64 checksum

0.6.0 - 2023-11-11

11 Nov 01:03
Compare
Choose a tag to compare

Release Notes

Added

  • Add ability to preview template values. This will show the rendered value under current settings #29
    • This includes a new modal to toggle the setting on/off, via the X key
  • Add command source type for chained values, which uses stdout from an executed subprocess command #31

Changed

  • HTTP method is now a plain string, not a template string. This simplifies some internal logic, and I don't think there was a compelling reason to make a template in the first place.

Install slumber 0.6.0

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/LucasPickering/slumber/releases/download/v0.6.0/slumber-installer.sh | sh

Install prebuilt binaries via Homebrew

brew install LucasPickering/homebrew-tap/slumber

Download slumber 0.6.0

File Platform Checksum
slumber-aarch64-apple-darwin.tar.xz macOS Apple Silicon checksum
slumber-x86_64-apple-darwin.tar.xz macOS Intel checksum
slumber-x86_64-unknown-linux-gnu.tar.xz Linux x64 checksum

v0.5.0

07 Nov 21:47
Compare
Choose a tag to compare

Release Notes

Added

  • Add top-level collection id field
    • Needed in order to give each collection its own history file
  • Disable mouse capture to allow text highlighting #17
  • Add keybinding (F2) to send request from any view

Fixed

  • Differentiate history between different collections #10
  • Ensure ctrl-c can't get eaten by text boxes (it guarantees exit now) #18

Changed

  • Adjust size of profile list dynamically based on number of profiles
  • Use structured table display format for query parameters and headers
  • Tweak list and tab styling

Install slumber 0.5.0

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/LucasPickering/slumber/releases/download/v0.5.0/slumber-installer.sh | sh

Install prebuilt binaries via Homebrew

brew install LucasPickering/homebrew-tap/slumber

Download slumber 0.5.0

File Platform Checksum
slumber-aarch64-apple-darwin.tar.xz macOS Apple Silicon checksum
slumber-x86_64-apple-darwin.tar.xz macOS Intel checksum
slumber-x86_64-unknown-linux-gnu.tar.xz Linux x64 checksum

v0.4.0

02 Nov 15:33
Compare
Choose a tag to compare

Install slumber 0.4.0

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/LucasPickering/slumber/releases/download/v0.4.0/slumber-installer.sh | sh

Install prebuilt binaries via Homebrew

brew install LucasPickering/homebrew-tap/slumber

Download slumber 0.4.0

File Platform Checksum
slumber-aarch64-apple-darwin.tar.xz macOS Apple Silicon checksum
slumber-x86_64-apple-darwin.tar.xz macOS Intel checksum
slumber-x86_64-unknown-linux-gnu.tar.xz Linux x64 checksum

v0.3.1

22 Oct 19:22
Compare
Choose a tag to compare

Install slumber 0.3.1

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/LucasPickering/slumber/releases/download/v0.3.1/slumber-installer.sh | sh

Install prebuilt binaries via Homebrew

brew install LucasPickering/homebrew-tap/slumber

Download slumber 0.3.1

File Platform Checksum
slumber-aarch64-apple-darwin.tar.xz macOS Apple Silicon checksum
slumber-x86_64-apple-darwin.tar.xz macOS Intel checksum
slumber-x86_64-unknown-linux-gnu.tar.xz Linux x64 checksum