Skip to content

Releases: rkoster/instant-bosh

v0.3

12 Jan 19:37
v0.3

Choose a tag to compare

instant-bosh CLI Release v0.3

This release includes pre-built binaries for the ibosh command-line interface.

Installation

Download the appropriate binary for your platform from the assets below and add it to your PATH.

Linux (x86_64):

curl -sL https://github.com/rkoster/instant-bosh/releases/download/v0.3/instant-bosh_Linux_x86_64.tar.gz | tar xz
sudo mv ibosh /usr/local/bin/

Linux (ARM64):

curl -sL https://github.com/rkoster/instant-bosh/releases/download/v0.3/instant-bosh_Linux_arm64.tar.gz | tar xz
sudo mv ibosh /usr/local/bin/

macOS (Intel):

curl -sL https://github.com/rkoster/instant-bosh/releases/download/v0.3/instant-bosh_Darwin_x86_64.tar.gz | tar xz
sudo mv ibosh /usr/local/bin/

macOS (Apple Silicon):

curl -sL https://github.com/rkoster/instant-bosh/releases/download/v0.3/instant-bosh_Darwin_arm64.tar.gz | tar xz
sudo mv ibosh /usr/local/bin/

Windows:
Download the zip file, extract it, and add the ibosh.exe to your PATH.

Changelog

Features

  • ae44a43: feat: Add light stemcell support for faster deployments (@rubionic)
  • 350815e: feat: add --skip-stemcell-upload flag and improve stemcell upload logging (@rkoster)
  • 4cfb144: feat: refactor build workflow to use deskrun pattern (@rubionic)
  • 0e24f6a: feat: use install-docker.sh instead of docker@latest in devbox (@rkoster)

Bug Fixes

Others

What's Changed

See the full changelog below for details.

v0.2

16 Dec 10:26
v0.2
56d3f34

Choose a tag to compare

instant-bosh CLI Release v0.2

This release includes pre-built binaries for the ibosh command-line interface.

Installation

Download the appropriate binary for your platform from the assets below and add it to your PATH.

Linux (x86_64):

curl -sL https://github.com/rkoster/instant-bosh/releases/download/v0.2/instant-bosh_Linux_x86_64.tar.gz | tar xz
sudo mv ibosh /usr/local/bin/

Linux (ARM64):

curl -sL https://github.com/rkoster/instant-bosh/releases/download/v0.2/instant-bosh_Linux_arm64.tar.gz | tar xz
sudo mv ibosh /usr/local/bin/

macOS (Intel):

curl -sL https://github.com/rkoster/instant-bosh/releases/download/v0.2/instant-bosh_Darwin_x86_64.tar.gz | tar xz
sudo mv ibosh /usr/local/bin/

macOS (Apple Silicon):

curl -sL https://github.com/rkoster/instant-bosh/releases/download/v0.2/instant-bosh_Darwin_arm64.tar.gz | tar xz
sudo mv ibosh /usr/local/bin/

Windows:
Download the zip file, extract it, and add the ibosh.exe to your PATH.

Changelog

Features

  • e2f086f: feat: add --image flag to start command for custom image support (@rubionic)
  • b10be3d: feat: add GitHub Actions test workflow for PR validation (@rubionic)
  • 3a2084c: feat: add automatic image update check on start (@rubionic)
  • 5275243: feat: add counterfeiter for Docker API mocking and comprehensive unit tests (@rubionic)
  • 33245ce: feat: add manifest diff display when updating images (@rubionic)
  • f28fb58: feat: fix container recreation logic and add comprehensive test documentation (@rubionic)
  • 689bb2f: feat: implement auto-bump workflow for vendir dependencies (@rubionic)
  • 271fcf7: feat: implement comprehensive tests with DirectorFactory pattern (@rubionic)
  • 81432fb: feat: implement factory pattern for Docker client dependency injection (@rubionic)
  • 7e9f06a: feat: implement factory patterns for director config and UI testing (@rubionic)
  • d870121: feat: implement upgrade support for running containers (@rubionic)
  • 6cbd615: feat: improve UX by showing image name:tag in update messages (@rubionic)
  • 5192d62: feat: improve UX for volume and network creation messages (@rubionic)
  • 17dc493: feat: improve upgrade flow with clean manifest diff and registry authentication (@rkoster)
  • 837bfcc: feat: rename status command to env and add BOSH releases information (@rubionic)

Bug Fixes

Others

  • 979c6af: refactor: address PR feedback from code review (@rubionic)
  • 3d84813: refactor: remove pull command as functionality is handled by start (@rubionic)
  • 0c9a780: refactor: separate image management from container lifecycle in start command (@rubionic)
  • 9eeda3b: refactor: update env output format and add container details (@rubionic)
  • d8d8fb2: refactor: use bosh-cli table package and remove URL column from releases output (@rubionic)
  • 8d525f2: refactor: use counterfeiter-generated fakes for all test interfaces (@rubionic)
  • 8d88fd4: refactor: use dockerfakes for start command tests (@rubionic)
  • e852a8e: refactor: use go run for counterfeiter to eliminate PATH dependency (@rkoster)

What's Changed

See the full changelog below for details.

v0.1

04 Dec 18:52
v0.1
991697f

Choose a tag to compare

instant-bosh CLI Release v0.1

This release includes pre-built binaries for the ibosh command-line interface.

Installation

Download the appropriate binary for your platform from the assets below and add it to your PATH.

Linux (x86_64):

curl -sL https://github.com/rkoster/instant-bosh/releases/download/v0.1/instant-bosh_Linux_x86_64.tar.gz | tar xz
sudo mv ibosh /usr/local/bin/

Linux (ARM64):

curl -sL https://github.com/rkoster/instant-bosh/releases/download/v0.1/instant-bosh_Linux_arm64.tar.gz | tar xz
sudo mv ibosh /usr/local/bin/

macOS (Intel):

curl -sL https://github.com/rkoster/instant-bosh/releases/download/v0.1/instant-bosh_Darwin_x86_64.tar.gz | tar xz
sudo mv ibosh /usr/local/bin/

macOS (Apple Silicon):

curl -sL https://github.com/rkoster/instant-bosh/releases/download/v0.1/instant-bosh_Darwin_arm64.tar.gz | tar xz
sudo mv ibosh /usr/local/bin/

Windows:
Download the zip file, extract it, and add the ibosh.exe to your PATH.

Initial Release!!