Breaking changes
This release worked the Leaving Soon functionality slightly.
The leaving-soon-folder
key was previously optional. Removing the key would disable the feature altogether. Functionality like that isn't intuitive at all and several null checks just contributed to unnecessary boilerplate code.
As as result, you can now set
jellyfin:
leaving-soon-type: MOVIES_AND_TV # MOVIES, TV or NONE are also possible values
The same applies to Emby.
Features
- Streamystats is now supported as an alternative to Jellystat. Both cannot be used at the same time.
- updated dependencies, including Spring Boot, enhanced security
- small logical fixes for Sonarr's whole-tv-show logic
- improved
TRACE
logging for those that want to debug
Additionally, you can now set timeouts for Janitorr's connection to Radarr and Sonarr. If those instances are particularly slow or you have a very large library, the default timeouts of 60s may not be enough. In those cases, feel free to add this to your application.yml
and adjust timers for your needs.
clients:
default:
connect-timeout: 60s
read-timeout: 60s