zio-http icon indicating copy to clipboard operation
zio-http copied to clipboard

A next-generation Scala framework for building scalable, correct, and efficient HTTP clients and servers

Results 215 zio-http issues
Sort by recently updated
recently updated
newest added

Attempt to implement #1007. Headers ADT's are: ```scala case object EmptyHeaders extends Headers case class HeadersFromChunk(value: Chunk[Header]) extends Headers case class HeadersFromHttp(value: HttpHeaders) extends Headers case class UpdatedHeaders(update: Headers =>...

It would be nice to have the following code works: ```scala val env = ChannelFactory.auto ++ EventLoopGroup.auto() val url = "http://sports.api.decathlon.com/groups/water-aerobics" val program = for { res

enhancement

**Describe the bug** According to the HTTP 1.1 spec (https://datatracker.ietf.org/doc/html/rfc2616#section-14.23) `Host` header must include both host and port if they're specified in the requested URL. `zhttp.service.EncodeRequest` only includes the host....

bug

this closes the issue https://github.com/dream11/zio-http/issues/685

Hi, Here's another example that implements a web socket client that uses some reconnection logic to recover from errors. Hope this is useful!

Bumps [terser](https://github.com/terser/terser) from 5.10.0 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...

dependencies

Since `HeaderValues` is a public object and contains constants for often-used values, the first intent of a user is to reuse the constants in his tests, something like: ```scala import...

enhancement

Updates * [org.scala-lang:scala-library](https://github.com/scala/scala) * [org.scala-lang:scala-reflect](https://github.com/scala/scala) from 2.12.15 to 2.12.16. [GitHub Release Notes](https://github.com/scala/scala/releases/tag/v2.12.16) - [Version Diff](https://github.com/scala/scala/compare/v2.12.15...v2.12.16) I'll automatically update this PR to resolve conflicts as long as you don't change it...

Updates * [org.scala-lang:scala-library](https://github.com/scala/scala) * [org.scala-lang:scala-reflect](https://github.com/scala/scala) from 2.12.15 to 2.12.16. [GitHub Release Notes](https://github.com/scala/scala/releases/tag/v2.12.16) - [Version Diff](https://github.com/scala/scala/compare/v2.12.15...v2.12.16) I'll automatically update this PR to resolve conflicts as long as you don't change it...

maintenance