[22.x] Bump to latest odlparent versions#2595
Conversation
Adopt: - odlparent-14.1.7 - infrautils-7.1.10 - yangtools-14.0.21 - mdsal-14.0.20 - controller-11.0.3 - aaa-0.21.3 Signed-off-by: tobias.pobocik <tobias.pobocik@pantheon.tech>
https://checkstyle.org/releasenotes.html#Release_11.1.0 https://checkstyle.org/releasenotes.html#Release_12.0.0 https://checkstyle.org/releasenotes.html#Release_12.0.1 https://checkstyle.org/releasenotes.html#Release_12.1.0 https://checkstyle.org/releasenotes.html#Release_12.1.1 https://checkstyle.org/releasenotes.html#Release_12.1.1 JIRA: LIGHTY-418 Signed-off-by: tobias.pobocik <tobias.pobocik@pantheon.tech> (cherry picked from commit 0345b3c)
https://docs.junit.org/5.14.0/release-notes/#release-notes-5.14.0 https://docs.junit.org/5.14.1/release-notes/#release-notes-5.14.1 JIRA: LIGHTY-418 Signed-off-by: tobias.pobocik <tobias.pobocik@pantheon.tech> (cherry picked from commit bba097b)
https://github.com/apache/maven-antrun-plugin/releases/tag/maven-antrun-plugin-3.2.0 JIRA: LIGHTY-394 Signed-off-by: Peter Suna <peter.suna@pantheon.tech> (cherry picked from commit 4825b8c)
https://github.com/jacoco/jacoco/releases/tag/v0.8.14 JIRA: LIGHTY-394 Signed-off-by: Peter Suna <peter.suna@pantheon.tech> (cherry picked from commit 072cbdf)
https://github.com/apache/maven-enforcer/releases/tag/enforcer-3.6.2 JIRA: LIGHTY-394 Signed-off-by: Peter Suna <peter.suna@pantheon.tech> (cherry picked from commit 84e2fb7)
https://github.com/apache/maven-compiler-plugin/releases/tag/maven-compiler-plugin-3.14.1 JIRA: LIGHTY-394 Signed-off-by: Peter Suna <peter.suna@pantheon.tech> (cherry picked from commit 25da704)
https://github.com/apache/maven-javadoc-plugin/releases/tag/maven-javadoc-plugin-3.12.0 JIRA: LIGHTY-394 Signed-off-by: Peter Suna <peter.suna@pantheon.tech> (cherry picked from commit 5e040fb)
https://github.com/apache/maven-surefire/releases/tag/maven-surefire-3.5.4 JIRA: LIGHTY-394 Signed-off-by: Peter Suna <peter.suna@pantheon.tech> (cherry picked from commit 5629c5b)
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request focuses on bumping the versions of various dependencies and Maven plugins used in the lighty project. The updates span across core modules, applications, and examples, ensuring the project utilizes the latest available and compatible versions of its dependencies and build tools. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request updates multiple Maven dependencies across several pom.xml files. The majority of these are patch or minor version bumps, which should be low-risk. However, the checkstyle dependency is being upgraded from version 11.0.1 to 12.1.2. This is a major version change that could introduce breaking changes to the static analysis rules. It is important to verify that the project still builds successfully and that any new or modified checks are appropriate for the codebase.
| <artifactId>checkstyle</artifactId> | ||
| <!-- This should match the dependency management on com.puppycrawl.tools:checkstyle above --> | ||
| <version>11.0.1</version> | ||
| <version>12.1.2</version> |
There was a problem hiding this comment.
Upgrading Checkstyle across a major version (11.x to 12.x) can introduce breaking changes. This might include new default rules, changes in rule behavior, or removal of properties, which could cause build failures. Please ensure that the project's continuous integration build passes with this change and consider reviewing the Checkstyle release notes to be aware of any significant updates that might affect code quality standards in this project.
No description provided.