hubssolib 3.6.0 → 3.6.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 +4 -4
- data/CHANGELOG.md +14 -2
- data/Gemfile.lock +2 -2
- data/hubssolib.gemspec +1 -1
- data/lib/hub_sso_lib.rb +17 -13
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eaea423d2eec6433b30522f6a6d46ab3c1b2868bb860d985cd7472116a17bc95
|
4
|
+
data.tar.gz: 19ae77e97c1e480b6b6cba78eee22523d9964af677ac9a9531582aa68883350b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db1d1f887967b480cb7ef066b1d038ca4540c5aa18fdb307a42fa825f20ca5c9cc7390bccdf9d5b7de247d9ccdfe0b7219f40cc7c7e7cc7b283d2c0a9a458be5
|
7
|
+
data.tar.gz: ccc14fd7c1015d61bc40cde504976d4eafc38368fa2bcb076b3f1e89fe9974b5c2179f55295789c28f25256335f02479161d8966cc774ce8b924bbb41d646119
|
data/CHANGELOG.md
CHANGED
@@ -1,9 +1,21 @@
|
|
1
|
+
## 3.6.1, 27-Mar-2025
|
2
|
+
|
3
|
+
Some fixes:
|
4
|
+
|
5
|
+
* Session reload could fail if a Hub flash happened to be persisted, because YAML won't load Symbol by default and it wasn't in the allow-list.
|
6
|
+
- Remove the flash message from the dump since some flash from "whenever" may well be confusing if reloaded and shown at some later time.
|
7
|
+
- Add Symbol so that if restarting under this gem version, a dump from an older version which _does_ contain flash data will still load OK.
|
8
|
+
|
9
|
+
* Secure services failure redirection _still_ wasn't quite in the right place - the earliest thing that runs is of course the 'before action' hook. Moved it there and added a Sentry warning too.
|
10
|
+
|
1
11
|
## 3.6.0, 26-Mar-2025
|
2
12
|
|
3
13
|
Cleans up and offers new enumeration features. Ordering by last-recently-active first allows clients to be deterministic about enumerated sessions. Features created to support improvements in the Hub app v3.6.0.
|
4
14
|
|
5
|
-
|
6
|
-
s
|
15
|
+
* HubSsoLib::Core#enumerate_hub_sessions is deprecated. Use HubSsoLib::Core#enumerate_hub_session_keys instead.
|
16
|
+
* For any client code that might be "hitting the metal" and calling the DRb server directly, note that HubSsoLib::SessionFactory#get_hub_session_proxy no longer pays attention to IP address parameter and this should be removed (it is now an ignored parameter that defaults to +nil+). See implementation comments for rationale, but basically, IP addresses can legitimately change for users due to DHCP (even if that's rare) and given v3.5.0's on-shutdown session store, it didn't seem wise to keep IP addresses around inside there for any length of time. It was cleanest to just drop them. PII in persisted data is once again limited to "real name" and e-mail address.
|
17
|
+
* HubSsoLib::Core exception handling for the Hub app's "tasks" notification is more extensive. A few prior gem versions unwittingly restricted it to only one specific method call. Now it's done in the current user retrieval, which is an endpoint used by a majority of Core module method calls.
|
18
|
+
|
7
19
|
## 3.5.0, 25-Mar-2025
|
8
20
|
|
9
21
|
Builds on the cleaner session interface with some changes and improvements:
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
hubssolib (3.
|
4
|
+
hubssolib (3.6.1)
|
5
5
|
base64 (~> 0.2)
|
6
6
|
drb (~> 2.2)
|
7
7
|
|
@@ -52,7 +52,7 @@ GEM
|
|
52
52
|
simplecov_json_formatter (~> 0.1)
|
53
53
|
simplecov-html (0.13.1)
|
54
54
|
simplecov_json_formatter (0.1.4)
|
55
|
-
stringio (3.1.
|
55
|
+
stringio (3.1.6)
|
56
56
|
|
57
57
|
PLATFORMS
|
58
58
|
ruby
|
data/hubssolib.gemspec
CHANGED
data/lib/hub_sso_lib.rb
CHANGED
@@ -477,7 +477,8 @@ module HubSsoLib
|
|
477
477
|
permitted_classes: [
|
478
478
|
::HubSsoLib::Session,
|
479
479
|
::HubSsoLib::User,
|
480
|
-
Time
|
480
|
+
Time,
|
481
|
+
Symbol
|
481
482
|
]
|
482
483
|
)
|
483
484
|
|
@@ -741,6 +742,8 @@ module HubSsoLib
|
|
741
742
|
@hub_sessions.each do | key, session |
|
742
743
|
next if session&.session_user&.user_id.nil? # NOTE EARLY LOOP RESTART
|
743
744
|
|
745
|
+
session.session_flash = nil
|
746
|
+
|
744
747
|
dump = ::YAML.dump({key => session})
|
745
748
|
dump.sub!(/^---\n/, '') # (avoid multiple document markers)
|
746
749
|
|
@@ -863,18 +866,6 @@ module HubSsoLib
|
|
863
866
|
user = hub_session&.session_user
|
864
867
|
|
865
868
|
return (user&.user_id.nil? ? nil : user)
|
866
|
-
|
867
|
-
rescue Exception => e
|
868
|
-
|
869
|
-
# At this point there tends to be no Session data, so we're going to have
|
870
|
-
# to encode the exception data into the URI... It must be escaped twice,
|
871
|
-
# as many servers treat "%2F" in a URI as a "/". Apache can then fail to
|
872
|
-
# serve the page, raising a 404 error unless "AllowEncodedSlashes on" is
|
873
|
-
# specified in its configuration.
|
874
|
-
#
|
875
|
-
suffix = '/' + CGI::escape(CGI::escape(hubssolib_set_exception_data(e)))
|
876
|
-
new_path = HUB_PATH_PREFIX + '/tasks/service'
|
877
|
-
redirect_to(new_path + suffix) unless request.path.include?(new_path)
|
878
869
|
end
|
879
870
|
|
880
871
|
# Sets the currently signed in user. Note that although this works and is
|
@@ -1285,6 +1276,19 @@ module HubSsoLib
|
|
1285
1276
|
return true # true -> let action processing continue
|
1286
1277
|
|
1287
1278
|
end
|
1279
|
+
|
1280
|
+
rescue Exception => e
|
1281
|
+
Sentry.capture_exception(e) if defined?(Sentry) && Sentry.respond_to?(:capture_exception)
|
1282
|
+
|
1283
|
+
# At this point there tends to be no Session data, so we're going to have
|
1284
|
+
# to encode the exception data into the URI... It must be escaped twice,
|
1285
|
+
# as many servers treat "%2F" in a URI as a "/". Apache can then fail to
|
1286
|
+
# serve the page, raising a 404 error unless "AllowEncodedSlashes on" is
|
1287
|
+
# specified in its configuration.
|
1288
|
+
#
|
1289
|
+
suffix = '/' + CGI::escape(CGI::escape(hubssolib_set_exception_data(e)))
|
1290
|
+
new_path = HUB_PATH_PREFIX + '/tasks/service'
|
1291
|
+
redirect_to(new_path + suffix) unless request.path.include?(new_path)
|
1288
1292
|
end
|
1289
1293
|
|
1290
1294
|
# Mandatory controller "after_action" callback method to tidy up after Hub
|