-
Notifications
You must be signed in to change notification settings - Fork 6
build: upgrade lombok to 1.18.34 #93
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
Conversation
WalkthroughThe changes in this pull request primarily involve updates to the Changes
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🔇 Additional comments (2)pom.xml (2)Line range hint The FlowingCode repositories are properly configured with:
The upgrade to Lombok 1.18.34 is safe as there are no breaking changes from 1.18.30. The 'provided' scope is correctly maintained. Let's verify no lombok configuration files need updates: ✅ Verification successfulLombok upgrade to 1.18.34 is safe to proceed The codebase uses standard Lombok annotations (@Getter, @AllArgsConstructor, @NoArgsConstructor, @tostring, @EqualsAndHashCode) that have remained stable between versions 1.18.30 and 1.18.34. No lombok.config file exists, and the usage patterns are straightforward without any complex configurations. The upgrade won't affect the current functionality. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Check for any lombok.config files that might need review
fd "lombok.config$"
Length of output: 21 Script: #!/bin/bash
# Let's check if there are any lombok annotations being used in the codebase
rg "@(Data|Getter|Setter|Builder|NoArgsConstructor|AllArgsConstructor|Value|RequiredArgsConstructor|ToString|EqualsAndHashCode|Slf4j|Log)" -l
Length of output: 360 Script: #!/bin/bash
# Let's check which specific Lombok annotations are used in these files
echo "=== TerminalTheme.java ==="
rg "@(Data|Getter|Setter|Builder|NoArgsConstructor|AllArgsConstructor|Value|RequiredArgsConstructor|ToString|EqualsAndHashCode|Slf4j|Log)" src/main/java/com/flowingcode/vaadin/addons/xterm/TerminalTheme.java -A 1
echo -e "\n=== ITerminalConsole.java ==="
rg "@(Data|Getter|Setter|Builder|NoArgsConstructor|AllArgsConstructor|Value|RequiredArgsConstructor|ToString|EqualsAndHashCode|Slf4j|Log)" src/main/java/com/flowingcode/vaadin/addons/xterm/ITerminalConsole.java -A 1
echo -e "\n=== Position.java ==="
rg "@(Data|Getter|Setter|Builder|NoArgsConstructor|AllArgsConstructor|Value|RequiredArgsConstructor|ToString|EqualsAndHashCode|Slf4j|Log)" src/test/java/com/flowingcode/vaadin/addons/xterm/integration/Position.java -A 1
Length of output: 1061 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 using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|



Summary by CodeRabbit
New Features
lombokdependency to improve code efficiency.Bug Fixes
Documentation