diff --git a/CHANGELOG.md b/CHANGELOG.md index 474b8eab..9eabe0d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Unreleased +# 0.18.2 + +- Fix after_request_complete getting nil env on parsing exceptions. +- Fix Rack 3.2 compatibility (`PATH_INFO` will now be `"*"` for `OPTIONS *`). +- Avoid double response on post-response exception. + # 0.18.1 - Handle potential Errno::EBADF raised by `IO#reopen` in `Pitchfork::Info.close_all_ios!`. @@ -140,4 +146,4 @@ # 0.1.0 -Initial release \ No newline at end of file +Initial release diff --git a/lib/pitchfork/version.rb b/lib/pitchfork/version.rb index ecbc2fca..97970ba4 100644 --- a/lib/pitchfork/version.rb +++ b/lib/pitchfork/version.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true module Pitchfork - VERSION = "0.18.1" + VERSION = "0.18.2" module Const UNICORN_VERSION = '6.1.0' end