## Summary Upgrade Apache POI from 5.0.0 to 5.5.1 (latest 5.x release). ## Why - POI 5.5.1 includes bug fixes and improvements - No Java EE dependencies (uses java.xml only) - Drop-in replacement within 5.x line ## Current vs Target | | Version | |--|---------| | Current | 5.0.0 | | Target | 5.5.1 | ## Change ```xml <!-- pom.xml --> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>5.5.1</version> <!-- was 5.0.0 --> </dependency> ``` ## Testing - `make install --run-tests` - Test Excel file generation - Test Excel file reading/parsing ## References - [POI Download](https://poi.apache.org/download.html) - [POI Change History](https://poi.apache.org/changes.html) ## Acceptance Criteria - [ ] POI version updated to 5.5.1 - [ ] All tests pass - [ ] Excel operations functional ## Parent Epic Part of Epic #1110
Summary
Upgrade Apache POI from 5.0.0 to 5.5.1 (latest 5.x release).
Why
Current vs Target
Change
Testing
make install --run-testsReferences
Acceptance Criteria
Parent Epic
Part of Epic #1110