From cc85b1c047fc0190dcde6c7f7a5c21e5d89cffe5 Mon Sep 17 00:00:00 2001 From: Lukasz Antoniak Date: Thu, 4 Jul 2024 15:11:07 +0200 Subject: [PATCH] Release 2.3.0 --- CHANGELOG/CHANGELOG-2.3.md | 17 +++++++++++++++++ RELEASE_NOTES.md | 6 ++++++ RELEASE_PROCESS.md | 2 +- proxy/launch.go | 2 +- 4 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG/CHANGELOG-2.3.md diff --git a/CHANGELOG/CHANGELOG-2.3.md b/CHANGELOG/CHANGELOG-2.3.md new file mode 100644 index 0000000..9c1a644 --- /dev/null +++ b/CHANGELOG/CHANGELOG-2.3.md @@ -0,0 +1,17 @@ +# Changelog + +Changelog for the ZDM Proxy, new PRs should update the `unreleased` section. + +When cutting a new release, update the `unreleased` heading to the tag being generated and date, like `## vX.Y.Z - YYYY-MM-DD` and create a new placeholder section for `unreleased` entries. + +## Unreleased + +## v2.3.0 - 2024-07-04 + +### New Features + +* [#123](https://github.com/datastax/zdm-proxy/pull/123): Support providing configuration of ZDM with YAML file + +### Improvements + +### Bug Fixes diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index c8aa783..7fa1bb8 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -6,6 +6,12 @@ Build artifacts are available at [Docker Hub](https://hub.docker.com/repository/ For additional details on the changes included in a specific release, see the associated CHANGELOG-x.x.md file. +## v2.3.0 - 2024-07-04 + +Support providing configuration of ZDM with YAML file. + +[Changelog](CHANGELOG/CHANGELOG-2.3.md#v230---2024-07-04) + ## v2.2.0 - 2024-06-11 Support SAI queries and third-party authenticators. diff --git a/RELEASE_PROCESS.md b/RELEASE_PROCESS.md index 811053d..39bd8f9 100644 --- a/RELEASE_PROCESS.md +++ b/RELEASE_PROCESS.md @@ -6,7 +6,7 @@ All published container images can be found at [https://hub.docker.com/r/datasta ### Before publishing an official release -Before triggering the build and publish process for an official/stable release, three files need to be updated, the `RELEASE_NOTES`, `CHANGELOG` and `main.go`. +Before triggering the build and publish process for an official/stable release, three files need to be updated, the `RELEASE_NOTES`, `CHANGELOG` and `launch.go`. Please update the ZDM version displayed during component startup in `launch.go`: ```go diff --git a/proxy/launch.go b/proxy/launch.go index 1edcbfa..1bbd9df 100644 --- a/proxy/launch.go +++ b/proxy/launch.go @@ -13,7 +13,7 @@ import ( ) // TODO: to be managed externally -const ZdmVersionString = "2.2.0" +const ZdmVersionString = "2.3.0" var displayVersion = flag.Bool("version", false, "display the ZDM proxy version and exit") var configFile = flag.String("config", "", "specify path to ZDM configuration file")