-
Notifications
You must be signed in to change notification settings - Fork 18
[Automated] Sync master after 1.1.0 release #200
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 |
|---|---|---|
|
|
@@ -5,12 +5,12 @@ | |
|
|
||
| [ballerina] | ||
| dependencies-toml-version = "2" | ||
| distribution-version = "2201.12.0" | ||
| distribution-version = "2201.11.0" | ||
|
|
||
|
Comment on lines
6
to
9
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. 🧩 Analysis chain🏁 Script executed: rg -n "distribution-version|ballerinaLangVersion|distribution\s*=" -SRepository: ballerina-platform/module-ballerinax-jaeger Length of output: 1227 🏁 Script executed: cat -n ballerina/Dependencies.toml | head -20Repository: ballerina-platform/module-ballerinax-jaeger Length of output: 703 🏁 Script executed: cat -n gradle.properties | head -25Repository: ballerina-platform/module-ballerinax-jaeger Length of output: 1175 Investigate version mismatch in auto-generated 🤖 Prompt for AI Agents |
||
| [[package]] | ||
| org = "ballerina" | ||
| name = "io" | ||
| version = "1.8.0" | ||
| version = "1.7.0" | ||
| dependencies = [ | ||
| {org = "ballerina", name = "jballerina.java"}, | ||
| {org = "ballerina", name = "lang.value"} | ||
|
|
@@ -35,10 +35,24 @@ dependencies = [ | |
| {org = "ballerina", name = "jballerina.java"} | ||
| ] | ||
|
|
||
| [[package]] | ||
| org = "ballerina" | ||
| name = "log" | ||
| version = "2.11.0" | ||
| dependencies = [ | ||
| {org = "ballerina", name = "io"}, | ||
| {org = "ballerina", name = "jballerina.java"}, | ||
| {org = "ballerina", name = "lang.value"}, | ||
| {org = "ballerina", name = "observe"} | ||
| ] | ||
| modules = [ | ||
| {org = "ballerina", packageName = "log", moduleName = "log"} | ||
| ] | ||
|
|
||
| [[package]] | ||
| org = "ballerina" | ||
| name = "observe" | ||
| version = "1.6.0" | ||
| version = "1.4.0" | ||
| dependencies = [ | ||
| {org = "ballerina", name = "jballerina.java"} | ||
| ] | ||
|
|
@@ -54,6 +68,7 @@ version = "1.1.0" | |
| dependencies = [ | ||
| {org = "ballerina", name = "io"}, | ||
| {org = "ballerina", name = "jballerina.java"}, | ||
| {org = "ballerina", name = "log"}, | ||
| {org = "ballerina", name = "observe"} | ||
| ] | ||
| modules = [ | ||
|
|
||
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.
🧩 Analysis chain
🏁 Script executed:
Repository: ballerina-platform/module-ballerinax-jaeger
Length of output: 420
🏁 Script executed:
Repository: ballerina-platform/module-ballerinax-jaeger
Length of output: 1830
🏁 Script executed:
Repository: ballerina-platform/module-ballerinax-jaeger
Length of output: 6528
Update jar path and version to match native artifact naming.
The native artifact's version is set to
project.version(native/build.gradle:122), which is1.1.1-SNAPSHOT. The jar will be built asjaeger-extension-native-1.1.1-SNAPSHOT.jar, but Ballerina.toml hardcodes1.1.0. Update the path and version to1.1.1-SNAPSHOTto match the actual native artifact.🤖 Prompt for AI Agents