From 74269278c5fdd63344c90a7cc95e8d309f7df472 Mon Sep 17 00:00:00 2001 From: nov Date: Tue, 6 Jan 2026 19:54:11 +0900 Subject: [PATCH 1/2] v1.4.0 --- lib/omniauth/apple/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/omniauth/apple/version.rb b/lib/omniauth/apple/version.rb index 684fad7..3fe715a 100644 --- a/lib/omniauth/apple/version.rb +++ b/lib/omniauth/apple/version.rb @@ -1,5 +1,5 @@ module OmniAuth module Apple - VERSION = '1.3.0' + VERSION = '1.4.0' end end From 5ff6a4a1ff2bc8c5c2e9b1e5136a42be6c60b20f Mon Sep 17 00:00:00 2001 From: nov Date: Tue, 6 Jan 2026 20:21:13 +0900 Subject: [PATCH 2/2] formatting --- spec/omniauth/strategies/apple_spec.rb | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/spec/omniauth/strategies/apple_spec.rb b/spec/omniauth/strategies/apple_spec.rb index 5a94294..6f5c0cf 100644 --- a/spec/omniauth/strategies/apple_spec.rb +++ b/spec/omniauth/strategies/apple_spec.rb @@ -19,16 +19,16 @@ let(:apple_key) { OpenSSL::PKey::RSA.generate(1024) } let(:auth_keys) do { - keys: [ - { - kty: "RSA", - kid: "1", - use: "sig", - alg: "RS256", - n: Base64.urlsafe_encode64(apple_key.n.to_s(2)), - e: Base64.urlsafe_encode64(apple_key.e.to_s(2)), - } - ] + keys: [ + { + kty: "RSA", + kid: "1", + use: "sig", + alg: "RS256", + n: Base64.urlsafe_encode64(apple_key.n.to_s(2)), + e: Base64.urlsafe_encode64(apple_key.e.to_s(2)), + } + ] } end let(:kid) do