- aiocontextvars is only needed for older Python 3.6. Python 3.7 and beyond provide everything in stdlib contextvars. See upstreams' setup.cfg. Use rpm boolean dependencies to pull in aiocontextvars only for python36 if available (TW) or python3 if python3-base < 3.7 (Leap) OBS-URL: https://build.opensuse.org/request/show/866014 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-opentelemetry-api?expand=0&rev=9
120 lines
5.9 KiB
Plaintext
120 lines
5.9 KiB
Plaintext
-------------------------------------------------------------------
|
|
Fri Jan 22 13:40:17 UTC 2021 - Benjamin Greiner <code@bnavigator.de>
|
|
|
|
- aiocontextvars is only needed for older Python 3.6. Python 3.7
|
|
and beyond provide everything in stdlib contextvars. See
|
|
upstreams' setup.cfg. Use rpm boolean dependencies to pull in
|
|
aiocontextvars only for python36 if available (TW) or python3 if
|
|
python3-base < 3.7 (Leap)
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Jan 22 11:39:19 UTC 2021 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
|
|
- Version update to 0.17b0
|
|
+ Added
|
|
- Add support for OTLP v0.6.0 (#1472)
|
|
- Add protobuf via gRPC exporting support for Jaeger (#1471)
|
|
- Add support for Python 3.9 (#1441)
|
|
- Added the ability to disable instrumenting libraries specified by
|
|
OTEL_PYTHON_DISABLED_INSTRUMENTATIONS env variable, when using
|
|
opentelemetry-instrument command. (#1461)
|
|
- Add `fields` to propagators (#1374)
|
|
- Add local/remote samplers to parent based sampler (#1440)
|
|
- Add support for OTEL_SPAN_{ATTRIBUTE_COUNT_LIMIT,EVENT_COUNT_LIMIT,LINK_COUNT_LIMIT}
|
|
(#1377)
|
|
- Return `None` for `DictGetter` if key not found (#1449)
|
|
- Added support for Jaeger propagator (#1219)
|
|
- Remove dependency on SDK from `opentelemetry-instrumentation` package. The
|
|
`opentelemetry-sdk` package now registers an entrypoint `opentelemetry_configurator`
|
|
to allow `opentelemetry-instrument` to load the configuration for the SDK (#1420)
|
|
- `opentelemetry-exporter-zipkin` Add support for array attributes in Span and
|
|
Resource exports (#1285)
|
|
- Added `__repr__` for `DefaultSpan`, added `trace_flags` to `__repr__` of
|
|
`SpanContext` (#1485)
|
|
- `opentelemetry-sdk` Add support for OTEL_TRACE_SAMPLER and OTEL_TRACE_SAMPLER_ARG
|
|
env variables (#1496)
|
|
- Adding `opentelemetry-distro` package to add default configuration for
|
|
span exporter to OTLP (#1482)
|
|
+ Changed
|
|
- `opentelemetry-exporter-zipkin` Updated zipkin exporter status code and error tag
|
|
(#1486)
|
|
- Recreate span on every run of a `start_as_current_span`-decorated function (#1451)
|
|
- `opentelemetry-exporter-otlp` Headers are now passed in as tuple as metadata, instead of a
|
|
string, which was incorrect. (#1507)
|
|
- `opentelemetry-exporter-jaeger` Updated Jaeger exporter status code tag (#1488)
|
|
- `opentelemetry-api` `opentelemety-sdk` Moved `idsgenerator` into sdk (#1514)
|
|
- `opentelemetry-sdk` The B3Format propagator has been moved into its own package:
|
|
`opentelemetry-propagator-b3` (#1513)
|
|
- Update default port for OTLP exporter from 55680 to 4317 (#1516)
|
|
- `opentelemetry-exporter-zipkin` Update boolean attribute value transformation (#1509)
|
|
- Move opentelemetry-opentracing-shim out of instrumentation folder (#1533)
|
|
- `opentelemetry-sdk` The JaegerPropagator has been moved into its own package:
|
|
`opentelemetry-propagator-jaeger` (#1525)
|
|
- `opentelemetry-exporter-jaeger`, `opentelemetry-exporter-zipkin` Update
|
|
InstrumentationInfo tag keys for Jaeger and Zipkin exporters (#1535)
|
|
- `opentelemetry-sdk` Remove rate property setter from TraceIdRatioBasedSampler (#1536)
|
|
- Fix TraceState to adhere to specs (#1502)
|
|
+ Removed
|
|
- `opentelemetry-api` Remove ThreadLocalRuntimeContext since python3.4 is not supported.
|
|
- from version 0.16b1
|
|
+ Added
|
|
- Add meter reference to observers (#1425)
|
|
- from version 0.16b0
|
|
+ Added
|
|
- Add optional parameter to `record_exception` method (#1314)
|
|
- Add pickle support to SpanContext class (#1380)
|
|
- Add instrumentation library name and version to OTLP exported metrics (#1418)
|
|
- Add Gzip compression for exporter (#1141)
|
|
- Support for v2 api protobuf format (#1318)
|
|
- Add IDs Generator as Configurable Property of Auto Instrumentation (#1404)
|
|
- Added support for `OTEL_EXPORTER` to the `opentelemetry-instrument` command
|
|
(#1036)
|
|
+ Changed
|
|
- Change temporality for Counter and UpDownCounter (#1384)
|
|
- OTLP exporter: Handle error case when no credentials supplied (#1366)
|
|
- Update protobuf versions (#1356)
|
|
- Add missing references to instrumented packages (#1416)
|
|
- Instrumentation Package depends on the OTel SDK (#1405)
|
|
- Allow samplers to modify tracestate (#1319)
|
|
- Update exception handling optional parameters, add escaped attribute to record_exception
|
|
(#1365)
|
|
- Rename `MetricRecord` to `ExportRecord` (#1367)
|
|
- Rename `Record` to `Accumulation` (#1373)
|
|
- Rename `Meter` to `Accumulator (#1372)
|
|
- Fix `ParentBased` sampler for implicit parent spans. Fix also `trace_state`
|
|
erasure for dropped spans or spans sampled by the `TraceIdRatioBased` sampler.
|
|
(#1394)
|
|
- See upstream CHANGELOG.md for the changes from 0.7b1 to 0.15b0
|
|
+ https://raw.githubusercontent.com/open-telemetry/opentelemetry-python/master/CHANGELOG.md
|
|
- Drop tests.tar.bz2 tarball as tests are included in the upstream source now
|
|
|
|
-------------------------------------------------------------------
|
|
Wed Apr 15 14:03:21 UTC 2020 - pgajdos@suse.com
|
|
|
|
- version update to 0.6b0
|
|
* Add support for lazy events and links (#474)
|
|
* Metrics API no longer uses LabelSet (#527)
|
|
* Adding is_remote flag to SpanContext, indicating when a span is remote (#516)
|
|
* Allow digit as first char in vendor specific trace state key (#511)
|
|
|
|
-------------------------------------------------------------------
|
|
Fri Mar 27 14:01:45 UTC 2020 - pgajdos@suse.com
|
|
|
|
- version update to 0.5b0
|
|
* W3C Correlation Context Propagation
|
|
* OpenTelemetry Collector Exporter Integration for both metrics and traces
|
|
* Metrics SDK
|
|
* Global configuration module
|
|
|
|
-------------------------------------------------------------------
|
|
Tue Mar 10 14:43:42 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
|
|
|
|
- Update to 0.4a1:
|
|
* various minor tweaks
|
|
|
|
-------------------------------------------------------------------
|
|
Sat Feb 22 15:59:29 UTC 2020 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
|
|
|
- Initial build
|
|
+ Version 0.4a0
|