forked from pool/haproxy
Accepting request 504548 from home:KGronlund:branches:server:http
- Update to version 1.7.6: * DOC: changed "block"(deprecated) examples to http-request deny * DOC: add few comments to examples. * DOC: update sample code for PROXY protocol * DOC: mention lighttpd 1.4.46 implements PROXY * DOC: stick-table is available in frontend sections * BUG/MINOR: dns: Wrong address family used when creating IPv6 sockets. * BUG/MINOR: config: missing goto out after parsing an incorrect ACL character * BUG/MINOR: arg: don't try to add an argument on failed memory allocation * BUG/MEDIUM: arg: ensure that we properly unlink unresolved arguments on error * BUG/MEDIUM: acl: don't free unresolved args in prune_acl_expr() * MINOR: lua: ensure the memory allocator is used all the time * CLEANUP: logs: typo: simgle => single * BUG/MEDIUM: acl: proprely release unused args in prune_acl_expr() * BUG/MAJOR: Use -fwrapv. * BUG/MINOR: server: don't use "proxy" when px is really meant. * BUG/MINOR: server: missing default server 'resolvers' setting duplication. * DOC: add layer 4 links/cross reference to "block" keyword. * DOC: errloc/errorloc302/errorloc303 missing status codes. * BUG/MEDIUM: lua: memory leak * MEDIUM: config: don't check config validity when there are fatal errors * BUG/MINOR: hash-balance-factor isn't effective in certain circumstances * MINOR/DOC: lua: just precise one thing * BUG/MINOR: http: Fix conditions to clean up a txn and to handle the next request * DOC: update RFC references * BUG/MINOR: checks: don't send proxy protocol with agent checks * BUG/MEDIUM: lua: segfault if a converter or a sample doesn't return anything * BUG/MAJOR: http: call manage_client_side_cookies() before erasing the buffer * BUG/MINOR: buffers: Fix bi/bo_contig_space to handle full buffers * BUG/MINOR: acls: Set the right refflag when patterns are loaded from a map OBS-URL: https://build.opensuse.org/request/show/504548 OBS-URL: https://build.opensuse.org/package/show/server:http/haproxy?expand=0&rev=147
This commit is contained in:
parent
e0ccc65b5d
commit
67274980c0
4
_service
4
_service
@ -3,8 +3,8 @@
|
||||
<param name="url">http://git.haproxy.org/git/haproxy-1.7.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="filename">haproxy</param>
|
||||
<param name="versionformat">1.7.5</param>
|
||||
<param name="revision">v1.7.5</param>
|
||||
<param name="versionformat">1.7.6</param>
|
||||
<param name="revision">v1.7.6</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
</service>
|
||||
|
||||
|
@ -3,4 +3,4 @@
|
||||
<param name="url">http://git.haproxy.org/git/haproxy-1.6.git</param>
|
||||
<param name="changesrevision">864bf78c3b6898eb12ece5f0a44032090f26f57f</param></service><service name="tar_scm">
|
||||
<param name="url">http://git.haproxy.org/git/haproxy-1.7.git</param>
|
||||
<param name="changesrevision">9a6d6eb70105ca1f53f44113e42896e7d43d3b2c</param></service></servicedata>
|
||||
<param name="changesrevision">343218555d6fa29347e4c7aa9dd336cb5f1fa707</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b04d7db6383c662eb0a421a95af7becac6d9744a1abf0df6b0280c1e61416121
|
||||
size 1743979
|
3
haproxy-1.7.6.tar.gz
Normal file
3
haproxy-1.7.6.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:88f84beba34d08a5495d908ca76866e033e6046e7c74f9477b9d5316f8c3d32a
|
||||
size 1744267
|
@ -1,3 +1,41 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 19 05:09:38 UTC 2017 - kgronlund@suse.com
|
||||
|
||||
- Update to version 1.7.6:
|
||||
* DOC: changed "block"(deprecated) examples to http-request deny
|
||||
* DOC: add few comments to examples.
|
||||
* DOC: update sample code for PROXY protocol
|
||||
* DOC: mention lighttpd 1.4.46 implements PROXY
|
||||
* DOC: stick-table is available in frontend sections
|
||||
* BUG/MINOR: dns: Wrong address family used when creating IPv6 sockets.
|
||||
* BUG/MINOR: config: missing goto out after parsing an incorrect ACL character
|
||||
* BUG/MINOR: arg: don't try to add an argument on failed memory allocation
|
||||
* BUG/MEDIUM: arg: ensure that we properly unlink unresolved arguments on error
|
||||
* BUG/MEDIUM: acl: don't free unresolved args in prune_acl_expr()
|
||||
* MINOR: lua: ensure the memory allocator is used all the time
|
||||
* CLEANUP: logs: typo: simgle => single
|
||||
* BUG/MEDIUM: acl: proprely release unused args in prune_acl_expr()
|
||||
* BUG/MAJOR: Use -fwrapv.
|
||||
* BUG/MINOR: server: don't use "proxy" when px is really meant.
|
||||
* BUG/MINOR: server: missing default server 'resolvers' setting duplication.
|
||||
* DOC: add layer 4 links/cross reference to "block" keyword.
|
||||
* DOC: errloc/errorloc302/errorloc303 missing status codes.
|
||||
* BUG/MEDIUM: lua: memory leak
|
||||
* MEDIUM: config: don't check config validity when there are fatal errors
|
||||
* BUG/MINOR: hash-balance-factor isn't effective in certain circumstances
|
||||
* MINOR/DOC: lua: just precise one thing
|
||||
* BUG/MINOR: http: Fix conditions to clean up a txn and to handle the next request
|
||||
* DOC: update RFC references
|
||||
* BUG/MINOR: checks: don't send proxy protocol with agent checks
|
||||
* BUG/MEDIUM: lua: segfault if a converter or a sample doesn't return anything
|
||||
* BUG/MAJOR: http: call manage_client_side_cookies() before erasing the buffer
|
||||
* BUG/MINOR: buffers: Fix bi/bo_contig_space to handle full buffers
|
||||
* BUG/MINOR: acls: Set the right refflag when patterns are loaded from a map
|
||||
* BUG/MINOR: http/filters: Be sure to wait if a filter loops in HTTP_MSG_ENDING
|
||||
* BUG/MEDIUM: peers: Peers CLOSE_WAIT issue.
|
||||
* BUG/MAJOR: server: Segfault after parsing server state file.
|
||||
* BUG/MEDIUM: unix: never unlink a unix socket from the file system
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 08 13:18:54 UTC 2017 - kgronlund@suse.com
|
||||
|
||||
|
@ -41,7 +41,7 @@
|
||||
%bcond_without apparmor
|
||||
|
||||
Name: haproxy
|
||||
Version: 1.7.5
|
||||
Version: 1.7.6
|
||||
Release: 0
|
||||
#
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user