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
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme-renderer==42.0
bleach==4.1.0 # transient dependency for readme-renderer
markupsafe>=2.0.1
codespell==2.1.0
requests==2.32.3
requests==2.33.1
ruamel.yaml==0.17.21
flaky==3.7.0
pre-commit==3.7.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ protobuf==6.33.5
py-cpuinfo==9.0.0
pytest==7.4.4
python-snappy==0.7.1
requests==2.32.3
requests==2.33.1
tomli==2.0.1
typing_extensions==4.12.2
urllib3==2.2.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pytest-asyncio==0.21.0
pytest-vcr==1.0.2
python-dateutil==2.9.0.post0
PyYAML==6.0.2
requests==2.32.3
requests==2.33.1
rsa==4.9
fsspec==2025.9.0
six==1.17.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pytest-asyncio==0.21.0
pytest-vcr==1.0.2
python-dateutil==2.9.0.post0
PyYAML==6.0.2
requests==2.32.3
requests==2.33.1
rsa==4.9
six==1.17.0
tomli==2.2.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ packaging==24.0
pluggy==1.6.0
py-cpuinfo==9.0.0
pytest==7.4.4
requests==2.32.3
requests==2.33.1
tomli==2.0.1
typing_extensions==4.12.2
urllib3==2.2.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pytest-vcr==1.0.2
python-dateutil==2.8.2
pytz==2024.1
PyYAML==6.0.1
requests==2.32.3
requests==2.33.1
responses==0.25.0
s3transfer==0.7.0
six==1.16.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pytest-vcr==1.0.2
python-dateutil==2.8.2
pytz==2024.1
PyYAML==6.0.1
requests==2.32.3
requests==2.33.1
responses==0.25.0
s3transfer==0.10.0
six==1.16.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pytest-vcr==1.0.2
python-dateutil==2.8.2
pytz==2024.1
PyYAML==6.0.1
requests==2.32.3
requests==2.33.1
responses==0.25.0
s3transfer==0.7.0
six==1.16.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pytest-vcr==1.0.2
python-dateutil==2.8.2
pytz==2024.1
PyYAML==6.0.1
requests==2.32.3
requests==2.33.1
responses==0.25.0
s3transfer==0.10.0
six==1.16.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ py-cpuinfo==9.0.0
pydantic==2.12.5
pydantic_core==2.41.5
pytest==7.4.4
requests==2.32.3
requests==2.33.1
sniffio==1.3.0
starlette==0.46.1
tomli==2.0.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ packaging==24.0
pluggy==1.6.0
py-cpuinfo==9.0.0
pytest==7.4.4
requests==2.32.3
requests==2.33.1
tomli==2.0.1
typing_extensions==4.12.2
urllib3==2.2.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def test_basic(self):
HTTP_METHOD: "GET",
HTTP_URL: self.URL,
HTTP_STATUS_CODE: 200,
USER_AGENT_ORIGINAL: "python-requests/2.32.3",
USER_AGENT_ORIGINAL: f"python-requests/{requests.__version__}",
},
)

Expand Down Expand Up @@ -214,7 +214,7 @@ def test_basic_new_semconv(self):
NETWORK_PROTOCOL_VERSION: "1.1",
SERVER_PORT: 80,
NETWORK_PEER_PORT: 80,
USER_AGENT_ORIGINAL: "python-requests/2.32.3",
USER_AGENT_ORIGINAL: f"python-requests/{requests.__version__}",
},
)

Expand Down Expand Up @@ -257,7 +257,7 @@ def test_basic_both_semconv(self):
NETWORK_PROTOCOL_VERSION: "1.1",
SERVER_PORT: 80,
NETWORK_PEER_PORT: 80,
USER_AGENT_ORIGINAL: "python-requests/2.32.3",
USER_AGENT_ORIGINAL: f"python-requests/{requests.__version__}",
},
)

Expand All @@ -281,7 +281,7 @@ def test_nonstandard_http_method(self):
HTTP_METHOD: "_OTHER",
HTTP_URL: self.URL,
HTTP_STATUS_CODE: 405,
USER_AGENT_ORIGINAL: "python-requests/2.32.3",
USER_AGENT_ORIGINAL: f"python-requests/{requests.__version__}",
},
)

Expand All @@ -306,7 +306,7 @@ def test_nonstandard_http_method_new_semconv(self):
NETWORK_PROTOCOL_VERSION: "1.1",
ERROR_TYPE: "405",
HTTP_REQUEST_METHOD_ORIGINAL: "NONSTANDARD",
USER_AGENT_ORIGINAL: "python-requests/2.32.3",
USER_AGENT_ORIGINAL: f"python-requests/{requests.__version__}",
},
)
self.assertIs(span.status.status_code, trace.StatusCode.ERROR)
Expand Down Expand Up @@ -541,7 +541,7 @@ def response_hook(
HTTP_URL: self.URL,
HTTP_STATUS_CODE: 200,
"http.response.body": "Hello!",
USER_AGENT_ORIGINAL: "python-requests/2.32.3",
USER_AGENT_ORIGINAL: f"python-requests/{requests.__version__}",
},
)

