Sergey Torgashov
Sergey Torgashov
Just thinking aloud and perhaps I'm going to say something stupid but anyway... Perhaps it might make sense simply to get rid of default `EntityEncoder` and `EntityDecoder` for `String` and...
Just fyi: there's another method that modifies query parameters in `Uri`: `withQueryParams`: ``` scala> val uri = uri"https://typelevel.org?foo=123&bar=456" val uri: org.http4s.Uri = https://typelevel.org?foo=123&bar=456 scala> uri.setQueryParams(Map("bar" -> Seq("789"), "car" -> Seq("abc")))...
Thank you for the PR! I am a bit concerned though about using `java.net`'s `URL` and `URLConnection` as a part of public APIs. Is it somewhat necessary, or can it...
I mean, perhaps it could be ok to use it internally, when necessary... Just wondering, if it is possible to avoid exposing it in APIs.. Sorry, I haven't wrapped my...
As @danicheg mentioned in #6544, `HttpVersion` still exposes an unlawful `apply` method as well as `copy`. Note: Scala3 seems to be smarter in regards to case classes – it removes...
@armanbilge @som-snytt if I remember correctly, there are quite a few warnings that are handled differently in different Scala versions (i.e. 2.12, 2.13, 3). And that is what we tried...
@armanbilge @gemelen may I take this one?
Nowadays, there's a lot of hype on AI technologies around – lots of people try to ruminate on what the AI can or cannot do and how it can be...
Hi, @armanbilge, @johnynek , Sorry for the ping. Just to confirm with you – does it make sense to maintain this PR? Actually, I'm not asking about rushing reviewing it,...
I guess this is because `${MyBoolean.True}` is observed as `MyBoolean.True` type, not just `MyBoolean`. For example, this change seems fixing the issue: ```scala sql""" SELECT col1, col2, col3 FROM table_name...