From ab53fbbf918a558375852793d5b6f30c7402bd6c Mon Sep 17 00:00:00 2001 From: Joel Scheuner Date: Tue, 22 Sep 2026 17:16:36 +0200 Subject: [PATCH 1/3] Add deprecation note to the README Point users to the `lstk` CLI with links to the getting-started and migration guides, in line with the notice design proposed in DEVX-1126. Co-Authored-By: Claude Opus 5 (1M context) --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 11db7e1..e957b3c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,14 @@ LocalStack CLI ======================= +> [!WARNING] +> **The `localstack` CLI is deprecated. Use the `lstk` CLI instead.** +> +> The `localstack` CLI no longer receives updates. Existing commands keep working for now, but new features and fixes only land in `lstk`. +> +> - Get started with `lstk`, the new LocalStack CLI: [docs.localstack.cloud/.../lstk](https://docs.localstack.cloud/aws/developer-tools/running-localstack/lstk/) +> - Migrate local scripts and CI workflows: [docs.localstack.cloud/.../lstk/migration](https://docs.localstack.cloud/aws/developer-tools/running-localstack/lstk/migration/) + This repository contains building instructions for binary builds of the LocalStack CLI. It does not contain the actual source for the CLI, since the LocalStack CLI is basically just the Python package `localstack` (published on PyPi) with it's install dependencies (and without any extras). This is why this repository just contains the build config and pipeline that packages the LocalStack CLI python package into a standalone binary using PyInstaller. From 3582b0a5518dfc658374e70eab1f14973987ce3a Mon Sep 17 00:00:00 2001 From: Joel Scheuner Date: Tue, 22 Sep 2026 17:18:33 +0200 Subject: [PATCH 2/3] Mark the README title as deprecated Co-Authored-By: Claude Opus 5 (1M context) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e957b3c..80d26fd 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -LocalStack CLI +LocalStack CLI (deprecated) ======================= > [!WARNING] From 16570bfc96c08b0a9d21a53baf7705bb6321fa1f Mon Sep 17 00:00:00 2001 From: Joel Scheuner Date: Tue, 22 Sep 2026 17:20:11 +0200 Subject: [PATCH 3/3] Trim the deprecation note Co-Authored-By: Claude Opus 5 (1M context) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 80d26fd..35c6d88 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ LocalStack CLI (deprecated) > [!WARNING] > **The `localstack` CLI is deprecated. Use the `lstk` CLI instead.** > -> The `localstack` CLI no longer receives updates. Existing commands keep working for now, but new features and fixes only land in `lstk`. +> The `localstack` CLI no longer receives updates. > > - Get started with `lstk`, the new LocalStack CLI: [docs.localstack.cloud/.../lstk](https://docs.localstack.cloud/aws/developer-tools/running-localstack/lstk/) > - Migrate local scripts and CI workflows: [docs.localstack.cloud/.../lstk/migration](https://docs.localstack.cloud/aws/developer-tools/running-localstack/lstk/migration/)