forked from pool/haproxy
- Update to version 2.1.3+git0.5c020bbdd:
OBS-URL: https://build.opensuse.org/package/show/server:http/haproxy?expand=0&rev=212
This commit is contained in:
parent
fbc8186248
commit
051439ae93
2
_service
2
_service
@ -6,7 +6,7 @@
|
|||||||
<param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@.%h</param>
|
<param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@.%h</param>
|
||||||
<param name="versionrewrite-pattern">v(.*)</param>
|
<param name="versionrewrite-pattern">v(.*)</param>
|
||||||
<param name="versionrewrite-replacement">\1</param>
|
<param name="versionrewrite-replacement">\1</param>
|
||||||
<param name="revision">v2.1.2</param>
|
<param name="revision">v2.1.3</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
</service>
|
</service>
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">http://git.haproxy.org/git/haproxy-2.1.git</param>
|
<param name="url">http://git.haproxy.org/git/haproxy-2.1.git</param>
|
||||||
<param name="changesrevision">d5b6759b51ad0b63608bec8e0b228f209e42ae6f</param>
|
<param name="changesrevision">5c020bbddc3d9573f02cde383abc983ad0781fc1</param>
|
||||||
</service>
|
</service>
|
||||||
</servicedata>
|
</servicedata>
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f62a41fa22f7b12ad58740b6eedac135a01a64a776f75105150afc20a0b90ef1
|
|
||||||
size 2740242
|
|
3
haproxy-2.1.3+git0.5c020bbdd.tar.gz
Normal file
3
haproxy-2.1.3+git0.5c020bbdd.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e0a0b380bdd6f34240a7470e86d6c83463e8a2a98e2922b6e9fa8a55dd1bcd41
|
||||||
|
size 2752990
|
@ -1,3 +1,95 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 12 15:42:26 UTC 2020 - mrueckert@suse.de
|
||||||
|
|
||||||
|
- Update to version 2.1.3+git0.5c020bbdd:
|
||||||
|
* [RELEASE] Released version 2.1.3
|
||||||
|
* BUG/MINOR: tcp: don't try to set defaultmss when value is negative
|
||||||
|
* BUG/MINOR: http-ana: Set HTX_FL_PROXY_RESP flag if a server perform a redirect
|
||||||
|
* BUG/MINOR: http-ana: Don't overwrite outgoing data when an error is reported
|
||||||
|
* MINOR: htx/channel: Add a function to copy an HTX message in a channel's buffer
|
||||||
|
* MINOR: htx: Add a function to append an HTX message to another one
|
||||||
|
* DOC: word converter ignores delimiters at the start or end of input string
|
||||||
|
* MINOR: build: add aix72-gcc build TARGET and power{8,9} CPUs
|
||||||
|
* BUG/MINOR: tcp: avoid closing fd when socket failed in tcp_bind_listener
|
||||||
|
* BUG/MINOR: listener: enforce all_threads_mask on bind_thread on init
|
||||||
|
* BUG/MEDIUM: listener: only consider running threads when resuming listeners
|
||||||
|
* BUG/MINOR: dns: allow 63 char in hostname
|
||||||
|
* BUG/MINOR: unix: better catch situations where the unix socket path length is close to the limit
|
||||||
|
* DOC: schematic of the SSL certificates architecture
|
||||||
|
* BUG/MEDIUM: ssl/cli: 'commit ssl cert' wrong SSL_CTX init
|
||||||
|
* SCRIPTS: announce-release: allow the user to force to overwrite old files
|
||||||
|
* SCRIPTS: announce-release: place the send command in the mail's header
|
||||||
|
* CONTRIB: debug: also support reading values from stdin
|
||||||
|
* MINOR: acl: Warn when an ACL is named 'or'
|
||||||
|
* CONTRIB: debug: support reporting multiple values at once
|
||||||
|
* CONTRIB: debug: add the possibility to decode the value as certain types only
|
||||||
|
* CONTRIB: debug: add missing flags SF_HTX and SF_MUX
|
||||||
|
* BUG/MINOR: ssl: clear the SSL errors on DH loading failure
|
||||||
|
* BUG/MINOR: ssl: we may only ignore the first 64 errors
|
||||||
|
* BUG/MAJOR: memory: Don't forget to unlock the rwlock if the pool is empty.
|
||||||
|
* BUG/MEDIUM: memory: Add a rwlock before freeing memory.
|
||||||
|
* MINOR: memory: Only init the pool spinlock once.
|
||||||
|
* BUG/MEDIUM: memory_pool: Update the seq number in pool_flush().
|
||||||
|
* BUG/MEDIUM: connections: Don't forget to unlock when killing a connection.
|
||||||
|
* BUG/MINOR: connection: fix ip6 dst_port copy in make_proxy_line_v2
|
||||||
|
* BUG/MINOR: ssl: Possible memleak when allowing the 0RTT data buffer.
|
||||||
|
* BUG/MEDIUM: pipe: fix a use-after-free in case of pipe creation error
|
||||||
|
* BUG/MINOR: tcpchecks: fix the connect() flags regarding delayed ack
|
||||||
|
* BUG/MEDIUM: ssl: Don't forget to free ctx->ssl on failure.
|
||||||
|
* MINOR: lua: Add HLUA_PREPEND_C?PATH build option
|
||||||
|
* MINOR: lua: Add lua-prepend-path configuration option
|
||||||
|
* MINOR: lua: Add hlua_prepend_path function
|
||||||
|
* BUILD: cfgparse: silence a bogus gcc warning on 32-bit machines
|
||||||
|
* BUG/MEDIUM: mux-h2: make sure we don't emit TE headers with anything but "trailers"
|
||||||
|
* BUG/MINOR: stktable: report the current proxy name in error messages
|
||||||
|
* BUG/MEDIUM: 0rtt: Only consider the SSL handshake.
|
||||||
|
* BUG/MINOR: ssl/cli: ocsp_issuer must be set w/ "set ssl cert"
|
||||||
|
* BUG/MINOR: ssl: typo in previous patch
|
||||||
|
* BUG/MINOR: ssl: memory leak w/ the ocsp_issuer
|
||||||
|
* BUG/MINOR: ssl: increment issuer refcount if in chain
|
||||||
|
* CLEANUP: stats: shut up a wrong null-deref warning from gcc 9.2
|
||||||
|
* BUG/MINOR: ssl/cli: free the previous ckch content once a PEM is loaded
|
||||||
|
* BUG/MINOR: ssl: ssl_sock_load_pem_into_ckch is not consistent
|
||||||
|
* BUG/MEDIUM: netscaler: Don't forget to allocate storage for conn->src/dst.
|
||||||
|
* BUG/MINOR: http_act: don't check capture id in backend
|
||||||
|
* MINOR: proxy/http-ana: Add support of extra attributes for the cookie directive
|
||||||
|
* BUG/MINOR: ssl: ssl_sock_load_sctl_from_file memory leak
|
||||||
|
* BUG/MINOR: ssl: ssl_sock_load_issuer_file_into_ckch memory leak
|
||||||
|
* BUG/MINOR: ssl: ssl_sock_load_ocsp_response_from_file memory leak
|
||||||
|
* BUG/MINOR: tcp-rules: Fix memory releases on error path during action parsing
|
||||||
|
* BUG/MINOR: stick-table: Use MAX_SESS_STKCTR as the max track ID during parsing
|
||||||
|
* BUG/MINOR: http-rules: Remove buggy deinit functions for HTTP rules
|
||||||
|
* BUG/MINOR: http-ana/filters: Wait end of the http_end callback for all filters
|
||||||
|
* BUILD: pattern: include errno.h
|
||||||
|
* BUG/MINOR: 51d: Fix bug when HTX is enabled
|
||||||
|
* BUG/MINOR: dns: Make dns_query_id_seed unsigned
|
||||||
|
* BUG/MINOR: cache: Fix leak of cache name in error path
|
||||||
|
* BUG/MINOR: pattern: handle errors from fgets when trying to load patterns
|
||||||
|
* BUG/MEDIUM: connection: add a mux flag to indicate splice usability
|
||||||
|
* BUG/MINOR: stream: don't mistake match rules for store-request rules
|
||||||
|
* BUG/MEDIUM: cli: _getsocks must send the peers sockets
|
||||||
|
* REGTEST: add sample_fetches/hashes.vtc to validate hashes
|
||||||
|
* BUG/MAJOR: hashes: fix the signedness of the hash inputs
|
||||||
|
* BUG/MEDIUM: mux_h1: Don't call h1_send if we subscribed().
|
||||||
|
* BUG/MEDIUM: mworker: remain in mworker mode during reload
|
||||||
|
* REGTEST: mcli/mcli_start_progs: start 2 programs
|
||||||
|
* BUG/MINOR: cli/mworker: can't start haproxy with 2 programs
|
||||||
|
* BUG/MEDIUM: mux-h2: don't stop sending when crossing a buffer boundary
|
||||||
|
* BUG/MEDIUM: mux-h2: fix missing test on sending_list in previous patch
|
||||||
|
* BUG/MINOR: mux-h2: use a safe list_for_each_entry in h2_send()
|
||||||
|
* BUG/MEDIUM: tasks: Use the MT macros in tasklet_free().
|
||||||
|
* BUG/MINOR: stream-int: Don't trigger L7 retry if max retries is already reached
|
||||||
|
* BUG/MEDIUM: session: do not report a failure when rejecting a session
|
||||||
|
* BUG/MINOR: channel: inject output data at the end of output
|
||||||
|
* BUG/MEDIUM: http-ana: Truncate the response when a redirect rule is applied
|
||||||
|
* BUG/MINOR: proxy: Fix input data copy when an error is captured
|
||||||
|
* BUG/MINOR: h1: Report the right error position when a header value is invalid
|
||||||
|
* MINOR: ssl: Remove unused variable "need_out".
|
||||||
|
* MINOR: config: disable busy polling on old processes
|
||||||
|
* BUG/MEDIUM: connections: Hold the lock when wanting to kill a connection.
|
||||||
|
* BUG/MEDIUM: checks: Only attempt to do handshakes if the connection is ready.
|
||||||
|
* BUG/MINOR: checks: refine which errno values are really errors.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Feb 07 12:48:02 UTC 2020 - mrueckert@suse.de
|
Fri Feb 07 12:48:02 UTC 2020 - mrueckert@suse.de
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: haproxy
|
Name: haproxy
|
||||||
Version: 2.1.2+git0.d5b6759b5
|
Version: 2.1.3+git0.5c020bbdd
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user