File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change
1
+ ### 1.3.0 (5/10/2025)
2
+ * Correctly handle 3xx responses with no Location header (resolves [ #79 ] ( https://github.com/arkadiyt/ssrf_filter/issues/79 ) ) ([ arkadiyt] ( https://github.com/arkadiyt/ssrf_filter/pull/80 ) )
3
+
1
4
### 1.2.0 (11/7/2024)
2
5
* Drop support for ruby 2.6, add support for ruby 3.3 ([ arkadiyt] ( https://github.com/arkadiyt/ssrf_filter/pull/73 ) )
3
6
* Stop patching OpenSSL (resolves [ #72 ] ( https://github.com/arkadiyt/ssrf_filter/issues/72 ) ) ([ arkadiyt] ( https://github.com/arkadiyt/ssrf_filter/pull/73 ) )
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ This gem provides a safe and easy way to fetch content from user-submitted urls.
26
26
1 ) Add the gem to your Gemfile:
27
27
28
28
``` ruby
29
- gem ' ssrf_filter' , ' ~> 1.2 .0'
29
+ gem ' ssrf_filter' , ' ~> 1.3 .0'
30
30
```
31
31
32
32
2 ) In your code:
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
class SsrfFilter
4
- VERSION = '1.2 .0'
4
+ VERSION = '1.3 .0'
5
5
end
You can’t perform that action at this time.
0 commit comments