Skip to content

Commit 63fd4c7

Browse files
authored
chore: release prep for v1.42.0 (#1478)
1 parent ca82e63 commit 63fd4c7

File tree

4 files changed

+37
-5
lines changed

4 files changed

+37
-5
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Table of Contents
22

3+
- [v1.42.0](#v1420)
34
- [v1.41.4](#v1414)
45
- [v1.41.3](#v1413)
56
- [v1.41.2](#v1412)
@@ -101,6 +102,36 @@
101102
- [v0.2.0](#v020)
102103
- [v0.1.0](#v010)
103104

105+
## [v1.42.0]
106+
> Release date: 2024/12/13
107+
108+
### Added
109+
- Added a new flag `--online-entities-list` to validate the specified entities
110+
via `deck gateway validate` command.
111+
[#1458](https://github.com/Kong/deck/pull/1458)
112+
- Added feature to ignore entities tagged with `konnect-managed` during
113+
deck dump, sync and diff. This is valid for Konnect entities only.
114+
[#1478](https://github.com/Kong/deck/pull/1478)
115+
[go-database-reconciler #153](https://github.com/Kong/go-database-reconciler/pull/153)
116+
- Improved speed for deck sync/diff operations involving consumer-groups
117+
for gw 3.9+. The underlying API call to `GET /consumer_group` is called
118+
with query parameter `list_consumers=false`, making it faster for deck
119+
to deal with cases where a consumer-group holds many consumers.
120+
(#1475)[https://github.com/Kong/deck/pull/1475]
121+
(go-kong #487)[https://github.com/Kong/go-kong/pull/487]
122+
123+
124+
### Fixes
125+
- Fixed issue where tags were not getting propagated to consumer-group plugins.
126+
[#1478](https://github.com/Kong/deck/pull/1458)
127+
[go-database-reconciler #151](https://github.com/Kong/go-database-reconciler/pull/151)
128+
[go-kong #485](https://github.com/Kong/go-kong/pull/485)
129+
- Enhanced help message for generate-imports-for-control-plane-id flag
130+
[#1448](https://github.com/Kong/deck/pull/1448)
131+
- Restored to using Gateway API generation in `deck file kong2kic`, rather than
132+
Ingress API
133+
[#1431](https://github.com/Kong/deck/pull/1431)
134+
104135
## [v1.41.4]
105136
> Release date: 2024/11/26
106137
@@ -1883,6 +1914,7 @@ No breaking changes have been introduced in this release.
18831914

18841915
Debut release of decK
18851916

1917+
[v1.42.0]: https://github.com/Kong/deck/compare/v1.41.4...v1.42.0
18861918
[v1.41.4]: https://github.com/Kong/deck/compare/v1.41.3...v1.41.4
18871919
[v1.41.3]: https://github.com/Kong/deck/compare/v1.41.2...v1.41.3
18881920
[v1.41.2]: https://github.com/Kong/deck/compare/v1.41.1...v1.41.2

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ the GitHub [release page](https://github.com/kong/deck/releases)
7373
or install by downloading the binary:
7474

7575
```shell
76-
$ curl -sL https://github.com/kong/deck/releases/download/v1.41.4/deck_1.41.4_linux_amd64.tar.gz -o deck.tar.gz
76+
$ curl -sL https://github.com/kong/deck/releases/download/v1.42.0/deck_1.42.0_linux_amd64.tar.gz -o deck.tar.gz
7777
$ tar -xf deck.tar.gz -C /tmp
7878
$ sudo cp /tmp/deck /usr/local/bin/
7979
```
@@ -84,7 +84,7 @@ If you are on Windows, you can download the binary from the GitHub
8484
[release page](https://github.com/kong/deck/releases) or via PowerShell:
8585

8686
```shell
87-
$ curl -sL https://github.com/kong/deck/releases/download/v1.41.4/deck_1.41.4_windows_amd64.tar.gz -o deck.tar.gz
87+
$ curl -sL https://github.com/kong/deck/releases/download/v1.42.0/deck_1.42.0_windows_amd64.tar.gz -o deck.tar.gz
8888
$ tar -xzvf deck.tar.gz
8989
```
9090

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require (
1313
github.com/fatih/color v1.17.0
1414
github.com/google/go-cmp v0.6.0
1515
github.com/kong/go-apiops v0.1.40
16-
github.com/kong/go-database-reconciler v1.16.1
16+
github.com/kong/go-database-reconciler v1.17.0
1717
github.com/kong/go-kong v0.61.0
1818
github.com/mitchellh/go-homedir v1.1.0
1919
github.com/spf13/cobra v1.8.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,8 @@ github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/q
247247
github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws=
248248
github.com/kong/go-apiops v0.1.40 h1:Dp4IHJ3h61VeOAeQkOisf1BcOP+Ww+gpqnv14HvC6DQ=
249249
github.com/kong/go-apiops v0.1.40/go.mod h1:CNfsa9mHFRfAhT9E2IWTul0Mi1/BldTDmFu5fWcp2us=
250-
github.com/kong/go-database-reconciler v1.16.1 h1:qcQzEuMGfpNjx3UgulBOKulKA+upmHwqw4dy6TMEV7A=
251-
github.com/kong/go-database-reconciler v1.16.1/go.mod h1:7CGvStUvUOmUnodUFsWcW3PX2bJgnaKClJ/yhNGEVIE=
250+
github.com/kong/go-database-reconciler v1.17.0 h1:vL/KskveUR8fflbw+r/6QphSHxV8YahjfSDjNe9pDrI=
251+
github.com/kong/go-database-reconciler v1.17.0/go.mod h1:3L4DP3/YGaDv9Hks4XA1YFm7HfPur2CuBxHI/4+r7NY=
252252
github.com/kong/go-kong v0.61.0 h1:EWnQVMk1u1gy8//Hvui3NVCJZZ+fBnifVcoaIyLq60A=
253253
github.com/kong/go-kong v0.61.0/go.mod h1:e0zgpuCnCbOXQN6e0e235TFJr4IYY8dDg9nLQgG9m7A=
254254
github.com/kong/go-slugify v1.0.0 h1:vCFAyf2sdoSlBtLcrmDWUFn0ohlpKiKvQfXZkO5vSKY=

0 commit comments

Comments
 (0)