diff --git a/Changelog.md b/Changelog.md index d8fd48b..76260bf 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,6 +4,10 @@ The versioning for this image tracks the same versioning as AWS CLI. +## 2.22.26 / 2024-12-31 + +- Automatic update to amazon/aws-cli:2.22.26 + ## 2.22.23 / 2024-12-24 - Automatic update to amazon/aws-cli:2.22.23 diff --git a/Dockerfile b/Dockerfile index 0021433..2f43c09 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -ARG AWS_CLI_VERSION=2.22.23 +ARG AWS_CLI_VERSION=2.22.26 FROM amazon/aws-cli:${AWS_CLI_VERSION} diff --git a/Justfile b/Justfile index 9c8a9fa..6aa8807 100644 --- a/Justfile +++ b/Justfile @@ -1,4 +1,4 @@ -AWS_CLI_VERSION := '2.22.23' +AWS_CLI_VERSION := '2.22.26' # Build the image build: diff --git a/README.md b/README.md index a0d3d81..22be003 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ Manager plugin][] for AWS CLI. If Amazon starts including image versions with the session manager plugin included, this image will be discontinued. These images can be pulled either from Docker Hub -(`kineticcafe/aws-cli-session-manager:2.22.23`) or GitHub Container Registry -(`ghcr.io/kineticcafe/aws-cli-session-manager:2.22.23`). +(`kineticcafe/aws-cli-session-manager:2.22.26`) or GitHub Container Registry +(`ghcr.io/kineticcafe/aws-cli-session-manager:2.22.26`). ## `aws-cli-session-manager` script @@ -15,12 +15,12 @@ The `aws-cli-session-manager` script is recommended to be installed in your had the native installation on your system, including the use of the AWS command completer. -It will pull from `ghcr.io/kineticcafe/aws-cli-session-manager:2.22.23` by +It will pull from `ghcr.io/kineticcafe/aws-cli-session-manager:2.22.26` by default. The version can be overridden by specifying `AWS_CLI_VERSION` and the image can be overridden entirely by specifying `IMAGE`: ```sh -$ AWS_CLI_VERSION=2.22.23 ./aws-cli-session-manager --version +$ AWS_CLI_VERSION=2.22.26 ./aws-cli-session-manager --version $ IMAGE=kineticcafe/aws-cli-session-manager:latest ./aws-cli-session-manager --version ``` diff --git a/aws-cli-session-manager b/aws-cli-session-manager index 2078a83..cf7ce43 100755 --- a/aws-cli-session-manager +++ b/aws-cli-session-manager @@ -2,7 +2,7 @@ declare engine image mountopt aws_cli_version force_tty read_write engine="${ENGINE:-docker}" # for planned compatibility with podman -aws_cli_version="${AWS_CLI_VERSION:-2.22.23}" +aws_cli_version="${AWS_CLI_VERSION:-2.22.26}" image="${IMAGE:-ghcr.io/kineticcafe/aws-cli-session-manager:${aws_cli_version}}" force_tty=false read_write=false