Skip to content
Merged
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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Table of Contents

- [v1.52.1](#v1521)
- [v1.52.0](#v1520)
- [v1.51.1](#v1511)
- [v1.51.0](#v1510)
Expand Down Expand Up @@ -123,6 +124,19 @@
- [v0.2.0](#v020)
- [v0.1.0](#v010)

## [v1.52.1]
> Release date: 2025/10/29

### Fixed
- Fixed modification of consumer group membership for consumers when consumer-groups are pulled in via lookup tags.
[#1787](https://github.com/Kong/deck/pull/1787)
[go-database-reconciler #350](https://github.com/Kong/go-database-reconciler/pull/350)
- Added a fix in `deck gateway validate` to run validation using `_workspace` parameter in state file if present, unless overridden using `--workspace` flag.
[#1783](https://github.com/Kong/deck/pull/1783)
- Add a fix to include partials associated with a plugin in output of `deck gateway dump` using select-tags.
[go-database-reconciler #345](https://github.com/Kong/go-database-reconciler/pull/345)


## [v1.52.0]
> Release date: 2025/09/30

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

Debut release of decK
[v1.52.1]: https://github.com/Kong/deck/compare/v1.52.0...v1.52.1
[v1.52.0]: https://github.com/Kong/deck/compare/v1.51.1...v1.52.0
[v1.51.1]: https://github.com/Kong/deck/compare/v1.51.0...v1.51.1
[v1.51.0]: https://github.com/Kong/deck/compare/v1.50.0...v1.51.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.52.0/deck_1.52.0_linux_amd64.tar.gz -o deck.tar.gz
$ curl -sL https://github.com/kong/deck/releases/download/v1.52.1/deck_1.52.1_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.52.0/deck_1.52.0_windows_amd64.tar.gz -o deck.tar.gz
$ curl -sL https://github.com/kong/deck/releases/download/v1.52.1/deck_1.52.1_windows_amd64.tar.gz -o deck.tar.gz
$ tar -xzvf deck.tar.gz
```

Expand Down
Loading