Skip to content
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
17 changes: 14 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
# Elastic Distribution of OpenTelemetry Python Changelog

## v1.13.0

- Bump OpenTelemetry to 1.41.1/0.62b1 (#546)

Upstream changes:
* 1.41.0 core changes: https://github.com/open-telemetry/opentelemetry-python/discussions/5068
* 1.41.0 -contrib changes: https://github.com/open-telemetry/opentelemetry-python-contrib/discussions/4411
* 1.41.1 -contrib changes: https://github.com/open-telemetry/opentelemetry-python-contrib/discussions/4489
- Bump `opentelemetry-resourcedetector-gcp` to latest, dropping our private `_gcp` entry point in favor of the upstream `gcp_resource_detector` (#547)
- Consider `opentelemetry-instrumentation-logging` `LoggingHandler` when setting up logging (#552)

## v1.12.0

- Bump OpenTelemetry to 1.40.0/0.60b0 (#499)
- Bump OpenTelemetry to 1.40.0/0.61b0 (#499)

Upstream changes:
* https://github.com/open-telemetry/opentelemetry-python/discussions/5608
* https://github.com/open-telemetry/opentelemetry-python-contrib/discussions/4411
* https://github.com/open-telemetry/opentelemetry-python/discussions/4951
* https://github.com/open-telemetry/opentelemetry-python-contrib/discussions/4296

- Add support for Central Config `deactivate_instrumentations` where we can stop tracing for specific instrumentations at runtime, requires Elastic Stack 9.4.0 (#510)
- Move to upstream OpAMP client (#512, #517)
Expand Down
20 changes: 18 additions & 2 deletions docs/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,31 @@ To check for security updates, go to [Security announcements for the Elastic sta
% ### Fixes [edot-python-X.X.X-fixes]
% *

## 1.13.0 [edot-python-1.13.0-release-notes]

### Features and enhancements [edot-python-1.13.0-features-enhancements]

- Bump OpenTelemetry to 1.41.1/0.62b1 ([#546](https://github.com/elastic/elastic-otel-python/pull/546))

Upstream changes:
* [opentelemetry-python 1.41.0](https://github.com/open-telemetry/opentelemetry-python/discussions/5068)
* [opentelemetry-python-contrib 1.41.0](https://github.com/open-telemetry/opentelemetry-python-contrib/discussions/4411)
* [opentelemetry-python-contrib 1.41.1](https://github.com/open-telemetry/opentelemetry-python-contrib/discussions/4489)
- Bump `opentelemetry-resourcedetector-gcp` to latest, dropping our private `_gcp` entry point in favor of the upstream `gcp_resource_detector` ([#547](https://github.com/elastic/elastic-otel-python/pull/547))

### Fixes [edot-python-1.13.0-fixes]

- Consider `opentelemetry-instrumentation-logging` `LoggingHandler` when setting up logging ([#552](https://github.com/elastic/elastic-otel-python/pull/552))

## 1.12.0 [edot-python-1.12.0-release-notes]

### Features and enhancements [edot-python-1.12.0-features-enhancements]

- Bump OpenTelemetry to 1.40.0/0.61b0 ([#499](https://github.com/elastic/elastic-otel-python/pull/499))

Upstream changes:
* [opentelemetry-python](https://github.com/open-telemetry/opentelemetry-python/discussions/5608)
* [opentelemetry-python-contrib](https://github.com/open-telemetry/opentelemetry-python-contrib/discussions/4411)
* [opentelemetry-python](https://github.com/open-telemetry/opentelemetry-python/discussions/4951)
* [opentelemetry-python-contrib](https://github.com/open-telemetry/opentelemetry-python-contrib/discussions/4296)

- Central configuration: Add support for `deactivate_instrumentations` to stop tracing for specific instrumentations at runtime (supports globbing, including `*` to switch off tracing for all instrumentations), requires Elastic Stack 9.4.0 ([#499](https://github.com/elastic/elastic-otel-python/pull/499))
- Move to upstream OpAMP client ([#512](https://github.com/elastic/elastic-otel-python/pull/512), [#517](https://github.com/elastic/elastic-otel-python/pull/517))
Expand Down
2 changes: 1 addition & 1 deletion src/elasticotel/distro/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "1.12.0"
__version__ = "1.13.0"
Loading