Skip to content

Commit

Permalink
3.0.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jkowens committed Nov 25, 2022
1 parent bbc1d47 commit eca7b54
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

* _Your new feature here._

## 3.0.4 / 2022-11-25

* Fix: Escape filename in the Content-Disposition header. [#1841](https://github.com/sinatra/sinatra/pull/1841) by Kunpei Sakai

## 3.0.3 / 2022-11-11

* Fix: fixed ReDoS for Rack::Protection::IPSpoofing. [#1823](https://github.com/sinatra/sinatra/pull/1823) by @ooooooo-q
Expand Down Expand Up @@ -74,6 +78,8 @@

## 2.2.0 / 2022-02-15

* Breaking change: Add `#select`, `#reject` and `#compact` methods to `Sinatra::IndifferentHash`. If hash keys need to be converted to symbols, call `#to_h` to get a `Hash` instance first. [#1711](https://github.com/sinatra/sinatra/pull/1711) by Olivier Bellone

* Handle EOFError raised by Rack and return Bad Request 400 status. [#1743](https://github.com/sinatra/sinatra/pull/1743) by tamazon

* Minor refactors in `base.rb`. [#1640](https://github.com/sinatra/sinatra/pull/1640) by ceclinux
Expand Down Expand Up @@ -104,8 +110,6 @@

* Remove unnecessary `test_files` from the gemspec. [#1712](https://github.com/sinatra/sinatra/pull/1712) by Masataka Pocke Kuwabara

* Add `#select`, `#reject` and `#compact` methods to `Sinatra::IndifferentHash`. [#1711](https://github.com/sinatra/sinatra/pull/1711) by Olivier Bellone

* Docs: Spanish documentation: Update README.es.md with removal of Thin. [#1630](https://github.com/sinatra/sinatra/pull/1630) by Espartaco Palma

* Docs: German documentation: Fixed typos in German README.md. [#1648](https://github.com/sinatra/sinatra/pull/1648) by Juri
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.3
3.0.4
2 changes: 1 addition & 1 deletion lib/sinatra/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Sinatra
VERSION = '3.0.3'
VERSION = '3.0.4'
end
2 changes: 1 addition & 1 deletion rack-protection/lib/rack/protection/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Rack
module Protection
VERSION = '3.0.3'
VERSION = '3.0.4'
end
end
2 changes: 1 addition & 1 deletion sinatra-contrib/lib/sinatra/contrib/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Sinatra
module Contrib
VERSION = '3.0.3'
VERSION = '3.0.4'
end
end

0 comments on commit eca7b54

Please sign in to comment.