The urequests module is still using HTTP/1.0 for HTTP requests: line 39 in micropython-lib/micropython/urllib.urequest/urllib/urequest.py on the master branch: [`s.write(b" HTTP/1.0\r\nHost: ")`](https://github.com/micropython/micropython-lib/blob/master/micropython/urllib.urequest/urllib/urequest.py#L39) Since a host header is included, can this be updated to use HTTP/1.1 or even HTTP/2.0? Some sites (e.g. mongodb) are now responding with '426 Update Required' for HTTP/1.0 requests. Thanks