Skip to content

Commit

Permalink
1.40.3 release info
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Quest <kcq.public@gmail.com>
  • Loading branch information
kcq committed Jul 13, 2023
1 parent a7aa924 commit 155f1b7
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 13 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Releases

## 1.40.3 (7/13/2023)

### New Features

- Kubernetes runtime support for the `debug` command
- `appbom` command in the main app and `--appbom` flag in the sensor

### Improvements

- More `debug` command flags
- README docs for the `debug` command
- Ability to detect the Docker Desktop unix socket
- Code and logging cleanup

### Bug Fixes

- Sensor volume fix for sensor symlinks (to address the Homebrew installed problems with sensor)
- Various dependency updates to get security fixes

## 1.40.2 (5/12/2023)

### Improvements
Expand Down
27 changes: 14 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,9 @@ Elixir application images:

## RECENT UPDATES

Latest version: 1.40.2 (5/12/2023)
Latest version: 1.40.3 (7/13/2023)

The 1.37.x-1.40.x releases add an experimental docker-compose support and various improved application tracing capabilities for the build command.
The 1.40.3 release adds the next version of the `debug` command with support for kubernetes.

For more info about the latest release see the [`CHANGELOG`](CHANGELOG.md).

Expand All @@ -215,15 +215,15 @@ slim update

1. Download the zip package for your platform.

- [Latest Mac binaries](https://downloads.dockerslim.com/releases/1.40.2/dist_mac.zip) (`curl -L -o ds.zip https://downloads.dockerslim.com/releases/1.40.2/dist_mac.zip`)
- [Latest Mac binaries](https://downloads.dockerslim.com/releases/1.40.3/dist_mac.zip) (`curl -L -o ds.zip https://downloads.dockerslim.com/releases/1.40.3/dist_mac.zip`)

- [Latest Mac M1 binaries](https://downloads.dockerslim.com/releases/1.40.2/dist_mac_m1.zip) (`curl -L -o ds.zip https://downloads.dockerslim.com/releases/1.40.2/dist_mac_m1.zip`)
- [Latest Mac M1 binaries](https://downloads.dockerslim.com/releases/1.40.3/dist_mac_m1.zip) (`curl -L -o ds.zip https://downloads.dockerslim.com/releases/1.40.3/dist_mac_m1.zip`)

- [Latest Linux binaries](https://downloads.dockerslim.com/releases/1.40.2/dist_linux.tar.gz) (`curl -L -o ds.tar.gz https://downloads.dockerslim.com/releases/1.40.2/dist_linux.tar.gz`)
- [Latest Linux binaries](https://downloads.dockerslim.com/releases/1.40.3/dist_linux.tar.gz) (`curl -L -o ds.tar.gz https://downloads.dockerslim.com/releases/1.40.3/dist_linux.tar.gz`)

- [Latest Linux ARM binaries](https://downloads.dockerslim.com/releases/1.40.2/dist_linux_arm.tar.gz) (`curl -L -o ds.tar.gz https://downloads.dockerslim.com/releases/1.40.2/dist_linux_arm.tar.gz`)
- [Latest Linux ARM binaries](https://downloads.dockerslim.com/releases/1.40.3/dist_linux_arm.tar.gz) (`curl -L -o ds.tar.gz https://downloads.dockerslim.com/releases/1.40.3/dist_linux_arm.tar.gz`)

- [Latest Linux ARM64 binaries](https://downloads.dockerslim.com/releases/1.40.2/dist_linux_arm64.tar.gz) (`curl -L -o ds.tar.gz https://downloads.dockerslim.com/releases/1.40.2/dist_linux_arm64.tar.gz`)
- [Latest Linux ARM64 binaries](https://downloads.dockerslim.com/releases/1.40.3/dist_linux_arm64.tar.gz) (`curl -L -o ds.tar.gz https://downloads.dockerslim.com/releases/1.40.3/dist_linux_arm64.tar.gz`)

2. Unzip the package and optionally move it to your bin directory.

Expand Down Expand Up @@ -276,7 +276,7 @@ Powered by Slim. It will help you understand and troubleshoot your application c

## BASIC USAGE INFO

`slim [global flags] [lint|xray|build|profile|debug|update|version|help] [command-specific flags] <IMAGE_ID_OR_NAME>`
`slim [global flags] [xray|build|profile|run|debug|lint|update|version|appbom|help] [command-specific flags] <IMAGE_ID_OR_NAME>`

If you don't specify any command `slim` will start in the interactive prompt mode.

Expand All @@ -290,6 +290,7 @@ If you don't specify any command `slim` will start in the interactive prompt mod
- `profile` - Performs basic container image analysis and dynamic container analysis, but it doesn't generate an optimized image.
- `run` - Runs one or more containers (for now runs a single container similar to `docker run`)
- `version` - Shows the version information.
- `appbom` - Shows the application BOM (app composition/dependencies).
- `update` - Updates Slim to the latest version.
- `help` - Show the available commands and global flags

Expand Down Expand Up @@ -840,11 +841,11 @@ The demo runs on Mac OS X, but you can build a linux version. Note that these st

1. Get the Slim app binaries:

* [Mac](https://downloads.dockerslim.com/releases/1.40.2/dist_mac.zip),
* [Mac M1](https://downloads.dockerslim.com/releases/1.40.2/dist_mac_m1.zip),
* [Linux](https://downloads.dockerslim.com/releases/1.40.2/dist_linux.tar.gz),
* [Linux ARM](https://downloads.dockerslim.com/releases/1.40.2/dist_linux_arm.tar.gz),
* [Linux ARM64](https://downloads.dockerslim.com/releases/1.40.2/dist_linux_arm64.tar.gz)
* [Mac](https://downloads.dockerslim.com/releases/1.40.3/dist_mac.zip),
* [Mac M1](https://downloads.dockerslim.com/releases/1.40.3/dist_mac_m1.zip),
* [Linux](https://downloads.dockerslim.com/releases/1.40.3/dist_linux.tar.gz),
* [Linux ARM](https://downloads.dockerslim.com/releases/1.40.3/dist_linux_arm.tar.gz),
* [Linux ARM64](https://downloads.dockerslim.com/releases/1.40.3/dist_linux_arm64.tar.gz)

Unzip them and optionally add their directory to your `PATH` environment variable if you want to use the app from other locations.

Expand Down

0 comments on commit 155f1b7

Please sign in to comment.