Changes since 23.6.9
New features
-
Implement production mode license verification in VaadinServlet
Commit · Pull requestAdd runtime license verification for production mode. License check failure is only logged, it does not prevent the application from running.
Fixes
-
Move thread start out of DevServerWatchDog constructor (#23898)
Commit · Pull requestStarting a thread in a constructor can expose a partially constructed object. Extract the thread start into a separate start() method that callers invoke after construction completes.