-
Notifications
You must be signed in to change notification settings - Fork 8
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
[#353] update to next dev version #368
Conversation
- update version in test files - Clean up release notes - Update helm chart readmes - Add missing deprecation warning for kafka v1
This reverts commit 6ce3245.
@@ -12,19 +12,19 @@ on: | |||
workflow_dispatch: | |||
inputs: | |||
releaseVersion: | |||
description: "The version you want to release aiSSEMBLE on." | |||
description: "Release Version" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I: These weren't super readable in the UI so updated to shorter names
@@ -1,44 +1,21 @@ | |||
# Major Additions |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I: Draft release notes reset
@@ -254,7 +263,7 @@ public static int getIndentSpaces(List<String> yamlFileContent, int startIndex) | |||
int index = startIndex; | |||
while (indentSpaces == 0) { | |||
String line = yamlFileContent.get(index).stripTrailing(); | |||
if (!StringUtils.isBlank(line)) { | |||
if (!StringUtils.isBlank(line) && !isComment(line.trim()) && !isHelmFunction(line.trim())) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I: Comments and helm functions may not follow the standard YAML indentation
@@ -1,66 +1,8 @@ | |||
[ | |||
{ | |||
"group": "v1-9-0-migrations", | |||
"group": "v1-10-0-migrations", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I: Reset migrations
@@ -2,7 +2,6 @@ | |||
## CONFIG | Kafka Configs | |||
######################################## | |||
kafka: | |||
kafkaVersion: 3.8.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Q: no more version required?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This parameter is not valid in the base chart at all and we have no templates. So it's a completely unused property.
No description provided.