Skip to content

Commit 317dfc2

Browse files
committed
1.40.8 release info
Signed-off-by: Kyle Quest <[email protected]>
1 parent 7f8d7f0 commit 317dfc2

File tree

2 files changed

+32
-12
lines changed

2 files changed

+32
-12
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.8 (1/7/2024)
4+
5+
### New Features
6+
7+
- New `vulnerability` command and the `epss` subcommand to lookup EPSS scores for vulnerabilities.
8+
- Simple `registry server` command to have a local OCI registry (thank you Sarvesh Raj, @sarveshraj, for your contribution!).
9+
- Simple `registry push` command to push local images to a registry.
10+
- Simple `images` command to list container images.
11+
- RPM packaging for the apps (thank you Rohan Jamadagni, @Rohansjamadagni, for your contribution!)
12+
13+
### Improvements
14+
15+
- Enhanced `registry pull` command to pull images from authenticated registries.
16+
- `quiet` mode improvements (WIP) to hide the standard execution context output when it's enabled.
17+
- `quiet` mode for the `images` command.
18+
- Interactive prompt updates to include the `images`, `registry` and `vulnerability` commands and a couple of global flags.
19+
- Monitor Data Event Log (mondel) enhancement to improve the write path.
20+
21+
322
## 1.40.7 (12/9/2023)
423

524
### New Features

README.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,10 @@ Elixir application images:
198198

199199
## RECENT UPDATES
200200

201-
Latest version: `1.40.7` (`12/9/2023`)
201+
Latest version: `1.40.8` (`1/7/2024`)
202202

203-
The 1.40.7 release introduces an ability to assemble multi-architecture images from already existing architecture-specific images, an ability to list local container images and various enhancements that improve the minification capabilities.
203+
HERE HERE WIP WIP
204+
The 1.40.8 release adds a simple container registry (`registry server` command) and introduces the `vulnerability` command and the `epss` subcommand to lookup vulnerability exploitation probability score data.
204205

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

@@ -217,15 +218,15 @@ slim update
217218

218219
1. Download the zip package for your platform.
219220

220-
- [Latest Mac binaries](https://downloads.dockerslim.com/releases/1.40.7/dist_mac.zip) (`curl -L -o ds.zip https://downloads.dockerslim.com/releases/1.40.7/dist_mac.zip`)
221+
- [Latest Mac binaries](https://downloads.dockerslim.com/releases/1.40.8/dist_mac.zip) (`curl -L -o ds.zip https://downloads.dockerslim.com/releases/1.40.8/dist_mac.zip`)
221222

222-
- [Latest Mac M1 binaries](https://downloads.dockerslim.com/releases/1.40.7/dist_mac_m1.zip) (`curl -L -o ds.zip https://downloads.dockerslim.com/releases/1.40.7/dist_mac_m1.zip`)
223+
- [Latest Mac M1 binaries](https://downloads.dockerslim.com/releases/1.40.8/dist_mac_m1.zip) (`curl -L -o ds.zip https://downloads.dockerslim.com/releases/1.40.8/dist_mac_m1.zip`)
223224

224-
- [Latest Linux binaries](https://downloads.dockerslim.com/releases/1.40.7/dist_linux.tar.gz) (`curl -L -o ds.tar.gz https://downloads.dockerslim.com/releases/1.40.7/dist_linux.tar.gz`)
225+
- [Latest Linux binaries](https://downloads.dockerslim.com/releases/1.40.8/dist_linux.tar.gz) (`curl -L -o ds.tar.gz https://downloads.dockerslim.com/releases/1.40.8/dist_linux.tar.gz`)
225226

226-
- [Latest Linux ARM binaries](https://downloads.dockerslim.com/releases/1.40.7/dist_linux_arm.tar.gz) (`curl -L -o ds.tar.gz https://downloads.dockerslim.com/releases/1.40.7/dist_linux_arm.tar.gz`)
227+
- [Latest Linux ARM binaries](https://downloads.dockerslim.com/releases/1.40.8/dist_linux_arm.tar.gz) (`curl -L -o ds.tar.gz https://downloads.dockerslim.com/releases/1.40.8/dist_linux_arm.tar.gz`)
227228

228-
- [Latest Linux ARM64 binaries](https://downloads.dockerslim.com/releases/1.40.7/dist_linux_arm64.tar.gz) (`curl -L -o ds.tar.gz https://downloads.dockerslim.com/releases/1.40.7/dist_linux_arm64.tar.gz`)
229+
- [Latest Linux ARM64 binaries](https://downloads.dockerslim.com/releases/1.40.8/dist_linux_arm64.tar.gz) (`curl -L -o ds.tar.gz https://downloads.dockerslim.com/releases/1.40.8/dist_linux_arm64.tar.gz`)
229230

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

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

12121213
1. Get the Slim app binaries:
12131214

1214-
* [Mac](https://downloads.dockerslim.com/releases/1.40.7/dist_mac.zip),
1215-
* [Mac M1](https://downloads.dockerslim.com/releases/1.40.7/dist_mac_m1.zip),
1216-
* [Linux](https://downloads.dockerslim.com/releases/1.40.7/dist_linux.tar.gz),
1217-
* [Linux ARM](https://downloads.dockerslim.com/releases/1.40.7/dist_linux_arm.tar.gz),
1218-
* [Linux ARM64](https://downloads.dockerslim.com/releases/1.40.7/dist_linux_arm64.tar.gz)
1215+
* [Mac](https://downloads.dockerslim.com/releases/1.40.8/dist_mac.zip),
1216+
* [Mac M1](https://downloads.dockerslim.com/releases/1.40.8/dist_mac_m1.zip),
1217+
* [Linux](https://downloads.dockerslim.com/releases/1.40.8/dist_linux.tar.gz),
1218+
* [Linux ARM](https://downloads.dockerslim.com/releases/1.40.8/dist_linux_arm.tar.gz),
1219+
* [Linux ARM64](https://downloads.dockerslim.com/releases/1.40.8/dist_linux_arm64.tar.gz)
12191220

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

0 commit comments

Comments
 (0)