devise-webauthn 0.3.0 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aaa4817ea2af9200fa03ddf48357462fee35e64624b14d0de881b7805af7a34d
4
- data.tar.gz: 88b7affbb03be29d61834f20924db27ecd8623c0f7c5463ce59554ebd727dcd7
3
+ metadata.gz: bedbd7cbfbce63ffd28dd38a828a34081880b037355c0fedb7ed0ae37921f105
4
+ data.tar.gz: 5bfc78ad1e764096d35fbf31b56b08d6370b731e757bd64e2c6af2b54c90c1f7
5
5
  SHA512:
6
- metadata.gz: 963eaa9ff4ce30759da2bb0b90fd2e8af1118c3c51caad4b574b7e28873033cdf16cdc9a91c29d21a4be2676e78255665df5db50d524c29a9321dfc864490a78
7
- data.tar.gz: 758cb30bc99014c144ad7b8467cb9a24da62c7c0a1c7db1b7565436973ab145041ad3ac8eabf1951b648e56caa5682459ec0ebaf5f0fd21f0b8b07341c95b30a
6
+ metadata.gz: 58786281bafd7c1032e331a09b48716aba0b49fd725856b33beb59708c2afc77310c174d0300a32c1294e0741fc6ff64fe0405f54d397e77be2853ec4ab0e925
7
+ data.tar.gz: e6a5d6fa654fb35bc854f96aa7783861da4370d65dd1dd72c43e10baa6cbea0291524fdbf2a175225778d80e584c734b6f88707a7731e61056657ce4b19bbd3b
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## [v0.3.1](https://github.com/cedarcode/devise-webauthn/compare/v0.3.0...v0.3.1/) - 2026-02-10
6
+
7
+ ### Fixed
8
+
9
+ - Fix `install_generator` invoking missing `devise:webauthn:javascript` task. [#118](https://github.com/cedarcode/devise-webauthn/pull/118) [@joaquintomas2003]
10
+
5
11
  ## [v0.3.0](https://github.com/cedarcode/devise-webauthn/compare/v0.2.2...v0.3.0/) - 2026-01-16
6
12
 
7
13
  ### Added
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- devise-webauthn (0.3.0)
4
+ devise-webauthn (0.3.1)
5
5
  devise (>= 4.9)
6
6
  webauthn (~> 3.0)
7
7
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Devise
4
4
  module Webauthn
5
- VERSION = "0.3.0"
5
+ VERSION = "0.3.1"
6
6
  end
7
7
  end
@@ -27,7 +27,7 @@ module Devise
27
27
  end
28
28
 
29
29
  def generate_javascript_configuration
30
- invoke "devise:webauthn:javascript"
30
+ invoke "devise:webauthn:javascript_configuration"
31
31
  end
32
32
 
33
33
  def final_message
@@ -6,7 +6,6 @@ module Devise
6
6
  module Webauthn
7
7
  class JavascriptConfigurationGenerator < Rails::Generators::Base
8
8
  hide!
9
- namespace "devise:webauthn:javascript"
10
9
 
11
10
  desc "Configure JavaScript loading for devise-webauthn"
12
11
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devise-webauthn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cedarcode
@@ -94,7 +94,7 @@ files:
94
94
  - lib/generators/devise/webauthn/controllers_generator.rb
95
95
  - lib/generators/devise/webauthn/install/install_generator.rb
96
96
  - lib/generators/devise/webauthn/install/templates/webauthn.rb
97
- - lib/generators/devise/webauthn/javascript/javascript_configuration_generator.rb
97
+ - lib/generators/devise/webauthn/javascript_configuration/javascript_configuration_generator.rb
98
98
  - lib/generators/devise/webauthn/templates/controllers/README
99
99
  - lib/generators/devise/webauthn/templates/controllers/passkeys_controller.rb.tt
100
100
  - lib/generators/devise/webauthn/templates/controllers/second_factor_webauthn_credentials_controller.rb.tt