From 205356b9f7d972383c9d5bf7c6a6babf594d190f256597c3b2782bd2fb2ffbd2 Mon Sep 17 00:00:00 2001 From: Marcus Rueckert Date: Mon, 30 Jan 2017 14:53:28 +0000 Subject: [PATCH] Accepting request 453453 from home:KGronlund:branches:server:http - Update to version 1.7.2: * BUG/MEDIUM: lua: In some case, the return of sample-fetches is ignored (2) * BUG/MINOR: stream-int: automatically release SI_FL_WAIT_DATA on SHUTW_NOW * DOC: lua: documentation about time parser functions * DOC: lua: section declared twice * BUG/MINOR: lua/cli: bad error message * DOC: fix small typo in fe_id (backend instead of frontend) * BUG/MINOR: Fix the sending function in Lua's cosocket * BUG/MINOR: lua: memory leak executing tasks * BUG/MINOR: lua: bad return code * BUG/MEDIUM: ssl: properly reset the reused_sess during a forced handshake * BUG/MEDIUM: ssl: avoid double free when releasing bind_confs * BUG/MINOR: stats: fix be/sessions/current out in typed stats * BUG/MINOR: backend: nbsrv() should return 0 if backend is disabled * BUG/MEDIUM: ssl: for a handshake when server-side SNI changes * BUG/MINOR: systemd: potential zombie processes * DOC: Add timings events schemas * BUG/MINOR: option prefer-last-server must be ignored in some case * MINOR: stats: Support "select all" for backend actions * BUG/MINOR: sample-fetches/stick-tables: bad type for the sample fetches sc*_get_gpt0 * BUG/MAJOR: channel: Fix the definition order of channel analyzers * BUG/MINOR: http: report real parser state in error captures * BUG/MAJOR: http: fix risk of getting invalid reports of bad requests * MINOR: http: custom status reason. * MINOR: connection: add sample fetch "fc_rcvd_proxy" * BUG/MINOR: config: emit a warning if http-reuse is enabled with incompatible options * BUG/MINOR: tools: fix off-by-one in port size check * BUG/MEDIUM: server: consider AF_UNSPEC as a valid address family * MEDIUM: server: split the address and the port into two different fields * MINOR: tools: make str2sa_range() return the port in a separate argument * MINOR: server: take the destination port from the port field, not the addr * MEDIUM: server: disable protocol validations when the server doesn't resolve * BUG/MEDIUM: tools: do not force an unresolved address to AF_INET:0.0.0.0 * BUG/MINOR: ssl: EVP_PKEY must be freed after X509_get_pubkey usage * MINOR: proto_http.c 502 error txt typo. * DOC: add deprecation notice to "block" * BUG/MINOR: Reset errno variable before calling strtol(3) OBS-URL: https://build.opensuse.org/request/show/453453 OBS-URL: https://build.opensuse.org/package/show/server:http/haproxy?expand=0&rev=142 --- _service | 4 ++-- _servicedata | 2 +- haproxy-1.7.1.tar.gz | 3 --- haproxy-1.7.2.tar.gz | 3 +++ haproxy.changes | 41 +++++++++++++++++++++++++++++++++++++++++ haproxy.spec | 2 +- 6 files changed, 48 insertions(+), 7 deletions(-) delete mode 100644 haproxy-1.7.1.tar.gz create mode 100644 haproxy-1.7.2.tar.gz diff --git a/_service b/_service index 402cfca..f68ed2a 100644 --- a/_service +++ b/_service @@ -3,8 +3,8 @@ http://git.haproxy.org/git/haproxy-1.7.git git haproxy - 1.7.1 - master + 1.7.2 + v1.7.2 enable diff --git a/_servicedata b/_servicedata index 4cb22d3..2764166 100644 --- a/_servicedata +++ b/_servicedata @@ -3,4 +3,4 @@ http://git.haproxy.org/git/haproxy-1.6.git 864bf78c3b6898eb12ece5f0a44032090f26f57f http://git.haproxy.org/git/haproxy-1.7.git - 2c0b1b9774e60259f63b179fc38e0989e6a04e9d \ No newline at end of file + ddb646ee9182df570017ddf280873a1360a28898 \ No newline at end of file diff --git a/haproxy-1.7.1.tar.gz b/haproxy-1.7.1.tar.gz deleted file mode 100644 index 3c06a78..0000000 --- a/haproxy-1.7.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:237a12f8c754eddfad749cf89396f3762169dc06efc8bcae7b9996e5d1953507 -size 1781439 diff --git a/haproxy-1.7.2.tar.gz b/haproxy-1.7.2.tar.gz new file mode 100644 index 0000000..fa3738f --- /dev/null +++ b/haproxy-1.7.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f95b40f52a4d61feaae363c9b15bf411c16fe8f61fddb297c7afcca0072e4b2f +size 1735073 diff --git a/haproxy.changes b/haproxy.changes index ddbfb82..dfe1be7 100644 --- a/haproxy.changes +++ b/haproxy.changes @@ -1,3 +1,44 @@ +------------------------------------------------------------------- +Mon Jan 30 14:43:01 UTC 2017 - kgronlund@suse.com + +- Update to version 1.7.2: + * BUG/MEDIUM: lua: In some case, the return of sample-fetches is ignored (2) + * BUG/MINOR: stream-int: automatically release SI_FL_WAIT_DATA on SHUTW_NOW + * DOC: lua: documentation about time parser functions + * DOC: lua: section declared twice + * BUG/MINOR: lua/cli: bad error message + * DOC: fix small typo in fe_id (backend instead of frontend) + * BUG/MINOR: Fix the sending function in Lua's cosocket + * BUG/MINOR: lua: memory leak executing tasks + * BUG/MINOR: lua: bad return code + * BUG/MEDIUM: ssl: properly reset the reused_sess during a forced handshake + * BUG/MEDIUM: ssl: avoid double free when releasing bind_confs + * BUG/MINOR: stats: fix be/sessions/current out in typed stats + * BUG/MINOR: backend: nbsrv() should return 0 if backend is disabled + * BUG/MEDIUM: ssl: for a handshake when server-side SNI changes + * BUG/MINOR: systemd: potential zombie processes + * DOC: Add timings events schemas + * BUG/MINOR: option prefer-last-server must be ignored in some case + * MINOR: stats: Support "select all" for backend actions + * BUG/MINOR: sample-fetches/stick-tables: bad type for the sample fetches sc*_get_gpt0 + * BUG/MAJOR: channel: Fix the definition order of channel analyzers + * BUG/MINOR: http: report real parser state in error captures + * BUG/MAJOR: http: fix risk of getting invalid reports of bad requests + * MINOR: http: custom status reason. + * MINOR: connection: add sample fetch "fc_rcvd_proxy" + * BUG/MINOR: config: emit a warning if http-reuse is enabled with incompatible options + * BUG/MINOR: tools: fix off-by-one in port size check + * BUG/MEDIUM: server: consider AF_UNSPEC as a valid address family + * MEDIUM: server: split the address and the port into two different fields + * MINOR: tools: make str2sa_range() return the port in a separate argument + * MINOR: server: take the destination port from the port field, not the addr + * MEDIUM: server: disable protocol validations when the server doesn't resolve + * BUG/MEDIUM: tools: do not force an unresolved address to AF_INET:0.0.0.0 + * BUG/MINOR: ssl: EVP_PKEY must be freed after X509_get_pubkey usage + * MINOR: proto_http.c 502 error txt typo. + * DOC: add deprecation notice to "block" + * BUG/MINOR: Reset errno variable before calling strtol(3) + ------------------------------------------------------------------- Sat Dec 24 02:36:10 UTC 2016 - mrueckert@suse.de diff --git a/haproxy.spec b/haproxy.spec index b6d8aa5..0eb9ee1 100644 --- a/haproxy.spec +++ b/haproxy.spec @@ -41,7 +41,7 @@ %bcond_without apparmor Name: haproxy -Version: 1.7.1 +Version: 1.7.2 Release: 0 # #