From f54345a3fc2da126c0964d35302875c4f1aa284e Mon Sep 17 00:00:00 2001 From: hectorcast-db Date: Mon, 8 Jul 2024 13:00:35 +0200 Subject: [PATCH] Add ChangelogConfig to Generator struct (#967) ## Changes Add ChangelogConfig to Generator struct ## Tests - [X] `make test` passing - [X] `make fmt` applied - [ ] relevant integration tests applied --- openapi/generator/config.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openapi/generator/config.go b/openapi/generator/config.go index 964308231..6dcaae873 100644 --- a/openapi/generator/config.go +++ b/openapi/generator/config.go @@ -25,7 +25,8 @@ type Toolchain struct { type Generator struct { Formatter string `json:"formatter"` - + // Config for changelog generation. + ChangelogConfig string `json:"changelog_config,omitempty"` // TemplateLibraries is a list of files containing go template definitions // that are reused in different stages of codegen. E.g. the "type" template // is needed in both the "types" and "services" stages.