Hello community,
here is the log from the commit of package ghc-streaming-commons for
openSUSE:Factory checked in at 2015-12-01 09:19:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-streaming-commons (Old)
and /work/SRC/openSUSE:Factory/.ghc-streaming-commons.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-streaming-commons"
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-streaming-commons/ghc-streaming-commons.changes
2015-10-06 13:27:31.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-streaming-commons.new/ghc-streaming-commons.changes
2015-12-01 09:19:36.000000000 +0100
@@ -1,0 +2,6 @@
+Sun Nov 29 17:43:29 UTC 2015 - [email protected]
+
+- update to 0.1.15
+* Use `NO_DELAY1 for TCP client connections
+
+-------------------------------------------------------------------
Old:
----
streaming-commons-0.1.14.2.tar.gz
New:
----
streaming-commons-0.1.15.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-streaming-commons.spec ++++++
--- /var/tmp/diff_new_pack.D1M9fw/_old 2015-12-01 09:19:36.000000000 +0100
+++ /var/tmp/diff_new_pack.D1M9fw/_new 2015-12-01 09:19:36.000000000 +0100
@@ -21,7 +21,7 @@
%bcond_with tests
Name: ghc-streaming-commons
-Version: 0.1.14.2
+Version: 0.1.15
Release: 0
Summary: Common lower-level functions needed by various streaming data
libraries
License: MIT
++++++ streaming-commons-0.1.14.2.tar.gz -> streaming-commons-0.1.15.tar.gz
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/streaming-commons-0.1.14.2/ChangeLog.md
new/streaming-commons-0.1.15/ChangeLog.md
--- old/streaming-commons-0.1.14.2/ChangeLog.md 2015-09-27 06:37:17.000000000
+0200
+++ new/streaming-commons-0.1.15/ChangeLog.md 2015-11-24 11:28:14.000000000
+0100
@@ -1,3 +1,7 @@
+## 0.1.15
+
+* Use `NO_DELAY1 for TCP client connections
[#27](https://github.com/fpco/streaming-commons/issues/27)
+
## 0.1.14.2
* Fix bug in process exception display of args with spaces/quotes
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/streaming-commons-0.1.14.2/Data/Streaming/Network.hs
new/streaming-commons-0.1.15/Data/Streaming/Network.hs
--- old/streaming-commons-0.1.14.2/Data/Streaming/Network.hs 2015-09-27
06:37:17.000000000 +0200
+++ new/streaming-commons-0.1.15/Data/Streaming/Network.hs 2015-11-24
11:28:14.000000000 +0100
@@ -409,6 +409,7 @@
getSocketFamilyTCP :: ByteString -> Int -> NS.Family -> IO (NS.Socket,
NS.SockAddr)
getSocketFamilyTCP host' port' addrFamily = do
(sock, addr) <- getSocketFamilyGen NS.Stream (S8.unpack host') port'
addrFamily
+ NS.setSocketOption sock NS.NoDelay 1
ee <- try' $ NS.connect sock (NS.addrAddress addr)
case ee of
Left e -> NS.sClose sock >> throwIO e
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/streaming-commons-0.1.14.2/streaming-commons.cabal
new/streaming-commons-0.1.15/streaming-commons.cabal
--- old/streaming-commons-0.1.14.2/streaming-commons.cabal 2015-09-27
06:37:17.000000000 +0200
+++ new/streaming-commons-0.1.15/streaming-commons.cabal 2015-11-24
11:28:14.000000000 +0100
@@ -1,5 +1,5 @@
name: streaming-commons
-version: 0.1.14.2
+version: 0.1.15
synopsis: Common lower-level functions needed by various streaming
data libraries
description: Provides low-dependency functionality commonly needed by
various streaming data libraries, such as conduit and pipes.
homepage: https://github.com/fpco/streaming-commons