Skip to content

Commit 97d1f29

Browse files
authored
Merge branch 'main' into codeboten/fix-close-response
2 parents 8b9c631 + ffc23bc commit 97d1f29

File tree

71 files changed

+1237
-1005
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+1237
-1005
lines changed

CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
- Fix intermittent `Connection aborted` error when using otlp/http exporters
11+
([#4477](https://github.com/open-telemetry/opentelemetry-python/pull/4477))
12+
13+
## Version 1.32.0/0.53b0 (2025-04-10)
14+
1015
- Fix user agent in OTLP HTTP metrics exporter
1116
([#4475](https://github.com/open-telemetry/opentelemetry-python/pull/4475))
1217
- Improve performance of baggage operations
@@ -17,8 +22,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1722
([#4494](https://github.com/open-telemetry/opentelemetry-python/pull/4494))
1823
- Improve CI by cancelling stale runs and setting timeouts
1924
([#4498](https://github.com/open-telemetry/opentelemetry-python/pull/4498))
20-
- Fix intermittent `Connection aborted` error when using otlp/http exporters
21-
([#4477](https://github.com/open-telemetry/opentelemetry-python/pull/4477))
25+
- Patch logging.basicConfig so OTel logs don't cause console logs to disappear
26+
([#4436](https://github.com/open-telemetry/opentelemetry-python/pull/4436))
27+
- Bump semantic conventions to 1.32.0
28+
([#4530](https://github.com/open-telemetry/opentelemetry-python/pull/4530))
29+
- Fix ExplicitBucketHistogramAggregation to handle multiple explicit bucket boundaries advisories
30+
([#4521](https://github.com/open-telemetry/opentelemetry-python/pull/4521))
31+
- opentelemetry-sdk: Fix serialization of objects in log handler
32+
([#4528](https://github.com/open-telemetry/opentelemetry-python/pull/4528))
2233

2334
## Version 1.31.0/0.52b0 (2025-03-12)
2435

@@ -51,6 +62,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5162
([#4458](https://github.com/open-telemetry/opentelemetry-python/pull/4458))
5263
- pylint-ci updated python version to 3.13
5364
([#4450](https://github.com/open-telemetry/opentelemetry-python/pull/4450))
65+
- Fix memory leak in Log & Trace exporter
66+
([#4449](https://github.com/open-telemetry/opentelemetry-python/pull/4449))
5467

5568
## Version 1.30.0/0.51b0 (2025-02-03)
5669

eachdist.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sortfirst=
1111
exporter/*
1212

1313
[stable]
14-
version=1.32.0.dev
14+
version=1.33.0.dev
1515

1616
packages=
1717
opentelemetry-sdk
@@ -27,7 +27,7 @@ packages=
2727
opentelemetry-api
2828

2929
[prerelease]
30-
version=0.53b0.dev
30+
version=0.54b0.dev
3131

3232
packages=
3333
opentelemetry-opentracing-shim

exporter/opentelemetry-exporter-opencensus/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies = [
3232
"grpcio >= 1.63.2, < 2.0.0; python_version < '3.13'",
3333
"grpcio >= 1.66.2, < 2.0.0; python_version >= '3.13'",
3434
"opencensus-proto >= 0.1.0, < 1.0.0",
35-
"opentelemetry-api >= 1.32.0.dev",
35+
"opentelemetry-api >= 1.33.0.dev",
3636
"opentelemetry-sdk >= 1.15",
3737
"protobuf ~= 3.13",
3838
"setuptools >= 16.0",

exporter/opentelemetry-exporter-opencensus/src/opentelemetry/exporter/opencensus/version/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.53b0.dev"
15+
__version__ = "0.54b0.dev"

exporter/opentelemetry-exporter-otlp-proto-common/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ classifiers = [
2828
"Programming Language :: Python :: 3.13",
2929
]
3030
dependencies = [
31-
"opentelemetry-proto == 1.32.0.dev",
31+
"opentelemetry-proto == 1.33.0.dev",
3232
]
3333

3434
[project.urls]

exporter/opentelemetry-exporter-otlp-proto-common/src/opentelemetry/exporter/otlp/proto/common/_internal/metrics_encoder/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,9 @@ def _get_temporality(
117117
_logger.warning(
118118
"Unrecognized OTEL_EXPORTER_METRICS_TEMPORALITY_PREFERENCE"
119119
" value found: "
120-
f"{otel_exporter_otlp_metrics_temporality_preference}, "
121-
"using CUMULATIVE"
120+
"%s, "
121+
"using CUMULATIVE",
122+
otel_exporter_otlp_metrics_temporality_preference,
122123
)
123124
instrument_class_temporality = {
124125
Counter: AggregationTemporality.CUMULATIVE,

exporter/opentelemetry-exporter-otlp-proto-common/src/opentelemetry/exporter/otlp/proto/common/version/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "1.32.0.dev"
15+
__version__ = "1.33.0.dev"

exporter/opentelemetry-exporter-otlp-proto-grpc/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ dependencies = [
3333
"grpcio >= 1.63.2, < 2.0.0; python_version < '3.13'",
3434
"grpcio >= 1.66.2, < 2.0.0; python_version >= '3.13'",
3535
"opentelemetry-api ~= 1.15",
36-
"opentelemetry-proto == 1.32.0.dev",
37-
"opentelemetry-sdk ~= 1.32.0.dev",
38-
"opentelemetry-exporter-otlp-proto-common == 1.32.0.dev",
36+
"opentelemetry-proto == 1.33.0.dev",
37+
"opentelemetry-sdk ~= 1.33.0.dev",
38+
"opentelemetry-exporter-otlp-proto-common == 1.33.0.dev",
3939
]
4040

4141
[project.entry-points.opentelemetry_logs_exporter]

exporter/opentelemetry-exporter-otlp-proto-grpc/src/opentelemetry/exporter/otlp/proto/grpc/exporter.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ def _read_file(file_path: str) -> Optional[bytes]:
125125
return file.read()
126126
except FileNotFoundError as e:
127127
logger.exception(
128-
f"Failed to read file: {e.filename}. Please check if the file exists and is accessible."
128+
"Failed to read file: %s. Please check if the file exists and is accessible.",
129+
e.filename,
129130
)
130131
return None
131132

exporter/opentelemetry-exporter-otlp-proto-grpc/src/opentelemetry/exporter/otlp/proto/grpc/version/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "1.32.0.dev"
15+
__version__ = "1.33.0.dev"

0 commit comments

Comments
 (0)