Cédric Luthi

Results 226 comments of Cédric Luthi

I addressed the failing build. The cause was that I used `xunit.v3.extensibility.core` version `0.3.0-pre.8` which is not yet published to NuGet for the `Testcontainers.XunitV3` package. I reverted to version `0.2.0-pre.69`...

> Should we set `IsPublishable` to `false` then? Either this or release a preview version of the `Testcontainers.XunitV3` package. > I can create a minimal test project using the source...

> The previous one was inconsistent in its log messages (this was the main reason I changed it). This inconsistency was deliberate because a timestamp is already included by xUnit...

Also, in commit 6a87013e18ed0f02c9e296a53f1707e538e4780c I improved all the HTTP requests to deserialize the JSON payload directly from the HTTP response stream instead of reading the response as string then deserializing...

> Why not just use [HttpClientJsonExtensions](https://learn.microsoft.com/en-us/dotnet/api/system.net.http.json.httpclientjsonextensions) with [source generators](https://learn.microsoft.com/en-us/dotnet/standard/serialization/system-text-json/source-generation)? I don't remember but it was probably because of the dozen of `MakeRequestAsync` variations that depend on `ApiResponseErrorHandlingDelegate` which whould have...

Somehow I missed @galvesribeiro comment who said he was working on a full refactoring so I went ahead with #672 which replaces `Newtonsoft.Json` with `System.Text.Json`. Maybe it can help move...

I just submitted #249 which adds support for `DateOnly` and `TimeOnly`.

I guess this is somewhat linked to #88.

I got almost the same error with a slightly different value for the faulty offset when trying to unredact the sample pixellated secret.png: ``` Error occurred in handler for 'redact':...

Here is how I worked around this issue: ```objc - (void) textFieldDidBeginEditing:(UITextField *)textField { // Force displaying all suggestions when beginning edition of text field id autocompleteInputView = (id)textField.inputAccessoryView; [autocompleteInputView...