propel_authentication 0.3.1.4 → 0.3.1.6

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: ed22a9ad44e3e469f99ecf5ace801fb72aaa445d61651f779dd2cf48e8d98928
4
- data.tar.gz: e481ff893b4b8f0c119027dd14b7a6b8622c964e483425e3a262b5b542ad4f80
3
+ metadata.gz: 6cd741c44d75fbf65d7f7db0eaf8f1fc2d777791da65a17104118ae8264791bd
4
+ data.tar.gz: f381d9454b167d222d2b029a9568ee1c55e79bf52c760d044c5a506e4a7ea52e
5
5
  SHA512:
6
- metadata.gz: 1054e52568bd9dff16cb1239b8348f974c0eea4cc3b776512661373accdc9a81ee24c7c9f95eaf103fb93b256d9ca2c42161b5b8863b8605fbe550fa03ca197c
7
- data.tar.gz: ddef2ce77da126feefd41efa5d7092ea15de672657d7bd2ee85b3be0a7f36a5c019762482b455eaaa8301fc3f439c660e6b46cc21e0a0ee33fcb7107b846673c
6
+ metadata.gz: 6983150a0198d1d3dd5e371f7f61a14b66cbfc8408e5937aa997e2c2b12ecb4bbd8786354515fd326cc6f6af19eb772225843d479a62702217f9b6a0bb15f71d
7
+ data.tar.gz: 67759000cd49bc86d34770197a40893d7120ce5209b2936687267d841f7589fa13f19e379e1e7e9a08c96cac9012fed3a82448e53d7ca843384d14b824e25601
data/CHANGELOG.md CHANGED
@@ -13,6 +13,21 @@ 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.6] - 2025-09-13
17
+
18
+ ### 🔧 Version Synchronization
19
+ - **Version Consistency**: Updated version to maintain consistency with PropelApi 0.3.1.6 enhanced multi-tenancy support
20
+ - No functional changes in this release
21
+ - Synchronized release with PropelApi template tenancy improvements
22
+ - Better coordination with PropelApi's enhanced agent reference handling and validation improvements
23
+
24
+ ## [0.3.1.5] - 2025-09-11
25
+
26
+ ### 🔧 Version Synchronization
27
+ - **Version Consistency**: Updated version to maintain consistency with PropelApi 0.3.1.5 JSONB improvements
28
+ - No functional changes in this release
29
+ - Synchronized release with PropelApi template consistency improvements
30
+
16
31
  ## [0.3.1.4] - 2025-09-11
17
32
 
18
33
  ### 🔧 Version Synchronization
@@ -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: :bad_request
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 :bad_request, "Missing required parameters should return bad_request"
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
@@ -1,3 +1,3 @@
1
1
  module PropelAuthentication
2
- VERSION = "0.3.1.4"
2
+ VERSION = "0.3.1.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: propel_authentication
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1.4
4
+ version: 0.3.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Propel Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-09-12 00:00:00.000000000 Z
11
+ date: 2025-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails