diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c3c875..5bee211 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### 1.1.2 (9/11/2023) +* Fix a bug introduced in 1.1.0 when reading non-streaming bodies from responses ([mshibuya](https://github.com/arkadiyt/ssrf_filter/pull/60)) +* Test against ruby 3.2 ([petergoldstein](https://github.com/arkadiyt/ssrf_filter/pull/62)) +* Fix a [bug](https://github.com/arkadiyt/ssrf_filter/issues/61) preventing DNS resolution in some cases ([arkadiyt](https://github.com/arkadiyt/ssrf_filter/pull/70)) +* Add an option to not throw an exception if you hit the maximum number of redirects ([elliterate](https://github.com/arkadiyt/ssrf_filter/pull/63)) + ### 1.1.1 (8/31/2022) * Fix network connection errors if you were making https requests while using [net-http](https://github.com/ruby/net-http) 2.2 or higher ([arkadiyt](https://github.com/arkadiyt/ssrf_filter/pull/54)) diff --git a/README.md b/README.md index 9c5a2c5..0d8a391 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ This gem provides a safe and easy way to fetch content from user-submitted urls. 1) Add the gem to your Gemfile: ```ruby -gem 'ssrf_filter', '~> 1.1.1' +gem 'ssrf_filter', '~> 1.1.2' ``` 2) In your code: diff --git a/lib/ssrf_filter/version.rb b/lib/ssrf_filter/version.rb index 5c90bdf..5eb5dc5 100644 --- a/lib/ssrf_filter/version.rb +++ b/lib/ssrf_filter/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true class SsrfFilter - VERSION = '1.1.1' + VERSION = '1.1.2' end