omniauth-strategies-passthrough 1.0.0 → 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: 1398cb0a7204bd78703f0f4d2813f5e6b4c620a2f1fb9b3fbaa4ddfe6e0897ca
4
- data.tar.gz: 20111ebdd39877d5e0a77e1bd4a1e80b1eaf877d36c5f56c52d74c7f2f67180f
3
+ metadata.gz: 417f21e2c52601203a5cd27a6fb2209c15bf7d3b5b9e5fe089eb914b82a51326
4
+ data.tar.gz: ea9b34b20767a0b653942ace6afc9807c902f443b7c686dd920be6a3bdb1ab5d
5
5
  SHA512:
6
- metadata.gz: 16c343ab69a2d9198d7137eec3c216ae251b7ed476d1e0bdc063f7a31030b4f684d664bfc8d63278da7a0e2876a287b242663dacf3e99c4a3297665d04dd5edb
7
- data.tar.gz: 1b112d768450f3c6593e68affc8966dc2a5be76b8a74ee4f23d16ba2cecc02baac7c84dde5b414259d0d3f5dfa81f39300940f74de8d3bd1f14707f017eba4c8
6
+ metadata.gz: b71a505a13b19969a09b673173100932f3476fd1f17633c2c5e722cedd8ba42ec737e082f10c789f1fb5a8e4fcd8cd1e4003a352e5938aa62c6495587909dcca
7
+ data.tar.gz: 4210a010d3a19a2a6fb5ad5c4b75beb07db66e1f352357d8ac4684837ca78b1a5cd4fd6941d2942a703fcb86b848bf4a21c3285d95964608c9e002cb2dc644fd
data/CHANGELOG.md CHANGED
@@ -1,3 +1,22 @@
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
+
13
+ ## [1.0.1](https://github.com/benmelz/omniauth-strategies-passthrough/compare/v1.0.0...v1.0.1) (2023-07-30)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * update omniauth requirement from >= 1.9, < 2 to >= 1.9, < 3 ([#2](https://github.com/benmelz/omniauth-strategies-passthrough/issues/2)) ([fe17da8](https://github.com/benmelz/omniauth-strategies-passthrough/commit/fe17da8c49e4cbd850804e375e4cbba0cdeb0255))
19
+
1
20
  # 1.0.0 (2023-07-30)
2
21
 
3
22
 
@@ -3,7 +3,7 @@
3
3
  module OmniAuth
4
4
  module Strategies
5
5
  class Passthrough
6
- VERSION = '1.0.0'
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.0
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
@@ -19,7 +18,7 @@ dependencies:
19
18
  version: '1.9'
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
- version: '2'
21
+ version: '3'
23
22
  type: :runtime
24
23
  prerelease: false
25
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +28,7 @@ dependencies:
29
28
  version: '1.9'
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
- version: '2'
31
+ version: '3'
33
32
  description: 'This strategy allows you to pass auth hash values directly to an auth
34
33
  endpoint and forwards them directly to your callback(s). The end goal of this is
35
34
  to provide more flexibility when writing login helpers in development/test environments
@@ -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.0/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: []