diff --git a/CHANGELOG.md b/CHANGELOG.md index b1a18f0b7d1d..c153b5a89a92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -74,6 +74,13 @@ - Bumped lua-resty-session from 4.0.2 to 4.0.3 [#10338](https://github.com/Kong/kong/pull/10338) +### Fix + +#### Core + +- Fix an issue where control plane does not downgrade config for `aws_lambda` and `zipkin` for older version of data planes. + [#10346](https://github.com/Kong/kong/pull/10346) + ## 3.2.0 ### Breaking Changes diff --git a/kong/clustering/compat/removed_fields.lua b/kong/clustering/compat/removed_fields.lua index 1b1a392267fb..66a650fc0e2d 100644 --- a/kong/clustering/compat/removed_fields.lua +++ b/kong/clustering/compat/removed_fields.lua @@ -48,5 +48,11 @@ return { "response_headers", "request_headers", }, + aws_lambda = { + "aws_imds_protocol_version", + }, + zipkin = { + "phase_duration_flavor", + } }, }