Mark Michaelis

Results 21 comments of Mark Michaelis

As workaround for `--no-merges` you could use the following approach: ```groovy grgit.log(maxCommits: 10).find { it.parentIds.size() == 1 } ``` which is nearly the same as `--no-merges`. Unfortunately, as filtering happens...

Unfortunately undeprecating MethodRule is only half of the way as mentioned in [comment by me](https://jira.spring.io/browse/SPR-7731?focusedCommentId=115625&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-115625) here: - [[SPR-7731] Provide @Rule alternative to SpringJUnit4ClassRunner](https://jira.spring.io/browse/SPR-7731) because rule-validation prohibits MethodRules to be annotated...

As #8230 is referring to this: We just have the very same issue and at the current point of research this is (almost) a blocker. Due to a "matured" system...

Just to state: Yes, we observed this problem and still can reproduce it with recent CKEditor versions (35.0.1). It is not only related to Source-Editing but effects the result of...

Hi @niegowski, thanks! This did the trick. We used the same approach as in old `XmlDataProcessor`: https://github.com/ckeditor/ckeditor5/blob/06ab990ed66808ace2aedc2af045fa6e1c3f424e/packages/ckeditor5-engine/src/dataprocessor/xmldataprocessor.js#L57 which nowadays is, as you suggested: https://github.com/ckeditor/ckeditor5/blob/19e609434f1fbc0755236d06b39dd8e9b0f8376a/packages/ckeditor5-engine/src/dataprocessor/xmldataprocessor.js#L54 Change introduced with: 021f3eda3fae9c0dd227b3e13eccb54109ab9cee, so as...

Hi @scofalik, > When it comes to what DataFilter class is doing, I wonder if there was any problem putting this code in `afterInit()`. Unfortunately, the comment does not mention...

We just stumbled across this issue because we need the test-lifecycle for dynamic tests. We also thought about using test templates instead, but we need the test instance variables (here...

This is what I do as workaround now. But it does not fit to the extension mechanism. So what I do now is to manually create for example _after each_...

As we also struggle with this, some thoughts here: ### Architectural Challenge With only having scratched the very surface of BBob, I see an architectural challenge in mapping, as there...

@Alteras1, thanks for your workaround for `` handling via extra plugin. We thought of a similar approach, as this is an obvious extension point. We skipped though, as we need...