Airbrussh Versions Save

Airbrussh pretties up your SSHKit and Capistrano output

v1.3.0

6 years ago

v1.2.0

7 years ago
  • #95: colorize LogMessage label on WARN level and above - @klyonrad
  • #106: Remove the log_file parameter from the CommandFormatter#exit_message method; it was unused - @mattbrictson

v1.1.2

7 years ago
  • Add Ruby 2.4.0 to testing matrix and fix Ruby 2.4 deprecation warnings

v1.1.1

7 years ago
  • When a Capistrano deploy fails and the error log is dumped to the console, Airbrussh no longer truncates the error output. This ensures that important troubleshooting information is not lost. #91

v1.1.0

7 years ago
  • Use default color for info messages. When using the gray color on some implementation of the solarized theme the text is not visible. The solarized theme is popular and bugs have been reported about missed error messages, so this patch switches these messages to the default color. (see #84)

v1.0.2

8 years ago
  • Fix a crash that can happen in certain multi-server deployments when Capistrano's invoke is used to switch Rake tasks in the middle of SSHKit execution (#78, #80)

v1.0.1

8 years ago
  • Fix support for fake TTYs reporting a 0 width console like Ruby's PTY library #76

v1.0.0

8 years ago
  • No changes since 1.0.0.beta1.

v1.0.0.beta1

8 years ago

Breaking Changes:

  • None

Added:

  • Airbrussh can now be configured with an options Hash passed to the Airbrussh::Formatter constructor. This is in order to standardize how all SSHKit formatters are configured (see SSHKit #308).

v0.8.0

8 years ago
  • Airbrussh now displays the correct user@host output in the following edge-cases:
    • Inside an SSHKit as(:user => "...") block
    • When a user is specified using set :ssh_options, :user => "..." (see #65)