Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Table of Contents

- [v1.55.2](#v1552)
- [v1.55.1](#v1551)
- [v1.55.0](#v1550)
- [v1.54.0](#v1540)
Expand Down Expand Up @@ -130,6 +131,27 @@
- [v0.2.0](#v020)
- [v0.1.0](#v010)

## [v1.55.2]
> Release date: 2026/02/06

### Fixed
- Added support for adding instance_name to ConsumerGroup plugins.
[#1860](https://github.com/Kong/deck/pull/1860)
[go-database-reconciler #366](https://github.com/Kong/go-database-reconciler/pull/366/)
[go-kong #600](https://github.com/Kong/go-kong/pull/600)

- Added validation for --skip-consumers flag when used with default_lookup_tags for
consumers and consumer-groups to ensure consistent lookup behavior.
[#1875](https://github.com/Kong/deck/pull/1875)

- Redirected warnings and errors to stderr when using --json-output to prevent non-JSON
text from corrupting the output and breaking automation scripts.
[go-database-reconciler #372](https://github.com/Kong/go-database-reconciler/pull/372)

### Chores
- Upgraded go version to `v1.25.6`
[#1887](https://github.com/Kong/deck/pull/1887)

## [v1.55.1]
> Release date: 2026/01/27

Expand Down Expand Up @@ -2416,6 +2438,7 @@ No breaking changes have been introduced in this release.
### Summary

Debut release of decK
[v1.55.2]: https://github.com/Kong/deck/compare/v1.55.1...v1.55.2
[v1.55.1]: https://github.com/Kong/deck/compare/v1.55.0...v1.55.1
[v1.55.0]: https://github.com/Kong/deck/compare/v1.54.0...v1.55.0
[v1.54.0]: https://github.com/Kong/deck/compare/v1.53.2...v1.54.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ the GitHub [release page](https://github.com/kong/deck/releases)
or install by downloading the binary:

```shell
$ curl -sL https://github.com/kong/deck/releases/download/v1.55.1/deck_1.55.1_linux_amd64.tar.gz -o deck.tar.gz
$ curl -sL https://github.com/kong/deck/releases/download/v1.55.2/deck_1.55.2_linux_amd64.tar.gz -o deck.tar.gz
$ tar -xf deck.tar.gz -C /tmp
$ sudo cp /tmp/deck /usr/local/bin/
```
Expand All @@ -84,7 +84,7 @@ If you are on Windows, you can download the binary from the GitHub
[release page](https://github.com/kong/deck/releases) or via PowerShell:

```shell
$ curl -sL https://github.com/kong/deck/releases/download/v1.55.1/deck_1.55.1_windows_amd64.tar.gz -o deck.tar.gz
$ curl -sL https://github.com/kong/deck/releases/download/v1.55.2/deck_1.55.2_windows_amd64.tar.gz -o deck.tar.gz
$ tar -xzvf deck.tar.gz
```

Expand Down
Loading