Binder Validation Problem in Vaadin Version > 8.1

Hello,
We have a code running in Vaadin version < 8.2 but with version > 8.2 we receive exception.

Here is the code details:

 Column<CTreeProperty, String> valueColumn = null;
        valueColumn = this.attributesGrid.addColumn(value -> value.getValue().toString()).setCaption("column").setDescriptionGenerator(new DescriptionGenerator<CTreeProperty>() {
            
            private static final long serialVersionUID = 1L;

            @Override
            public String apply(CTreeProperty t) {
                 return "value";
            }
        });
        TextField valueField = new TextField();
        Binder<CTreeProperty> binder = this.attributesGrid.getEditor().getBinder().withValidator(new Validator<CTreeProperty>() {
            private static final long serialVersionUID = 1L;

            @Override
            public ValidationResult apply(CTreeProperty value, ValueContext context) {
                
                return ValidationResult.ok();
            }
        });
        
        //valueColumn.setEditorComponent(valueField, CTreeProperty :: setValue);
        Binding<CTreeProperty, String> binding = binder.bind(valueField, value -> value.getValue().toString() , CTreeProperty::setValue);
        valueColumn.setEditorBinding(binding);
        valueColumn.setEditable(true);

Here is the exception:

java.lang.IllegalStateException: Cannot validate binder: bean level validators have been configured but no bean is currently set
	at com.vaadin.data.Binder.validate(Binder.java:1982)
	at com.vaadin.data.Binder.validate(Binder.java:1965)
	at com.vaadin.ui.components.grid.EditorImpl.save(EditorImpl.java:249)
	at com.vaadin.ui.components.grid.EditorImpl$1.save(EditorImpl.java:134)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)