JobRunr v1.1.0 Release Notes

Release Date: 2020-10-21 // over 3 years ago
  • 🆕 New Features

    • 👍 Better Spring Boot integration with autocomplete of the properties for Spring Boot
    • ⏱ JobRunr will now display a warning if you have scheduled jobs which do not exist anymore in your code
    • 🚧 JobRunr will show a notification on a succeeded job that it will be deleted automatically (part of self-maintenance)

    💥 Breaking changes

    • ⬆️ there are some database changes so make sure to finish all scheduled and enqueued jobs before upgrading and to also re-register your recurring jobs after upgrading.
    • 📚 the jobrunr-spring-boot-starter uses new properties that are more in line with Spring Boot. See the Spring configuration page for more info.

    🛠 Bugfixes

    • 👷 issue #39 - less verbose logging on shutdown in Quarkus dev mode
    • 👷 issue #43 - only one recurring job is executed if jobs have the same method signature
    • 👷 issue #46 - JobRunr does not work with Jackson 2.11.3 (caused by upstream dependency)
    • 👷 issue #48 - spring-boot-starter - Avoid @ConditionalOnClass on bean methods
    • 👷 issue #49 - spring-boot-starter - ConditionalOnProperty usage use wrong property format
    • 🔧 issue #50 - spring-boot-starter - Configuration properties should be structured and documented rather than raw access to the environment
    • 🔧 issue #51 - spring-boot-starter - Storage-related auto-configurations must be ordered after the auto-configurations they rely upon