Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: updated changelog for past and upcoming release #469

Merged
merged 4 commits into from
Sep 12, 2024
Merged
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
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -70,6 +73,38 @@
- [0.2.0](#020)
- [0.1.0](#010)

## [v0.59.1]

> Release date: 2024/09/12
Prashansa-K marked this conversation as resolved.
Show resolved Hide resolved

- 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
Prashansa-K marked this conversation as resolved.
Show resolved Hide resolved

- 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
Expand Down Expand Up @@ -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
Expand Down
Loading