v0.0.8
What's Changed
- Improve adding JPA entities to not affect main application using @EntityScan or even not:
Any annotations pointing to VanillaBP packagespreviously necessary, can now be removed. They are added programmatically by the adapter during auto-configuration.@EntityScan(basePackages = {"io.vanillabp.camunda8", "io.vanillabp.cockpit.adapter.camunda8"}) @ConfigurationPropertiesScan(basePackages = {"io.vanillabp.camunda8", "io.vanillabp.cockpit.adapter.camunda8"}) @EnableJpaRepositories(basePackages = {"io.vanillabp.camunda8", "io.vanillabp.cockpit.adapter.camunda8"})
- Fix "persistence of deployed processes" in case of adding a new process and keeping an existing unchanged:
A permanent OptimisticLockingException was thrown which prevented the service from starting up.
Full Changelog: 0.0.7...0.0.8