Skip to content
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

fix(tags): fixing hyphen issue with spring boot 2.6 #68

Merged

Conversation

shlomodaari
Copy link
Contributor

No description provided.

Copy link
Contributor

@manuelaguir manuelaguir left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@shlomodaari
Copy link
Contributor Author

I think it requires approval as part of the workflow
@christosarvanitis @manuelaguir

@@ -46,7 +46,7 @@ static TagsHolder from(List<Tag> tags) {
List<String> values = new ArrayList<>(tags.size());

for (Tag tag : tags) {
keys.add(NamingConvention.snakeCase.tagKey(tag.getKey()));
keys.add(NamingConvention.snakeCase.tagKey(tag.getKey()).replaceAll("-", "_"));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NIT: Should add a comment "Remove post spring 2.7" :) Just so we know this is a workaround due to

Adding a comment to remove 2.7
@jasonmcintosh jasonmcintosh merged commit b26944a into armory-plugins:master Apr 11, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants