-
Notifications
You must be signed in to change notification settings - Fork 14
update ark and runtime version #52
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
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 |
|---|---|---|
|
|
@@ -12,8 +12,8 @@ | |
|
|
||
| <properties> | ||
| <java.version>1.8</java.version> | ||
| <koupleless.runtime.version>1.3.1</koupleless.runtime.version> | ||
| <sofa.ark.version>2.2.14</sofa.ark.version> | ||
| <koupleless.runtime.version>1.3.2</koupleless.runtime.version> | ||
| <sofa.ark.version>2.2.15</sofa.ark.version> | ||
|
Comment on lines
+15
to
+16
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 across different sample modules The version verification reveals inconsistencies:
This version mismatch between different sample modules could lead to compatibility issues. The versions should be aligned unless there's a specific reason for the difference. 🔗 Analysis chainVerify version compatibility and changelog The version updates look consistent with other pom.xml files in the PR:
Let's verify these versions: 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Check if these are the latest stable versions and if there are any breaking changes
# Search for version declarations across all pom files to ensure consistency
echo "Checking version consistency across pom files..."
rg -g "pom.xml" "koupleless\.runtime\.version|sofa\.ark\.version"
# Check if these versions exist in the respective repositories
echo "Checking koupleless releases..."
gh api repos/koupleless/koupleless/releases --jq '.[].tag_name'
echo "Checking sofa-ark releases..."
gh api repos/sofastack/sofa-ark/releases --jq '.[].tag_name'
Length of output: 23055 |
||
| <disruptor.version>3.4.2</disruptor.version> | ||
| <os.plugin.version>1.7.1</os.plugin.version> | ||
| <protobuf.plugin.version>0.6.1</protobuf.plugin.version> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,8 +21,8 @@ | |
|
|
||
| <properties> | ||
| <java.version>1.8</java.version> | ||
| <koupleless.runtime.version>1.3.1</koupleless.runtime.version> | ||
| <sofa.ark.version>2.2.14</sofa.ark.version> | ||
| <koupleless.runtime.version>1.3.2</koupleless.runtime.version> | ||
| <sofa.ark.version>2.2.15</sofa.ark.version> | ||
|
Comment on lines
+24
to
+25
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 update needs revision - koupleless 1.3.2 appears to be premature The version update to koupleless 1.3.2 appears problematic:
Recommend:
🔗 Analysis chainVerify the version updates and their implications. The version updates look consistent with the coordinated dependency management across projects. However, let's verify:
Version updates need attention - koupleless version appears outdated Based on the GitHub releases data:
Let's verify if there are any references to version 1.3.2 in the repository: 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Verify latest versions and changelogs for koupleless and sofa-ark
# Check for koupleless releases
echo "Checking koupleless releases..."
gh api repos/koupleless/koupleless/releases --jq '.[0:3] | .[] | {tag_name, published_at}'
# Check for sofa-ark releases
echo "Checking sofa-ark releases..."
gh api repos/sofastack/sofa-ark/releases --jq '.[0:3] | .[] | {tag_name, published_at}'
# Look for any migration guides or breaking changes in recent commits
echo "Checking for breaking changes..."
gh api repos/koupleless/koupleless/commits --jq '.[] | select(.commit.message | contains("BREAKING") or contains("breaking")) | {sha, commit: {message}}'
gh api repos/sofastack/sofa-ark/commits --jq '.[] | select(.commit.message | contains("BREAKING") or contains("breaking")) | {sha, commit: {message}}'
Length of output: 1069 Script: #!/bin/bash
# Search for any references to koupleless version 1.3.2
echo "Searching for koupleless version 1.3.2 references..."
rg "1\.3\.2" -A 2 -B 2
# Check if this is a development branch version
echo "Checking development branches..."
git branch -a | grep dev
Length of output: 4297 |
||
| <guice.version>6.0.0</guice.version> | ||
| <guava.version>32.1.3-jre</guava.version> | ||
| <curator.version>2.9.1</curator.version> | ||
|
|
||
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
Version 1.3.2 of koupleless-runtime is not yet available
The version update to koupleless-runtime 1.3.2 cannot be verified as available:
Recommendations:
🔗 Analysis chain
Verify the availability and stability of the updated versions
The version updates look reasonable as they are patch version increments, suggesting backward compatibility. Let's verify the availability and stability of these versions.
Let me verify the availability of these versions in other repositories since Maven Central shows koupleless 1.3.2 is not available.
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 846
Script:
Length of output: 1569