-
Notifications
You must be signed in to change notification settings - Fork 16
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
EPMRPP-93641 migrate to Spring Boot 3 #1044
base: develop
Are you sure you want to change the base?
Conversation
it is impossible to fix CVE-2020-29582 since it presents in every version of transitive kotlin dependency |
# Conflicts: # build.gradle # gradle.properties # gradle/wrapper/gradle-wrapper.properties # jitpack.yml # jooq.gradle # project-properties.gradle
@@ -128,9 +128,10 @@ public Optional<BinaryDataMetaInfo> saveAttachment(AttachmentMetaInfo metaInfo, | |||
} catch (IOException e) { | |||
LOGGER.error("Unable to save binary data", e); | |||
} finally { | |||
if (file instanceof CommonsMultipartFile) { | |||
// TODO: uncomment and fix later !!! |
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.
What needs to be fixed?
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.
Thanks for pointing on this. I can asume that the previous purpose of this code was to handle temporary files created while preparing demodata, specificaly attachments for the logs. And since Spring libraries migrated to their own implementaion of file handling instead of apache libraries - this code is not releavant anymore and can be safely removed.
Made adjustments to support Spring Boot 3
Regenerated jooq classes with the latest generator version