Skip to content
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

Dec2023 updates #201

Merged
merged 8 commits into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

## [Unreleased]
- Update upstream otel-lambda to latest
- Update otel-java dependencies to 1.32.0
- Update splunk-otel-python to 1.16.0
- Update splunk-otel-js to 2.5.1
- Update miscellaneous other java depenencies

## 0.7.2
- Update upstream otel-lambda to latest with java17 (and 21) support
Expand Down
8 changes: 4 additions & 4 deletions java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ description = "Splunk distribution of OpenTelemetry Lambda"

ext {
versions = [
opentelemetry: '1.30.0',
opentelemetryalpha: '1.30.0-alpha'
opentelemetry: '1.32.0',
opentelemetryalpha: '1.32.0-alpha'
]
}

Expand Down Expand Up @@ -50,9 +50,9 @@ dependencies {
// events
implementation("com.amazonaws:aws-lambda-java-events:3.11.4")
// lambda logging
implementation("com.amazonaws:aws-lambda-java-log4j2:1.5.1")
implementation("com.amazonaws:aws-lambda-java-log4j2:1.6.0")
implementation("org.apache.logging.log4j:log4j-slf4j18-impl:2.18.0")
implementation("org.apache.logging.log4j:log4j-core:2.21.1")
implementation("org.apache.logging.log4j:log4j-core:2.22.0")
}

// need to exclude "parent" dependencies to avoid clash upon copy / zip of the final layer
Expand Down
2 changes: 1 addition & 1 deletion java/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'com.gradle.enterprise' version '3.15.1'
id 'com.gradle.enterprise' version '3.16'
}

gradleEnterprise {
Expand Down
Loading