propel_authentication 0.3.1.3 → 0.3.1.5
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91358484e3e65155b5a23224896826756997e0f3178ce425332c62b1f1eae614
|
4
|
+
data.tar.gz: 85cf573de487ee534eb410f8ff4791599b9d717334f28584f4dae6da7e62124a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 014db5bcbea224293f7df5e64d8869fd8c69446206a5fa9f223b541416dd634eb405106e1c51a2d62b6d13cea41fcd0935b5d7dcfdd9a1c5cb09826d361dd6ee
|
7
|
+
data.tar.gz: 027a17f3bd7844bc1585afdcf167d9a1e2ad0db0156915a45a210cdb2c564db37d724d1c1d99f5df1caac01562d983ed4a14f0dae748ad1f3b6b79d61b43e59e
|
data/CHANGELOG.md
CHANGED
@@ -13,6 +13,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
13
13
|
- Session management and device tracking
|
14
14
|
- Advanced password policies
|
15
15
|
|
16
|
+
## [0.3.1.5] - 2025-09-11
|
17
|
+
|
18
|
+
### 🔧 Version Synchronization
|
19
|
+
- **Version Consistency**: Updated version to maintain consistency with PropelApi 0.3.1.5 JSONB improvements
|
20
|
+
- No functional changes in this release
|
21
|
+
- Synchronized release with PropelApi template consistency improvements
|
22
|
+
|
23
|
+
## [0.3.1.4] - 2025-09-11
|
24
|
+
|
25
|
+
### 🔧 Version Synchronization
|
26
|
+
- **Version Consistency**: Updated version to maintain consistency with PropelApi 0.3.1.4 critical bug fix
|
27
|
+
- No functional changes in this release
|
28
|
+
- Synchronized release with PropelApi polymorphic parents parsing fix
|
29
|
+
|
16
30
|
## [0.3.1.3] - 2025-09-11
|
17
31
|
|
18
32
|
### 🐛 Bug Fixes
|
@@ -39,7 +39,7 @@ class <%= auth_controller_class_name('tokens') %> < Api::BaseController
|
|
39
39
|
render json: { error: 'Invalid credentials' }, status: :unauthorized
|
40
40
|
end
|
41
41
|
rescue ActionController::ParameterMissing
|
42
|
-
render json: { error: 'Missing required parameters' }, status: :
|
42
|
+
render json: { error: 'Missing required parameters' }, status: :unprocessable_content
|
43
43
|
end
|
44
44
|
|
45
45
|
# DELETE <%= auth_route_prefix %>/logout
|
@@ -232,7 +232,7 @@ class <%= controller_namespace('tokens') %>TokensControllerTest < ActionDispatch
|
|
232
232
|
}
|
233
233
|
|
234
234
|
# VERIFY PARAMETER VALIDATION: Check required field enforcement
|
235
|
-
assert_response :
|
235
|
+
assert_response :unprocessable_content, "Missing required parameters should return unprocessable_content"
|
236
236
|
response_json = JSON.parse(response.body)
|
237
237
|
assert response_json["error"].present?, "Should return validation error message"
|
238
238
|
end
|