Skip to content

Commit f5442cb

Browse files
authored
Merge branch 'main' into sgali/otmpy-docs-test
2 parents bda7079 + b06cf80 commit f5442cb

File tree

3 files changed

+23
-9
lines changed

3 files changed

+23
-9
lines changed

.github/workflows/benchmarks.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,18 @@ jobs:
1111
sdk-benchmarks:
1212
permissions:
1313
contents: write # required for pushing to gh-pages
14-
runs-on: equinix-bare-metal
14+
runs-on: oracle-bare-metal-64cpu-512gb-x86-64
15+
container:
16+
image: python:3.13-slim
1517
steps:
18+
- name: Install Git # since Git isn't available in the container image used above
19+
run: |
20+
apt-get update
21+
apt-get install -y git
22+
- name: Make repo safe for Git inside container
23+
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
1624
- name: Checkout Core Repo @ SHA - ${{ github.sha }}
1725
uses: actions/checkout@v4
18-
- name: Set up Python
19-
uses: actions/setup-python@v5
20-
with:
21-
python-version: "3.13"
22-
architecture: 'x64'
2326
- name: Install tox
2427
run: pip install tox-uv
2528
- name: Run tox

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
**Breaking changes ongoing**
9+
10+
> [!IMPORTANT]
11+
> We are working on stabilizing the Log signal that would require making deprecations and breaking changes. We will try to reduce the releases that may require an update to your code, especially for instrumentations or for sdk developers.
12+
813
## Unreleased
914

1015
## Version 1.36.0/0.57b0 (2025-07-29)

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# OpenTelemetry Python
22
[![Slack](https://img.shields.io/badge/slack-@cncf/otel/python-brightgreen.svg?logo=slack)](https://cloud-native.slack.com/archives/C01PD4HUVBL)
33
[![Build Status 0](https://github.com/open-telemetry/opentelemetry-python/actions/workflows/test_0.yml/badge.svg?branch=main)](https://github.com/open-telemetry/opentelemetry-python/actions/workflows/test_0.yml)
4-
[![Build Status 1](https://github.com/open-telemetry/opentelemetry-python/actions/workflows/test_1.yml/badge.svg?branch=main)](https://github.com/open-telemetry/opentelemetry-python/actions/workflows/test_1.yml)
54
[![Minimum Python Version](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
65
[![Release](https://img.shields.io/github/v/release/open-telemetry/opentelemetry-python?include_prereleases&style=)](https://github.com/open-telemetry/opentelemetry-python/releases/)
76
[![Read the Docs](https://readthedocs.org/projects/opentelemetry-python/badge/?version=latest)](https://opentelemetry-python.readthedocs.io/en/latest/)
7+
[![OpenSSF Best Practices](https://www.bestpractices.dev/projects/11060/badge)](https://www.bestpractices.dev/projects/11060)
88

99
## Project Status
1010

@@ -14,10 +14,15 @@ See the [OpenTelemetry Instrumentation for Python](https://opentelemetry.io/docs
1414
| ------- | ------------ | ------- |
1515
| Traces | Stable | N/A |
1616
| Metrics | Stable | N/A |
17-
| Logs | Experimental | N/A |
17+
| Logs | Development* | N/A |
1818

1919
Project versioning information and stability guarantees can be found [here](./rationale.md#versioning-and-releasing).
2020

21+
***Breaking Changes**
22+
23+
> [!IMPORTANT]
24+
> We are working on stabilizing the Log signal which would require making deprecations and breaking changes. We will try to reduce the releases that may require an update to your code, especially for instrumentations or for SDK developers.
25+
2126
## Getting started
2227

2328
You can find the getting started guide for OpenTelemetry Python [here](https://opentelemetry.io/docs/instrumentation/python/getting-started/).
@@ -98,14 +103,14 @@ Meeting notes are available as a public [Google doc](https://docs.google.com/doc
98103
### Maintainers
99104

100105
- [Aaron Abbott](https://github.com/aabmass), Google
101-
- [Diego Hurtado](https://github.com/ocelotl), Lightstep
102106
- [Leighton Chen](https://github.com/lzchen), Microsoft
103107
- [Riccardo Magliocchetti](https://github.com/xrmx), Elastic
104108

105109
For more information about the maintainer role, see the [community repository](https://github.com/open-telemetry/community/blob/main/guides/contributor/membership.md#maintainer).
106110

107111
### Approvers
108112

113+
- [Dylan Russell](https://github.com/dylanrussell), Google
109114
- [Emídio Neto](https://github.com/emdneto), PicPay
110115
- [Jeremy Voss](https://github.com/jeremydvoss), Microsoft
111116
- [Owais Lone](https://github.com/owais), Splunk
@@ -120,6 +125,7 @@ For more information about the approver role, see the [community repository](htt
120125

121126
- [Alex Boten](https://github.com/codeboten)
122127
- [Chris Kleinknecht](https://github.com/c24t)
128+
- [Diego Hurtado](https://github.com/ocelotl), Lightstep
123129
- [Owais Lone](https://github.com/owais)
124130
- [Reiley Yang](https://github.com/reyang)
125131
- [Srikanth Chekuri](https://github.com/srikanthccv)

0 commit comments

Comments
 (0)