From 72f136c5b78c7dfd5475442fbeb88f2b4876b8f0 Mon Sep 17 00:00:00 2001 From: Iurii Pliner Date: Tue, 16 May 2023 22:46:23 +0100 Subject: [PATCH 1/3] Version 0.17.1 --- CHANGELOG.md | 6 ++++++ httpcore/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a57a842..c945af93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## 0.17.1 (May 17th, 2023) + +- Retry ConnectError/ConnectTimeout happened in stream.start_tls. (#669) +- Chain exception re-raise in map_exceptions. (#678) +- Add check for h2.connection.ConnectionState.CLOSED in AsyncHTTP2Connection.is_available. (#679) + ## 0.17.0 (March 16th, 2023) - Add DEBUG level logging. (#648) diff --git a/httpcore/__init__.py b/httpcore/__init__.py index 77e70d17..530c9697 100644 --- a/httpcore/__init__.py +++ b/httpcore/__init__.py @@ -82,7 +82,7 @@ "WriteError", ] -__version__ = "0.17.0" +__version__ = "0.17.1" __locals = locals() From 93da393fb4884bb73ae83a2add8696eb81e97762 Mon Sep 17 00:00:00 2001 From: Iurii Pliner Date: Wed, 17 May 2023 12:29:01 +0100 Subject: [PATCH 2/3] Improve changelog --- CHANGELOG.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c945af93..aed7f1d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## 0.17.1 (May 17th, 2023) -- Retry ConnectError/ConnectTimeout happened in stream.start_tls. (#669) -- Chain exception re-raise in map_exceptions. (#678) -- Add check for h2.connection.ConnectionState.CLOSED in AsyncHTTP2Connection.is_available. (#679) +- If 'retries' is set, then allow retries if an SSL handshake error occurs. (#669) +- Improve correctness of tracebacks on network exceptions, by raising properly chained exceptions. (#678) +- Prevent connection-hanging behaviour when HTTP/2 connections are closed by a server-sent 'GoAway' frame". (#679) +- Fix edge-case exception when removing requests from the connection pool. (#680) ## 0.17.0 (March 16th, 2023) From 6809b3bf6b05a0024658f54c1e9714b0db04ebd5 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Wed, 17 May 2023 14:03:12 +0100 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aed7f1d4..a8e10426 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - If 'retries' is set, then allow retries if an SSL handshake error occurs. (#669) - Improve correctness of tracebacks on network exceptions, by raising properly chained exceptions. (#678) -- Prevent connection-hanging behaviour when HTTP/2 connections are closed by a server-sent 'GoAway' frame". (#679) +- Prevent connection-hanging behaviour when HTTP/2 connections are closed by a server-sent 'GoAway' frame. (#679) - Fix edge-case exception when removing requests from the connection pool. (#680) ## 0.17.0 (March 16th, 2023)