Ecosyste.ms: Timeline
Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.
djkeh created a comment on an issue on hamcrest/JavaHamcrest
Will #392 stay with this release or be moved to v3.1(#417)?
djkeh created a comment on a pull request on hamcrest/JavaHamcrest
It's ready again. Now it works for `hasProperty(propertyName)`, `hasProperty(propertyName, valueMatcher)`, `hasPropertyAtPath(path, valueMatcher)` and `samePropertyValuesAs(expectedBean, ignoredPro...
djkeh pushed 6 commits to feature/hasproperty-for-record djkeh/JavaHamcrest
- Move functionalities of `MethodUtil` to `PropertyUtil` After the debate of pr #426, We decided to move all the metho... 958682e
- Refactor `HasPropertyWithValue` using lambda expression and polished its javadoc. dbe26b4
- Implement matching conditions of `HasPropertyWithValue` for Java Records The basic approach is as same as the `HasPr... 84c238b
- Refactor method name in `SamePropertyValuesAs` 0fb657c
- Implement matching conditions of `SamePropertyValuesAs` for Java Records To achieve this goal I needed a different a... 5068e67
- Remove unused method in `PropertyUtil` The former implementation `methodDescriptorsFor()` can be replaced to the new... c397cbf
djkeh pushed 1 commit to master djkeh/djkeh.github.io
- Bump rexml to 3.3.9 깃헙 디펜더봇 제안을 수용 * https://github.com/djkeh/djkeh.github.io/security/dependabot/32 9cf99e0
djkeh created a comment on a pull request on hamcrest/JavaHamcrest
Thanks for the detailed feed back, @tumbarumba I totally understand your point. Then I'll do the following: 1. I'll Implement the features dealing with java records for `HasPropertyWithValue` ...
djkeh created a comment on a pull request on hamcrest/JavaHamcrest
I got your point, @tumbarumba I agree with you. I'll respond in detail when I get back home.
djkeh created a comment on a pull request on hamcrest/JavaHamcrest
Thank you for the detailed feedback, @tumbarumba! 1. As I mentioned in the second paragraph, this pr is not about `HasPropertyWithValue`. The base idea dealing with `record` in Java 8 needed to ...
djkeh created a comment on an issue on hamcrest/JavaHamcrest
@tumbarumba I created a PR for this issue: #426 This pr keeps current java version 8 and introduces `MethodUtil` to use `MethodDescriptor` to deal with the whole regular methods in a class. The ...
djkeh pushed 2 commits to feature/hasproperty-for-record djkeh/JavaHamcrest
djkeh opened a pull request on hamcrest/JavaHamcrest
Add `MethodUtil` to make `hasProperty()` work for Java Records
Resolves #392 The current `hasProperty()` matcher can't deal with Java Records, as they are not compatible with JavaBeans specification. In this change, `HasProperty` tries the original thing ...djkeh created a branch on djkeh/JavaHamcrest
feature/hasproperty-for-record - Java (and original) version of Hamcrest