diff --git a/CHANGELOG.md b/CHANGELOG.md index 83a7b422a..1f0b8d16a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # Table of Contents +- [v1.40.1](#v1401) - [v1.40.0](#v1400) - [v1.39.6](#v1396) - [v1.39.5](#v1395) @@ -93,6 +94,16 @@ - [v0.2.0](#v020) - [v0.1.0](#v010) +## [v1.40.1] +> Release date: 2024/09/12 + +### Fixes +- Fixed the issue in `deck file kong2tf` command where users were facing a panic error with using jwt plugins when passing an empty list to cookie_names field. [#1399](https://github.com/Kong/deck/pull/1399) +- Bumped up go-apiops library. The updated lib has a fix for `deck file openapi2kong` command where parameters.required field was coming as null, if not passed by user. [#1400](https://github.com/Kong/deck/pull/1400) [go-apiops #205](https://github.com/Kong/go-apiops/pull/205) +- Bumped up go-kong library. The updated lib prevents unset plugin's configuration "record" fields to be filled with empty tables: {} +for deck files. Since, deck doesn't fill defaults anymore, this fix ensures that deck doesn't pass empty record fields while syncing plugin configurations. +[#1401](https://github.com/Kong/deck/pull/1401) [go-kong #467](https://github.com/Kong/go-kong/pull/467) + ## [v1.40.0] > Release date: 2024/09/10 @@ -1793,6 +1804,7 @@ No breaking changes have been introduced in this release. Debut release of decK +[v1.40.1]: https://github.com/Kong/deck/compare/v1.40.0...v1.40.1 [v1.40.0]: https://github.com/Kong/deck/compare/v1.39.6...v1.40.0 [v1.39.6]: https://github.com/Kong/deck/compare/v1.39.5...v1.39.6 [v1.39.5]: https://github.com/Kong/deck/compare/v1.39.4...v1.39.5 diff --git a/go.mod b/go.mod index 3cc25bfd9..0c9dd31a9 100644 --- a/go.mod +++ b/go.mod @@ -12,7 +12,7 @@ require ( github.com/google/go-cmp v0.6.0 github.com/kong/go-apiops v0.1.37 github.com/kong/go-database-reconciler v1.14.7 - github.com/kong/go-kong v0.59.0 + github.com/kong/go-kong v0.59.1 github.com/mitchellh/go-homedir v1.1.0 github.com/spf13/cobra v1.8.1 github.com/spf13/pflag v1.0.5 diff --git a/go.sum b/go.sum index 79202236d..c4747b042 100644 --- a/go.sum +++ b/go.sum @@ -183,8 +183,8 @@ github.com/kong/go-apiops v0.1.37 h1:AwIslsbnx9JAFdPy8UI6NF/I+X2ypi7TJmdDNwKe/bY github.com/kong/go-apiops v0.1.37/go.mod h1:B0WFsqonn+xnHgHg0x063fADFC21mhNOsOXsbKdZTpM= github.com/kong/go-database-reconciler v1.14.7 h1:U8VnKYFz8oBnAgDxipBHNR9KCOxexffQlmCyfWhafV4= github.com/kong/go-database-reconciler v1.14.7/go.mod h1:T5BkBw13PZWub3y2jKAoM7fYD+UmXp2iNqj1YqD0L90= -github.com/kong/go-kong v0.59.0 h1:U6dE2sqb8E8j0kESW/RCW9TkXH8Y3W0EtNDXJVsDNuM= -github.com/kong/go-kong v0.59.0/go.mod h1:8Vt6HmtgLNgL/7bSwAlz3DIWqBtzG7qEt9+OnMiQOa0= +github.com/kong/go-kong v0.59.1 h1:AJZtyCD+Zyqe/mF/m+x3/qN/GPVxAH7jq9zGJTHRfjc= +github.com/kong/go-kong v0.59.1/go.mod h1:8Vt6HmtgLNgL/7bSwAlz3DIWqBtzG7qEt9+OnMiQOa0= github.com/kong/go-slugify v1.0.0 h1:vCFAyf2sdoSlBtLcrmDWUFn0ohlpKiKvQfXZkO5vSKY= github.com/kong/go-slugify v1.0.0/go.mod h1:dbR2h3J2QKXQ1k0aww6cN7o4cIcwlWflr6RKRdcoaiw= github.com/kong/kubernetes-ingress-controller/v3 v3.2.4 h1:5QKzRMHWAePwa9HGj3xtvgridzeG72xd3BftDP+PcjU=