Task 5: Upgrade JAXB, commons-lang3, javax.el, Micrometer#198
Open
devin-ai-integration[bot] wants to merge 1 commit intomasterfrom
Open
Task 5: Upgrade JAXB, commons-lang3, javax.el, Micrometer#198devin-ai-integration[bot] wants to merge 1 commit intomasterfrom
devin-ai-integration[bot] wants to merge 1 commit intomasterfrom
Conversation
- JAXB: Replace jaxb-api 2.2.11 + jaxb-core/jaxb-impl with jaxb-api 2.3.1 + jaxb-runtime 2.3.9 - commons-lang: Migrate from commons-lang 2.6 to commons-lang3 3.14.0 (build files and all Java imports) - javax.el: Upgrade javax.el-api from 2.2.5 to 3.0.0 in 4 service modules - Micrometer: Upgrade from 1.0.4 to 1.13.0 Co-Authored-By: Wes Convery <2wconvery@gmail.com>
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Open
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Upgrades four dependency groups to more modern, maintained versions while staying on the javax namespace (Spring Boot 2.x compatibility):
1. JAXB (
ftgo-common/build.gradle)jaxb-api:2.2.11,jaxb-core:2.2.11,jaxb-impl:2.2.11, andjavax.activation:1.1.1withjaxb-api:2.3.1+jaxb-runtime:2.3.9(GlassFish reference implementation)2. commons-lang → commons-lang3
commons-lang:commons-lang:2.6toorg.apache.commons:commons-lang3:3.14.0in bothftgo-common/build.gradleandbuildSrc/build.gradleorg.apache.commons.lang.builder.*toorg.apache.commons.lang3.builder.*3. javax.el
javax.el:javax.el-apifrom2.2.5to3.0.0in:ftgo-order-service/build.gradleftgo-consumer-service/build.gradleftgo-restaurant-service/build.gradleftgo-courier-service/build.gradle4. Micrometer
micrometerVersionfrom1.0.4to1.13.0ingradle.propertiesReview & Testing Checklist for Human
./gradlew buildEqualsBuilder,HashCodeBuilder,ToStringBuilderbehave identically to commons-lang2 equivalentsNotes
javax.xml.bindnamespace since the project targets Spring Boot 2.x (not Jakarta EE)Link to Devin session: https://app.devin.ai/sessions/555aa3c579804511b0180f68bc0d5124
Requested by: @WesternConcrete
Devin Review