jankosecki
jankosecki
Thanks for this fix! I was getting 500 on `v0.10.0` from `/metrics` endpoint but adding this change to my custom queries has resolved the issue. This PR should definitely get...
> Hi @mcbenjemaa we have moved to OpenSearch (opensearch.org) > And we just merged the 1st version of Helm there [opensearch-project/opensearch-devops#4](https://github.com/opensearch-project/opensearch-devops/pull/4) > Could you close this PR and migrate there?...
Amazing, thank you @sammy-SC . I can confirm it resolves the unwanted behaviour visible in the reproduction repository of the linked issue.
I had a look how borders are rendered and did some modifications to `invalidateLayer` of `RCTViewComponentView.mm` and discovered some things: - setting `useCoreAnimationBorderRendering` to hard-coded `true` fixes the rendering issue...
No, the issue has never been observed on Android. I can confirm that the issue is not reproducible on old architecture. And the issue started happening only after upgrading to...
Following the stack trace of `RCTViewComponentView#invalidateLayer` led me to `RCTMountingManager#RCTPerformMountInstructions` and to this change: https://github.com/facebook/react-native/pull/38234 Adding back at the start of `RCTPerformMountInstructions`: ``` [CATransaction begin]; [CATransaction setValue:(id)kCFBooleanTrue forKey:kCATransactionDisableActions]; ``` and...
Fixed properly in 0.73.6 (https://github.com/facebook/react-native/commit/d9794916b0549330513fe530abf090fa48b8a776) instead of a patch which just reverts the changes. We've been using the version for a while and no issues have been spotted so far....
Is there an easy way to log the request? I could do it when I have some free time. But I never debugged any jenkins or plugin related issues so...
> > replace deprecated call `TruncatedString.build()` with `TruncatedString.buildByChars()` > > No, if it's replaced, then it must use buildByBytes, because the GitHub limit is 65535 bytes, not 65535 characters. Although...
Yes, I did but that didn't help. Unfortunately I don't know iOS ecosystem well enough to understand exactly what `use_frameworks!` does and why suddenly so many header files cannot be...