File tree Expand file tree Collapse file tree 6 files changed +22
-14
lines changed
views/main/panels/requestTracker Expand file tree Collapse file tree 6 files changed +22
-14
lines changed Original file line number Diff line number Diff line change 4747 uses : Ortus-Solutions/setup-commandbox@main
4848 with :
4949 forgeboxAPIKey : ${{ secrets.FORGEBOX_TOKEN }}
50+ version : 5.4.2
5051
5152 - name : Setup Environment Variables For Build Process
5253 id : current_version
Original file line number Diff line number Diff line change 5151
5252 - name : Setup CommandBox CLI
5353 uses : Ortus-Solutions/setup-commandbox@main
54+ with :
55+ version : 5.4.2
5456
5557 - name : Install Dependencies
5658 run : |
Original file line number Diff line number Diff line change 22 "name" :" ColdBox Debugger" ,
33 "author" :" Ortus Solutions <info@ortussolutions.com" ,
44 "location" :" https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cbdebugger/@build.version@/cbdebugger-@build.version@.zip" ,
5- "version" :" 3.3.1 " ,
5+ "version" :" 3.3.2 " ,
66 "slug" :" cbdebugger" ,
77 "type" :" modules" ,
88 "homepage" :" https://github.com/coldbox-modules/cbdebugger" ,
Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ----
9+
10+ ## [ 3.3.2] => 2022-MAY-02
11+
12+ ### Fixed
13+
14+ * [ CBDEBUGGER-19] ( https://ortussolutions.atlassian.net/browse/CBDEBUGGER-19 ) - JSON Form serialization not working on formatting.
815
916----
1017
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ component
191191 " exception" : {},
192192 " executionTime" : 0 ,
193193 " endFreeMemory" : 0 ,
194- " formData" : ( form ?: {} ),
194+ " formData" : serializeJson ( form ?: {} ),
195195 " fullUrl" : arguments .event .getFullUrl (),
196196 " httpHost" : cgi .HTTP_HOST ,
197197 " httpReferer" : cgi .HTTP_REFERER ,
Original file line number Diff line number Diff line change 100100 </tr >
101101 </cfif >
102102 <!--- Form Params --->
103- <cfif structCount ( args .profiler .formData ) >
104- <tr >
105- <th width =" 125" align =" right" >Form Params:</th >
106- <td >
107- <div class =" cbd-cellScroller" >
108- <code >
109- <pre >#jsonFormatter .formatJSON ( args .profiler .formData .toString () ) #</pre >
110- </code >
111- </div >
112- </td >
113- </tr >
114- </cfif >
103+ <tr >
104+ <th width =" 125" align =" right" >Form Params:</th >
105+ <td >
106+ <div class =" cbd-cellScroller" >
107+ <code >
108+ <pre >#jsonFormatter .formatJSON ( args .profiler .formData ) #</pre >
109+ </code >
110+ </div >
111+ </td >
112+ </tr >
115113 </table >
116114
117115 <cfset headerKeys = args .profiler .requestData .headers .keyArray () >
You can’t perform that action at this time.
0 commit comments