JobRunr v0.9.18 Release Notes

Release Date: 2020-09-16 // over 3 years ago
  • ๐Ÿ”‹ Features

    ๐Ÿ‘Œ Improvements in the Fluent API:

    boolean isBackgroundJobServerEnabled = true; // or get it via ENV variablesboolean isDashboardEnabled = true; // or get it via ENV variablesJobRunr.configure() .useStorageProvider(new DefaultSqlStorageProvider(da, DefaultSqlStorageProvider.DatabaseOptions.SKIP\_CREATE)) .useJobActivator(applicationContext::getBean) .useDefaultBackgroundJobServerIf(isBackgroundJobServerEnabled) .useDashboardIf(isDashboardEnabled) .initialize();
    

    ๐Ÿ›  Bugfixes

    • ๐Ÿ‘ท #32 - Succeeded jobs are not visible (Javascript error)