From f59de7e9f0fdb6b9e374f07358b7c440adc72e0a Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Tue, 14 Jul 2020 00:01:58 -0400 Subject: [PATCH] Bumping version --- CHANGELOG.md | 34 +++++++++++++++++++++++----------- jetforce/__version__.py | 2 +- setup.py | 2 +- 3 files changed, 25 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index afa5034..45285b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ # Jetforce Changelog -### Unreleased +### v0.5.0 (2020-07-14) + +#### Spec Changes - URLs with a userinfo component will now be rejected with a status of 59. -- Error stack traces are no longer shown when the client prematurely closes - the connection. - The status code definitions have been updated to match the recent changes to the gemini spec: - 21 ``SUCCESS_END_OF_SESSION`` -> (removed) @@ -13,18 +13,30 @@ - 63 ``CERTIFICATE_NOT_ACCEPTED`` -> (removed) - 64 ``FUTURE_CERTIFICATE_REJECTED`` -> (removed) - 65 ``EXPIRED_CERTIFICATE_REJECTED`` -> (removed) -- If an application response handler returns a twisted.Deferred object, the - errback will now be invoked when the TCP connection is closed. -- Added a new example that demonstrates streaming data to client connections - (examples/chatroom.py). -- The jetforce-client tool now supports writing TLS keys to a logfile to - facilitate debugging TLS connections using tools like Wireshark. -- Added ``examples/redirect.py`` to show demonstrate extending the static file - server with common patterns like redirects and authenticated directories. + +#### Bugfixes + - Jetforce will now always terminate the TCP connection without waiting for a TLS close_notify alert response from the client. This fixes a bug where some clients would appear to hang after receiving the content from the server. +#### Features + +- The jetforce-client tool now supports writing TLS keys to a logfile to + facilitate debugging TLS connections using tools like Wireshark. +- If an application response handler returns a twisted.Deferred object, the + errback will now be invoked when the TCP connection is closed. +- Error stack traces are no longer shown when the client prematurely closes + the connection. + +#### Examples + +- Added a new example that demonstrates streaming data to client connections + (examples/chatroom.py). +- Added a new example that demonstrates extending the static file server with + common patterns like redirects and authenticated directories + (examples/redirect.py). + ### v0.4.0 (2020-06-09) #### Features diff --git a/jetforce/__version__.py b/jetforce/__version__.py index 6a9beea..3d18726 100644 --- a/jetforce/__version__.py +++ b/jetforce/__version__.py @@ -1 +1 @@ -__version__ = "0.4.0" +__version__ = "0.5.0" diff --git a/setup.py b/setup.py index e1ee570..b98ac8a 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def long_description(): setuptools.setup( name="Jetforce", - version="0.4.0", + version="0.5.0", url="https://github.com/michael-lazar/jetforce", license="Other/Proprietary License", author="Michael Lazar",