What’s New in Arconia 0.13.0
Arconia 0.13.0 provides a number of new features and enhancements. This page includes the highlights of the release, but you can also check out the full release notes for more details about each new feature and bug fix.
We provide an automated way to upgrade your project to the latest version of Arconia, which is described in the Upgrading Arconia documentation.
Spring Boot
Starting from version 0.13, Arconia is based on Spring Boot 3.5. If you are still using Spring Boot 3.4, you can continue to use Arconia 0.12.
Developer Experience
-
Arconia configures a bootstrap mode for your application based on whether it’s running in dev, test, or prod mode. The heuristics used to determine the bootstrap mode have been improved, making it more reliable and consistent across different setups.
-
The
arconia.dev.profiles
andarconia.test.profiles
properties can now be configured to specify the profiles to activate in dev and test modes, respectively. They replace the previousarconia.config.profiles.development
andarconia.config.profiles.test
properties. -
The
arconia.config.profiles.prod
property has been removed. In its place, we recommend using thespring.profiles.active
property to specify the profiles to activate in production mode. -
You can disable the automatic activation of the profiles based on the bootstrap mode by setting the
arconia.bootstrap.profiles.enabled
property tofalse
. It replaces the previousarconia.config.profiles.enabled
property.