faraday-ssrf-filter 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2dcc958c9132d2f306a52896efa1b21455232705fa5565cde86cf6205ac74c7e
4
- data.tar.gz: 37663afac9a815654d26dda87d91ab901003d60a1c80f955871156a8af23f8b7
3
+ metadata.gz: 206732b1be24cc589db0e685c1e8dbf88e49456cea31ced6d5a7413849028efb
4
+ data.tar.gz: 16623fab822a35efb5472165fc457e898be7f8c844f00bc47717fa51c088ed3b
5
5
  SHA512:
6
- metadata.gz: b882da77d01e75f0da42f90d6164c4e2b5af195ec0609e0a632b4f24275c687b921b74cb3aacd8beed3184f58534cd78ed33246863f02fccf7c630325cfe34a0
7
- data.tar.gz: f073b6ffd4c3253ba46b550c66a882d5f4f4c8eebbc386eb92e1098e99844c0397238feac3178ae5f95cf397f7e3861b7442783769ddc19b81d6428aa654fd10
6
+ metadata.gz: 18808e3051e9679e89c5406557630e9f80718713f0fad48e10a39b5fff5a5eb467c52f025d531d2a95d83ab2ecddf93fb668d2b19e6cdcc7224a214a672c3e24
7
+ data.tar.gz: c8ed8035bf83314c96b3ec756cab4d41dbf96472bb17a2ace3537d4ccdc4e167d369174f26c6022d441e56b5e9419a7ecb03cde275f64213c18ce3bf4c9e49a6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.0 (2026-05-18)
4
+
5
+ - Add gem name autoload (`require 'faraday-ssrf-filter'` now works)
6
+ - Add GitHub Actions release workflow with RubyGems trusted publisher
7
+ - Improve .gitignore
8
+
3
9
  ## 0.1.0 (2026-05-17)
4
10
 
5
11
  - Initial release
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Faraday
4
4
  module SsrfFilter
5
- VERSION = '0.1.0'
5
+ VERSION = '0.2.0'
6
6
  end
7
7
  end
@@ -8,4 +8,5 @@ module Faraday
8
8
  module SsrfFilter
9
9
  Faraday::Request.register_middleware(ssrf_filter: Faraday::SsrfFilter::Middleware)
10
10
  end
11
+
11
12
  end
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'faraday/ssrf_filter'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: faraday-ssrf-filter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Quentin Rousseau
@@ -41,6 +41,7 @@ files:
41
41
  - CHANGELOG.md
42
42
  - LICENSE
43
43
  - README.md
44
+ - lib/faraday-ssrf-filter.rb
44
45
  - lib/faraday/ssrf_filter.rb
45
46
  - lib/faraday/ssrf_filter/middleware.rb
46
47
  - lib/faraday/ssrf_filter/version.rb