Skip to content

Commit 8bf5b40

Browse files
aws-application-signals-botgithub-actionswangzleiMiqueashersrprash
authored
Post release 2.28.2: Update version to 2.28.2-SNAPSHOT (#1408)
This PR prepares the main branch for the next development cycle by updating the version to 2.28.2-SNAPSHOT and updating the image version to be scanned to the latest released. This PR should only be merge when release for version v2.28.2 is success. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. --------- Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: Lei Wang <66336933+wangzlei@users.noreply.github.com> Co-authored-by: Miqueas Herrera <vherremi@amazon.com> Co-authored-by: Prashant Srivastava <50466688+srprash@users.noreply.github.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Co-authored-by: Steve Liu <liustve@amazon.com> Co-authored-by: Mohamed Asaker <asakem@amazon.com> Co-authored-by: Vastin <3690049+vastin@users.noreply.github.com> Co-authored-by: ADOT Patch workflow <adot-patch-workflow@github.com> Co-authored-by: Syed Ahsan Ishtiaque <176968742+syed-ahsan-ishtiaque@users.noreply.github.com>
1 parent 08ed09b commit 8bf5b40

4 files changed

Lines changed: 13 additions & 5 deletions

File tree

.github/workflows/daily-scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
id: high_scan_v2
9595
uses: ./.github/actions/image_scan
9696
with:
97-
image-ref: "public.ecr.aws/aws-observability/adot-autoinstrumentation-java:v2.28.1"
97+
image-ref: "public.ecr.aws/aws-observability/adot-autoinstrumentation-java:v2.28.2"
9898
severity: 'CRITICAL,HIGH'
9999
logout: 'false'
100100
trivyignore-file: .github/trivy/daily-scan.trivyignore.yaml
@@ -104,7 +104,7 @@ jobs:
104104
id: low_scan_v2
105105
uses: ./.github/actions/image_scan
106106
with:
107-
image-ref: "public.ecr.aws/aws-observability/adot-autoinstrumentation-java:v2.28.1"
107+
image-ref: "public.ecr.aws/aws-observability/adot-autoinstrumentation-java:v2.28.2"
108108
severity: 'MEDIUM,LOW,UNKNOWN'
109109
logout: 'false'
110110
trivyignore-file: .github/trivy/daily-scan.trivyignore.yaml

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
.gradle
33
build/
44

5+
# Kotlin Gradle plugin build cache (created during builds, e.g. buildSrc/.kotlin/)
6+
.kotlin/
7+
58
.DS_Store
69

710
.vscode

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ If your change does not need a CHANGELOG entry, add the "skip changelog" label t
1313

1414
## Unreleased
1515

16+
- fix: remove EOL AWS SDK v1 dependency for ARN parsing
17+
([#1401](https://github.com/aws-observability/aws-otel-java-instrumentation/pull/1401))
18+
19+
## v2.28.2 - 2026-06-18
20+
1621
- Add Dynamic Instrumentation (Preview): capture additional runtime telemetry from a running
1722
application without a restart or redeploy. Opt-in and disabled by default via
1823
`OTEL_AWS_DYNAMIC_INSTRUMENTATION_ENABLED`. See `docs/dynamic-instrumentation.md`.
@@ -26,8 +31,8 @@ If your change does not need a CHANGELOG entry, add the "skip changelog" label t
2631
match the Python and JS SDKs (was pipe-separated). Routes containing a literal comma must now be
2732
matched with a glob, e.g. `GET /search*:750`.
2833
([#1393](https://github.com/aws-observability/aws-otel-java-instrumentation/pull/1393))
29-
- fix: remove EOL AWS SDK v1 dependency for ARN parsing
30-
([#1401](https://github.com/aws-observability/aws-otel-java-instrumentation/pull/1401))
34+
- fix(lambda-layer): Standardize CompactConsoleLogRecordExporter output with CloudWatch OTLP backend schema.
35+
([#1358](https://github.com/aws-observability/aws-otel-java-instrumentation/pull/1358))
3136

3237
## v2.28.1 - 2026-05-26
3338

version.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* permissions and limitations under the License.
1414
*/
1515

16-
val adotVersion = "2.28.1-SNAPSHOT"
16+
val adotVersion = "2.28.2-SNAPSHOT"
1717

1818
allprojects {
1919
if (!project.hasProperty("release.version")) {

0 commit comments

Comments
 (0)