pkce 3.2.0 → 3.2.1
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
- checksums.yaml.gz.sig +0 -0
- data/README.adoc +2 -0
- data/pkce.gemspec +5 -1
- data.tar.gz.sig +0 -0
- metadata +6 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce6d22e62efeab5f71445251f0a17caf40ea63e5442a02e411677f59aa92cb94
|
4
|
+
data.tar.gz: a41640f45e3189975f85c8788260e8a7c5038ed26def2296856394ad4eebe53b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5cd5298f78e89f82608ace3d1f0080f4e48752bae25a8bc2d05f5cf93089c13bb5812c79884049b758e81e4af5849e0b531f0c39eb36ae970ad5edba34bf0a7c
|
7
|
+
data.tar.gz: 872d76446735b79fc889c9831c8fc31a26a4e3e089f920f38df8cd3c3113abe9aee5ecd7dca40094af0375f645901e79b2763412d7502448646181d44eeba09d
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/README.adoc
CHANGED
@@ -6,6 +6,8 @@
|
|
6
6
|
|
7
7
|
= Proof Key for Code Exchange (PKCE)
|
8
8
|
|
9
|
+
‼️ *This gem is deprecated and will be fully destroyed on 2026-01-15. There is no replacement. Please update accordingly.* ‼️
|
10
|
+
|
9
11
|
Proof Key for Code Exchange (PKCE) is an authorization code flow extension to link:https://oauth.net[OAuth] which is necessary for mobile authentication but works well for web flows because the added security is transparent to the user. Specifically, PKCE prevents the following types of attacks:
|
10
12
|
|
11
13
|
* Authorization code interception
|
data/pkce.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = "pkce"
|
5
|
-
spec.version = "3.2.
|
5
|
+
spec.version = "3.2.1"
|
6
6
|
spec.authors = ["Brooke Kuhlmann"]
|
7
7
|
spec.email = ["brooke@alchemists.io"]
|
8
8
|
spec.homepage = "https://alchemists.io/projects/pkce"
|
@@ -19,6 +19,10 @@ Gem::Specification.new do |spec|
|
|
19
19
|
"source_code_uri" => "https://github.com/bkuhlmann/pkce"
|
20
20
|
}
|
21
21
|
|
22
|
+
spec.post_install_message = <<~MESSAGE
|
23
|
+
DEPRECATION: The PKCE gem is deprecated and will be fully destroyed on 2026-06-15.
|
24
|
+
MESSAGE
|
25
|
+
|
22
26
|
spec.signing_key = Gem.default_key_path
|
23
27
|
spec.cert_chain = [Gem.default_cert_path]
|
24
28
|
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pkce
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brooke Kuhlmann
|
@@ -90,6 +90,10 @@ metadata:
|
|
90
90
|
label: PKCE
|
91
91
|
rubygems_mfa_required: 'true'
|
92
92
|
source_code_uri: https://github.com/bkuhlmann/pkce
|
93
|
+
post_install_message: 'DEPRECATION: The PKCE gem is deprecated and will be fully destroyed
|
94
|
+
on 2026-06-15.
|
95
|
+
|
96
|
+
'
|
93
97
|
rdoc_options: []
|
94
98
|
require_paths:
|
95
99
|
- lib
|
@@ -104,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
108
|
- !ruby/object:Gem::Version
|
105
109
|
version: '0'
|
106
110
|
requirements: []
|
107
|
-
rubygems_version: 3.6.
|
111
|
+
rubygems_version: 3.6.9
|
108
112
|
specification_version: 4
|
109
113
|
summary: An OAuth Proof Key for Code Exchange (PKCE) challenge and code verifier.
|
110
114
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|