Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit 9f5fd63

Browse files
Update amazon/aws-cli base image 2.19.5 / 2024-11-12
"Automatic update to amazon/aws-cli:2.19.5"
1 parent fd7547a commit 9f5fd63

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

Diff for: Changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ The versioning for this image tracks the same versioning as AWS CLI.
44

55
<!-- automatic-release -->
66

7+
## 2.19.5 / 2024-11-12
8+
9+
- Automatic update to amazon/aws-cli:2.19.5
10+
711
## 2.19.1 / 2024-11-05
812

913
- Automatic update to amazon/aws-cli:2.19.1

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
ARG AWS_CLI_VERSION=2.19.1
3+
ARG AWS_CLI_VERSION=2.19.5
44

55
FROM amazon/aws-cli:${AWS_CLI_VERSION}
66

Diff for: Justfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AWS_CLI_VERSION := '2.19.1'
1+
AWS_CLI_VERSION := '2.19.5'
22

33
# Build the image
44
build:

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Manager plugin][] for AWS CLI. If Amazon starts including image versions with
55
the session manager plugin included, this image will be discontinued.
66

77
These images can be pulled either from Docker Hub
8-
(`kineticcafe/aws-cli-session-manager:2.19.1`) or GitHub Container Registry
9-
(`ghcr.io/kineticcafe/aws-cli-session-manager:2.19.1`).
8+
(`kineticcafe/aws-cli-session-manager:2.19.5`) or GitHub Container Registry
9+
(`ghcr.io/kineticcafe/aws-cli-session-manager:2.19.5`).
1010

1111
## `aws-cli-session-manager` script
1212

@@ -15,12 +15,12 @@ The `aws-cli-session-manager` script is recommended to be installed in your
1515
had the native installation on your system, including the use of the AWS command
1616
completer.
1717

18-
It will pull from `ghcr.io/kineticcafe/aws-cli-session-manager:2.19.1` by
18+
It will pull from `ghcr.io/kineticcafe/aws-cli-session-manager:2.19.5` by
1919
default. The version can be overridden by specifying `AWS_CLI_VERSION` and the
2020
image can be overridden entirely by specifying `IMAGE`:
2121

2222
```sh
23-
$ AWS_CLI_VERSION=2.19.1 ./aws-cli-session-manager --version
23+
$ AWS_CLI_VERSION=2.19.5 ./aws-cli-session-manager --version
2424
$ IMAGE=kineticcafe/aws-cli-session-manager:latest ./aws-cli-session-manager --version
2525
```
2626

Diff for: aws-cli-session-manager

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare engine image mountopt aws_cli_version force_tty read_write
44
engine="${ENGINE:-docker}" # for planned compatibility with podman
5-
aws_cli_version="${AWS_CLI_VERSION:-2.19.1}"
5+
aws_cli_version="${AWS_CLI_VERSION:-2.19.5}"
66
image="${IMAGE:-ghcr.io/kineticcafe/aws-cli-session-manager:${aws_cli_version}}"
77
force_tty=false
88
read_write=false

0 commit comments

Comments
 (0)