-
Notifications
You must be signed in to change notification settings - Fork 916
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
Update the OpenTelemetry SDK version to 1.47.0 #13250
Update the OpenTelemetry SDK version to 1.47.0 #13250
Conversation
.equals( | ||
record | ||
.getAttributes() | ||
.get(AttributeKey.stringKey("event.name")))) | ||
.equals(((ExtendedLogRecordData) record).getEventName())) |
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.
This is a breaking change, but since this isn't enabled by default it shouldn't have much impact.
cc @jack-berg
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.
thanks @laurit ❤️
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.0:javaagent")) | ||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.4:javaagent")) | ||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.10:javaagent")) | ||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.15:javaagent")) | ||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.27:javaagent")) | ||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.31:javaagent")) | ||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.32:javaagent")) | ||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.37:javaagent")) | ||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.38:javaagent")) | ||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.40:javaagent")) | ||
implementation(project(":instrumentation:opentelemetry-api:opentelemetry-api-1.42:javaagent")) |
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.
😭
@@ -68,7 +68,8 @@ jobs: | |||
cache-read-only: ${{ inputs.cache-read-only }} | |||
|
|||
- name: Generate license report | |||
run: ./gradlew generateLicenseReport ${{ inputs.no-build-cache && '--no-build-cache' || '' }} | |||
# with the build cache enabled occasionally produces outdated results | |||
run: ./gradlew generateLicenseReport --no-build-cache |
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.
I have seen this has happened at least once before where generateLicenseReport
produces an old version of the license file
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.
yeah, I think I've seen this too 👍
Update the OpenTelemetry SDK version to
1.47.0
.