Skip to content

Commit ebf2fd1

Browse files
authored
Merge branch 'main' into fix/openai-v2-version
2 parents e735ba1 + 3c88163 commit ebf2fd1

File tree

126 files changed

+397
-322
lines changed

Some content is hidden

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

126 files changed

+397
-322
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
1212
## Unreleased
1313

14+
## Version 1.31.0/0.52b0 (2025-03-12)
15+
1416
### Added
1517

1618
- `opentelemetry-instrumentation-openai-v2` Update doc for OpenAI Instrumentation to support OpenAI Compatible Platforms
@@ -39,8 +41,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3941

4042
- `opentelemetry-instrumentation-redis` Add missing entry in doc string for `def _instrument`
4143
([#3247](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3247))
44+
- `opentelemetry-instrumentation-botocore` sns-extension: Change destination name attribute
45+
to match topic ARN and redact phone number from attributes
46+
([#3249](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3249))
4247
- `opentelemetry-instrumentation-asyncpg` Fix fallback for empty queries.
4348
([#3253](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3253))
49+
- `opentelemetry-instrumentation` Fix a traceback in sqlcommenter when psycopg connection pooling is enabled.
50+
([#3309](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3309))
4451
- `opentelemetry-instrumentation-threading` Fix broken context typehints
4552
([#3322](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3322))
4653
- `opentelemetry-instrumentation-requests` always record span status code in duration metric

_template/version.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.52b0.dev"
15+
__version__ = "0.53b0.dev"

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pylint==3.0.2
22
httpretty==1.1.4
3-
pyright==v1.1.390
3+
pyright==v1.1.396
44
sphinx==7.1.2
55
sphinx-rtd-theme==2.0.0rc4
66
sphinx-autodoc-typehints==1.25.2

eachdist.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ sortfirst=
1616
ext/*
1717

1818
[stable]
19-
version=1.31.0.dev
19+
version=1.32.0.dev
2020

2121
packages=
2222
opentelemetry-sdk
@@ -34,7 +34,7 @@ packages=
3434
opentelemetry-api
3535

3636
[prerelease]
37-
version=0.52b0.dev
37+
version=0.53b0.dev
3838

3939
packages=
4040
all

exporter/opentelemetry-exporter-prometheus-remote-write/src/opentelemetry/exporter/prometheus_remote_write/version.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.52b0.dev"
15+
__version__ = "0.53b0.dev"

exporter/opentelemetry-exporter-richconsole/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ classifiers = [
2828
dependencies = [
2929
"opentelemetry-api ~= 1.12",
3030
"opentelemetry-sdk ~= 1.12",
31-
"opentelemetry-semantic-conventions == 0.52b0.dev",
31+
"opentelemetry-semantic-conventions == 0.53b0.dev",
3232
"rich>=10.0.0",
3333
]
3434

exporter/opentelemetry-exporter-richconsole/src/opentelemetry/exporter/richconsole/version.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.52b0.dev"
15+
__version__ = "0.53b0.dev"

instrumentation-genai/opentelemetry-instrumentation-vertexai/src/opentelemetry/instrumentation/vertexai/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def request_to_events(
240240
id_=f"{function_response.name}_{idx}",
241241
role=content.role,
242242
content=json_format.MessageToDict(
243-
function_response._pb.response # type: ignore[reportUnknownMemberType]
243+
function_response._pb.response
244244
)
245245
if capture_content
246246
else None,
@@ -300,7 +300,7 @@ def _extract_tool_calls(
300300
function=ChoiceToolCall.Function(
301301
name=part.function_call.name,
302302
arguments=json_format.MessageToDict(
303-
part.function_call._pb.args # type: ignore[reportUnknownMemberType]
303+
part.function_call._pb.args
304304
)
305305
if capture_content
306306
else None,

instrumentation/opentelemetry-instrumentation-aio-pika/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ classifiers = [
2727
]
2828
dependencies = [
2929
"opentelemetry-api ~= 1.5",
30-
"opentelemetry-instrumentation == 0.52b0.dev",
30+
"opentelemetry-instrumentation == 0.53b0.dev",
3131
"wrapt >= 1.0.0, < 2.0.0",
3232
]
3333

instrumentation/opentelemetry-instrumentation-aio-pika/src/opentelemetry/instrumentation/aio_pika/version.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.52b0.dev"
15+
__version__ = "0.53b0.dev"

0 commit comments

Comments
 (0)