Skip to content

Bump requests from 2.31.0 to 2.32.2 in /drivers/gpu/drm/ci/xfails #47

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 328 commits into
base: develop
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github May 12, 2025

Bumps requests from 2.31.0 to 2.32.2.

Release notes

Sourced from requests's releases.

v2.32.2

2.32.2 (2024-05-21)

Deprecations

  • To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0.

    A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710)

v2.32.1

2.32.1 (2024-05-20)

Bugfixes

  • Add missing test certs to the sdist distributed on PyPI.

v2.32.0

2.32.0 (2024-05-20)

🐍 PYCON US 2024 EDITION 🐍

Security

  • Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56)

Improvements

  • verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667)
  • Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored. This enables pip and other projects to minimize their vendoring surface area. The Response.text() and apparent_encoding APIs will default to utf-8 if neither library is present. (#6702)

Bugfixes

  • Fixed bug in length detection where emoji length was incorrectly calculated in the request content-length. (#6589)
  • Fixed deserialization bug in JSONDecodeError. (#6629)
  • Fixed bug where an extra leading / (path separator) could lead urllib3 to unnecessarily reparse the request URI. (#6644)

... (truncated)

Changelog

Sourced from requests's changelog.

2.32.2 (2024-05-21)

Deprecations

  • To provide a more stable migration for custom HTTPAdapters impacted by the CVE changes in 2.32.0, we've renamed _get_connection to a new public API, get_connection_with_tls_context. Existing custom HTTPAdapters will need to migrate their code to use this new API. get_connection is considered deprecated in all versions of Requests>=2.32.0.

    A minimal (2-line) example has been provided in the linked PR to ease migration, but we strongly urge users to evaluate if their custom adapter is subject to the same issue described in CVE-2024-35195. (#6710)

2.32.1 (2024-05-20)

Bugfixes

  • Add missing test certs to the sdist distributed on PyPI.

2.32.0 (2024-05-20)

Security

  • Fixed an issue where setting verify=False on the first request from a Session will cause subsequent requests to the same origin to also ignore cert verification, regardless of the value of verify. (GHSA-9wx4-h78v-vm56)

Improvements

  • verify=True now reuses a global SSLContext which should improve request time variance between first and subsequent requests. It should also minimize certificate load time on Windows systems when using a Python version built with OpenSSL 3.x. (#6667)
  • Requests now supports optional use of character detection (chardet or charset_normalizer) when repackaged or vendored. This enables pip and other projects to minimize their vendoring surface area. The Response.text() and apparent_encoding APIs will default to utf-8 if neither library is present. (#6702)

Bugfixes

  • Fixed bug in length detection where emoji length was incorrectly calculated in the request content-length. (#6589)
  • Fixed deserialization bug in JSONDecodeError. (#6629)
  • Fixed bug where an extra leading / (path separator) could lead urllib3 to unnecessarily reparse the request URI. (#6644)

Deprecations

... (truncated)

Commits
  • 88dce9d v2.32.2
  • c98e4d1 Merge pull request #6710 from nateprewitt/api_rename
  • 92075b3 Add deprecation warning
  • aa1461b Move _get_connection to get_connection_with_tls_context
  • 970e8ce v2.32.1
  • d6ebc4a v2.32.0
  • 9a40d12 Avoid reloading root certificates to improve concurrent performance (#6667)
  • 0c030f7 Merge pull request #6702 from nateprewitt/no_char_detection
  • 555b870 Allow character detection dependencies to be optional in post-packaging steps
  • d6dded3 Merge pull request #6700 from franekmagiera/update-redirect-to-invalid-uri-test
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Andrea Righi and others added 30 commits April 17, 2025 19:09
Ignore: yes
Signed-off-by: Andrea Righi <[email protected]>
BugLink: https://bugs.launchpad.net/bugs/1998336
Properties: no-test-build
Signed-off-by: Andrea Righi <[email protected]>
Ignore: yes
Signed-off-by: Paolo Pisati <[email protected]>
Signed-off-by: Paolo Pisati <[email protected]>
python3 is now required to generate annotations, so make sure it's
always available at build time.

Signed-off-by: Paolo Pisati <[email protected]>
Currently we have circular dependencies between linux-image and
linux-modules/linux-modules-extra packages. This is redundant, and
harmful when additional types of linux-images are provided
(i.e. kernel.efi).

Break the circular dependency by only keeping linux-image ->
linux-modules dep, remove linux-modules -> linux-image dep, remove
linux-modules-extra -> linux-image dep, add linux-modules-extra ->
linux-modules dep.

BugLink: https://bugs.launchpad.net/bugs/1989334
Signed-off-by: Dimitri John Ledkov <[email protected]>
Acked-by: Stefan Bader <[email protected]>
Acked-by: Luke Nowakowski-Krijger <[email protected]>
Acked-by: Tim Gardner <[email protected]>
Signed-off-by: Dimitri John Ledkov <[email protected]>
…st_test.c

BugLink: https://bugs.launchpad.net/bugs/2002658

 # cd tools/testing/selftests/tdx && make && ./tdx_guest_test
 gcc -O3 -Wl,-no-as-needed -Wall -static    tdx_guest_test.c  -o tools/testing/selftests/tdx/tdx_guest_test

  TAP version 13
  1..1
  # Starting 1 tests from 1 test cases.
  #  RUN           global.verify_report ...

                  TDX report data
  00000000: 00 01 02 03 04 05 06 07
  00000008: 08 09 0a 0b 0c 0d 0e 0f
  00000010: 10 11 12 13 14 15 16 17
  00000018: 18 19 1a 1b 1c 1d 1e 1f
  00000020: 20 21 22 23 24 25 26 27
  00000028: 28 29 2a 2b 2c 2d 2e 2f
  00000030: 30 31 32 33 34 35 36 37
  00000038: 38 39 3a 3b 3c 3d 3e 3f

                  TDX tdreport data
  00000000: 81 00 00 00 00 00 00 00
  00000008: 00 00 00 00 00 00 00 00
  00000010: 03 03 07 09 03 ff 00 02
  00000018: 00 00 00 00 00 00 00 00
  00000020: 84 0d 4c dd e8 a3 33 6d
  00000028: ef d3 17 5d 82 94 63 59
  00000030: 27 17 25 0e 2b cb 1a 61
  00000038: b3 4a d5 94 e9 a4 2d e3
  00000040: 94 c9 24 64 ba 3a 57 87
  00000048: b8 42 65 72 c7 3d 4a d7
  00000050: d0 34 b0 09 7b ef 94 a7
  00000058: 2f 6d 6f 5b 34 c4 b0 37
  00000060: de 70 1c 0e b8 9f 14 22
  00000068: d6 71 1a d2 d2 3f 75 33
  00000070: d7 56 30 34 46 c5 2b 24
  00000078: cc ed e3 ec fa 0b 22 10
  00000080: 00 01 02 03 04 05 06 07
  00000088: 08 09 0a 0b 0c 0d 0e 0f
  00000090: 10 11 12 13 14 15 16 17
  00000098: 18 19 1a 1b 1c 1d 1e 1f
  000000a0: 20 21 22 23 24 25 26 27
  000000a8: 28 29 2a 2b 2c 2d 2e 2f
  000000b0: 30 31 32 33 34 35 36 37
  000000b8: 38 39 3a 3b 3c 3d 3e 3f
  000000c0: 00 00 00 00 00 00 00 00
  000000c8: 00 00 00 00 00 00 00 00
  000000d0: 00 00 00 00 00 00 00 00
  000000d8: 00 00 00 00 00 00 00 00
  000000e0: 5b 20 60 df 48 0a 06 14
  000000e8: 41 e5 cd 47 f9 75 f3 5a
  000000f0: 80 c3 67 23 e3 1b c3 21
  000000f8: b0 83 ec 49 df 31 31 60
  00000100: ff 01 00 00 00 00 00 00
  00000108: 02 00 03 00 00 00 00 00
  00000110: 00 00 00 00 00 00 00 00
  00000118: 6f 28 0f 3f 42 4f 9c ad
  00000120: 1c b4 fa 05 2e 47 ce b2
  00000128: 3f 78 2e 02 1a 36 4e b1
  00000130: 02 62 eb 70 59 85 be e2
  00000138: a6 91 39 3b e4 c7 88 e5
  00000140: 52 78 56 46 9f 7a b8 0c
  00000148: 00 00 00 00 00 00 00 00
  00000150: 00 00 00 00 00 00 00 00
  00000158: 00 00 00 00 00 00 00 00
  00000160: 00 00 00 00 00 00 00 00
  00000168: 00 00 00 00 00 00 00 00
  00000170: 00 00 00 00 00 00 00 00
  00000178: 00 00 00 00 00 00 00 00
  00000180: 00 00 00 00 00 00 00 00
  00000188: 00 00 00 00 00 00 00 00
  00000190: 00 00 00 00 00 00 00 00
  00000198: 00 00 00 00 00 00 00 00
  000001a0: 00 00 00 00 00 00 00 00
  000001a8: 00 00 00 00 00 00 00 00
  000001b0: 00 00 00 00 00 00 00 00
  000001b8: 00 00 00 00 00 00 00 00
  000001c0: 00 00 00 00 00 00 00 00
  000001c8: 00 00 00 00 00 00 00 00
  000001d0: 00 00 00 00 00 00 00 00
  000001d8: 00 00 00 00 00 00 00 00
  000001e0: 00 00 00 00 00 00 00 00
  000001e8: 00 00 00 00 00 00 00 00
  000001f0: 00 00 00 00 00 00 00 00
  000001f8: 00 00 00 00 00 00 00 00
  00000200: 00 00 00 00 00 00 00 00
  00000208: e7 18 06 00 00 00 00 00
  00000210: 86 10 bc 0c 1a ae cb f1
  00000218: 59 14 99 9d a3 56 fc b9
  00000220: 5c 82 73 28 f1 03 38 87
  00000228: 79 17 05 4a a0 59 e1 d8
  00000230: bc b2 3e 7f 88 2b 48 94
  00000238: 5f 05 da 10 eb 12 63 10
  00000240: 00 00 00 00 00 00 00 00
  00000248: 00 00 00 00 00 00 00 00
  00000250: 00 00 00 00 00 00 00 00
  00000258: 00 00 00 00 00 00 00 00
  00000260: 00 00 00 00 00 00 00 00
  00000268: 00 00 00 00 00 00 00 00
  00000270: 00 00 00 00 00 00 00 00
  00000278: 00 00 00 00 00 00 00 00
  00000280: 00 00 00 00 00 00 00 00
  00000288: 00 00 00 00 00 00 00 00
  00000290: 00 00 00 00 00 00 00 00
  00000298: 00 00 00 00 00 00 00 00
  000002a0: 00 00 00 00 00 00 00 00
  000002a8: 00 00 00 00 00 00 00 00
  000002b0: 00 00 00 00 00 00 00 00
  000002b8: 00 00 00 00 00 00 00 00
  000002c0: 00 00 00 00 00 00 00 00
  000002c8: 00 00 00 00 00 00 00 00
  000002d0: 00 00 00 00 00 00 00 00
  000002d8: 00 00 00 00 00 00 00 00
  000002e0: 00 00 00 00 00 00 00 00
  000002e8: 00 00 00 00 00 00 00 00
  000002f0: 00 00 00 00 00 00 00 00
  000002f8: 00 00 00 00 00 00 00 00
  00000300: 00 00 00 00 00 00 00 00
  00000308: 00 00 00 00 00 00 00 00
  00000310: 00 00 00 00 00 00 00 00
  00000318: 00 00 00 00 00 00 00 00
  00000320: 00 00 00 00 00 00 00 00
  00000328: 00 00 00 00 00 00 00 00
  00000330: 00 00 00 00 00 00 00 00
  00000338: 00 00 00 00 00 00 00 00
  00000340: 00 00 00 00 00 00 00 00
  00000348: 00 00 00 00 00 00 00 00
  00000350: 00 00 00 00 00 00 00 00
  00000358: 00 00 00 00 00 00 00 00
  00000360: 00 00 00 00 00 00 00 00
  00000368: 00 00 00 00 00 00 00 00
  00000370: 00 00 00 00 00 00 00 00
  00000378: 00 00 00 00 00 00 00 00
  00000380: 00 00 00 00 00 00 00 00
  00000388: 00 00 00 00 00 00 00 00
  00000390: 00 00 00 00 00 00 00 00
  00000398: 00 00 00 00 00 00 00 00
  000003a0: 00 00 00 00 00 00 00 00
  000003a8: 00 00 00 00 00 00 00 00
  000003b0: 00 00 00 00 00 00 00 00
  000003b8: 00 00 00 00 00 00 00 00
  000003c0: 00 00 00 00 00 00 00 00
  000003c8: 00 00 00 00 00 00 00 00
  000003d0: 00 00 00 00 00 00 00 00
  000003d8: 00 00 00 00 00 00 00 00
  000003e0: 00 00 00 00 00 00 00 00
  000003e8: 00 00 00 00 00 00 00 00
  000003f0: 00 00 00 00 00 00 00 00
  000003f8: 00 00 00 00 00 00 00 00

  #            OK  global.verify_report
  ok 1 global.verify_report
  # PASSED: 1 / 1 tests passed.
  # Totals: pass:1 fail:0 xfail:0 xpass:0 skip:0 error:0

Signed-off-by: Dexuan Cui <[email protected]>
Signed-off-by: Tim Gardner <[email protected]>
Acked-by: Marcelo Cerri <[email protected]>
Acked-by: Bartlomiej Zolnierkiewicz <[email protected]>
Signed-off-by: Tim Gardner <[email protected]>
BugLink: https://bugs.launchpad.net/bugs/2002658

set_memory_decrypted() should not fail silently and cause weird issues
later.

Signed-off-by: Dexuan Cui <[email protected]>
Signed-off-by: Tim Gardner <[email protected]>
Acked-by: Marcelo Cerri <[email protected]>
Acked-by: Bartlomiej Zolnierkiewicz <[email protected]>
Signed-off-by: Tim Gardner <[email protected]>
[ arighi: adjust context after rebase to 6.5 ]
Signed-off-by: Andrea Righi <[email protected]>
Ignore: yes

Signed-off-by: Tim Gardner <[email protected]>
…buntu 22.04.

BugLink: https://bugs.launchpad.net/bugs/2003714

glibc 2.34/2.35 (and 2.36?) had a bug (2.32 is good):
See https://sourceware.org/bugzilla/show_bug.cgi?id=28784

The bug has been fixed in upstream glibc:
https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=c242fcce06e3102ca663b2f992611d0bda4f2668

However, it looks like a lot of distros haven't picked up the fix yet,
e.g. Ubuntu 22.04/22.10/23.04's glibc need pick up the glibc fix (c242fcce06e3102ca663b2f992611d0bda4f2668).
RHEL 9's glibc needs the glibc fix as well.

Before the glibc packages in the distros are fixed, we can use this
kernel side workaround patch for now. The workaround is from Intel.
See the below for the rationale:

x86/tdx: Virtualize CPUID leaf 0x2
CPUID leaf 0x2 provides cache and TLB information. In TDX guest access
to the leaf causes #VE.

Current implementation returns all zero, but it confuses some users:
some recent versions of GLIBC hit segfaults. It is a GLIBC bug, but it is
also a user-visible regression comparing to non-TDX environment.

Kernel can generate a sensible response to the #VE to work around the
glibc segfault for now.

The leaf is obsolete. There are leafs that provides the same
information in a structured form. See leaf 0x4 on cache info and
leaf 0x18 on TLB info.

Generate a response that indicates that CPUID leaf 0x4 and 0x18 have to
be used instead.

(cherry picked from commit 16218cf73491e867fd39c16c9e4b8aa926cbda68 https://github.com/dcui/tdx)
Signed-off-by: Tim Gardner <[email protected]>
Acked-by: Cengiz Can <[email protected]>
Acked-by: Ian May <[email protected]>
Signed-off-by: Tim Gardner <[email protected]>
Ignore: yes
Signed-off-by: Paolo Pisati <[email protected]>
Ignore: yes
Signed-off-by: Andrea Righi <[email protected]>
BugLink: https://bugs.launchpad.net/bugs/2015432
Properties: no-test-build
Signed-off-by: Andrea Righi <[email protected]>
Ignore: yes
Signed-off-by: Andrea Righi <[email protected]>
BugLink: https://bugs.launchpad.net/bugs/2016265
Properties: no-test-build
Signed-off-by: Andrea Righi <[email protected]>
BugLink: https://bugs.launchpad.net/bugs/2016995

Signed-off-by: Tim Gardner <[email protected]>
Acked-by: John Cabaj <[email protected]>
Acked-by: Philip Cox <[email protected]>
Signed-off-by: Tim Gardner <[email protected]>
john-cabaj and others added 24 commits April 23, 2025 18:26
Ignore: yes
Signed-off-by: John Cabaj <[email protected]>
…pends

BugLink: https://bugs.launchpad.net/bugs/2086606

We introduced dwarfdump command in the 2-binary-arch.mk on the
generic kernel, hence here need to add this package as Build-Depends.

Signed-off-by: Hui Wang <[email protected]>

(copied from master)

Signed-off-by: John Cabaj <[email protected]>
BugLink: https://bugs.launchpad.net/bugs/2086606

No functional changes, just reordering.

Signed-off-by: Juerg Haefliger <[email protected]>
Acked-by: Agathe Porte <[email protected]>
Acked-by: Stefan Bader <[email protected]>
Signed-off-by: Stefan Bader <[email protected]>

(copied from master)

Signed-off-by: John Cabaj <[email protected]>
Ignore: yes
Signed-off-by: John Cabaj <[email protected]>
Ignore: yes
Signed-off-by: John Cabaj <[email protected]>
Ignore: yes
Signed-off-by: Vinicius Peixoto <[email protected]>
BugLink: https://bugs.launchpad.net/bugs/2107080
Properties: no-test-build
Signed-off-by: Vinicius Peixoto <[email protected]>
This is a placeholder commit to separate the Ubuntu kernel source and
our patches. Used by kernel_merge_with_upstream() in the linux-pkg repo.
Bumps [requests](https://github.com/psf/requests) from 2.31.0 to 2.32.2.
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.31.0...v2.32.2)

---
updated-dependencies:
- dependency-name: requests
  dependency-version: 2.32.2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels May 12, 2025
Copy link
Author

dependabot bot commented on behalf of github Jun 10, 2025

A newer version of requests exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update python code
Development

Successfully merging this pull request may close these issues.