jwt-eddsa 0.9.0 → 1.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: d176aca754fd2612a100a6dbccc5cb7452258d61113899aef72bbfeffd8a35a0
4
- data.tar.gz: d9b57d2a032a47bc8bcf313782652c7f7e5404639dff0a230a20d0b9d27d42c5
3
+ metadata.gz: 9e0c7782f28dacc294cb88e798dae9cced68e830611db8dafcea81198eef41fd
4
+ data.tar.gz: 27f2fc7a7d23b096dc9236e33c54ebb5617756909bd7788474c71dd8939ff70b
5
5
  SHA512:
6
- metadata.gz: 3ac0969bd6a41c3ee85cedaf88b1183743fafcf42a5eddef4dc3736be013578a3d9d79b6fe1e69dab327632b84a5d185c33e925d538636d055fcb1196f03e05f
7
- data.tar.gz: e5aeb285f6c04b604713bd63ab58dc41ac3d24c6c7617382e09774f81c094f5f4966385a7ac3a3692bfba87ceaab4bd8fecb1f56446d6289e11d0e037a352500
6
+ metadata.gz: 0e38a6608c55930fb1e46fdf3a3d2c8422f502c428a34927aa28a7081f81134e1e2f8442de405f033941fbad2979e9d7f9c41bb6ffe3dcdcbc44e6701a265431
7
+ data.tar.gz: 8f21eade2696ed13fbdbe11c33e784701e9a73ee7b7d3593170f26505d95be366ab79393809f1dee912096f504dec971b1c5f75023790b92d617c60b653bd28f
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.9.0"
2
+ ".": "1.0.0"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.0](https://github.com/jwt/ruby-jwt-eddsa/compare/v0.9.0...v1.0.0) (2026-08-14)
4
+
5
+
6
+ ### ⚠ BREAKING CHANGES
7
+
8
+ * Auto-generated `kid` values for OKP JWKs are now computed from the RFC 8037 required members (crv, kty, x) instead of the incorrect (kty, n, x). Previously generated kid values will no longer match; keys with an explicitly provided kid are unaffected.
9
+
10
+ ### Bug Fixes
11
+
12
+ * Change OKP JWK thumbprint to use crv/kty/x, not RSA's kty/n/x ([#26](https://github.com/jwt/ruby-jwt-eddsa/issues/26)) ([7760623](https://github.com/jwt/ruby-jwt-eddsa/commit/77606230f99ec6f7ec5ebaab939451fea0652bff))
13
+ * OKP JWK kid values now follow RFC 8037 thumbprints ([#26](https://github.com/jwt/ruby-jwt-eddsa/issues/26)) ([6eaf654](https://github.com/jwt/ruby-jwt-eddsa/commit/6eaf654750666d9c3122b46629eeaf9115971694))
14
+
3
15
  ## [0.9.0](https://github.com/jwt/ruby-jwt-eddsa/compare/v0.8.1...v0.9.0) (2025-06-28)
4
16
 
5
17
 
@@ -7,7 +7,7 @@ module JWT
7
7
  class OKP < ::JWT::JWK::KeyBase
8
8
  KTY = "OKP"
9
9
  KTYS = [KTY, JWT::EdDSA::JWK::OKP, Ed25519::SigningKey, Ed25519::VerifyKey].freeze
10
- OKP_PUBLIC_KEY_ELEMENTS = %i[kty n x].freeze
10
+ OKP_PUBLIC_KEY_ELEMENTS = %i[crv kty x].freeze
11
11
  OKP_PRIVATE_KEY_ELEMENTS = %i[d].freeze
12
12
 
13
13
  def initialize(key, params = nil, options = {})
@@ -2,6 +2,6 @@
2
2
 
3
3
  module JWT
4
4
  module EdDSA
5
- VERSION = "0.9.0"
5
+ VERSION = "1.0.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jwt-eddsa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joakim Antman
@@ -78,7 +78,7 @@ licenses:
78
78
  metadata:
79
79
  homepage_uri: https://github.com/jwt/ruby-jwt-eddsa
80
80
  source_code_uri: https://github.com/jwt/ruby-jwt-eddsa
81
- changelog_uri: https://github.com/jwt/ruby-jwt-eddsa/blob/v0.9.0/CHANGELOG.md
81
+ changelog_uri: https://github.com/jwt/ruby-jwt-eddsa/blob/v1.0.0/CHANGELOG.md
82
82
  rubygems_mfa_required: 'true'
83
83
  rdoc_options: []
84
84
  require_paths:
@@ -94,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
94
  - !ruby/object:Gem::Version
95
95
  version: '0'
96
96
  requirements: []
97
- rubygems_version: 3.6.7
97
+ rubygems_version: 4.0.16
98
98
  specification_version: 4
99
99
  summary: EdDSA algorithm extension for ruby-jwt
100
100
  test_files: []