Johannes Brodwall
Johannes Brodwall
@afinetooth I still have a commit hash showing instead of the main branch, the "sync branches" button spinning forever and a failed request to https://coveralls.io/repos/351454/sync_branches.json with 500.
@afinetooth Thank you for following up. It took me a while to make the necessary investigations. When I run it on [Github Actions](https://github.com/jhannes/logevents/runs/3729453526?check_suite_focus=true#step:6:2706) the value of branch is `null`. However,...
I made a quick effort to do a git checkout, but it didn't seem to change things. It sounds like using the Coveralls Github Action would be a good way...
Sorry about the late response. Christmas ate up all my time. Most, but probably not all, of the private and package protected methods are intentional. I would like to have...
@mdesharnais I get this as well. The underlying problem seems to be that the access restrictions are stronger in Java 17. I resolved it by overriding `FieldResolver` like so: ```java...
Hey @jknack: This happens when you pass a map into handlebars. We're not the ones using private fields, you are ;-) I tried the following, where `example.txt.hbs` just is a...
@jknack Thanks for the clarification. This looks good. However, I can't get it to work properly in my context, which is [OpenAPI Generator](https://github.com/OpenAPITools/openapi-generator/blob/master/modules/openapi-generator/src/main/java/org/openapitools/codegen/templating/HandlebarsEngineAdapter.java#L71) I've tried [overriding](https://github.com/jhannes/openapi-generator-typescript-fetch-api/blob/main/src/main/java/io/github/jhannes/openapi/typescriptfetchapi/FixedHandlebarsEngineAdapter.java) OpenAPI's adaptor and remove...
I totally agree. Private fields are going away. But at the moment, there is no migration path for e.g. openapi-generator. I'll examine the behavior a bit more so I can...
@jknack I have made some more research into the [OpenAPI](https://github.com/OpenAPITools/openapi-generator/blob/master/modules/openapi-generator/src/main/java/org/openapitools/codegen/templating/HandlebarsEngineAdapter.java#L71) with Java 17 issue and have found an example that mimics the issue. The following test fails to generate output:...
> Considering that there is no way to know or control the fields unexposed by third party code, I argue that FieldValueResolver should treat illegal access as if the field...