Spring Boot Version: 3.2.1
Issue
Given a image reference <hostname>/<library>/<artifact>:1.0.0+1.2.3
When the length of or is long, the method ImageReference.of(...) freezes
Tests: 30c4bd1
Related: #23115
TL;DR
Internally, the Regex.PATH generated is ^[a-z0-9]+(?:(?:(?:[._]|__|[-]*)[a-z0-9]+)+)?(?:(?:[\/][a-z0-9]+(?:(?:(?:[._]|__|[-]*)[a-z0-9]+)+)?)+)?$ which will report a Catastrophic Backtracking (you can see it in regex101 for example).