Affects: 5.3.0-M1


In 5.2.7 we could call ServerRequest.create(MockHttpServletRequest()) in our tests. With 5.3.0-M1 this causes an assert error in ServerRequestPathUtils since it expects a request attribute containing the RequestPath (ServerRequestPathUtils:70).

Comment From: rstoyanchev

This is an intentional change since the path is now expected to be parsed once during the handling of a request and saved for re-use. At runtime at least this should have no impact. It does however have an impact on tests so I've marked it as a regression in that context to explore some solution.