clavis 0.7.1 → 0.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0099b35bbd28e750464cbe4cd7233af8fb477942f63b44db348cc47af95b8913'
4
- data.tar.gz: bda910114b865849eaf40bd25728519d6ed92d41f54ce084d08bfe7bd0dd6431
3
+ metadata.gz: dd0c38b67afcfa2ff9c2322f6ab599d8f37960052e0ce826396d5b62836939f5
4
+ data.tar.gz: 0d8fdb18d986ad9532c68c9e339c039665938fb1f108daf9f1c6a62579f549de
5
5
  SHA512:
6
- metadata.gz: 28363d76a1b6edc7597f511b8d3f138c02459bd5cb4abe738a13dfb783142e45b04323ea5ace431079046e2803563e6fdae2399603a4c5c6e1251cd546eded69
7
- data.tar.gz: 3906ff1df9637fc33b56020be75b4745739c7e0d2c90403e61c173d8b855da71011c7e6385c1eca17bb54cc3cd0aa80e6b31c026e2288e45b9bb20f65390adcf
6
+ metadata.gz: e34aa640baa0caf1fc37d5337673866e10222de56a44f3c86c0d4c615ea5f6f8a52d5e6e1f16fcec4b2fad531ae565985f048ced81b8d3510aa661b6af14f59c
7
+ data.tar.gz: 53a32a6d4b0728e53870ccf0c01622878cad917eb6c0a57fe34211838d6013de6879528f4ca83b04a76e53ce2c7f6dac58cb950cf8ed725217e63b8c82e33ee1
data/.brakeman.ignore ADDED
@@ -0,0 +1 @@
1
+ { "ignored_warnings": [] }
data/CHANGELOG.md CHANGED
@@ -4,13 +4,25 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [0.7.2] - 2025-03-20
8
+
9
+ ### Added
10
+ - Added Brakeman security scanning integration for test Rails application
11
+ - Added `.brakeman.ignore` file for managing false positives
12
+ - Added improved error handling code examples to llms.md
13
+
14
+ ### Changed
15
+ - Enhanced installation generator output with better organization and visual structure
16
+ - Reorganized README.md for improved logical flow and readability
17
+ - Optimized llms.md for better AI consumption with structured data formats
18
+ - Updated documentation to be more consistent across files
19
+
7
20
  ### Fixed
8
21
  - Fixed HTML escaping issue in `clavis_oauth_button` helper so it works properly with `<%= %>` without requiring `<%== %>`
9
22
  - Fixed routing for OAuth providers by respecting configured callback paths instead of hardcoding `/auth/`
10
23
  - Improved button rendering to handle different engine mount points and configurations
11
- - Improved documentation to clarify how OAuth buttons and routes work with the engine
12
24
 
13
- ## [0.6.8] - 2024-03-20
25
+ ## [0.7.1] - 2025-03-20
14
26
 
15
27
  ### Fixed
16
28
  - Fixed route conflict issues in engine mounting
@@ -20,14 +32,14 @@ All notable changes to this project will be documented in this file.
20
32
  - Updated Rails test app to use the built-in Rails 8 authentication generator
21
33
  - Removed oauth_button legacy alias in favor of clavis_oauth_button
22
34
 
23
- ## [0.6.7] - 2024-03-19
35
+ ## [0.7.0] - 2025-03-19
24
36
 
25
37
  ### Fixed
26
38
  - Fixed bcrypt dependency for test Rails application in CI
27
39
  - Improved dependency management in test environment
28
40
  - Added explicit bcrypt installation to prevent authentication failures
29
41
 
30
- ## [0.6.6] - 2024-03-19
42
+ ## [0.6.9] - 2025-03-19
31
43
 
32
44
  ### Fixed
33
45
  - Fixed CI issues with Rails application testing
@@ -35,7 +47,7 @@ All notable changes to this project will be documented in this file.
35
47
  - Enhanced Rails generator tests to handle bootsnap dependency
36
48
  - Added automatic fixes for common Rails initialization issues
37
49
 
38
- ## [0.6.0] - 2024-05-10
50
+ ## [0.6.0] - 2025-03-10
39
51
 
40
52
  ### Added
41
53
  - Added `oauth_user?` method to `OauthAuthenticatable` concern to easily check if a user has any OAuth identities
