tanker-core 4.2.0.alpha.4 → 4.2.0.beta.2
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/lib/tanker/core/session.rb +2 -0
- data/lib/tanker/core/verification.rb +4 -0
- data/lib/tanker/core/version.rb +1 -1
- data/vendor/tanker/darwin-aarch64/libctanker.dylib +0 -0
- data/vendor/tanker/darwin-x86_64/libctanker.dylib +0 -0
- data/vendor/tanker/linux-x86_64/libctanker.so +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f6d444937f17fc72b33cf6f19e183b4fd34307c7c1814ea361bc3b01285aaa63
|
4
|
+
data.tar.gz: d114b6347ade4b2cfa44d92a81c35cb46ad8085044a28b3dde74c43b1062f455
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3781a7578e1af8ef5f437c98d5f624b35cd7d6fc7a4b5096d3b6019bda7f303b8c8c52c130c60cdd3ed776fe0468f90da7f75b6e176837f514f38c5a5b52577
|
7
|
+
data.tar.gz: 8e2077ce9e47acef4d5b023ff1bb4f711c98da4e027feaf1537c40e029de96dd9eb2f6d7ae5482bb8d2ab8ac22ab42c12299e935af1ddbf2d3be81d28f29d27b
|
data/lib/tanker/core/session.rb
CHANGED
@@ -55,10 +55,12 @@ module Tanker
|
|
55
55
|
def create_oidc_nonce
|
56
56
|
CTanker.tanker_create_oidc_nonce(@ctanker).get_string
|
57
57
|
end
|
58
|
+
deprecate :create_oidc_nonce, :none, 2024, 6
|
58
59
|
|
59
60
|
def oidc_test_nonce=(nonce)
|
60
61
|
CTanker.tanker_set_oidc_test_nonce(@ctanker, nonce).get
|
61
62
|
end
|
63
|
+
deprecate :oidc_test_nonce=, :none, 2024, 6
|
62
64
|
|
63
65
|
def status
|
64
66
|
CTanker.tanker_status(@ctanker)
|
@@ -45,6 +45,8 @@ module Tanker
|
|
45
45
|
end
|
46
46
|
|
47
47
|
class OIDCIDTokenVerification < Verification
|
48
|
+
extend Gem::Deprecate
|
49
|
+
|
48
50
|
attr_reader :oidc_id_token
|
49
51
|
|
50
52
|
def initialize(oidc_id_token)
|
@@ -54,6 +56,8 @@ module Tanker
|
|
54
56
|
|
55
57
|
@oidc_id_token = oidc_id_token
|
56
58
|
end
|
59
|
+
|
60
|
+
deprecate :initialize, 'OIDCAuthorizationCodeVerification', 2024, 6
|
57
61
|
end
|
58
62
|
|
59
63
|
class PhoneNumberVerification < Verification
|
data/lib/tanker/core/version.rb
CHANGED
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tanker-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.2.0.
|
4
|
+
version: 4.2.0.beta.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tanker team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-06-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|