omniauth-strategies-passthrough 1.0.1 → 2.0.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: 5cbfaf9965a11d98eee0fb67a363b73fbb5f93a57fa7cc9b26d27de2479eec48
4
- data.tar.gz: d37424cc0d6ce82e69205e7a7da41e66ff84f00d846e401faaf9ab0ed94dc0cb
3
+ metadata.gz: 417f21e2c52601203a5cd27a6fb2209c15bf7d3b5b9e5fe089eb914b82a51326
4
+ data.tar.gz: ea9b34b20767a0b653942ace6afc9807c902f443b7c686dd920be6a3bdb1ab5d
5
5
  SHA512:
6
- metadata.gz: 2cef85b8b70248f308f237b4927ffd03bd5c779e02d3182f5c962d4549098bc5088fefe336bfa84b18de05ee745b0f13489647303f3c80d40805081adffb8f0f
7
- data.tar.gz: c8f18c670ce4feba0b4a49200004ef8739d98d6c75653072be17e9e963d6a0f4aa97762cdd6aebcf62d05d5d523930d6636af2fbbcaab9608524f1a9c6be1a3a
6
+ metadata.gz: b71a505a13b19969a09b673173100932f3476fd1f17633c2c5e722cedd8ba42ec737e082f10c789f1fb5a8e4fcd8cd1e4003a352e5938aa62c6495587909dcca
7
+ data.tar.gz: 4210a010d3a19a2a6fb5ad5c4b75beb07db66e1f352357d8ac4684837ca78b1a5cd4fd6941d2942a703fcb86b848bf4a21c3285d95964608c9e002cb2dc644fd
data/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # [2.0.0](https://github.com/benmelz/omniauth-strategies-passthrough/compare/v1.0.1...v2.0.0) (2025-01-29)
2
+
3
+
4
+ ### chore
5
+
6
+ * **deps:** bump required ruby version ([#78](https://github.com/benmelz/omniauth-strategies-passthrough/issues/78)) ([3225a65](https://github.com/benmelz/omniauth-strategies-passthrough/commit/3225a650d5f3929f37e39cc41c86362a281a8eeb))
7
+
8
+
9
+ ### BREAKING CHANGES
10
+
11
+ * **deps:** Ruby versions below 3.2 are no longer supported.
12
+
1
13
  ## [1.0.1](https://github.com/benmelz/omniauth-strategies-passthrough/compare/v1.0.0...v1.0.1) (2023-07-30)
2
14
 
3
15
 
@@ -3,7 +3,7 @@
3
3
  module OmniAuth
4
4
  module Strategies
5
5
  class Passthrough
6
- VERSION = '1.0.1'
6
+ VERSION = '2.0.0'
7
7
  end
8
8
  end
9
9
  end
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'omniauth'
4
+ require 'rack/utils'
4
5
  require_relative 'passthrough/version'
5
6
 
6
7
  module OmniAuth
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-strategies-passthrough
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benjamin Melz
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-07-30 00:00:00.000000000 Z
10
+ date: 2025-01-29 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: omniauth
@@ -51,9 +50,8 @@ licenses:
51
50
  metadata:
52
51
  homepage_uri: https://github.com/benmelz/omniauth-strategies-passthrough
53
52
  source_code_uri: https://github.com/benmelz/omniauth-strategies-passthrough
54
- changelog_uri: https://github.com/benmelz/omniauth-strategies-passthrough/blob/v1.0.1/CHANGELOG.md
53
+ changelog_uri: https://github.com/benmelz/omniauth-strategies-passthrough/blob/v2.0.0/CHANGELOG.md
55
54
  rubygems_mfa_required: 'true'
56
- post_install_message:
57
55
  rdoc_options: []
58
56
  require_paths:
59
57
  - lib
@@ -61,15 +59,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
61
59
  requirements:
62
60
  - - ">="
63
61
  - !ruby/object:Gem::Version
64
- version: '3.0'
62
+ version: '3.2'
65
63
  required_rubygems_version: !ruby/object:Gem::Requirement
66
64
  requirements:
67
65
  - - ">="
68
66
  - !ruby/object:Gem::Version
69
67
  version: '0'
70
68
  requirements: []
71
- rubygems_version: 3.4.10
72
- signing_key:
69
+ rubygems_version: 3.6.2
73
70
  specification_version: 4
74
71
  summary: An OmniAuth strategy that passes request params straight through the middleware.
75
72
  test_files: []