v7.3-beta.8
Pre-releasev7.3-beta.8
-
Issue #4030 : Fix token validation for date expressions.
-
Issue #3991 : Add close button to query text window.
-
Issue #3337 : Improve find content feature to highlight the matches in found docs.
-
Issue #4059 : Fix stream browser not showing any streams.
-
Issue #3993 : Add recent items popup and find popup.
-
Issue #1753 : Add expand all explorer option.
-
Issue #4082 : Add XSLT function hex-to-string(hex, charsetName).
-
Issue #4085 : Fix value in error message when the ref data reference count overflows.
-
Issue #4084 : Fix double shift behaviour to show
find
. -
Issue #4088 : Add links and copy capability to meta browser.
-
Issue #3966 : Add detailed task information for task fetching process.
-
Issue #4092 : Fix explorer expand behaviour.
-
Issue #4094 : Fix change behaviour of entity selection popup.
-
Add support for
<xsl:message>some message</xsl:message>
which will log the message asERROR
, which is consistent with thestroom:log()
function. If the attributeterminate="yes"
is set, the it will log asFATAL
, which will stop processing. You can also use a suitably named child element to set the severity,<xsl:message><info>my message</info></xsl:message>
. Use ofterminate="yes"
trumps any severity set. Previous behaviour was to log tostdout
and throw an exception ifterminate
isyes
. -
Issue #4096 : Improve wrapped table data CSS.
-
Issue #4097 : Fix Meta filter giving 'unknown field' error for fields like 'Raw Size'.
-
Issue #4101 : Expand favourites by default.
-
Issue #4091 : Fix Number column format for duration and date values. Now shows the duration in millis and millis since unix epoch respectively. Also fix lack of rounding when setting a fixed number of decimal places.
-
Stop 'ADD TASKS TO QUEUE' from spamming the logs when there are no tasks to queue, i.e. a quiet system.
-
Change
<xsl:message terminate="yes">
to halt processing of the current stream part immediately, in addition to logging a FATAL error. This is different from thestroom:log('FATAL'...)
call that will log a FATAL error but won't halt processing. -
Add a XML editor snippet for adding an
<xsl:element>
block with the aliaselem
. -
Issue #4104 : Fix open document direct links.
-
Issue #4033 : Fix an infinite loop when stepping raw JSON with a FindReplaceFilter. Change the way character data is decoded in the stepper so that it is more lenient to un-decodable bytes, replacing them with '�'. Also make the reader code in the stepper respond to task termination. Add stepper error for each byte sequence that can't be decoded.
-
Fix missing fatal/error/warn/info gutter icons in the Ace editor.
-
Change stepper so that errors/warn/etc. with no line/col location are not included in the coloured indicator at the top right of the pane. Location agnostic errors now only feature in the log pane at the bottom.
-
Change the stepper log pane so that it only provides location/pane information if the location is known. The code has been changed to allow the server to explicitly state which pane an error relates to or if it is not specific to a pane. Elements with no code pane, now default errors with location information to belonging to the Input pane rather than the Output pane as previously.
-
Issue #4054 : Fix comparison of double values, e.g.
toDouble(20000) > toDouble(125000000)
. Improve comparison/sorting logic to cope with the new Duration type and to better handle mixed type comparison. -
Issue #4056 : Fix display value of Error type values in query/dashboard. Now shows error message prefixed with
ERR:
. -
Issue #4055 : Fix parsing/formatting of durations in query/dashboard expressions.