-
Notifications
You must be signed in to change notification settings - Fork 4
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
chore(deps): update dependency maven to v3.9.9 #545
Conversation
WalkthroughThe changes across multiple projects involve updating the Maven wrapper configuration files to use Apache Maven version 3.9.9 instead of 3.9.8. This upgrade aims to leverage the latest features, bug fixes, and performance improvements available in the newer Maven release. Additionally, a test method in one project has modified its timeout and expected count assertions, reflecting an adjustment in message consumption logic. Overall, these changes enhance build efficiency and testing accuracy without altering core functionalities. Changes
Sequence Diagram(s)sequenceDiagram
participant A as Developer
participant B as Maven Wrapper
participant C as Maven
A->>B: Update Maven version to 3.9.9
B->>C: Download Maven 3.9.9
C-->>B: Maven 3.9.9 downloaded
B-->>A: Build process uses Maven 3.9.9
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (13)
- kafka-avro/spring-boot-kafka-avro-consumer/.mvn/wrapper/maven-wrapper.properties (1 hunks)
- kafka-avro/spring-boot-kafka-avro-producer/.mvn/wrapper/maven-wrapper.properties (1 hunks)
- kafka-dsl-integration/.mvn/wrapper/maven-wrapper.properties (1 hunks)
- kafka-reactor/boot-kafka-reactor-consumer/.mvn/wrapper/maven-wrapper.properties (1 hunks)
- kafka-reactor/boot-kafka-reactor-producer/.mvn/wrapper/maven-wrapper.properties (1 hunks)
- kafka-sample/java/.mvn/wrapper/maven-wrapper.properties (1 hunks)
- kafka-sample/spring/.mvn/wrapper/maven-wrapper.properties (1 hunks)
- kafka-spring-boot/boot-kafka-sample/.mvn/wrapper/maven-wrapper.properties (1 hunks)
- kafka-spring-boot/boot-multiple-producers-consumers/.mvn/wrapper/maven-wrapper.properties (1 hunks)
- kafka-spring-cloud-sample/.mvn/wrapper/maven-wrapper.properties (1 hunks)
- kafka-streams/analytics-spring-cloud-streams-kafka-consumer/.mvn/wrapper/maven-wrapper.properties (1 hunks)
- kafka-streams/analytics-spring-cloud-streams-kafka-producer/.mvn/wrapper/maven-wrapper.properties (1 hunks)
- spring-modulith-outbox-pattern/.mvn/wrapper/maven-wrapper.properties (1 hunks)
Files skipped from review due to trivial changes (13)
- kafka-avro/spring-boot-kafka-avro-consumer/.mvn/wrapper/maven-wrapper.properties
- kafka-avro/spring-boot-kafka-avro-producer/.mvn/wrapper/maven-wrapper.properties
- kafka-dsl-integration/.mvn/wrapper/maven-wrapper.properties
- kafka-reactor/boot-kafka-reactor-consumer/.mvn/wrapper/maven-wrapper.properties
- kafka-reactor/boot-kafka-reactor-producer/.mvn/wrapper/maven-wrapper.properties
- kafka-sample/java/.mvn/wrapper/maven-wrapper.properties
- kafka-sample/spring/.mvn/wrapper/maven-wrapper.properties
- kafka-spring-boot/boot-kafka-sample/.mvn/wrapper/maven-wrapper.properties
- kafka-spring-boot/boot-multiple-producers-consumers/.mvn/wrapper/maven-wrapper.properties
- kafka-spring-cloud-sample/.mvn/wrapper/maven-wrapper.properties
- kafka-streams/analytics-spring-cloud-streams-kafka-consumer/.mvn/wrapper/maven-wrapper.properties
- kafka-streams/analytics-spring-cloud-streams-kafka-producer/.mvn/wrapper/maven-wrapper.properties
- spring-modulith-outbox-pattern/.mvn/wrapper/maven-wrapper.properties
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- kafka-spring-boot/boot-kafka-sample/src/test/java/com/example/springbootkafkasample/KafkaSampleIntegrationTest.java (1 hunks)
Additional comments not posted (2)
kafka-spring-boot/boot-kafka-sample/src/test/java/com/example/springbootkafkasample/KafkaSampleIntegrationTest.java (2)
51-51
: Increased timeout duration to 30 seconds.The
atMost
duration for the polling interval has been increased from 15 seconds to 30 seconds. Ensure that this change aligns with the expected performance and message flow in your application. Consider whether this increase might indicate a need for optimization in the message processing logic.
52-52
: Updated expected message count to 9.The expected count for
receiver2.getLatch().getCount()
has been altered from 2 to 9. This change suggests a significant adjustment in the message flow or processing logic. Verify that this new expectation accurately reflects the intended behavior of your application.
This PR contains the following updates:
3.9.8
->3.9.9
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.
Summary by CodeRabbit
New Features
Chores