diff --git a/CHANGELOG.md b/CHANGELOG.md index ef0fd532..67070a53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Table of Contents +- [v0.59.1](#v0591) +- [v0.59.0](#v0590) +- [v0.58.0](#v0580) - [v0.57.1](#v0571) - [v0.57.0](#v0570) - [v0.56.0](#v0560) @@ -70,6 +73,38 @@ - [0.2.0](#020) - [0.1.0](#010) +## [v0.59.1] + +> Release date: 2024/09/12 + +- Prevent 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. + [#467](https://github.com/Kong/go-kong/pull/467) + +## [v0.59.0] + +> Release date: 2024/09/04 + +- Enhance the utils `FillPluginsDefaults*` functions to allow individually + selecting whether to fill normal and auto fields with default values. + [#466](https://github.com/Kong/go-kong/pull/466) + +## [v0.58.0] + +> Release date: 2024/08/29 + +- When fields marked as auto are passed to kong without a value they + are auto generated by the gateway. In that case, comparing with "defaults" + doesn't work, so in order to compute a correct diff they must be copied + from Kong's configuration. This change adds a new `FillPluginsDefaultsAutoFields` + utils function that in addition to default fields, adds auto fields to the + configuration. It takes an additional parameter: oldPlugin, which represents + the plugin as defined in the config from Kong: auto fields are copied from it + so that they don't show up in the diff. + [#465](https://github.com/Kong/go-kong/pull/465) + ## [v0.57.1] > Release date: 2024/08/05 @@ -915,6 +950,9 @@ authentication credentials in Kong. releases of Kong since every release of Kong is introducing breaking changes to the Admin API. +[v0.59.1]: https://github.com/Kong/go-kong/compare/v0.59.0...v0.59.1 +[v0.59.0]: https://github.com/Kong/go-kong/compare/v0.58.0...v0.59.0 +[v0.58.0]: https://github.com/Kong/go-kong/compare/v0.57.1...v0.58.0 [v0.57.1]: https://github.com/Kong/go-kong/compare/v0.57.0...v0.57.1 [v0.57.0]: https://github.com/Kong/go-kong/compare/v0.56.0...v0.57.0 [v0.56.0]: https://github.com/Kong/go-kong/compare/v0.55.0...v0.56.0