2.2.3 release

This commit is contained in:
Jordan Owens 2022-11-25 15:22:35 -05:00
parent 43df74243c
commit 0bdb254b9a
5 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
## 2.2.3 / 2022-11-25
* Fix: Escape filename in the Content-Disposition header. [#1841](https://github.com/sinatra/sinatra/pull/1841) by Kunpei Sakai
* Fix: fixed ReDoS for Rack::Protection::IPSpoofing. [#1823](https://github.com/sinatra/sinatra/pull/1823) by @ooooooo-q
## 2.2.2 / 2022-07-23
* Update mustermann dependency to version 2.

View File

@ -1 +1 @@
2.2.2
2.2.3

View File

@ -1,3 +1,3 @@
module Sinatra
VERSION = '2.2.2'
VERSION = '2.2.3'
end

View File

@ -1,5 +1,5 @@
module Rack
module Protection
VERSION = '2.2.2'
VERSION = '2.2.3'
end
end

View File

@ -1,6 +1,6 @@
module Sinatra
module Contrib
VERSION = '2.2.2'
VERSION = '2.2.3'
end
end