@@ -46,18 +58,18 @@ All notable changes to this project will be documented in this file.
46
58
  - Improved documentation on route setup and OAuth integration
47
59
  - Added Quick Start guides to README and LLMs documentation
48
60
 
49
- ## [0.5.2] - 2023-03-18
61
+ ## [0.5.2] - 2025-03-18
50
62
 
51
63
  ### Changed
52
64
  - Removed unnecessary bigdecimal and mutex_m dependencies
53
65
 
54
- ## [0.5.1] - 2023-03-18
66
+ ## [0.5.1] - 2025-03-18
55
67
 
56
68
  ### Fixed
57
69
  - Updated release workflow to use Ruby 3.3
58
70
  - Fixed RuboCop target Ruby version to match required version
59
71
 
60
- ## [0.5.0] - 2023-03-18
72
+ ## [0.5.0] - 2025-03-18
61
73
 
62
74
  ### Changed
63
75
  - Updated to require Rails 8.0 only
@@ -65,14 +77,14 @@ All notable changes to this project will be documented in this file.
65
77
  - Removed support for Rails 7.x
66
78
  - Simplified serialization code now that we only support Rails 8.0+
67
79
 
68
- ## [0.3.4] - 2023-03-18
80
+ ## [0.3.4] - 2025-03-18
69
81
 
70
82
  ### Fixed
71
83
  - Resolved compatibility issues with Rails 8 eager loading
72
84
  - Fixed timezone handling in OauthIdentity expirations
73
85
  - Added test coverage for Rails 8.0 and Ruby 3.4
74
86
 
75
- ## [0.3.1] - 2023-03-19
87
+ ## [0.3.1] - 2025-03-19
76
88
 
77
89
  ### Added
78
90
  - Improved provider buttons with proper branding according to each provider's guidelines
@@ -85,7 +97,7 @@ All notable changes to this project will be documented in this file.
85
97
  - Refined the display of button icons and text for better alignment
86
98
  - Updated the README to clarify information about button styling options
87
99
 
88
- ## [0.3.0] - 2023-03-18
100
+ ## [0.3.0] - 2025-03-18
89
101
 
90
102
  ### Added
91
103
  - Standardized user information extraction from all OAuth providers
@@ -93,7 +105,7 @@ All notable changes to this project will be documented in this file.
93
105
  - Helper methods on User model via OauthAuthenticatable: `oauth_email`, `oauth_name`, and `oauth_avatar_url`
94
106
  - Storage of standardized user info in the auth_data JSON field
95
107
 
96
- ## [0.2.3] - 2023-03-25
108
+ ## [0.2.3] - 2025-03-25
97
109
 
98
110
  ### Fixed
99
111
  - Added missing `process_callback` method to Provider::Base class for handling OAuth callbacks
@@ -102,13 +114,13 @@ All notable changes to this project will be documented in this file.
102
114
  - Made token and userinfo validation more permissive to work with various OAuth provider responses
103
115
  - Added comprehensive integration tests for the OAuth callback flow
104
116
 
105
- ## [0.2.2] - 2023-03-19
117
+ ## [0.2.2] - 2025-03-19
106
118
 
107
119
  ### Fixed
108
120
  - Added `allow_other_host: true` to OAuth redirects to fix `ActionController::Redirecting::UnsafeRedirectError` errors in Rails 7
109
121
  - This ensures compatibility with stricter cross-origin redirect security in newer Rails versions
110
122
 
111
- ## [0.2.1] - 2023-03-18
123
+ ## [0.2.1] - 2025-03-18
112
124
 
113
125
  ### Changed
114
126
  - Namespaced view helper methods to prevent conflicts with Rails form helpers
@@ -121,7 +133,7 @@ All notable changes to this project will be documented in this file.
121
133
  ### Fixed
122
134
  - Conflicts between Clavis view helpers and Rails form helpers when using `form_with`
123
135
 
124
- ## [0.2.0] - 2023-03-17
136
+ ## [0.2.0] - 2025-03-17
125
137
 
126
138
  ### Fixed
127
139
  - Module name inconsistency between `Clavis::Models::OauthAuthenticatable` and `Clavis::Models::Concerns::OauthAuthenticatable`