diff --git a/CHANGELOG.md b/CHANGELOG.md index d848faa..d8f26b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,14 @@ # Elastic Distribution of OpenTelemetry Python Changelog +## v1.10.0 + +- Wire up composite sampler (#410) +- Handle `ELASTIC_OTEL_OPAMP_HEADERS` env var for OpAMP authentication (#411) +- Add support for mTLS authentication with OpAMP (#419) + ## v1.9.0 -- Handle OTEL_LOG_LEVEL to tune OpenTelemetry SDK and EDOT SDK logging (#397) +- Handle `OTEL_LOG_LEVEL` to tune OpenTelemetry SDK and EDOT SDK logging (#397) - Log OTel configuration variables at startup at info level (#398) - Make OpAMP client more robust (#401) @@ -104,7 +110,7 @@ - Enable by default cloud resource detectors for AWS, Azure and GCP (#198) - Introduce edot-bootstrap, like opentelemetry-bootstrap but with EDOT Openai instrumentation (#196) - Add docs for tracing with manual spans and metrics (#189) -- Set OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE to DELTA (#197) +- Set `OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE` to `DELTA` (#197) - Bump elastic-opentelemetry-instrumentation-openai dependency to 0.5.0 (#204) ## v0.4.1 diff --git a/docs/release-notes/index.md b/docs/release-notes/index.md index f59df28..5d04a9c 100644 --- a/docs/release-notes/index.md +++ b/docs/release-notes/index.md @@ -27,6 +27,13 @@ To check for security updates, go to [Security announcements for the Elastic sta % ### Fixes [edot-python-X.X.X-fixes] % * +## 1.10.0 [edot-python-1.10.0-release-notes] + +### Features and enhancements [edot-python-1.10.0-features-enhancements] + +- Use by default a composite sampler, refer to [OpenTelemetry Probability Sampling specs](https://opentelemetry.io/docs/specs/otel/trace/tracestate-probability-sampling/) ([#410](https://github.com/elastic/elastic-otel-python/pull/410)) +- Handle `ELASTIC_OTEL_OPAMP_HEADERS` env var for OpAMP authentication ([#411](https://github.com/elastic/elastic-otel-python/pull/411)) +- Add support for mTLS authentication with OpAMP ([#419](https://github.com/elastic/elastic-otel-python/pull/419)) ## 1.9.0 [edot-python-1.9.0-release-notes] diff --git a/src/elasticotel/distro/version.py b/src/elasticotel/distro/version.py index 23d61eb..869cbc7 100644 --- a/src/elasticotel/distro/version.py +++ b/src/elasticotel/distro/version.py @@ -14,4 +14,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "1.9.0" +__version__ = "1.10.0"