Accepting request 1109628 from server:http
- Update to version 2.8.3+git0.86e043add: OBS-URL: https://build.opensuse.org/request/show/1109628 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/haproxy?expand=0&rev=136
This commit is contained in:
commit
2a52d311e3
8
_service
8
_service
@ -1,21 +1,21 @@
|
|||||||
<services>
|
<services>
|
||||||
<service name="tar_scm" mode="disabled">
|
<service name="tar_scm" mode="manual">
|
||||||
<param name="url">http://git.haproxy.org/git/haproxy-2.8.git</param>
|
<param name="url">http://git.haproxy.org/git/haproxy-2.8.git</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="filename">haproxy</param>
|
<param name="filename">haproxy</param>
|
||||||
<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.8.2</param>
|
<param name="revision">v2.8.3</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
</service>
|
</service>
|
||||||
|
|
||||||
<service name="recompress" mode="disabled">
|
<service name="recompress" mode="manual">
|
||||||
<param name="file">haproxy*.tar</param>
|
<param name="file">haproxy*.tar</param>
|
||||||
<param name="compression">gz</param>
|
<param name="compression">gz</param>
|
||||||
</service>
|
</service>
|
||||||
|
|
||||||
<service name="set_version" mode="disabled">
|
<service name="set_version" mode="manual">
|
||||||
<param name="basename">haproxy</param>
|
<param name="basename">haproxy</param>
|
||||||
</service>
|
</service>
|
||||||
</services>
|
</services>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">http://git.haproxy.org/git/haproxy-2.8.git</param>
|
<param name="url">http://git.haproxy.org/git/haproxy-2.8.git</param>
|
||||||
<param name="changesrevision">61a0f576a8fbebf299330175c8c63d4cebd7f3a6</param>
|
<param name="changesrevision">86e043add353743a7808b52ccbf3573694034e63</param>
|
||||||
</service>
|
</service>
|
||||||
</servicedata>
|
</servicedata>
|
@ -1,12 +0,0 @@
|
|||||||
--- haproxy-2.8.2+git0.61a0f576a/include/import/xxhash.h.orig 2023-08-18 07:12:28.464256077 +0200
|
|
||||||
+++ haproxy-2.8.2+git0.61a0f576a/include/import/xxhash.h 2023-08-18 07:18:38.142879532 +0200
|
|
||||||
@@ -4129,7 +4129,8 @@
|
|
||||||
const void* XXH_RESTRICT secret)
|
|
||||||
{
|
|
||||||
/* presumed aligned */
|
|
||||||
- unsigned long long* const xacc = (unsigned long long*) acc;
|
|
||||||
+ /* unsigned long long* const xacc = (unsigned long long*) acc; */
|
|
||||||
+ xxh_u64x2 const* const xacc = (xxh_u64x2 *) acc;
|
|
||||||
xxh_u64x2 const* const xinput = (xxh_u64x2 const*) input; /* no alignment restriction */
|
|
||||||
xxh_u64x2 const* const xsecret = (xxh_u64x2 const*) secret; /* no alignment restriction */
|
|
||||||
xxh_u64x2 const v32 = { 32, 32 };
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:dd85f671cbc3deaf9013e52ab9424061bfa4e4e83ee751ae586e370001fa64bc
|
|
||||||
size 4468578
|
|
BIN
haproxy-2.8.3+git0.86e043add.tar.gz
(Stored with Git LFS)
Normal file
BIN
haproxy-2.8.3+git0.86e043add.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,69 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 07 22:07:54 UTC 2023 - mrueckert@suse.de
|
||||||
|
|
||||||
|
- Update to version 2.8.3+git0.86e043add:
|
||||||
|
* [RELEASE] Released version 2.8.3
|
||||||
|
* CI: Update to actions/checkout@v4
|
||||||
|
* MEDIUM: capabilities: enable support for Linux capabilities
|
||||||
|
* BUG/MINOR: hlua/action: incorrect message on E_YIELD error
|
||||||
|
* BUG/MINOR: ring/cli: Don't expect input data when showing events
|
||||||
|
* BUG/MINOR: applet: Always expect data when CLI is waiting for a new command
|
||||||
|
* NUG/MEDIUM: stconn: Always update stream's expiration date after I/O
|
||||||
|
* BUG/MEDIUM: stconn/stream: Forward shutdown on write timeout
|
||||||
|
* BUG/MEDIUM: applet: Report an error if applet request more room on aborted SC
|
||||||
|
* BUG/MEDIUM: stconn: Report read activity when a stream is attached to front SC
|
||||||
|
* BUG/MEDIUM: applet: Fix API for function to push new data in channels buffer
|
||||||
|
* BUG/MINOR: quic: Wrong RTT computation (srtt and rrt_var)
|
||||||
|
* BUG/MINOR: quic: Wrong RTT adjusments
|
||||||
|
* MINOR: httpclient: allow to configure the timeout.connect
|
||||||
|
* MINOR: httpclient: allow to configure the retries
|
||||||
|
* DOC: configuration: update examples for req.ver
|
||||||
|
* BUG/MINOR: stream: further protect stream_dump() against incomplete sessions
|
||||||
|
* BUG/MEDIUM: h1-htx: Ensure chunked parsing with full output buffer
|
||||||
|
* BUG/MAJOR: quic: Really ignore malformed ACK frames.
|
||||||
|
* BUG/MINOR: quic: Possible skipped RTT sampling
|
||||||
|
* BUG/MEDIUM: stconn: Don't block sends if there is a pending shutdown
|
||||||
|
* BUG/MEDIUM: stconn: Wake applets on sending path if there is a pending shutdown
|
||||||
|
* BUG/MINOR: stconn: Don't report blocked sends during connection establishment
|
||||||
|
* BUG/MEDIUM: stconn: Update stream expiration date on blocked sends
|
||||||
|
* DEBUG: applet: Properly report opposite SC expiration dates in traces
|
||||||
|
* BUG/MINOR: checks: do not queue/wake a bounced check
|
||||||
|
* DOC: config: mention uid dependency on the tune.quic.socket-owner option
|
||||||
|
* BUG/MINOR: stream: protect stream_dump() against incomplete streams
|
||||||
|
* BUG/MINOR: ssl/cli: can't find ".crt" files when replacing a certificate
|
||||||
|
* BUILD: import: guard plock.h against multiple inclusion
|
||||||
|
* BUG/MINOR: ssl_sock: fix possible memory leak on OOM
|
||||||
|
* DOC: lua: fix core.register_action typo
|
||||||
|
* BUG/MINOR: hlua_fcn: potentially unsafe stktable_data_ptr usage
|
||||||
|
* CI: fedora: fix "dnf" invocation syntax
|
||||||
|
* IMPORT: xxhash: update xxHash to version 0.8.2
|
||||||
|
* MINOR: atomic: make sure to always relax after a failed CAS
|
||||||
|
* MINOR: threads: inline the wait function for pthread_rwlock emulation
|
||||||
|
* IMPORT: plock: also support inlining the int code
|
||||||
|
* BUILD: Makefile: add the USE_QUIC option to make help
|
||||||
|
* DOC: jwt: Add explicit list of supported algorithms
|
||||||
|
* REGTESTS: Do not use REQUIRE_VERSION for HAProxy 2.5+ (3)
|
||||||
|
* SCRIPTS: git-show-backports: automatic ref and base detection with -m
|
||||||
|
* DOC: typo: fix sc-set-gpt references
|
||||||
|
* BUG/MINOR: stktable: allow sc-add-gpc from tcp-request connection
|
||||||
|
* BUG/MINOR: stktable: allow sc-set-gpt(0) from tcp-request connection
|
||||||
|
* DEV: flags/show-sess-to-flags: properly decode fd.state
|
||||||
|
* BUG/MINOR: hlua: fix invalid use of lua_pop on error paths
|
||||||
|
* BUG/MEDIUM: quic: fix tasklet_wakeup loop on connection closing
|
||||||
|
* CI: get rid of travis-ci wrapper for Coverity scan
|
||||||
|
* CI: do not use "groupinstall" for Fedora Rawhide builds
|
||||||
|
- drop 0001-IMPORT-xxhash-update-xxHash-to-version-0.8.2.patch:
|
||||||
|
part of the version update
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 30 09:04:25 UTC 2023 - Peter Varkoly <varkoly@suse.com>
|
||||||
|
|
||||||
|
- Apply upstream patch for the ppc64le issue:
|
||||||
|
Add patch:
|
||||||
|
0001-IMPORT-xxhash-update-xxHash-to-version-0.8.2.patch
|
||||||
|
Remove patch:
|
||||||
|
fix-invalid-parameter-combination-for-AltiVec-intrinsic-__builtin_vec_ld.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 21 14:38:51 UTC 2023 - Peter Varkoly <varkoly@suse.com>
|
Mon Aug 21 14:38:51 UTC 2023 - Peter Varkoly <varkoly@suse.com>
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: haproxy
|
Name: haproxy
|
||||||
Version: 2.8.2+git0.61a0f576a
|
Version: 2.8.3+git0.86e043add
|
||||||
Release: 0
|
Release: 0
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
@ -99,7 +99,6 @@ Source5: haproxy-user.conf
|
|||||||
Patch1: haproxy-1.6.0_config_haproxy_user.patch
|
Patch1: haproxy-1.6.0_config_haproxy_user.patch
|
||||||
Patch2: haproxy-1.6.0-makefile_lib.patch
|
Patch2: haproxy-1.6.0-makefile_lib.patch
|
||||||
Patch3: haproxy-1.6.0-sec-options.patch
|
Patch3: haproxy-1.6.0-sec-options.patch
|
||||||
Patch4: fix-invalid-parameter-combination-for-AltiVec-intrinsic-__builtin_vec_ld.patch
|
|
||||||
#
|
#
|
||||||
Source98: series
|
Source98: series
|
||||||
Source99: haproxy-rpmlintrc
|
Source99: haproxy-rpmlintrc
|
||||||
|
Loading…
Reference in New Issue
Block a user