Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rammpeter committed Jun 18, 2024
1 parent b05f574 commit 88c5ae2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ GEM
concurrent-ruby (1.3.3)
crass (1.0.6)
date (3.3.4-java)
erubi (1.12.0)
erubi (1.13.0)
ffi (1.17.0-java)
globalid (1.2.1)
activesupport (>= 6.1)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
jarbler (0.2.3)
jarbler (0.3.0)
jbuilder (2.12.0)
actionview (>= 5.0.0)
activesupport (>= 5.0.0)
Expand All @@ -103,7 +103,7 @@ GEM
mime-types-data (3.2024.0604)
mini_mime (1.1.5)
minitest (5.23.1)
net-imap (0.4.12)
net-imap (0.4.13)
date
net-protocol
net-pop (0.1.2)
Expand Down Expand Up @@ -194,7 +194,7 @@ GEM
websocket-driver (0.7.6-java)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
zeitwerk (2.6.15)
zeitwerk (2.6.16)

PLATFORMS
universal-java-21
Expand Down
4 changes: 3 additions & 1 deletion app/controllers/active_session_history_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -394,13 +394,15 @@ def show_prepared_active_session_history
@groupfilter['SQL-ID'.to_sym] = params[:sql_id] if params[:sql_id]
@groupfilter[:SQL_Child_Number] = params[:child_number] if params[:child_number]
@groupfilter[:SQL_ID_or_Top_Level_SQL_ID] = params[:SQL_ID_or_Top_Level_SQL_ID] if params[:SQL_ID_or_Top_Level_SQL_ID]
@groupfilter['Session/Sn.'.to_sym] = "#{params[:sid]}, #{params[:serial_no]}" if params[:sid] && params[:serial_no]
@groupfilter['Session/Sn.'.to_sym] = "#{params[:sid]}, #{params[:serial_no]}" if params[:sid] && params[:serial_no]
@groupfilter[:Module] = params[:module] if params[:module]
@groupfilter[:Action] = params[:module_action] if params[:module_action]
@groupfilter['DB Object'] = params[:db_object] if params[:db_object]

@groupby = 'Hugo' # Default
@groupby = 'SQL-ID' if params[:sql_id] || params[:SQL_ID_or_Top_Level_SQL_ID]
@groupby = 'Session/Sn.' if params[:sid] && params[:serial_no]
@groupby = 'Module' if params[:module]
@groupby = 'Action' if params[:module_action]
@groupby = 'DB Object' if params[:db_object]

Expand Down
4 changes: 2 additions & 2 deletions config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

module Panorama
# VERSION and RELEASE_DATE should have fix syntax and positions because they are parsed from other sites
VERSION = '2.17.45'
RELEASE_DATE = Date.parse('2024-06-13')
VERSION = '2.17.46'
RELEASE_DATE = Date.parse('2024-06-18')

RELEASE_DAY = "%02d" % RELEASE_DATE.day
RELEASE_MONTH = "%02d" % RELEASE_DATE.month
Expand Down

0 comments on commit 88c5ae2

Please sign in to comment.