diff --git a/.github/workflows/daily-scan.yml b/.github/workflows/daily-scan.yml index d4eaeb751..053bc8524 100644 --- a/.github/workflows/daily-scan.yml +++ b/.github/workflows/daily-scan.yml @@ -93,7 +93,7 @@ jobs: id: high_scan uses: ./.github/actions/image_scan with: - image-ref: "public.ecr.aws/aws-observability/adot-autoinstrumentation-python:v0.12.1" + image-ref: "public.ecr.aws/aws-observability/adot-autoinstrumentation-python:v0.14.0" severity: 'CRITICAL,HIGH' logout: 'false' @@ -102,7 +102,7 @@ jobs: id: low_scan uses: ./.github/actions/image_scan with: - image-ref: "public.ecr.aws/aws-observability/adot-autoinstrumentation-python:v0.12.1" + image-ref: "public.ecr.aws/aws-observability/adot-autoinstrumentation-python:v0.14.0" severity: 'MEDIUM,LOW,UNKNOWN' logout: 'false' diff --git a/CHANGELOG.md b/CHANGELOG.md index cbce4e923..0ff4af833 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,12 @@ For any change that affects end users of this package, please add an entry under If your change does not need a CHANGELOG entry, add the "skip changelog" label to your PR. ## Unreleased +- [PATCH] Add safety check for bedrock ConverseStream responses + ([#547](https://github.com/aws-observability/aws-otel-python-instrumentation/pull/547)) - Add Service and Environment dimensions to EMF metrics when Application Signals EMF export is enabled ([#548](https://github.com/aws-observability/aws-otel-python-instrumentation/pull/548)) + +## v0.14.0 - 2025-11-19 - Add Resource and CFN Attributes for Bedrock AgentCore spans ([#495](https://github.com/aws-observability/aws-otel-python-instrumentation/pull/495)) - Add botocore instrumentation extension for Bedrock AgentCore services with span attributes @@ -25,6 +29,4 @@ If your change does not need a CHANGELOG entry, add the "skip changelog" label t ([#522](https://github.com/aws-observability/aws-otel-python-instrumentation/pull/522)) - Support credentials provider name for BedrockAgentCore Identity ([#534](https://github.com/aws-observability/aws-otel-python-instrumentation/pull/534)) -- [PATCH] Add safety check for bedrock ConverseStream responses - ([#547](https://github.com/aws-observability/aws-otel-python-instrumentation/pull/547)) diff --git a/aws-opentelemetry-distro/src/amazon/opentelemetry/distro/version.py b/aws-opentelemetry-distro/src/amazon/opentelemetry/distro/version.py index 05dff4918..4a072c1d9 100644 --- a/aws-opentelemetry-distro/src/amazon/opentelemetry/distro/version.py +++ b/aws-opentelemetry-distro/src/amazon/opentelemetry/distro/version.py @@ -1,4 +1,4 @@ # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: Apache-2.0 -__version__ = "0.12.1.dev0" +__version__ = "0.14.0.dev0"