3.15.0

Released December 30, 2021

New features

  • Plugin healthcheck | Other plugins can now extend the Monitor list

  • New lookup tables UI

  • SMTP integration | Allows specifying a set of protocols enabled for SSL connection

Fixes and improvements

  • [fixed] First login with external authentication fails to identify an existing user with the same email

  • [fixed] Header size does not match the number of axes in vertical

  • [fixed] Some channels appear multiple times in the grouped tooltip

  • [fixed] Tooltip without background on the temporal pipes widget

  • [fixed] Legends being kept when new filter changes at the bar chart

  • UI improvements at dashboard filter setup

  • UI improvements at widget header

  • Multiple UI/UX improvements at plugin admin screen

Details

Plugin healthcheck | Other plugins can now extend the Monitor list

public class Main implements LivePlugin {
    public void start(Live live) throws Exception {
        ...
        HealthcheckMonitorService monitorService = Objects.requireNonNull(live.system().getPluginService(HealthcheckMonitorService.class));
        monitorService.registerMonitor(live, new MyMonitor());
        ...
    }
}

SMTP integration | Allows specifying a set of protocols enabled for SSL connection

SMTP integration screen allows specifying a set of protocols for SSL connection. By default the plugin offers TLSv1.0, TLSv1.1, TLSv1.2, however, this list is extensible and accepts other protocols

Default list of protocols

New lookup tables UI

Distinction between lookup tables created by user and plugin
Lookup created by User
Lookup created by plugin

Last updated

Was this helpful?