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
29 changes: 27 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Table of Contents

- [v1.57.3](#v1573)
- [v1.57.2](#v1572)
- [v1.57.0](#v1570)
- [v1.56.0](#v1560)
Expand Down Expand Up @@ -134,11 +135,34 @@
- [v0.2.0](#v020)
- [v0.1.0](#v010)

## [v1.57.3]
> Release date: 2026/04/09

### Fixed
- Fixed nested `ssl_verify` field handling in `deck file convert` for `3.10` and `3.14`.
[#1989](https://github.com/Kong/deck/pull/1989)

## [v1.57.2]
> Release date: 2026/04/08

### Added
- Added support for plugin `condition` field.
[#1981](https://github.com/Kong/deck/pull/1981)
[go-database-reconciler #447](https://github.com/Kong/go-database-reconciler/pull/447)
[go-kong #612](https://github.com/Kong/go-kong/pull/612)

### Fixed
- Environment variable expansion can be skipped in `deck file convert` using a new flag `--no-expand-env-vars`. [#1977](https://github.com/Kong/deck/pull/1977) [go-database-reconciler #444](https://github.com/Kong/go-database-reconciler/pull/444)
- Environment variable expansion can be skipped in `deck file convert` using a new flag `--no-expand-env-vars`.
[#1977](https://github.com/Kong/deck/pull/1977)
[go-database-reconciler #444](https://github.com/Kong/go-database-reconciler/pull/444)
- Fixed HTTP2 to HTTP1.1 downgrade by explicitly forcing the HTTP2 ALPN.
[go-database-reconciler #446](https://github.com/Kong/go-database-reconciler/pull/446)
- Fixed updating Upstream Target weights in Konnect by switching from PATCH to PUT.
[#1956](https://github.com/Kong/deck/pull/1956)
[go-kong #610](https://github.com/Kong/go-kong/pull/610)
- Fixed sync failure when plugins reference entities not present in the state file.
[#1971](https://github.com/Kong/deck/pull/1971)
[go-database-reconciler #439](https://github.com/Kong/go-database-reconciler/pull/439)

## [v1.57.0]
> Release date: 2026/03/26
Expand Down Expand Up @@ -2499,7 +2523,8 @@ No breaking changes have been introduced in this release.

### Summary

Debut release of decK
Debut release of decK
[v1.57.3]: https://github.com/Kong/deck/compare/v1.57.2...v1.57.3
[v1.57.2]: https://github.com/Kong/deck/compare/v1.57.0...v1.57.2
[v1.57.0]: https://github.com/Kong/deck/compare/v1.56.0...v1.57.0
[v1.56.0]: https://github.com/Kong/deck/compare/v1.55.2...v1.56.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.57.2/deck_1.57.2_linux_amd64.tar.gz -o deck.tar.gz
$ curl -sL https://github.com/kong/deck/releases/download/v1.57.3/deck_1.57.3_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.57.2/deck_1.57.2_windows_amd64.tar.gz -o deck.tar.gz
$ curl -sL https://github.com/kong/deck/releases/download/v1.57.3/deck_1.57.3_windows_amd64.tar.gz -o deck.tar.gz
$ tar -xzvf deck.tar.gz
```

Expand Down
Loading