All Versions
10
Latest Version
Avg Release Cycle
87 days
Latest Release
866 days ago
Changelog History
Changelog History
-
v1.1.0 Changes
May 21, 2021๐ฅ Breaking Changes:
- โ Removes
runbook install
(should have happened in v1.0.0) - โฌ๏ธ Drops support for Ruby 2.2 and bundler < 2.2
๐ Features:
- โ Add support for Ruby 3.0.0 (thanks @pblesi!)
- โ Add metadata argument that saves TMUX panes: keep_panes (thanks @ClashTheBunny)
๐ Documentation:
- โก๏ธ Update assert parameters description
- โก๏ธ Update example for module class method (thanks @voodoologic!)
- โ Removes
-
v1.0.0 Changes
July 24, 2020๐ฅ Breaking Changes:
- Commands and tmux commands that previously escaped single quotes will now require un-escaped single quotes
๐ Features:
- โ Add Node#parent_entity to find the containinng entity for a node
๐ Fixes:
- ๐ Fix bugs requiring escaping single quotes in commands and tmux_commands (BACKWARDS INCOMPATIBLE CHANGE)
- ๐ Fix
File.exists?
deprecation warning (Thanks onk!)
๐ Documentation:
- Add suppress_capture_output.rb runbook example
-
v0.16.1 Changes
November 25, 2019๐ Fixes:
- ๐ Fix bug preventing skipping of steps not nested in sections (Thanks celeen!)
-
v0.16.0 Changes
November 22, 2019๐ Fixes:
- โ Add better error messages for runtime values accessed at compile time
๐ New Features
- โ Add entity tags and labels
- โ Add
setup
entity for initial runbook setup code - โ Add
Runbook.views
method for accessing an array of all defined views - โ Add airbrussh context for better ssh_kit output
- Backtick "into" targets in markdown view output (Thanks fwolfst!)
-
v0.15.0 Changes
September 29, 2019๐ Fixes:
- Halt the project generator if gem generation fails
- Replace timeout_statement with abort_statement for assert statements
- ๐ Make runbook state files only readable by the current user
- ๐ Allow / characters in the title of a runbook (Thanks brafales!)
๐ New Features
- ๐ Allow books to have steps as children
- ๐ Allow "echo: false" for ask statements
- ๐ฆ Expose "run" as an argument to ruby_commands
-
v0.14.0 Changes
August 15, 2019๐ Fixes:
- ๐ Relax gem dependencies to be compatible with gems up to the next major version
๐ New Features
- Alias
install
cli command toinit
- โ Add
Runbook.config
alias forRunbook.configuration
-
v0.13.0 Changes
July 10, 2019Potentially Breaking Changes:
- ๐ Uses of Runbook that expect the CLI to return a zero exit code may exhibit different behavior if their runbook encounters an error.
๐ Fixes:
- Return non-zero exit code on CLI error
๐ New Features
- โ Add runbook "generate" command, including generator, runbook, statement, dsl_extension, and project generators
- โ Add "install" CLI command
-
v0.12.1 Changes
June 12, 2019๐ Fixes:
- ๐ Fix FormatHelper#deindent bug
-
v0.12.0 Changes
May 16, 2019๐ Fixes:
- ๐ Fix jump backwards dynamic statement bug
๐ New Features
- โ Add attempts counter to assert statement
- โ Add capture_all statement
-
v0.11.0 Changes
March 26, 2019๐ฅ Breaking Changes:
- ๐ Runbooks no longer require explicit registration using
Runbook.books[:book] = book
. This declaration will fail and is no longer necessary. It should be removed. Additionally if you are retrieving runbooks usingRunbook.books
, it's implementation has changed from a hash to an array. You should access elements using an index, not with a key.
Potentially Breaking Changes:
- โช Steps without titles no longer prompt in paranoid mode. Consequently users may be taken off guard by no receiving a prompt to execute these steps. A workaround is to pass an empty string as a title if you still want these steps to prompt.
๐ Fixes:
- ๐ Fix bug in Thor usage
- ๐ Fix config file load ordering to support extending configuration
- ๐ Fix bug preventing assert statement from checking multiple times
๐ New Features
- Retry confirm statement when bad input is received
- โ Add additional output when running capture statement
- Automatically clear panes when cd'ing to new directory during layout statement
- ๐ Allow metadata[:toolbox] to be set dynamically
- Do not prompt for steps without titles in paranoid mode
- ๐ Runbooks no longer require explicit registration using