Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ muzzle {
}

val otelInstrumentationAlphaVersion: String by project
val otelVersion: String by project
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you rename otelVersion from dependencyManagement to otelSdkVersion?

otelVersion seems confusing.

Copy link
Member Author

@trask trask Oct 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sure, can I send a follow-up PR for that since it's unrelated to this PR?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

np

val otelInstrumentationVersion: String by project

dependencies {
compileOnly("com.microsoft.azure:applicationinsights-web:2.3.0")

testImplementation("io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations:$otelVersion")
testImplementation("io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations:$otelInstrumentationVersion")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you put a note saying when it's moved from sdk to otelInstrumentation?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you put a note saying when it's moved from sdk to otelInstrumentation?

I didn't follow this comment, can you clarify? thanks

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this has been there for 2 years. I just want to know when it was moved to a different artifact and put a comment there.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah, it has always been wrong

it just happened to work because before we bumped instrumentation repo to 2.x it generally had the same version number as the SDK repo

Copy link
Member Author

@trask trask Oct 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

plus, it's still "working" (CI passes), it just logs a warning which I think S360 may be complaining about


testImplementation("com.microsoft.azure:applicationinsights-web:2.3.0")
testImplementation("javax.servlet:javax.servlet-api:3.0.1")
Expand Down
Loading