Browse Source

ref: upgrade urllib3 to 2.2.2 (#72950)

<!-- Describe your PR here. -->
anthony sottile 8 months ago
parent
commit
2ac1fd9904
4 changed files with 4 additions and 4 deletions
  1. 1 1
      requirements-base.txt
  2. 1 1
      requirements-dev-frozen.txt
  3. 1 1
      requirements-frozen.txt
  4. 1 1
      src/sentry/profiles/utils.py

+ 1 - 1
requirements-base.txt

@@ -79,7 +79,7 @@ toronado>=0.1.0
 typing-extensions>=4.9.0
 ua-parser>=0.10.0
 unidiff>=0.7.4
-urllib3[brotli]>=2
+urllib3[brotli]>=2.2.2
 brotli>=1.0.9
 pyuwsgi==2.0.23.post0
 zstandard>=0.18.0

+ 1 - 1
requirements-dev-frozen.txt

@@ -229,7 +229,7 @@ tzdata==2023.3
 ua-parser==0.10.0
 unidiff==0.7.4
 uritemplate==4.1.1
-urllib3==2.0.7
+urllib3==2.2.2
 vine==5.1.0
 virtualenv==20.25.0
 wcwidth==0.2.10

+ 1 - 1
requirements-frozen.txt

@@ -146,7 +146,7 @@ tzdata==2023.3
 ua-parser==0.10.0
 unidiff==0.7.4
 uritemplate==4.1.1
-urllib3==2.0.7
+urllib3==2.2.2
 vine==5.1.0
 wcwidth==0.2.10
 xmlsec==1.3.13

+ 1 - 1
src/sentry/profiles/utils.py

@@ -59,7 +59,7 @@ class RetrySkipTimeout(urllib3.Retry):
 
         metrics.incr("profiling.client.retry", tags={"method": method, "path": path})
 
-        return super().increment(  # type: ignore[return-value]  # urllib3/urllib3#3363
+        return super().increment(
             method=method,
             url=url,
             response=response,