Skip to content

Commit 155f1b7

Browse files
committed
1.40.3 release info
Signed-off-by: Kyle Quest <[email protected]>
1 parent a7aa924 commit 155f1b7

File tree

2 files changed

+33
-13
lines changed

2 files changed

+33
-13
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Releases
22

3+
## 1.40.3 (7/13/2023)
4+
5+
### New Features
6+
7+
- Kubernetes runtime support for the `debug` command
8+
- `appbom` command in the main app and `--appbom` flag in the sensor
9+
10+
### Improvements
11+
12+
- More `debug` command flags
13+
- README docs for the `debug` command
14+
- Ability to detect the Docker Desktop unix socket
15+
- Code and logging cleanup
16+
17+
### Bug Fixes
18+
19+
- Sensor volume fix for sensor symlinks (to address the Homebrew installed problems with sensor)
20+
- Various dependency updates to get security fixes
21+
322
## 1.40.2 (5/12/2023)
423

524
### Improvements

README.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,9 @@ Elixir application images:
196196

197197
## RECENT UPDATES
198198

199-
Latest version: 1.40.2 (5/12/2023)
199+
Latest version: 1.40.3 (7/13/2023)
200200

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

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

@@ -215,15 +215,15 @@ slim update
215215

216216
1. Download the zip package for your platform.
217217

218-
- [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`)
218+
- [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`)
219219

220-
- [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`)
220+
- [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`)
221221

222-
- [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`)
222+
- [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`)
223223

224-
- [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`)
224+
- [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`)
225225

226-
- [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`)
226+
- [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`)
227227

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

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

277277
## BASIC USAGE INFO
278278

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

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

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

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

841842
1. Get the Slim app binaries:
842843

843-
* [Mac](https://downloads.dockerslim.com/releases/1.40.2/dist_mac.zip),
844-
* [Mac M1](https://downloads.dockerslim.com/releases/1.40.2/dist_mac_m1.zip),
845-
* [Linux](https://downloads.dockerslim.com/releases/1.40.2/dist_linux.tar.gz),
846-
* [Linux ARM](https://downloads.dockerslim.com/releases/1.40.2/dist_linux_arm.tar.gz),
847-
* [Linux ARM64](https://downloads.dockerslim.com/releases/1.40.2/dist_linux_arm64.tar.gz)
844+
* [Mac](https://downloads.dockerslim.com/releases/1.40.3/dist_mac.zip),
845+
* [Mac M1](https://downloads.dockerslim.com/releases/1.40.3/dist_mac_m1.zip),
846+
* [Linux](https://downloads.dockerslim.com/releases/1.40.3/dist_linux.tar.gz),
847+
* [Linux ARM](https://downloads.dockerslim.com/releases/1.40.3/dist_linux_arm.tar.gz),
848+
* [Linux ARM64](https://downloads.dockerslim.com/releases/1.40.3/dist_linux_arm64.tar.gz)
848849

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

0 commit comments

Comments
 (0)