Skip to content

Util 6.40.0

Compare
Choose a tag to compare
@jcrossley jcrossley released this 21 Dec 01:54
· 1116 commits to develop since this release

Bug Fixes

  • util-core: Fix issue with c.t.concurrent.AsyncStream.mapConcurrent which
    will cause the stream head to be held for life of operation. RB_ID=896168

API Changes

  • util-core: Deprecated charset constants in c.t.io.Charsets have been
    removed. Use java.nio.charset.StandardCharsets instead. RB_ID=893542
  • util-core: com.twitter.util.NonFatal is deprecated, use
    scala.util.control.NonFatal instead. RB_ID=892475
  • util-core: FactoryPool/SimplePool now inherits scala.collection.mutable.Queue[A]
    not deprecated scala.collection.mutable.QueueProxy[A] RB_ID=896485
  • util-core: Buf has been promoted from a trait to an abstract class to facilitate
    memoization of the Buf hash code. This also removes the need for the Java friendly
    abstract class: AbstractBuf. RB_ID=897476