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 +4 -4
- data/CHANGELOG.md +19 -0
- data/lib/omniauth/strategies/passthrough/version.rb +1 -1
- data/lib/omniauth/strategies/passthrough.rb +1 -0
- metadata +7 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 417f21e2c52601203a5cd27a6fb2209c15bf7d3b5b9e5fe089eb914b82a51326
|
4
|
+
data.tar.gz: ea9b34b20767a0b653942ace6afc9807c902f443b7c686dd920be6a3bdb1ab5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
|
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:
|
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:
|
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: '
|
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: '
|
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/
|
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.
|
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.
|
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: []
|