In version 4.3.3 the following code to inject a bean into a Hibernate entity using load time weaving worked flawlessly and someBean is correctly set but after upgrading to version 4.3.4 someBean is now null.
@Configurable(preConstruction = true)
@Entity
public class ExampleEntity {
@Inject SomeBean someBean;
...
}