2007-09-21 17:26:59 +00:00
|
|
|
%define haproxy_user haproxy
|
|
|
|
%define haproxy_group %{haproxy_user}
|
2018-07-10 15:37:31 +00:00
|
|
|
%define haproxy_homedir %{_localstatedir}/lib/haproxy
|
2007-09-21 17:26:59 +00:00
|
|
|
%define haproxy_confdir %{_sysconfdir}/haproxy
|
|
|
|
%define haproxy_datadir %{_datadir}/haproxy
|
|
|
|
|
2013-04-22 14:55:41 +00:00
|
|
|
%global _hardened_build 1
|
|
|
|
|
2007-09-21 17:26:59 +00:00
|
|
|
Name: haproxy
|
2023-04-04 17:29:10 +00:00
|
|
|
Version: 2.7.6
|
2023-02-16 15:01:05 +00:00
|
|
|
Release: 1%{?dist}
|
2014-06-20 03:42:30 +00:00
|
|
|
Summary: HAProxy reverse proxy for high availability environments
|
2007-09-21 17:26:59 +00:00
|
|
|
|
2008-06-29 03:55:49 +00:00
|
|
|
License: GPLv2+
|
2007-09-21 17:26:59 +00:00
|
|
|
|
2014-07-15 15:34:14 +00:00
|
|
|
URL: http://www.haproxy.org/
|
2022-12-05 21:20:53 +00:00
|
|
|
Source0: %{url}/download/2.7/src/haproxy-%{version}.tar.gz
|
2012-02-20 00:29:09 +00:00
|
|
|
Source1: %{name}.service
|
2007-09-21 17:26:59 +00:00
|
|
|
Source2: %{name}.cfg
|
2009-10-17 21:20:16 +00:00
|
|
|
Source3: %{name}.logrotate
|
2016-06-15 14:23:33 +00:00
|
|
|
Source4: %{name}.sysconfig
|
2022-10-12 18:48:03 +00:00
|
|
|
Source5: %{name}.sysusers
|
|
|
|
Source6: halog.1
|
2007-09-21 17:26:59 +00:00
|
|
|
|
2018-08-16 16:51:26 +00:00
|
|
|
BuildRequires: gcc
|
2015-11-18 18:35:45 +00:00
|
|
|
BuildRequires: lua-devel
|
2019-07-30 15:15:24 +00:00
|
|
|
BuildRequires: pcre2-devel
|
2014-06-20 04:32:21 +00:00
|
|
|
BuildRequires: openssl-devel
|
2018-02-26 16:38:49 +00:00
|
|
|
BuildRequires: systemd-devel
|
2018-01-09 20:46:37 +00:00
|
|
|
BuildRequires: systemd
|
2022-10-12 18:48:03 +00:00
|
|
|
BuildRequires: systemd-rpm-macros
|
2021-05-17 16:06:21 +00:00
|
|
|
BuildRequires: make
|
2007-09-21 17:26:59 +00:00
|
|
|
|
2021-06-03 13:42:36 +00:00
|
|
|
Requires(pre): shadow-utils
|
2018-01-09 20:46:37 +00:00
|
|
|
%{?systemd_requires}
|
2007-09-21 17:26:59 +00:00
|
|
|
|
|
|
|
%description
|
2014-06-20 03:42:30 +00:00
|
|
|
HAProxy is a TCP/HTTP reverse proxy which is particularly suited for high
|
2007-09-21 17:26:59 +00:00
|
|
|
availability environments. Indeed, it can:
|
2014-06-20 03:42:30 +00:00
|
|
|
- route HTTP requests depending on statically assigned cookies
|
|
|
|
- spread load among several servers while assuring server persistence
|
|
|
|
through the use of HTTP cookies
|
|
|
|
- switch to backup servers in the event a main one fails
|
|
|
|
- accept connections to special ports dedicated to service monitoring
|
|
|
|
- stop accepting connections without breaking existing ones
|
|
|
|
- add, modify, and delete HTTP headers in both directions
|
|
|
|
- block requests matching particular patterns
|
2014-07-15 15:34:14 +00:00
|
|
|
- report detailed status to authenticated users from a URI
|
2014-06-20 03:42:30 +00:00
|
|
|
intercepted from the application
|
2007-09-21 17:26:59 +00:00
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
%build
|
2008-11-15 21:24:03 +00:00
|
|
|
|
2022-10-12 19:29:52 +00:00
|
|
|
make %{?_smp_mflags} CPU="generic" TARGET="linux-glibc" USE_OPENSSL=1 USE_PCRE2=1 USE_SLZ=1 USE_LUA=1 USE_CRYPT_H=1 USE_SYSTEMD=1 USE_LINUX_TPROXY=1 USE_GETADDRINFO=1 USE_PROMEX=1 DEFINE=-DMAX_SESS_STKCTR=12 ADDINC="%{build_cflags}" ADDLIB="%{build_ldflags}"
|
2010-05-30 14:57:58 +00:00
|
|
|
|
2022-10-12 19:29:52 +00:00
|
|
|
make admin/halog/halog ADDINC="%{build_cflags}" ADDLIB="%{build_ldflags}"
|
2021-06-03 13:42:36 +00:00
|
|
|
|
|
|
|
pushd admin/iprange
|
2022-10-12 19:29:52 +00:00
|
|
|
make OPTIMIZE="%{build_cflags}" LDFLAGS="%{build_ldflags}"
|
2021-06-03 13:42:36 +00:00
|
|
|
popd
|
2014-06-24 21:28:57 +00:00
|
|
|
|
2007-09-21 17:26:59 +00:00
|
|
|
%install
|
2022-10-12 19:29:52 +00:00
|
|
|
make install-bin DESTDIR=%{buildroot} PREFIX=%{_prefix} TARGET="linux2628"
|
|
|
|
make install-man DESTDIR=%{buildroot} PREFIX=%{_prefix}
|
|
|
|
|
|
|
|
install -p -D -m 0644 %{SOURCE1} %{buildroot}%{_unitdir}/%{name}.service
|
|
|
|
install -p -D -m 0644 %{SOURCE2} %{buildroot}%{haproxy_confdir}/%{name}.cfg
|
|
|
|
install -p -D -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
|
|
|
|
install -p -D -m 0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/sysconfig/%{name}
|
|
|
|
install -p -D -m 0644 %{SOURCE5} %{buildroot}%{_sysusersdir}/%{name}.conf
|
|
|
|
install -p -D -m 0644 %{SOURCE6} %{buildroot}%{_mandir}/man1/halog.1
|
|
|
|
install -d -m 0755 %{buildroot}%{haproxy_homedir}
|
|
|
|
install -d -m 0755 %{buildroot}%{haproxy_datadir}
|
|
|
|
install -d -m 0755 %{buildroot}%{haproxy_confdir}/conf.d
|
|
|
|
install -d -m 0755 %{buildroot}%{_bindir}
|
|
|
|
install -p -m 0755 ./admin/halog/halog %{buildroot}%{_bindir}/halog
|
|
|
|
install -p -m 0755 ./admin/iprange/iprange %{buildroot}%{_bindir}/iprange
|
|
|
|
install -p -m 0755 ./admin/iprange/ip6range %{buildroot}%{_bindir}/ip6range
|
2008-11-15 21:24:03 +00:00
|
|
|
|
2007-09-21 17:26:59 +00:00
|
|
|
for httpfile in $(find ./examples/errorfiles/ -type f)
|
|
|
|
do
|
2022-10-12 19:29:52 +00:00
|
|
|
install -p -m 0644 $httpfile %{buildroot}%{haproxy_datadir}
|
2007-09-21 17:26:59 +00:00
|
|
|
done
|
|
|
|
|
2022-10-12 19:29:52 +00:00
|
|
|
rm -rf ./examples/errorfiles/
|
2014-07-15 15:34:14 +00:00
|
|
|
|
2022-10-12 19:29:52 +00:00
|
|
|
find ./examples/* -type f ! -name "*.cfg" -exec rm -f "{}" \;
|
2014-07-15 15:34:14 +00:00
|
|
|
|
2007-09-21 17:26:59 +00:00
|
|
|
for textfile in $(find ./ -type f -name '*.txt')
|
|
|
|
do
|
2022-10-12 19:29:52 +00:00
|
|
|
mv $textfile $textfile.old
|
2007-09-21 17:26:59 +00:00
|
|
|
iconv --from-code ISO8859-1 --to-code UTF-8 --output $textfile $textfile.old
|
2022-10-12 19:29:52 +00:00
|
|
|
rm -f $textfile.old
|
2012-10-12 08:32:45 +00:00
|
|
|
done
|
2007-09-21 17:26:59 +00:00
|
|
|
|
|
|
|
%pre
|
2022-10-12 18:48:03 +00:00
|
|
|
%sysusers_create_compat %{SOURCE5}
|
2007-09-21 17:26:59 +00:00
|
|
|
|
|
|
|
%post
|
2012-10-12 06:49:05 +00:00
|
|
|
%systemd_post %{name}.service
|
2007-09-21 17:26:59 +00:00
|
|
|
|
|
|
|
%preun
|
2012-10-12 06:49:05 +00:00
|
|
|
%systemd_preun %{name}.service
|
2012-02-20 00:29:09 +00:00
|
|
|
|
2007-09-21 17:26:59 +00:00
|
|
|
%postun
|
2012-10-12 06:49:05 +00:00
|
|
|
%systemd_postun_with_restart %{name}.service
|
2012-02-20 00:29:09 +00:00
|
|
|
|
2007-09-21 17:26:59 +00:00
|
|
|
%files
|
2014-07-15 15:34:14 +00:00
|
|
|
%doc doc/* examples/*
|
2022-06-03 21:58:12 +00:00
|
|
|
%doc CHANGELOG README VERSION
|
2018-01-10 15:53:48 +00:00
|
|
|
%license LICENSE
|
2018-07-10 15:37:31 +00:00
|
|
|
%dir %{haproxy_homedir}
|
2014-07-15 15:34:14 +00:00
|
|
|
%dir %{haproxy_confdir}
|
2022-06-03 21:44:53 +00:00
|
|
|
%dir %{haproxy_confdir}/conf.d
|
2007-09-21 17:26:59 +00:00
|
|
|
%dir %{haproxy_datadir}
|
2011-09-22 09:18:22 +00:00
|
|
|
%{haproxy_datadir}/*
|
2007-09-21 17:26:59 +00:00
|
|
|
%config(noreplace) %{haproxy_confdir}/%{name}.cfg
|
2009-10-17 21:20:16 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
|
2015-02-11 17:57:34 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
|
2012-02-20 00:29:09 +00:00
|
|
|
%{_unitdir}/%{name}.service
|
2007-09-21 17:26:59 +00:00
|
|
|
%{_sbindir}/%{name}
|
2010-05-30 14:57:58 +00:00
|
|
|
%{_bindir}/halog
|
2014-06-24 21:28:57 +00:00
|
|
|
%{_bindir}/iprange
|
2021-05-17 16:52:39 +00:00
|
|
|
%{_bindir}/ip6range
|
2014-06-20 03:42:30 +00:00
|
|
|
%{_mandir}/man1/*
|
2022-10-12 18:48:03 +00:00
|
|
|
%{_sysusersdir}/%{name}.conf
|
2007-09-21 17:26:59 +00:00
|
|
|
|
|
|
|
%changelog
|
2023-04-04 17:29:10 +00:00
|
|
|
* Tue Apr 04 2023 Ryan O'Hara <rohara@redhat.com> - 2.7.6-1
|
|
|
|
- Update to 2.7.6 (#2182310)
|
|
|
|
|
2023-03-23 17:00:26 +00:00
|
|
|
* Thu Mar 23 2023 Ryan O'Hara <rohara@redhat.com> - 2.7.5-1
|
|
|
|
- Update to 2.7.5 (#2154925)
|
|
|
|
|
2023-02-16 15:01:05 +00:00
|
|
|
* Wed Feb 15 2023 Ryan O'Hara <rohara@redhat.com> - 2.7.3-1
|
|
|
|
- Update to 2.7.3 (#2154925)
|
|
|
|
- Reject invalid response header (CVE-2023-0056, #2161138)
|
|
|
|
- Fix request smuggling attack (CVE-2023-25725, #2169823)
|
|
|
|
|
2023-01-19 11:59:18 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-12-05 21:20:53 +00:00
|
|
|
* Mon Dec 05 2022 Ryan O'Hara <rohara@redhat.com> - 2.7.0-1
|
|
|
|
- Update to 2.7.0 (#2150028)
|
|
|
|
|
2022-11-29 18:04:51 +00:00
|
|
|
* Tue Nov 29 2022 Ryan O'Hara <rohara@redhat.com> - 2.6.6-4
|
|
|
|
- Fix Source0 URL (#2139126)
|
|
|
|
|
2022-10-12 18:48:03 +00:00
|
|
|
* Tue Oct 11 2022 Ryan O'Hara <rohara@redhat.com> - 2.6.6-3
|
|
|
|
- Use systemd-sysusers (#2134206)
|
|
|
|
|
2022-10-11 16:22:09 +00:00
|
|
|
* Tue Oct 11 2022 Ryan O'Hara <rohara@redhat.com> - 2.6.6-2
|
|
|
|
- Remove USE_REGPARM (#2097885)
|
|
|
|
|
2022-10-11 14:12:10 +00:00
|
|
|
* Tue Oct 11 2022 Ryan O'Hara <rohara@redhat.com> - 2.6.6-1
|
|
|
|
- Update to 2.6.6 (#2099745)
|
|
|
|
|
2022-07-21 13:29:26 +00:00
|
|
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-06-03 21:44:53 +00:00
|
|
|
* Fri Jun 03 2022 Ryan O'Hara <rohara@redhat.com> - 2.6.0-2
|
|
|
|
- Add conf.d directory and update systemd unit file (#2093483)
|
|
|
|
|
2022-06-03 21:40:11 +00:00
|
|
|
* Fri Jun 03 2022 Ryan O'Hara <rohara@redhat.com> - 2.6.0-1
|
|
|
|
- Update to 2.6.0 (#2092069)
|
|
|
|
|
2022-05-25 15:58:33 +00:00
|
|
|
* Wed May 25 2022 Ryan O'Hara <rohara@redhat.com> - 2.5.7-1
|
|
|
|
- Update to 2.5.7 (#2026009)
|
|
|
|
|
2022-01-20 12:12:30 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.8-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2022-06-03 21:40:11 +00:00
|
|
|
* Mon Nov 15 2021 Ryan O'Hara <rohara@redhat.com> - 2.4.8-3
|
2021-11-16 18:01:43 +00:00
|
|
|
- Fix OpenSSL 3.0 build (#2022031)
|
|
|
|
|
2021-11-04 17:11:52 +00:00
|
|
|
* Thu Nov 04 2021 Matt Raffert <mjrafferty0@gmail.com> - 2.4.8-2
|
|
|
|
- Increase available sticky counters (#2012912)
|
|
|
|
|
2021-11-04 17:04:06 +00:00
|
|
|
* Thu Nov 04 2021 Ryan O'Hara <rohara@redhat.com> - 2.4.8-1
|
|
|
|
- Update to 2.4.8 (#2019823)
|
|
|
|
|
2021-10-13 15:20:52 +00:00
|
|
|
* Wed Oct 13 2021 Ryan O'Hara <rohara@redhat.com> - 2.4.7-1
|
|
|
|
- Update to 2.4.7 (#2009817)
|
|
|
|
|
2021-09-14 17:04:03 +00:00
|
|
|
* Tue Sep 14 2021 Sahana Prasad <sahana@redhat.com> - 2.4.4-2
|
|
|
|
- Rebuilt with OpenSSL 3.0.0
|
|
|
|
|
2021-09-07 18:34:03 +00:00
|
|
|
* Tue Sep 07 2021 Ryan O'Hara <rohara@redhat.com> - 2.4.4-1
|
|
|
|
- Update to 2.4.4 (#2002008)
|
|
|
|
|
2021-08-17 22:19:30 +00:00
|
|
|
* Tue Aug 17 2021 Ryan O'Hara <rohara@redhat.com> - 2.4.3-1
|
|
|
|
- Update to 2.4.3 (#1960565)
|
|
|
|
|
2021-07-22 07:30:01 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-07-14 09:24:21 +00:00
|
|
|
* Wed Jul 14 2021 Petr Pisar <ppisar@redhat.com> - 2.4.2-2
|
|
|
|
- Rebuild against pcre2-10.37 (bug #1965025)
|
|
|
|
|
2021-07-12 15:12:09 +00:00
|
|
|
* Mon Jul 12 2021 Ryan O'Hara <rohara@redhat.com> - 2.4.2-1
|
|
|
|
- Update to 2.4.2 (#1960565)
|
|
|
|
|
2021-06-03 13:42:36 +00:00
|
|
|
* Thu Jun 03 2021 Ryan O'Hara <rohara@redhat.com> - 2.4.0-5
|
|
|
|
- Fix usage of build flags
|
|
|
|
|
2021-05-17 16:52:39 +00:00
|
|
|
* Mon May 17 2021 Ryan O'Hara <rohara@redhat.com> - 2.4.0-4
|
|
|
|
- Fix path of contrib/admin tools
|
|
|
|
|
2021-05-17 16:29:36 +00:00
|
|
|
* Mon May 17 2021 Ryan O'Hara <rohara@redhat.com> - 2.4.0-3
|
|
|
|
- Use SLZ instead of ZLIB
|
|
|
|
|
2021-05-17 16:06:21 +00:00
|
|
|
* Mon May 17 2021 Ryan O'Hara <rohara@redhat.com> - 2.4.0-2
|
|
|
|
- Add USE_PROMEX=1 for prometheus exporter
|
|
|
|
|
2021-05-17 15:34:07 +00:00
|
|
|
* Mon May 17 2021 Ryan O'Hara <rohara@redhat.com> - 2.4.0-1
|
|
|
|
- Update to 2.4.0 (#1960565)
|
|
|
|
|
2021-04-26 15:34:46 +00:00
|
|
|
* Mon Apr 26 2021 Ryan O'Hara <rohara@redhat.com> - 2.3.10-1
|
|
|
|
- Update to 2.3.10 (#1953018)
|
|
|
|
|
2021-04-06 17:16:54 +00:00
|
|
|
* Tue Apr 06 2021 Ryan O'Hara <rohara@redhat.com> - 2.3.9-1
|
2021-04-06 17:28:13 +00:00
|
|
|
- Update to 2.3.9 (#1934647)
|
2021-04-06 17:16:54 +00:00
|
|
|
|
2021-03-02 15:13:39 +00:00
|
|
|
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.3.5-3
|
|
|
|
- Rebuilt for updated systemd-rpm-macros
|
|
|
|
See https://pagure.io/fesco/issue/2583.
|
|
|
|
|
2021-02-08 18:36:59 +00:00
|
|
|
* Mon Feb 08 2021 Ryan O'Hara <rohara@redhat.com> - 2.3.5-2
|
|
|
|
- Fix source URL
|
|
|
|
|
2021-02-08 17:46:38 +00:00
|
|
|
* Mon Feb 08 2021 Ryan O'Hara <rohara@redhat.com> - 2.3.5-1
|
|
|
|
- Update to 2.3.5 (#1925774)
|
|
|
|
|
2021-01-26 13:21:43 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2021-01-14 19:25:18 +00:00
|
|
|
* Thu Jan 14 2021 Ryan O'Hara <rohara@redhat.com> - 2.3.4-1
|
|
|
|
- Update to 2.3.4 (#1914447)
|
|
|
|
|
2020-12-08 18:30:57 +00:00
|
|
|
* Tue Dec 08 2020 Ryan O'Hara <rohara@redhat.com> - 2.3.2-1
|
|
|
|
- Update to 2.3.2 (#1894994)
|
|
|
|
|
2020-10-01 15:42:00 +00:00
|
|
|
* Thu Oct 01 2020 Ryan O'Hara <rohara@redhat.com> - 2.2.4-1
|
|
|
|
- Update to 2.2.4 (#1883742)
|
|
|
|
|
2020-09-17 17:07:14 +00:00
|
|
|
* Thu Sep 17 2020 Ryan O'Hara <rohara@redhat.com> - 2.2.3-2
|
2020-09-17 15:39:30 +00:00
|
|
|
- Fix build for late loading of libgcc_s
|
|
|
|
|
2020-09-14 19:26:07 +00:00
|
|
|
* Mon Sep 14 2020 Ryan O'Hara <rohara@redhat.com> - 2.2.3-1
|
|
|
|
- Update to 2.2.3 (#1876932)
|
|
|
|
|
2020-07-31 18:05:26 +00:00
|
|
|
* Fri Jul 31 2020 Ryan O'Hara <rohara@redhat.com> - 2.2.2-1
|
|
|
|
- Update to 2.2.2 (#1862400)
|
|
|
|
|
2020-07-27 13:03:42 +00:00
|
|
|
* Mon Jul 27 2020 Ryan O'Hara <rohara@redhat.com> - 2.2.1-1
|
|
|
|
- Update to 2.2.1 (#1859846)
|
|
|
|
|
2020-07-15 15:19:37 +00:00
|
|
|
* Wed Jul 15 2020 Ryan O'Hara <rohara@redhat.com> - 2.2.0-3
|
|
|
|
- Update systemd service file
|
|
|
|
|
2020-07-10 19:51:22 +00:00
|
|
|
* Fri Jul 10 2020 Tom Callaway <spot@fedoraproject.org> - 2.2.0-2
|
2020-07-15 15:19:37 +00:00
|
|
|
- Fix build against lua 5.4
|
2020-07-10 19:51:22 +00:00
|
|
|
|
2020-07-15 15:19:37 +00:00
|
|
|
* Thu Jul 09 2020 Ryan O'Hara <rohara@redhat.com> - 2.2.0-1
|
2020-07-10 15:42:55 +00:00
|
|
|
- Update to 2.2.0 (#1854519)
|
|
|
|
|
2020-06-15 17:44:58 +00:00
|
|
|
* Mon Jun 15 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.7-1
|
|
|
|
- Update to 2.1.7 (#1845001)
|
|
|
|
|
2020-06-08 14:32:00 +00:00
|
|
|
* Mon Jun 08 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.6-1
|
|
|
|
- Update to 2.1.6 (#1845001)
|
|
|
|
|
2020-06-01 19:09:08 +00:00
|
|
|
* Mon Jun 01 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.5-1
|
|
|
|
- Update to 2.1.5 (#1841837)
|
|
|
|
|
2020-04-02 17:53:50 +00:00
|
|
|
* Thu Apr 02 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.4-1
|
|
|
|
- Update to 2.1.4 (CVE-2010-11100, #1820200)
|
|
|
|
|
2020-03-16 19:04:40 +00:00
|
|
|
* Mon Mar 16 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.3-2
|
|
|
|
- Fix invalid element address calculation (#1801109)
|
|
|
|
|
2020-02-12 23:45:27 +00:00
|
|
|
* Wed Feb 12 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.3-1
|
|
|
|
- Update to 2.1.3 (#1802233)
|
|
|
|
|
2020-01-29 04:07:08 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-02 15:08:58 +00:00
|
|
|
* Thu Jan 02 2020 Ryan O'Hara <rohara@redhat.com> - 2.1.2-1
|
2020-01-02 15:01:24 +00:00
|
|
|
- Update to 2.1.2 (#1782472)
|
|
|
|
|
2019-11-25 19:48:02 +00:00
|
|
|
* Mon Nov 25 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.10-1
|
|
|
|
- Update to 2.0.10 (#1772961)
|
|
|
|
|
2019-11-06 19:15:40 +00:00
|
|
|
* Wed Nov 06 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.8-1
|
|
|
|
- Update to 2.0.8 (#1764483)
|
|
|
|
|
2019-10-21 14:55:46 +00:00
|
|
|
* Mon Oct 21 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.7-2
|
|
|
|
- Build with Prometheus exporter service (#1755839)
|
|
|
|
|
2019-10-21 14:46:33 +00:00
|
|
|
* Mon Oct 21 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.7-1
|
|
|
|
- Update to 2.0.7 (#1742544)
|
|
|
|
|
2019-09-13 17:18:27 +00:00
|
|
|
* Fri Sep 13 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.6-1
|
|
|
|
- Update to 2.0.6 (#1742544)
|
|
|
|
|
2019-08-19 18:58:09 +00:00
|
|
|
* Mon Aug 19 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.5-1
|
|
|
|
- Update to 2.0.5 (#1742544)
|
|
|
|
|
2019-07-30 15:22:36 +00:00
|
|
|
* Tue Jul 30 2019 Ryan O'Hara <rohara@redhat.com> - 2.0.3-1
|
|
|
|
- Update to 2.0.3 (#1690492)
|
|
|
|
|
2019-07-30 15:15:24 +00:00
|
|
|
* Tue Jul 30 2019 Ryan O'Hara <rohara@redhat.com> - 1.8.20-3
|
|
|
|
- Build with PCRE2 (#1669217)
|
|
|
|
|
2019-07-25 08:16:46 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.20-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-05-17 20:20:38 +00:00
|
|
|
* Fri May 17 2019 Ryan O'Hara <rohara@redhat.com> - 1.8.20-1
|
|
|
|
- Update to 1.8.20
|
|
|
|
|
2019-02-13 20:04:03 +00:00
|
|
|
* Wed Feb 13 2019 Ryan O'Hara <rohara@redhat.com> - 1.8.19-1
|
|
|
|
- Update to 1.8.19
|
|
|
|
|
2019-02-01 02:06:31 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.17-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2019-01-24 15:25:03 +00:00
|
|
|
* Thu Jan 24 2019 Petr Pisar <ppisar@redhat.com> - 1.8.17-3
|
|
|
|
- Rebuild against patched libpcreposix library (bug #1667614)
|
|
|
|
|
2019-01-14 18:03:40 +00:00
|
|
|
* Mon Jan 14 2019 Björn Esser <besser82@fedoraproject.org> - 1.8.17-2
|
|
|
|
- Rebuilt for libcrypt.so.2 (#1666033)
|
|
|
|
|
2019-01-09 16:14:30 +00:00
|
|
|
* Wed Jan 09 2019 Ryan O'Hara <rohara@redhat.com> - 1.8.17-1
|
|
|
|
- Update to 1.8.17
|
|
|
|
- Fix handling of priority flag in HEADERS frame in HTTP/2 decoder (CVE-2018-20615)
|
|
|
|
|
2019-01-09 16:10:45 +00:00
|
|
|
* Sat Dec 22 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.16-1
|
|
|
|
- Update to 1.8.16
|
|
|
|
|
2018-12-13 16:37:59 +00:00
|
|
|
* Thu Dec 13 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.15-1
|
|
|
|
- Update to 1.8.15
|
|
|
|
- Fix denial of service attack via infinite recursion (CVE-2018-20103, #1658881)
|
|
|
|
- Fix out-of-bound reads in dns_validate_dns_response (CVE-2018-20102, #1658882)
|
|
|
|
|
2018-12-01 19:59:26 +00:00
|
|
|
* Sat Dec 01 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.14-2
|
|
|
|
- Use of crpyt() is not thread safe (#1643941)
|
|
|
|
|
2018-09-20 16:17:33 +00:00
|
|
|
* Thu Sep 20 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.14-1
|
|
|
|
- Update to 1.8.14 (#1610066)
|
|
|
|
|
2018-08-20 13:52:21 +00:00
|
|
|
* Mon Aug 20 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.13-1
|
|
|
|
- Update to 1.8.13 (#1610066)
|
|
|
|
|
2018-08-16 16:51:26 +00:00
|
|
|
* Thu Aug 16 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.12-4
|
|
|
|
- Add BuildRequires gcc (#1604308)
|
|
|
|
|
2018-07-13 04:52:00 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.12-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-10 15:37:31 +00:00
|
|
|
* Tue Jul 10 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.12-2
|
|
|
|
- Fix ownership of /var/lib/haproxy/ to avoid selinux DAC override errors (#1597076)
|
|
|
|
|
2018-06-28 16:52:43 +00:00
|
|
|
* Thu Jun 28 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.12-1
|
|
|
|
- Update to 1.8.12 (#1580036)
|
|
|
|
|
2018-06-27 16:44:18 +00:00
|
|
|
* Wed Jun 27 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.11-1
|
|
|
|
- Update to 1.8.11 (#1580036)
|
|
|
|
|
2018-06-27 16:41:53 +00:00
|
|
|
* Mon Jun 25 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.10-1
|
|
|
|
- Update to 1.8.10 (#1580036)
|
|
|
|
|
2018-06-27 16:39:31 +00:00
|
|
|
* Mon May 21 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.9-1
|
|
|
|
- Update to 1.8.9 (#1580036)
|
|
|
|
|
2018-05-10 13:24:00 +00:00
|
|
|
* Thu May 10 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.8-2
|
|
|
|
- Build with USE_GETADDRINFO option
|
|
|
|
|
2018-04-19 15:42:59 +00:00
|
|
|
* Thu Apr 19 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.8-1
|
|
|
|
- Update to 1.8.8 (#1560121)
|
2018-05-10 13:24:00 +00:00
|
|
|
|
2018-04-19 14:27:42 +00:00
|
|
|
* Mon Apr 09 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.7-1
|
|
|
|
- Update to 1.8.7 (#1560121)
|
|
|
|
|
2018-04-19 14:23:53 +00:00
|
|
|
* Fri Apr 06 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.6-1
|
|
|
|
- Update to 1.8.6 (#1560121)
|
|
|
|
|
2018-04-19 14:21:37 +00:00
|
|
|
* Mon Mar 26 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.5-1
|
|
|
|
- Update to 1.8.5 (#1560121)
|
|
|
|
|
2018-02-26 16:38:49 +00:00
|
|
|
* Mon Feb 26 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.4-2
|
|
|
|
- Define USE_SYSTEMD at build time (#1549027)
|
|
|
|
|
2018-02-26 16:36:14 +00:00
|
|
|
* Mon Feb 26 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.4-1
|
|
|
|
- Update to 1.8.4 (#1543668)
|
|
|
|
|
|
|
|
* Thu Feb 08 2018 Florian Weimer <fweimer@redhat.com> - 1.8.3-5
|
2018-02-08 16:01:47 +00:00
|
|
|
- Build halog and iprange with linker flags from redhat-rpm-config
|
2018-02-08 16:05:45 +00:00
|
|
|
- Tell build to include <crypt.h>
|
2018-02-08 16:01:47 +00:00
|
|
|
|
2018-02-07 16:02:56 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.3-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-20 22:06:52 +00:00
|
|
|
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 1.8.3-3
|
|
|
|
- Rebuilt for switch to libxcrypt
|
|
|
|
|
2018-01-05 16:00:24 +00:00
|
|
|
* Fri Jan 05 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.3-2
|
|
|
|
- Remove haproxy-systemd-wrapper
|
|
|
|
|
2018-01-05 15:44:50 +00:00
|
|
|
* Fri Jan 05 2018 Ryan O'Hara <rohara@redhat.com> - 1.8.3-1
|
|
|
|
- Update to 1.8.3 (#1528829)
|
|
|
|
|
2018-01-05 15:40:37 +00:00
|
|
|
* Wed Dec 27 2017 Ryan O'Hara <rohara@redhat.com> - 1.8.2-1
|
|
|
|
- Update to 1.8.2
|
|
|
|
|
|
|
|
* Fri Dec 15 2017 Ryan O'Hara <rohara@redhat.com> - 1.8.1-1
|
2018-01-05 15:36:52 +00:00
|
|
|
- Update to 1.8.1
|
|
|
|
|
2018-01-05 15:32:17 +00:00
|
|
|
* Fri Dec 15 2017 Ryan O'Hara <rohara@redhat.com> - 1.8.0-1
|
|
|
|
- Update to 1.8.0
|
|
|
|
|
2017-09-11 16:28:01 +00:00
|
|
|
* Mon Sep 11 2017 Ryan O'Hara <rohara@redhat.com> - 1.7.9-1
|
|
|
|
- Update to 1.7.9 (#1485084)
|
|
|
|
|
2017-08-02 23:22:26 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.8-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 12:31:30 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.8-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-07-10 13:31:30 +00:00
|
|
|
* Mon Jul 10 2017 Ryan O'Hara <rohara@redhat.com> - 1.7.8-1
|
|
|
|
- Update to 1.7.8 (#1436669)
|
|
|
|
|
2017-05-01 17:04:03 +00:00
|
|
|
* Mon May 01 2017 Ryan O'Hara <rohara@redhat.com> - 1.7.3-2
|
|
|
|
- Use KillMode=mixed in systemd service file (#1447085)
|
|
|
|
|
2017-03-26 21:20:38 +00:00
|
|
|
* Sun Mar 26 2017 Ryan O'Hara <rohara@redhat.com> - 1.7.3-1
|
|
|
|
- Update to 1.7.3 (#1413276)
|
|
|
|
|
2017-02-10 12:32:36 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-18 18:23:54 +00:00
|
|
|
* Wed Jan 18 2017 Ryan O'Hara <rohara@redhat.com> - 1.7.2-1
|
|
|
|
- Update to 1.7.2 (#1413276)
|
|
|
|
|
2016-12-29 17:09:24 +00:00
|
|
|
* Thu Dec 29 2016 Ryan O'Hara <rohara@redhat.com> - 1.7.1-1
|
2016-12-29 17:07:06 +00:00
|
|
|
- Update to 1.7.1
|
|
|
|
|
2016-11-28 15:43:09 +00:00
|
|
|
* Mon Nov 28 2016 Ryan O'Hara <rohara@redhat.com> - 1.7.0-1
|
|
|
|
- Update to 1.7.0
|
|
|
|
|
2016-11-21 16:49:17 +00:00
|
|
|
* Mon Nov 21 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.10-1
|
|
|
|
- Update to 1.6.10 (#1397013)
|
|
|
|
|
2016-08-31 15:53:56 +00:00
|
|
|
* Wed Aug 31 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.9-1
|
|
|
|
- Update to 1.6.9 (#1370709)
|
|
|
|
|
2016-07-14 14:59:35 +00:00
|
|
|
* Thu Jul 14 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.7-2
|
|
|
|
- Fix main frontend in default config file (#1348674)
|
|
|
|
|
2016-07-14 14:56:35 +00:00
|
|
|
* Thu Jul 14 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.7-1
|
|
|
|
- Update to 1.6.7 (#1356578)
|
|
|
|
|
2016-06-28 17:43:31 +00:00
|
|
|
* Tue Jun 28 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.6-2
|
|
|
|
- Remove patch for CVE-2016-5360
|
|
|
|
|
2016-06-28 17:30:50 +00:00
|
|
|
* Tue Jun 28 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.6-1
|
|
|
|
- Update to 1.6.6 (#1350426)
|
|
|
|
|
2016-06-15 14:23:33 +00:00
|
|
|
* Wed Jun 15 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.5-3
|
|
|
|
- Fix reqdeny causing random crashes (CVE-2016-5360, #1346672)
|
|
|
|
|
2016-06-03 15:50:16 +00:00
|
|
|
* Fri Jun 03 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.5-2
|
|
|
|
- Utilize system-wide crypto-policies (#1256253)
|
|
|
|
|
2016-05-23 13:58:54 +00:00
|
|
|
* Mon May 23 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.5-1
|
|
|
|
- Update to 1.6.5 (#1317313)
|
|
|
|
|
2016-02-03 23:41:13 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2016-01-20 23:23:48 +00:00
|
|
|
* Wed Jan 20 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.3-1
|
|
|
|
- Update to 1.6.3 (#1276288)
|
|
|
|
|
2015-11-18 18:35:45 +00:00
|
|
|
* Wed Nov 18 2015 Ryan O'Hara <rohara@redhat.com> - 1.6.2-3
|
|
|
|
- Enable Lua support
|
|
|
|
|
2015-11-03 19:04:50 +00:00
|
|
|
* Tue Nov 03 2015 Ryan O'Hara <rohara@redhat.com> - 1.6.2-2
|
2015-11-03 17:32:12 +00:00
|
|
|
- Update to 1.6.2 (#1276288)
|
|
|
|
|
2015-10-30 08:34:23 +00:00
|
|
|
* Fri Oct 30 2015 Ryan O'Hara <rohara@redhat.com> - 1.6.1-1
|
|
|
|
- Update to 1.6.1 (#1276288)
|
|
|
|
|
2015-07-06 12:21:57 +00:00
|
|
|
* Mon Jul 06 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.14-1
|
|
|
|
- Update to 1.5.14 (CVE-2015-3281, #1239181)
|
|
|
|
|
2015-06-26 15:06:14 +00:00
|
|
|
* Fri Jun 26 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.13-1
|
|
|
|
- Update to 1.5.13 (#1236056)
|
|
|
|
|
2015-06-17 10:17:27 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.12-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-05-05 14:25:45 +00:00
|
|
|
* Tue May 05 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.12-2
|
|
|
|
- Remove unused patches
|
|
|
|
|
2015-05-05 13:56:25 +00:00
|
|
|
* Tue May 05 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.12-1
|
|
|
|
- Update to 1.5.12 (#1217922)
|
|
|
|
|
2015-03-04 21:24:54 +00:00
|
|
|
* Wed Mar 04 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-4
|
|
|
|
- Rework systemd service and sysconfig file
|
|
|
|
|
2015-02-11 17:57:34 +00:00
|
|
|
* Wed Feb 11 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-3
|
|
|
|
- Add sysconfig file
|
|
|
|
|
2015-02-10 16:29:03 +00:00
|
|
|
* Tue Feb 10 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-2
|
|
|
|
- Add tcp-ut bind option to set TCP_USER_TIMEOUT (#1190783)
|
|
|
|
|
2015-02-01 16:58:11 +00:00
|
|
|
* Sun Feb 01 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-1
|
|
|
|
- Update to 1.5.11 (#1188029)
|
|
|
|
|
2015-01-05 14:51:39 +00:00
|
|
|
* Mon Jan 05 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.10-1
|
|
|
|
- Update to 1.5.10
|
|
|
|
|
2014-12-01 15:34:43 +00:00
|
|
|
* Mon Dec 01 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.9-1
|
|
|
|
- Update to 1.5.9
|
|
|
|
|
2014-11-01 14:07:19 +00:00
|
|
|
* Sat Nov 01 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.8-1
|
|
|
|
- Update to 1.5.8
|
|
|
|
|
2014-10-31 01:20:44 +00:00
|
|
|
* Thu Oct 30 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.7-1
|
|
|
|
- Update to 1.5.7
|
|
|
|
|
2014-10-20 17:57:21 +00:00
|
|
|
* Mon Oct 20 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.6-1
|
|
|
|
- Update to 1.5.6
|
|
|
|
|
2014-10-08 12:46:34 +00:00
|
|
|
* Wed Oct 08 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.5-1
|
|
|
|
- Update to 1.5.5
|
|
|
|
|
2014-09-02 22:02:31 +00:00
|
|
|
* Tue Sep 02 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.4-1
|
2014-09-02 22:01:27 +00:00
|
|
|
- Update to 1.5.4
|
|
|
|
|
2014-08-16 20:12:22 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-08-06 18:07:29 +00:00
|
|
|
* Wed Aug 06 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.3-2
|
|
|
|
- Use haproxy-systemd-wrapper in service file (#1126955)
|
|
|
|
|
2014-07-25 20:28:24 +00:00
|
|
|
* Fri Jul 25 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.3-1
|
|
|
|
- Update to 1.5.3
|
|
|
|
|
2014-07-15 15:34:14 +00:00
|
|
|
* Tue Jul 15 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.2-1
|
|
|
|
- Update to 1.5.2
|
|
|
|
|
2014-06-24 21:28:57 +00:00
|
|
|
* Tue Jun 24 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.1-1
|
|
|
|
- Update to 1.5.1
|
|
|
|
|
2014-06-20 04:32:21 +00:00
|
|
|
* Thu Jun 19 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.0-2
|
|
|
|
- Build with zlib and openssl support
|
|
|
|
|
2014-06-20 03:42:30 +00:00
|
|
|
* Thu Jun 19 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.0-1
|
|
|
|
- Update to 1.5.0
|
|
|
|
|
2014-06-07 19:46:42 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.25-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-03-27 23:56:39 +00:00
|
|
|
* Thu Mar 27 2014 Ryan O'Hara <rohara@redhat.com> - 1.4.25-1
|
|
|
|
- Update to 1.4.25
|
|
|
|
|
2013-08-03 17:28:39 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.24-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-06-17 18:25:03 +00:00
|
|
|
* Mon Jun 17 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.24-1
|
|
|
|
- Update to 1.4.24 (CVE-2013-2174, #975160)
|
|
|
|
|
2013-04-30 14:23:17 +00:00
|
|
|
* Tue Apr 30 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.23-3
|
|
|
|
- Build with PIE flags (#955182)
|
|
|
|
|
2013-04-22 14:55:41 +00:00
|
|
|
* Mon Apr 22 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.23-2
|
|
|
|
- Build with PIE flags (#955182)
|
|
|
|
|
2013-04-03 04:04:02 +00:00
|
|
|
* Tue Apr 02 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.23-1
|
|
|
|
- Update to 1.4.23 (CVE-2013-1912, #947697)
|
|
|
|
- Drop supplementary groups after setuid/setgid (#894626)
|
|
|
|
|
2013-02-14 00:59:17 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.22-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-10-12 08:32:45 +00:00
|
|
|
* Fri Oct 12 2012 Robin Lee <cheeselee@fedoraproject.org> - 1.4.22-1
|
|
|
|
- Update to 1.4.22 (CVE-2012-2942, #824544)
|
|
|
|
- Use linux2628 build target
|
|
|
|
- No separate x86_64 build target for halog
|
|
|
|
- halog build honors rpmbuild optflags
|
|
|
|
- Specfile cleanup
|
|
|
|
|
2012-10-12 06:49:05 +00:00
|
|
|
* Mon Sep 17 2012 Václav Pavlín <vpavlin@redhat.com> - 1.4.20-3
|
|
|
|
- Scriptlets replaced with new systemd macros (#850143)
|
|
|
|
|
2012-07-19 12:25:51 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.20-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-04-04 01:32:14 +00:00
|
|
|
* Tue Apr 03 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.20-1
|
|
|
|
- Update to 1.4.20
|
|
|
|
|
2012-02-20 00:59:55 +00:00
|
|
|
* Sun Feb 19 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.19-4
|
|
|
|
- fix haproxy.services file
|
|
|
|
|
2012-02-20 00:29:09 +00:00
|
|
|
* Sun Feb 19 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.19-3
|
|
|
|
- Update to use systemd fixing bug #770305
|
|
|
|
|
2012-02-10 13:46:27 +00:00
|
|
|
* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> - 1.4.19-2
|
|
|
|
- Rebuild against PCRE 8.30
|
|
|
|
|
2012-01-29 18:53:55 +00:00
|
|
|
* Sun Jan 29 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.19-1
|
|
|
|
- Update to 1.4.19
|
|
|
|
|
2012-01-13 04:47:21 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.18-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-09-22 09:18:22 +00:00
|
|
|
* Thu Sep 22 2011 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.18-1
|
|
|
|
- Update to 1.4.18
|
|
|
|
|
2011-04-27 04:16:02 +00:00
|
|
|
* Tue Apr 26 2011 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.15-1
|
|
|
|
- Update to 1.4.15
|
|
|
|
|
2011-02-28 04:46:01 +00:00
|
|
|
* Sun Feb 27 2011 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.11-1
|
|
|
|
- update to 1.4.11
|
|
|
|
|
2011-02-09 08:53:01 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-02-28 04:46:01 +00:00
|
|
|
* Sun Dec 12 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.9-1
|
|
|
|
- update to 1.4.9
|
|
|
|
|
2010-06-20 23:30:01 +00:00
|
|
|
* Sun Jun 20 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.8-1
|
|
|
|
- update to 1.4.8
|
|
|
|
|
2010-05-30 14:57:58 +00:00
|
|
|
* Sun May 30 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.6-1
|
|
|
|
- update to 1.4.6
|
|
|
|
|
2010-02-19 04:36:51 +00:00
|
|
|
* Thu Feb 18 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.23-1
|
|
|
|
- update to 1.3.23
|
|
|
|
|
2009-10-17 21:20:16 +00:00
|
|
|
* Sat Oct 17 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.22-1
|
|
|
|
- update to 1.3.22
|
|
|
|
- added logrotate configuration
|
|
|
|
|
2009-10-12 06:14:45 +00:00
|
|
|
* Mon Oct 12 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.21-1
|
|
|
|
- update to 1.3.21
|
|
|
|
|
2009-10-12 03:14:40 +00:00
|
|
|
* Sun Oct 11 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.20-1
|
|
|
|
- update to 1.3.20
|
|
|
|
|
|
|
|
* Sun Aug 02 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.19-1
|
2009-08-02 23:20:20 +00:00
|
|
|
- update to 1.3.19
|
|
|
|
|
2009-07-25 02:01:50 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.18-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-17 21:35:41 +00:00
|
|
|
* Sun May 17 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.18-1
|
|
|
|
- update to 1.3.18
|
|
|
|
|
|
|
|
* Sat Apr 11 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.17-1
|
2009-04-11 22:39:21 +00:00
|
|
|
- Update to 1.3.17
|
|
|
|
|
2009-02-25 03:23:51 +00:00
|
|
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.15.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-31 04:27:54 +00:00
|
|
|
* Tue Dec 30 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.15.7-1
|
|
|
|
- update to 1.3.15.7
|
|
|
|
- remove upstream patches, they are now part of source distribution
|
|
|
|
|
2008-11-22 21:08:17 +00:00
|
|
|
* Sat Nov 22 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.15.6-2
|
|
|
|
- apply upstream patches
|
|
|
|
|
2008-11-15 21:24:03 +00:00
|
|
|
* Sat Nov 15 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.15.6-1
|
|
|
|
- update to 1.3.15.6
|
|
|
|
- use new build targets from upstream
|
|
|
|
- add in recommended build options for x86 from upstream
|
|
|
|
|
2008-06-29 03:55:49 +00:00
|
|
|
* Sat Jun 28 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.6-1
|
|
|
|
- update to 1.3.14.6
|
|
|
|
- remove gcc 4.3 patch, it has been applied upstream
|
|
|
|
- remove MIT license as that code has been removed from upstream
|
|
|
|
|
2008-04-15 04:36:36 +00:00
|
|
|
* Mon Apr 14 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.4-1
|
|
|
|
- update to 1.3.14.4
|
|
|
|
|
2008-03-16 07:13:13 +00:00
|
|
|
* Sun Mar 16 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.3-1
|
|
|
|
- update to 1.3.14.3
|
|
|
|
|
2008-03-01 20:43:21 +00:00
|
|
|
* Sat Mar 01 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.2-4
|
|
|
|
- apply the gcc 4.3 patch to the build process
|
|
|
|
|
2008-03-01 20:28:08 +00:00
|
|
|
* Sat Mar 01 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.2-3
|
|
|
|
- fix gcc 4.3 bug [#434144]
|
|
|
|
- update init script to properly reload configuration
|
|
|
|
|
2008-02-19 06:17:56 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.3.14.2-2
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-01-21 00:49:31 +00:00
|
|
|
* Sun Jan 20 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.2-1
|
|
|
|
- update to 1.3.14.2
|
|
|
|
- update make flags that changed with this upstream release
|
|
|
|
- added man page installation
|
|
|
|
|
2007-12-16 07:44:40 +00:00
|
|
|
* Sun Dec 16 2007 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14-1
|
|
|
|
- update to 1.3.14
|
|
|
|
|
2007-11-06 05:27:39 +00:00
|
|
|
* Mon Nov 05 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.4-1
|
|
|
|
- update to 1.3.12.4
|
|
|
|
|
2007-11-01 16:51:48 +00:00
|
|
|
* Thu Nov 01 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.3-1
|
|
|
|
- update to 1.3.12.3
|
2007-11-06 05:27:39 +00:00
|
|
|
|
2007-11-01 16:51:48 +00:00
|
|
|
* Fri Sep 21 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.2-3
|
|
|
|
- fix init script 'reload' task
|
|
|
|
|
2007-09-21 17:26:59 +00:00
|
|
|
* Thu Sep 20 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.2-2
|
|
|
|
- update License field
|
|
|
|
|
|
|
|
* Thu Sep 20 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.2-1
|
|
|
|
- update to 1.3.12.2
|
|
|
|
- remove the upstream patch
|
|
|
|
|
|
|
|
* Tue Sep 18 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.1-1
|
|
|
|
- switch to 1.3.12.1 branch
|
|
|
|
- add patch from upstream with O'Reilly licensing updates.
|
|
|
|
- convert ISO-8859-1 doc files to UTF-8
|
|
|
|
|
|
|
|
* Sat Mar 24 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.2.17-2
|
|
|
|
- addition of haproxy user
|
|
|
|
- add license information
|
|
|
|
|
|
|
|
* Fri Mar 23 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.2.17-1
|
|
|
|
- initial packaging
|