-
Notifications
You must be signed in to change notification settings - Fork 246
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
remove lookout dependency #359
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.5.1 | ||
6.5.6 |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
<parent> | ||
<groupId>com.alipay.sofa</groupId> | ||
<artifactId>registry-parent</artifactId> | ||
<version>6.5.1</version> | ||
<version>6.5.6</version> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification Version inconsistency detected in Several
🔗 Analysis chainVersion update looks good, but verify consistency. The parent project version has been updated from 6.5.1 to 6.5.6. This change is likely to include bug fixes, improvements, or new features in the parent project. To ensure consistency across the project, let's verify if this version update is reflected in other relevant files: This script will help us identify any inconsistencies in version numbers across the project and ensure that the old version (6.5.1) has been completely replaced. Generating new verification scripts for version consistency. To ensure that the version update from These scripts will help verify that the version update is consistently applied and that no old version references remain in the codebase. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check for inconsistencies in version numbers across pom.xml files
# Test 1: Check if all pom.xml files have the same version
echo "Checking pom.xml files for version consistency:"
find . -name pom.xml -type f -exec grep -H "<version>" {} + | grep -v "\${" | sort | uniq -c
# Test 2: Check if there are any remaining references to the old version
echo "Checking for any remaining references to version 6.5.1:"
grep -r "6.5.1" --include="*.xml" --include="*.properties" .
Length of output: 362 Script: # Check if all pom.xml files have the updated version 6.5.6
echo "Verifying that all pom.xml files have version 6.5.6:"
fd "pom.xml" -x grep -H "<version>6\.5\.6</version>" {}
# Ensure there are no remaining references to the old version 6.5.1
echo "Ensuring no pom.xml or properties files reference version 6.5.1:"
grep -r "6\.5\.1" --include="pom.xml" --include="*.properties" .
Length of output: 4024 |
||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
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.
💡 Codebase verification
Issues Found: Lookout dependencies still present in the codebase.
The following
pom.xml
files contain Lookout-related dependencies:sofa-registry/pom.xml
sofa-registry/client/all/pom.xml
sofa-registry/client/impl/pom.xml
🔗 Analysis chain
LGTM. Verify alignment with PR objectives.
The update of the parent version from 6.5.1 to 6.5.6 looks good. This change likely introduces bug fixes, new features, or improvements from the parent project.
To ensure this change aligns with the PR objectives of removing the Lookout dependency, please run the following verification:
Action Required: Further verify removal of Lookout dependency.
The initial verification attempt failed because the
mvn
command is unavailable. To ensure the Lookout dependency has been removed, please run the following script:Action Required: Verify removal of Lookout dependency across all POM files.
The previous attempt to locate Lookout dependencies failed due to the missing parent POM. To ensure comprehensive verification, please run the following script:
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 518
Script:
Length of output: 383
Script:
Length of output: 979