Get validated request parameters has changed in this release!
To get a particular key from validator you must use get() method as magic method no longer works here.
Good example:
$validated = $validator->validate();
$name = $validator->get('name');
Bad example:
$name = $validator->name;