I found an issue at line 463 of sfForm.class.php.
In the original file (symfony 1.4.20) was:
$this->validatorSchema[$name] = $form->getValidatorSchema();
now is:
$this->validatorSchema[$name] = new sfValidatorPass();
It cause an error in configure functions of form classes when you try to set validator options of an embedded form.