Magnolia 6.2.63 known issues
Commons IO Library Compatibility Issue
An issue with the commons-io
library was introduced in this release that may affect system functionality.
This issue was introduced with BUILD-1431 and will be resolved in the upcoming 6.2.64 release with BUILD-1464.
-
Affected Component:
commons-io
library (upgraded version causing compatibility issues) -
Issue Reference: BUILD-1464
-
Resolution Timeline: Will be fixed in Magnolia CMS 6.2.64, releasing as soon as possible.
Workaround
Until 6.2.64 is available, downgrade the commons-io
library to version 2.16.1
:
In your project’s pom.xml
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.16.1</version> (1)
</dependency>
1 | This workaround ensures compatibility while maintaining system stability until the fix is available in 6.2.64. |