Skip to content

Commit 7f03c52

Browse files
committed
Fix SSL connections by pinning the requests version to 2.31.0
Close #1583 Close #1581
1 parent 5c068f8 commit 7f03c52

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

CHANGELOG.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
This document records all notable changes to [HTTPie](https://httpie.io).
44
This project adheres to [Semantic Versioning](https://semver.org/).
55

6-
## [3.3.0-dev](https://github.com/httpie/cli/compare/3.2.2...master) (unreleased)
6+
## [3.2.3](https://github.com/httpie/cli/compare/3.2.2...3.2.3) (2024-07-10)
77

8-
- Make it possible to [unset](https://httpie.io/docs/cli/default-request-headers) the `User-Agent`, `Accept-Encoding`, and `Host` request headers. ([#1502](https://github.com/httpie/cli/issues/1502))
8+
- Fix SSL connections by pinning the `requests` version to `2.31.0`. ([#1583], [#1581])
9+
- Make it possible to [unset](https://httpie.io/docs/cli/default-request-headers) the `User-Agent` and `Accept-Encoding` request headers. ([#1502](https://github.com/httpie/cli/issues/1502))
910

10-
## [3.2.2](https://github.com/httpie/cli/compare/3.2.1...3.2.2) (2022-05-19)
11+
## [3.2.2](https://github.com/httpie/cli/compare/3.2.1...3.2.2) (2023-05-19)
1112

1213
- Fixed compatibility with urllib3 2.0.0. ([#1499](https://github.com/httpie/cli/issues/1499))
1314

extras/man/http.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.\" This file is auto-generated from the parser declaration in httpie/cli/definition.py by extras/scripts/generate_man_pages.py.
2-
.TH http 1 "2022-05-06" "HTTPie 3.2.2" "HTTPie Manual"
2+
.TH http 1 "2024-07-10" "HTTPie 3.2.3" "HTTPie Manual"
33
.SH NAME
44
http
55
.SH SYNOPSIS

extras/man/httpie.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.\" This file is auto-generated from the parser declaration in httpie/manager/cli.py by extras/scripts/generate_man_pages.py.
2-
.TH httpie 1 "2022-05-06" "HTTPie 3.2.2" "HTTPie Manual"
2+
.TH httpie 1 "2024-07-10" "HTTPie 3.2.3" "HTTPie Manual"
33
.SH NAME
44
httpie
55
.SH SYNOPSIS

extras/man/https.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.\" This file is auto-generated from the parser declaration in httpie/cli/definition.py by extras/scripts/generate_man_pages.py.
2-
.TH https 1 "2022-05-06" "HTTPie 3.2.2" "HTTPie Manual"
2+
.TH https 1 "2024-07-10" "HTTPie 3.2.3" "HTTPie Manual"
33
.SH NAME
44
https
55
.SH SYNOPSIS

httpie/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
"""
55

6-
__version__ = '3.2.2'
7-
__date__ = '2022-05-06'
6+
__version__ = '3.2.3'
7+
__date__ = '2024-07-10'
88
__author__ = 'Jakub Roztocil'
99
__licence__ = 'BSD'

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ install_requires =
5050
pip
5151
charset_normalizer>=2.0.0
5252
defusedxml>=0.6.0
53-
requests[socks]>=2.22.0
53+
requests[socks] >=2.22.0, <=2.31.0
5454
Pygments>=2.5.2
5555
requests-toolbelt>=0.9.1
5656
multidict>=4.7.0

0 commit comments

Comments
 (0)