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 47
47
uses : Ortus-Solutions/setup-commandbox@main
48
48
with :
49
49
forgeboxAPIKey : ${{ secrets.FORGEBOX_TOKEN }}
50
+ version : 5.4.2
50
51
51
52
- name : Setup Environment Variables For Build Process
52
53
id : current_version
Original file line number Diff line number Diff line change 51
51
52
52
- name : Setup CommandBox CLI
53
53
uses : Ortus-Solutions/setup-commandbox@main
54
+ with :
55
+ version : 5.4.2
54
56
55
57
- name : Install Dependencies
56
58
run : |
Original file line number Diff line number Diff line change 2
2
"name" :" ColdBox Debugger" ,
3
3
"author" :
" Ortus Solutions <[email protected] " ,
4
4
"location" :
" https://downloads.ortussolutions.com/ortussolutions/coldbox-modules/cbdebugger/@build.version@/[email protected] @.zip" ,
5
- "version" :" 3.3.1 " ,
5
+ "version" :" 3.3.2 " ,
6
6
"slug" :" cbdebugger" ,
7
7
"type" :" modules" ,
8
8
"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.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
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.
8
15
9
16
----
10
17
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ component
191
191
" exception" : {},
192
192
" executionTime" : 0 ,
193
193
" endFreeMemory" : 0 ,
194
- " formData" : ( form ?: {} ),
194
+ " formData" : serializeJson ( form ?: {} ),
195
195
" fullUrl" : arguments .event .getFullUrl (),
196
196
" httpHost" : cgi .HTTP_HOST ,
197
197
" httpReferer" : cgi .HTTP_REFERER ,
Original file line number Diff line number Diff line change 100
100
</tr >
101
101
</cfif >
102
102
<!--- 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 >
115
113
</table >
116
114
117
115
<cfset headerKeys = args .profiler .requestData .headers .keyArray () >
You can’t perform that action at this time.
0 commit comments