Expand Down Expand Up @@ -572,7 +572,7 @@ def test_requests_exception_without_response(self, *_, **__):
{
HTTP_METHOD: "GET",
HTTP_URL: self.URL,
USER_AGENT_ORIGINAL: "python-requests/2.32.3",
USER_AGENT_ORIGINAL: f"python-requests/{requests.__version__}",
},
)
self.assertEqual(span.status.status_code, StatusCode.ERROR)
Expand Down Expand Up @@ -600,7 +600,7 @@ def test_requests_exception_new_semconv(self, *_, **__):
NETWORK_PEER_PORT: 80,
NETWORK_PEER_ADDRESS: "mock",
ERROR_TYPE: "RequestException",
USER_AGENT_ORIGINAL: "python-requests/2.32.3",
USER_AGENT_ORIGINAL: f"python-requests/{requests.__version__}",
},
)
self.assertEqual(span.status.status_code, StatusCode.ERROR)
Expand All @@ -623,7 +623,7 @@ def test_requests_exception_without_proper_response_type(self, *_, **__):
{
HTTP_METHOD: "GET",
HTTP_URL: self.URL,
USER_AGENT_ORIGINAL: "python-requests/2.32.3",
USER_AGENT_ORIGINAL: f"python-requests/{requests.__version__}",
},
)
self.assertEqual(span.status.status_code, StatusCode.ERROR)
Expand All @@ -647,7 +647,7 @@ def test_requests_exception_with_response(self, *_, **__):
HTTP_METHOD: "GET",
HTTP_URL: self.URL,
HTTP_STATUS_CODE: 500,
USER_AGENT_ORIGINAL: "python-requests/2.32.3",
USER_AGENT_ORIGINAL: f"python-requests/{requests.__version__}",
},
)
self.assertEqual(span.status.status_code, StatusCode.ERROR)
Expand Down Expand Up @@ -687,7 +687,7 @@ def test_adapter_with_custom_response(self):
"http.method": "GET",
"http.url": self.URL,
"http.status_code": 210,
USER_AGENT_ORIGINAL: "python-requests/2.32.3",
USER_AGENT_ORIGINAL: f"python-requests/{requests.__version__}",
},
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pytest==7.4.4
# via
# -c dev-requirements.txt
# -r instrumentation/opentelemetry-instrumentation-starlette/test-requirements.in
requests==2.32.3
requests==2.33.1
# via
# -c dev-requirements.txt
# -r instrumentation/opentelemetry-instrumentation-starlette/test-requirements.in
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ pytest==7.4.4
# via
# -c dev-requirements.txt
# -r instrumentation/opentelemetry-instrumentation-starlette/test-requirements.in
requests==2.32.3
requests==2.33.1
# via
# -c dev-requirements.txt
# -r instrumentation/opentelemetry-instrumentation-starlette/test-requirements.in
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ packaging==24.0
pluggy==1.6.0
py-cpuinfo==9.0.0
pytest==7.4.4
requests==2.32.3
requests==2.33.1
tomli==2.0.1
tornado==6.4.2
typing_extensions==4.12.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pyyaml==6.0.2
# via
# -r opamp/opentelemetry-opamp-client/test-requirements.in
# vcrpy
requests==2.32.3
requests==2.33.1
# via
# -c dev-requirements.txt
# -r opamp/opentelemetry-opamp-client/test-requirements.in
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# uv pip compile --python 3.10 --universal --resolution lowest -c dev-requirements.txt opamp/opentelemetry-opamp-client/test-requirements.in -o opamp/opentelemetry-opamp-client/test-requirements.lowest.txt --no-emit-package opentelemetry-api
-e opamp/opentelemetry-opamp-client
# via -r opamp/opentelemetry-opamp-client/test-requirements.in
certifi==2017.4.17
certifi==2023.5.7
# via requests
charset-normalizer==2.0.0
# via requests
Expand Down Expand Up @@ -49,7 +49,7 @@ pyyaml==6.0.2
# via
# -r opamp/opentelemetry-opamp-client/test-requirements.in
# vcrpy
requests==2.32.3
requests==2.33.1
# via
# -c dev-requirements.txt
# -r opamp/opentelemetry-opamp-client/test-requirements.in
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pluggy==1.6.0
py-cpuinfo==9.0.0
pytest==7.4.4
pytest-benchmark==4.0.0
requests==2.32.3
requests==2.33.1
tomli==2.0.1
typing_extensions==4.12.2
urllib3==2.2.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pluggy==1.6.0
py-cpuinfo==9.0.0
pytest==7.4.4
pytest-benchmark==4.0.0
requests==2.32.3
requests==2.33.1
tomli==2.0.1
typing_extensions==4.12.2
urllib3==2.2.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pluggy==1.6.0
py-cpuinfo==9.0.0
pytest==7.4.4
pytest-benchmark==4.0.0
requests==2.32.3
requests==2.33.1
tomli==2.0.1
typing_extensions==4.12.2
wrapt==1.16.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pluggy==1.6.0
py-cpuinfo==9.0.0
pytest==7.4.4
pytest-benchmark==4.0.0
requests==2.32.3
requests==2.33.1
tomli==2.0.1
typing_extensions==4.12.2
wrapt==1.16.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pytest-celery==0.0.0
python-dateutil==2.9.0.post0
pytz==2024.1
redis==5.0.1
requests==2.31.0
requests==2.33.1
six==1.16.0
SQLAlchemy==1.4.52
tomli==2.0.1
Expand Down
6 changes: 3 additions & 3 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading