3921f5
%define __perl_requires %{SOURCE98}
3921f5
3921f5
Name:     squid
3921f5
Version:  4.11
3921f5
Release:  1%{?dist}
3921f5
Summary:  The Squid proxy caching server
3921f5
Epoch:    7
3921f5
# See CREDITS for breakdown of non GPLv2+ code
3921f5
License:  GPLv2+ and (LGPLv2+ and MIT and BSD and Public Domain)
3921f5
URL:      http://www.squid-cache.org
3921f5
Source0:  http://www.squid-cache.org/Versions/v4/squid-%{version}.tar.xz
3921f5
Source1:  http://www.squid-cache.org/Versions/v4/squid-%{version}.tar.xz.asc
3921f5
Source2:  squid.logrotate
3921f5
Source3:  squid.sysconfig
3921f5
Source4:  squid.pam
3921f5
Source5:  squid.nm
3921f5
Source6:  squid.service
3921f5
Source7:  cache_swap.sh
3921f5
3921f5
Source98: perl-requires-squid.sh
3921f5
3921f5
# Upstream patches
3921f5
3921f5
# Backported patches
3921f5
3921f5
# Local patches
3921f5
# Applying upstream patches first makes it less likely that local patches
3921f5
# will break upstream ones.
3921f5
Patch201: squid-4.11-config.patch
3921f5
Patch202: squid-4.11-location.patch
3921f5
Patch203: squid-4.11-perlpath.patch
3921f5
Patch204: squid-4.11-include-guards.patch
3921f5
Patch205: squid-4.11-large-acl.patch
3921f5
# https://bugzilla.redhat.com/show_bug.cgi?id=980511
3921f5
Patch206: squid-4.11-active-ftp.patch
3921f5
# https://github.com/squid-cache/squid/commit/c26cd1cb6a60ff196ef13c00e82576d3bfeb2e30
3921f5
Patch207: squid-4.11-systemd.patch
3921f5
3921f5
# Security fixes
3921f5
3921f5
Requires: bash >= 2.0
3921f5
Requires(pre): shadow-utils
3921f5
Requires(post): systemd
3921f5
Requires(preun): systemd
3921f5
Requires(postun): systemd
3921f5
# squid_ldap_auth and other LDAP helpers require OpenLDAP
3921f5
BuildRequires: openldap-devel
3921f5
# squid_pam_auth requires PAM development libs
3921f5
BuildRequires: pam-devel
3921f5
# SSL support requires OpenSSL
3921f5
BuildRequires: openssl-devel
3921f5
# squid_kerb_aut requires Kerberos development libs
3921f5
BuildRequires: krb5-devel
3921f5
# time_quota requires DB
3921f5
BuildRequires: libdb-devel
3921f5
# ESI support requires Expat & libxml2
3921f5
BuildRequires: expat-devel libxml2-devel
3921f5
# TPROXY requires libcap, and also increases security somewhat
3921f5
BuildRequires: libcap-devel
3921f5
# eCAP support
3921f5
BuildRequires: libecap-devel
3921f5
#ip_user helper requires
3921f5
BuildRequires: gcc-c++
3921f5
BuildRequires: libtool libtool-ltdl-devel
3921f5
BuildRequires: perl-generators
3921f5
# For test suite
3921f5
BuildRequires: pkgconfig(cppunit)
3921f5
BuildRequires: autoconf
3921f5
# systemd notify
3921f5
BuildRequires: systemd-devel
3921f5
3921f5
%description
3921f5
Squid is a high-performance proxy caching server for Web clients,
3921f5
supporting FTP, gopher, and HTTP data objects. Unlike traditional
3921f5
caching software, Squid handles all requests in a single,
3921f5
non-blocking, I/O-driven process. Squid keeps meta data and especially
3921f5
hot objects cached in RAM, caches DNS lookups, supports non-blocking
3921f5
DNS lookups, and implements negative caching of failed requests.
3921f5
3921f5
Squid consists of a main server program squid, a Domain Name System
3921f5
lookup program (dnsserver), a program for retrieving FTP data
3921f5
(ftpget), and some management and client tools.
3921f5
3921f5
%prep
3921f5
%setup -q
3921f5
3921f5
# Upstream patches
3921f5
3921f5
# Backported patches
3921f5
3921f5
# Local patches
3921f5
%patch201 -p1 -b .config
3921f5
%patch202 -p1 -b .location
3921f5
%patch203 -p1 -b .perlpath
3921f5
%patch204 -p1 -b .include-guards
3921f5
%patch205 -p1 -b .large_acl
3921f5
%patch206 -p1 -b .active-ftp
3921f5
%patch207 -p1 -b .systemd
3921f5
3921f5
# https://bugzilla.redhat.com/show_bug.cgi?id=1679526
3921f5
# Patch in the vendor documentation and used different location for documentation
3921f5
sed -i 's|@SYSCONFDIR@/squid.conf.documented|%{_pkgdocdir}/squid.conf.documented|' src/squid.8.in
3921f5
3921f5
%build
3921f5
# cppunit-config patch changes configure.ac
3921f5
autoconf
3921f5
3921f5
# NIS helper has been removed because of the following bug
3921f5
# https://bugzilla.redhat.com/show_bug.cgi?id=1531540
3921f5
%configure \
3921f5
   --libexecdir=%{_libdir}/squid \
3921f5
   --datadir=%{_datadir}/squid \
3921f5
   --sysconfdir=%{_sysconfdir}/squid \
3921f5
   --with-logdir='%{_localstatedir}/log/squid' \
3921f5
   --with-pidfile='%{_localstatedir}/run/squid.pid' \
3921f5
   --disable-dependency-tracking \
3921f5
   --enable-eui \
3921f5
   --enable-follow-x-forwarded-for \
3921f5
   --enable-auth \
3921f5
   --enable-auth-basic="DB,fake,getpwnam,LDAP,NCSA,PAM,POP3,RADIUS,SASL,SMB,SMB_LM" \
3921f5
   --enable-auth-ntlm="SMB_LM,fake" \
3921f5
   --enable-auth-digest="file,LDAP" \
3921f5
   --enable-auth-negotiate="kerberos" \
3921f5
   --enable-external-acl-helpers="LDAP_group,time_quota,session,unix_group,wbinfo_group,kerberos_ldap_group" \
3921f5
   --enable-storeid-rewrite-helpers="file" \
3921f5
   --enable-cache-digests \
3921f5
   --enable-cachemgr-hostname=localhost \
3921f5
   --enable-delay-pools \
3921f5
   --enable-epoll \
3921f5
   --enable-icap-client \
3921f5
   --enable-ident-lookups \
3921f5
   %ifnarch %{power64} ia64 x86_64 s390x aarch64
3921f5
   --with-large-files \
3921f5
   %endif
3921f5
   --enable-linux-netfilter \
3921f5
   --enable-removal-policies="heap,lru" \
3921f5
   --enable-snmp \
3921f5
   --enable-ssl \
3921f5
   --enable-ssl-crtd \
3921f5
   --enable-storeio="aufs,diskd,ufs,rock" \
3921f5
   --enable-diskio \
3921f5
   --enable-wccpv2 \
3921f5
   --enable-esi \
3921f5
   --enable-ecap \
3921f5
   --with-aio \
3921f5
   --with-default-user="squid" \
3921f5
   --with-dl \
3921f5
   --with-openssl \
3921f5
   --with-pthreads \
3921f5
   --disable-arch-native \
3921f5
   --disable-security-cert-validators \
3921f5
   --with-swapdir=%{_localstatedir}/spool/squid
3921f5
3921f5
%make_build
3921f5
3921f5
%check
3921f5
make check
3921f5
	
3921f5
%install
3921f5
%make_install
3921f5
3921f5
echo "
3921f5
#
3921f5
# This is %{_sysconfdir}/httpd/conf.d/squid.conf
3921f5
#
3921f5
3921f5
ScriptAlias /Squid/cgi-bin/cachemgr.cgi %{_libdir}/squid/cachemgr.cgi
3921f5
3921f5
# Only allow access from localhost by default
3921f5
<Location /Squid/cgi-bin/cachemgr.cgi>
3921f5
 Require local
3921f5
 # Add additional allowed hosts as needed
3921f5
 # Require host example.com
3921f5
</Location>" > $RPM_BUILD_ROOT/squid.httpd.tmp
3921f5
3921f5
3921f5
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d
3921f5
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
3921f5
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/pam.d
3921f5
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf.d/
3921f5
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/NetworkManager/dispatcher.d
3921f5
mkdir -p $RPM_BUILD_ROOT%{_unitdir}
3921f5
mkdir -p $RPM_BUILD_ROOT%{_libexecdir}/squid
3921f5
install -m 644 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/squid
3921f5
install -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/squid
3921f5
install -m 644 %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/squid
3921f5
install -m 644 %{SOURCE6} $RPM_BUILD_ROOT%{_unitdir}
3921f5
install -m 755 %{SOURCE7} $RPM_BUILD_ROOT%{_libexecdir}/squid
3921f5
install -m 644 $RPM_BUILD_ROOT/squid.httpd.tmp $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf.d/squid.conf
3921f5
install -m 644 %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/NetworkManager/dispatcher.d/20-squid
3921f5
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/log/squid
3921f5
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/spool/squid
3921f5
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/run/squid
3921f5
chmod 644 contrib/url-normalizer.pl contrib/user-agents.pl
3921f5
iconv -f ISO88591 -t UTF8 ChangeLog -o ChangeLog.tmp
3921f5
mv -f ChangeLog.tmp ChangeLog
3921f5
3921f5
# install /usr/lib/tmpfiles.d/squid.conf
3921f5
mkdir -p ${RPM_BUILD_ROOT}%{_tmpfilesdir}
3921f5
cat > ${RPM_BUILD_ROOT}%{_tmpfilesdir}/squid.conf <
3921f5
# See tmpfiles.d(5) for details
3921f5
3921f5
d /run/squid 0755 squid squid - -
3921f5
EOF
3921f5
3921f5
# Move the MIB definition to the proper place (and name)
3921f5
mkdir -p $RPM_BUILD_ROOT/usr/share/snmp/mibs
3921f5
mv $RPM_BUILD_ROOT/usr/share/squid/mib.txt $RPM_BUILD_ROOT/usr/share/snmp/mibs/SQUID-MIB.txt
3921f5
3921f5
# squid.conf.documented is documentation. We ship that in doc/
3921f5
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/squid/squid.conf.documented
3921f5
3921f5
# remove unpackaged files from the buildroot
3921f5
rm -f $RPM_BUILD_ROOT%{_bindir}/{RunAccel,RunCache}
3921f5
rm -f $RPM_BUILD_ROOT/squid.httpd.tmp
3921f5
3921f5
%files
3921f5
%defattr(-,root,root,-)
3921f5
%license COPYING 
3921f5
%doc CONTRIBUTORS README ChangeLog QUICKSTART src/squid.conf.documented
3921f5
%doc contrib/url-normalizer.pl contrib/user-agents.pl
3921f5
3921f5
%{_unitdir}/squid.service
3921f5
%attr(755,root,root) %dir %{_libexecdir}/squid
3921f5
%attr(755,root,root) %{_libexecdir}/squid/cache_swap.sh
3921f5
%attr(755,root,root) %dir %{_sysconfdir}/squid
3921f5
%attr(755,root,root) %dir %{_libdir}/squid
3921f5
%attr(770,squid,root) %dir %{_localstatedir}/log/squid
3921f5
%attr(750,squid,squid) %dir %{_localstatedir}/spool/squid
3921f5
%attr(755,squid,squid) %dir %{_localstatedir}/run/squid
3921f5
3921f5
%config(noreplace) %attr(644,root,root) %{_sysconfdir}/httpd/conf.d/squid.conf
3921f5
%config(noreplace) %attr(640,root,squid) %{_sysconfdir}/squid/squid.conf
3921f5
%config(noreplace) %attr(644,root,squid) %{_sysconfdir}/squid/cachemgr.conf
3921f5
%config(noreplace) %{_sysconfdir}/squid/mime.conf
3921f5
%config(noreplace) %{_sysconfdir}/squid/errorpage.css
3921f5
%config(noreplace) %{_sysconfdir}/sysconfig/squid
3921f5
# These are not noreplace because they are just sample config files
3921f5
%config %{_sysconfdir}/squid/squid.conf.default
3921f5
%config %{_sysconfdir}/squid/mime.conf.default
3921f5
%config %{_sysconfdir}/squid/errorpage.css.default
3921f5
%config %{_sysconfdir}/squid/cachemgr.conf.default
3921f5
%config(noreplace) %{_sysconfdir}/pam.d/squid
3921f5
%config(noreplace) %{_sysconfdir}/logrotate.d/squid
3921f5
3921f5
%dir %{_datadir}/squid
3921f5
%attr(-,root,root) %{_datadir}/squid/errors
3921f5
%attr(755,root,root) %{_sysconfdir}/NetworkManager/dispatcher.d/20-squid
3921f5
%{_datadir}/squid/icons
3921f5
%{_sbindir}/squid
3921f5
%{_bindir}/squidclient
3921f5
%{_bindir}/purge
3921f5
%{_mandir}/man8/*
3921f5
%{_mandir}/man1/*
3921f5
%{_libdir}/squid/*
3921f5
%{_datadir}/snmp/mibs/SQUID-MIB.txt
3921f5
%{_tmpfilesdir}/squid.conf
3921f5
3921f5
%pre
3921f5
if ! getent group squid >/dev/null 2>&1; then
3921f5
  /usr/sbin/groupadd -g 23 squid
3921f5
fi
3921f5
3921f5
if ! getent passwd squid >/dev/null 2>&1 ; then
3921f5
  /usr/sbin/useradd -g 23 -u 23 -d /var/spool/squid -r -s /sbin/nologin squid >/dev/null 2>&1 || exit 1 
3921f5
fi
3921f5
3921f5
for i in /var/log/squid /var/spool/squid ; do
3921f5
        if [ -d $i ] ; then
3921f5
                for adir in `find $i -maxdepth 0 \! -user squid`; do
3921f5
                        chown -R squid:squid $adir
3921f5
                done
3921f5
        fi
3921f5
done
3921f5
3921f5
exit 0
3921f5
3921f5
%pretrans -p <lua>
3921f5
-- Due to a bug #447156
3921f5
paths = {"/usr/share/squid/errors/zh-cn", "/usr/share/squid/errors/zh-tw"}
3921f5
for key,path in ipairs(paths)
3921f5
do
3921f5
  st = posix.stat(path)
3921f5
  if st and st.type == "directory" then
3921f5
    status = os.rename(path, path .. ".rpmmoved")
3921f5
    if not status then
3921f5
      suffix = 0
3921f5
      while not status do
3921f5
        suffix = suffix + 1
3921f5
        status = os.rename(path .. ".rpmmoved", path .. ".rpmmoved." .. suffix)
3921f5
      end
3921f5
      os.rename(path, path .. ".rpmmoved")
3921f5
    end
3921f5
  end
3921f5
end
3921f5
3921f5
%post
3921f5
%systemd_post squid.service
3921f5
3921f5
%preun
3921f5
%systemd_preun squid.service
3921f5
3921f5
%postun
3921f5
%systemd_postun_with_restart squid.service
3921f5
3921f5
%triggerin -- samba-common
3921f5
if ! getent group wbpriv >/dev/null 2>&1 ; then
3921f5
  /usr/sbin/groupadd -g 88 wbpriv >/dev/null 2>&1 || :
3921f5
fi
3921f5
/usr/sbin/usermod -a -G wbpriv squid >/dev/null 2>&1 || \
3921f5
    chgrp squid /var/cache/samba/winbindd_privileged >/dev/null 2>&1 || :
3921f5
3921f5
3921f5
%changelog
3921f5
* Thu May 07 2020 Lubos Uhliarik <luhliari@redhat.com> - 7:4.11-1
3921f5
- new version 4.11
3921f5
- libsystemd integration
3921f5
- Resolves: #1829467 - squid:4 rebase
3921f5
- Resolves: #1828378 - CVE-2019-12521 squid:4/squid: off-by-one error in
3921f5
  addStackElement allows for a heap buffer overflow and a crash
3921f5
- Resolves: #1828377 - CVE-2019-12520 squid:4/squid: improper input validation
3921f5
  in request allows for proxy manipulation
3921f5
- Resolves: #1828375 - CVE-2019-12524 squid:4/squid: improper access restriction
3921f5
  in url_regex may lead to security bypass
3921f5
- Resolves: #1820664 - CVE-2019-18860 squid: mishandles HTML in the host
3921f5
  parameter to cachemgr.cgi which could result in squid behaving in unsecure way
3921f5
- Resolves: #1802514 - CVE-2020-8449 squid:4/squid: Improper input validation
3921f5
  issues in HTTP Request processing
3921f5
- Resolves: #1802513 - CVE-2020-8450 squid:4/squid: Buffer overflow in a Squid
3921f5
  acting as reverse-proxy
3921f5
- Resolves: #1802512 - CVE-2019-12528 squid:4/squid: Information Disclosure
3921f5
  issue in FTP Gateway
3921f5
- Resolves: #1771288 - CVE-2019-18678 squid:4/squid: HTTP Request Splitting
3921f5
  issue in HTTP message processing
3921f5
- Resolves: #1771283 - CVE-2019-18679 squid:4/squid: Information Disclosure
3921f5
  issue in HTTP Digest Authentication
3921f5
- Resolves: #1771280 - CVE-2019-18677 squid:4/squid: Cross-Site Request Forgery
3921f5
  issue in HTTP Request processing
3921f5
- Resolves: #1771275 - CVE-2019-12523 squid:4/squid: Improper input validation
3921f5
  in URI processor
3921f5
- Resolves: #1771272 - CVE-2019-18676 squid:4/squid: Buffer overflow in URI
3921f5
  processor
3921f5
- Resolves: #1771264 - CVE-2019-12526 squid:4/squid: Heap overflow issue in URN
3921f5
  processing
3921f5
- Resolves: #1738581 - CVE-2019-12529 squid: OOB read in Proxy-Authorization
3921f5
  header causes DoS
3921f5
3921f5
* Tue Apr 28 2020 Lubos Uhliarik <luhliari@redhat.com> - 7:4.4-9
3921f5
- Resolves: #1738583 - CVE-2019-12525 squid:4/squid: parsing of header
3921f5
  Proxy-Authentication leads to memory corruption
3921f5
- Resolves: #1828369 - CVE-2020-11945 squid: improper access restriction upon
3921f5
  Digest Authentication nonce replay could lead to remote code execution
3921f5
- Resolves: #1828370 - CVE-2019-12519 squid: improper check for new member in
3921f5
  ESIExpression::Evaluate allows for stack buffer overflow
3921f5
3921f5
* Fri Aug 23 2019 Lubos Uhliarik <luhliari@redhat.com> - 7:4.4-8
3921f5
- Resolves: # 1738485 - CVE-2019-12527 squid:4/squid: heap-based buffer overflow
3921f5
  in HttpHeader::getAuth
3921f5
3921f5
* Wed Jul 31 2019 Lubos Uhliarik <luhliari@redhat.com> - 7:4.4-7
3921f5
- Resolves: #1729436 - CVE-2019-13345 squid: XSS via user_name or auth parameter
3921f5
  in cachemgr.cgi
3921f5
3921f5
* Fri Jun 21 2019 Lubos Uhliarik <luhliari@redhat.com> - 7:4.4-6
3921f5
- Resolves: #1679526 - Missing detailed configuration file
3921f5
- Resolves: #1703117 - RHEL 7 to 8 fails with squid installed because dirs
3921f5
  changed to symlinks
3921f5
- Resolves: #1691741 - Squid cache_peer DNS lookup failed when not all lower
3921f5
  case
3921f5
- Resolves: #1683527 - "Reloading" message on a fresh reboot after enabling
3921f5
  squid
3921f5
3921f5
* Tue Dec 11 2018 Lubos Uhliarik <luhliari@redhat.com> - 7:4.4-4
3921f5
- Resolves: #1612524 - Man page scan results for squid 
3921f5
3921f5
* Tue Dec 11 2018 Lubos Uhliarik <luhliari@redhat.com> - 7:4.4-3
3921f5
- Resolves: #1642384 - squid doesn't work with active ftp
3921f5
3921f5
* Tue Dec 11 2018 Lubos Uhliarik <luhliari@redhat.com> - 7:4.4-2
3921f5
- Resolves: #1657847 - Unable to start Squid in Selinux Enforcing mode
3921f5
3921f5
* Mon Dec 10 2018 Lubos Uhliarik <luhliari@redhat.com> - 7:4.4-1
3921f5
- Resolves: #1656871 - squid rebase to 4.4
3921f5
- Resolves: #1645148 - CVE-2018-19131 squid: Cross-Site Scripting when
3921f5
  generating HTTPS response messages about TLS errors
3921f5
- Resolves: #1645156 - CVE-2018-19132 squid: Memory leak in SNMP query
3921f5
  rejection code
3921f5
3921f5
* Mon Aug 06 2018 Lubos Uhliarik <luhliari@redhat.com> - 7:4.2-1
3921f5
- new version 4.2
3921f5
- enable back strict error checking
3921f5
3921f5
* Wed Aug 01 2018 Luboš Uhliarik <luhliari@redhat.com> - 7:4.1-1
3921f5
- new version 4.1
3921f5
3921f5
* Mon Jun 04 2018 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.23-5
3921f5
- Resolves: #1585617 - Build against libdb only instead of libdb4
3921f5
- disabled strict checking for now (squid can not be built with GCC8)
3921f5
3921f5
* Mon Apr 16 2018 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.23-4
3921f5
- Resolves: #1566055 - module squid cannot be installed due to missing
3921f5
  perl(Crypt::OpenSSL::X509)
3921f5
3921f5
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 7:4.0.23-3
3921f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
3921f5
3921f5
* Tue Jan 23 2018 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.23-2
3921f5
- Resolves: #1481195 - squid loses some REs when optimising ACLs
3921f5
3921f5
* Tue Jan 23 2018 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.23-1
3921f5
- new version 4.0.23
3921f5
3921f5
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 7:4.0.22-2
3921f5
- Rebuilt for switch to libxcrypt
3921f5
3921f5
* Wed Jan 17 2018 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.22-1
3921f5
- new version 4.0.22
3921f5
- Removed NIS helper (#1531540)
3921f5
3921f5
* Mon Aug 07 2017 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.21-1
3921f5
- new version 4.0.21
3921f5
3921f5
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7:4.0.20-4
3921f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
3921f5
3921f5
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7:4.0.20-3
3921f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
3921f5
3921f5
* Mon Jun 05 2017 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.20-2
3921f5
- related: new version 4.0.20
3921f5
3921f5
* Mon Jun 05 2017 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.20-1
3921f5
- new version 4.0.20
3921f5
3921f5
* Tue Apr 25 2017 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.19-4
3921f5
- Related: #1445255 - Squid SMP Mode Fails
3921f5
3921f5
* Tue Apr 25 2017 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.19-3
3921f5
- Resolves: #1445255 - Squid SMP Mode Fails
3921f5
3921f5
* Tue Apr 18 2017 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.19-2
3921f5
- Resolves: #1442375 - squid helper squid_kerb_ldap not included in package
3921f5
3921f5
* Mon Apr 03 2017 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.19-1
3921f5
- new version 4.0.19
3921f5
3921f5
* Thu Mar 30 2017 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.18-1
3921f5
- new version 4.0.18
3921f5
3921f5
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 7:4.0.17-2
3921f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
3921f5
3921f5
* Mon Dec 19 2016 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.17-1
3921f5
- new version 4.0.17
3921f5
3921f5
* Mon Oct 31 2016 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.16-1
3921f5
- new version 4.0.16
3921f5
3921f5
* Mon Oct 10 2016 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.15-1
3921f5
- new version 4.0.15
3921f5
3921f5
* Mon Sep 12 2016 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.14-1
3921f5
- new version 4.0.14
3921f5
3921f5
* Tue Aug 09 2016 Luboš Uhliarik <luhliari@redhat.com> - 7:4.0.13-1
3921f5
- new version 4.0.13
3921f5
3921f5
* Mon Jul 11 2016 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:4.0.11-1
3921f5
- new version 4.0.11
3921f5
3921f5
* Wed May 18 2016 Luboš Uhliarik <luhliari@redhat.com> - 7:3.5.19-2
3921f5
- Resolves: #1336993 - Mistyped command in dirname
3921f5
  /etc/NetworkManager/dispatcher.d/20-squid
3921f5
3921f5
* Tue May 10 2016 Luboš Uhliarik <luhliari@redhat.com> - 7:3.5.19-1
3921f5
- new version 3.5.19
3921f5
3921f5
* Thu May 05 2016 Luboš Uhliarik <luhliari@redhat.com> - 7:3.5.17-1
3921f5
- new version 3.5.17
3921f5
3921f5
* Tue Apr 05 2016 Luboš Uhliarik <luhliari@redhat.com> - 7:3.5.16-1
3921f5
- new version 3.5.16
3921f5
3921f5
* Tue Mar 01 2016 Luboš Uhliarik <luhliari@redhat.com> - 7:3.5.15-1
3921f5
- new version 3.5.15
3921f5
- Resolves: #1311585 - squid: Multiple Denial of Service issues in
3921f5
  HTTP Response processing
3921f5
- Resolves: #1312267 - squid: SQUID-2016_2 advisory, multiple DoS issues
3921f5
3921f5
* Tue Mar 01 2016 Luboš Uhliarik <luhliari@redhat.com> - 7:3.5.13-3
3921f5
- Resolves: #1308866 - CVE-2016-2390 squid: incorrect server error 
3921f5
  handling resulting in denial of service
3921f5
3921f5
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 7:3.5.13-2
3921f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
3921f5
3921f5
* Fri Jan 08 2016 Luboš Uhliarik <luhliari@redhat.com> - 7:3.5.13-1
3921f5
- new version 3.5.13
3921f5
3921f5
* Thu Dec 03 2015 Luboš Uhliarik <luhliari@redhat.com> - 7:3.5.12-2
3921f5
- new version 3.5.12
3921f5
3921f5
* Fri Sep 25 2015 Luboš Uhliarik <luhliari@redhat.com> - 7:3.5.9-3
3921f5
- Resolves: #1231992
3921f5
3921f5
* Fri Sep 25 2015 Luboš Uhliarik <luhliari@redhat.com> - 7:3.5.9-2
3921f5
- Resolves: #1230501
3921f5
3921f5
* Thu Sep 24 2015 Luboš Uhliarik <luhliari@redhat.com> - 7:3.5.9-1
3921f5
- new version 3.5.9
3921f5
- added Patch, which fixes problem with include guards 
3921f5
3921f5
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7:3.5.3-5
3921f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
3921f5
3921f5
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 7:3.5.3-4
3921f5
- Rebuilt for GCC 5 C++11 ABI change
3921f5
3921f5
* Tue Mar 31 2015 Pavel Å imerda <psimerda@redhat.com> - 7:3.5.3-3
3921f5
- Fix build by removing eDirectory support
3921f5
3921f5
* Tue Mar 31 2015 Pavel Å imerda <psimerda@redhat.com> - 7:3.5.3-2
3921f5
- clean up defunct patches
3921f5
3921f5
* Tue Mar 31 2015 Pavel Å imerda <psimerda@redhat.com> - 7:3.5.3-1
3921f5
- new version 3.5.3
3921f5
3921f5
* Mon Mar 23 2015 Pavel Å imerda <psimerda@redhat.com> - 7:3.5.2-4
3921f5
- Resolves: #1145235, #1173488, #1176318 – revert a couple of recent changes
3921f5
3921f5
* Sun Mar 15 2015 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.5.2-3
3921f5
- Correct execmod build issue caused by libtool confusion on
3921f5
  required compiler flags
3921f5
3921f5
* Sun Mar 15 2015 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.5.2-2
3921f5
- Update to latest upstream version 3.5.2
3921f5
- Remove deprecated (and renamed) squid_msnt_auth basic auth helper. Only
3921f5
  performs LM authentication and not considered useful in todays networks.
3921f5
3921f5
* Wed Feb 25 2015 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.4.12-1
3921f5
- Update to latest upstream version 3.4.12
3921f5
- bug #1173946: Disable -march=native compile time optimization, use Fedora defaults.
3921f5
3921f5
* Tue Nov 18 2014 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.4.9-3
3921f5
- Update to latest upstream version 3.4.9
3921f5
3921f5
* Sun Oct 19 2014 Peter Robinson <pbrobinson@fedoraproject.org> 7:3.4.7-3
3921f5
- Update ppc64 macro to cover little endian too
3921f5
3921f5
* Thu Sep 11 2014 Michal Luscon <mluscon@redhat.com> - 7:3.4.7-2
3921f5
- Fixed: CVE-2014-6270
3921f5
3921f5
* Thu Aug 28 2014 Michal Luscon <mluscon@redhat.com> - 7:3.4.7-1
3921f5
- Update to latest upstream version
3921f5
- Fixed: CVE-2014-3609
3921f5
3921f5
* Thu Aug 21 2014 Kevin Fenzi <kevin@scrye.com> - 7:3.4.6-3
3921f5
- Rebuild for rpm bug 1131960
3921f5
3921f5
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7:3.4.6-2
3921f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
3921f5
3921f5
* Wed Jul 2 2014 Michal Luscon <mluscon@redhat.com> - 7:3.4.6-1
3921f5
- Update to latest upstream version 3.4.6
3921f5
3921f5
* Fri Jun 13 2014 Michal Luscon <mluscon@redhat.com> - 7:3.4.5-6
3921f5
- Fixed #855111: set unlimited start and shutdown timeout
3921f5
3921f5
* Sun Jun 08 2014 Michal Luscon <mluscon@redhat.com> - 7:3.4.5-5
3921f5
- Run squid under user and group squid
3921f5
3921f5
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7:3.4.5-4
3921f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
3921f5
3921f5
* Tue May 27 2014 Michal Luscon <mluscon@redhat.com> - 7:3.4.5-3
3921f5
- Remove sysvinit subpackage 
3921f5
- Enable rock store
3921f5
3921f5
* Fri May 23 2014 Michal Luscon <mluscon@redhat.com> - 7:3.4.5-2
3921f5
- Fixed #1099970: missing /var/run/squid folder
3921f5
- Reverted #1038160: breaks SMP mode
3921f5
3921f5
* Tue May 6 2014 Michal Luscon <mluscon@redhat.com> - 7:3.4.5-1
3921f5
- Update to latest upstream version 3.4.5
3921f5
3921f5
* Fri Apr 25 2014 Michal Luscon <mluscon@redhat.com> - 7:3.4.4.2-1
3921f5
- Update to latest upstream version 3.4.4.2
3921f5
3921f5
* Thu Mar 13 2014 Pavel Å imerda <psimerda@redhat.com> - 7:3.4.4-1
3921f5
- bump to 3.4.4
3921f5
3921f5
* Tue Feb 04 2014 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.4.3-1
3921f5
- Update to latest upstream bugfix version 3.4.3
3921f5
3921f5
* Mon Jan 06 2014 Pavel Å imerda <psimerda@redhat.com> - 7:3.4.1-2
3921f5
- Resolves: #1038160 - avoid running squid's own supervisor process
3921f5
3921f5
* Mon Dec 30 2013 Michal Luscon <mluscon@redhat.com> - 7:3.4.1-1
3921f5
- Rebase to latest stable upstream release 3.4.1
3921f5
- Fixed #1034306: fails to build for AArch64
3921f5
- Fixed: active ftp
3921f5
3921f5
* Tue Dec 03 2013 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.3.11-1
3921f5
- Update to latest upstream bugfix version 3.3.11
3921f5
3921f5
* Fri Sep 13 2013 Michal Luscon <mluscon@redhat.com> - 7:3.3.9-1
3921f5
- Update to latest upstream version 3.3.9
3921f5
- Fixed #976815: file descriptors are hard coded to 16384
3921f5
- Fixed: active ftp crashing
3921f5
- Fixed: offset of patches
3921f5
3921f5
* Thu Aug 08 2013 Michal Luscon <mluscon@redhat.com> - 7:3.3.8-3
3921f5
- Fixed #994814: enable time_quota helper
3921f5
3921f5
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7:3.3.8-2
3921f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
3921f5
3921f5
* Mon Jul 22 2013 Michal Luscon <mluscon@redhat.com> - 7:3.3.8-1
3921f5
- Update to latest upstream version 3.3.8
3921f5
- Fixed: CVE-2013-4123
3921f5
- Fixed: CVE-2013-4115
3921f5
3921f5
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 7:3.3.4-3
3921f5
- Perl 5.18 rebuild
3921f5
3921f5
* Wed May  8 2013 Ville Skyttä <ville.skytta@iki.fi> - 7:3.3.4-2
3921f5
- Fix basic auth and log daemon DB helper builds.
3921f5
- Use xz compressed tarball, fix source URLs.
3921f5
- Fix bogus dates in %%changelog.
3921f5
3921f5
* Fri May 3 2013 Michal Luscon <nluscon@redhat.com> - 7:3.3.4-1
3921f5
- Rebase to latest upstream version 3.3.4
3921f5
3921f5
* Tue Apr 23 2013 Michal Luscon <mluscon@redhat.com> - 7:3.2.9-3
3921f5
- Option '-k' is not stated in squidclient man
3921f5
- Remove pid from service file(#913262)
3921f5
3921f5
* Fri Apr 19 2013 Michal Luscon <mluscon@redhat.com> - 7:3.2.9-2
3921f5
- Enable full RELRO (-Wl,-z,relro -Wl,-z,now)
3921f5
3921f5
* Tue Mar 19 2013 Michal Luscon <mluscon@redhat.com> - 7:3.2.9-1
3921f5
- Update to latest upstream version 3.2.9
3921f5
- Fixed: CVE-2013-1839
3921f5
- Removed: makefile-patch (+make check)
3921f5
3921f5
* Mon Mar 11 2013 Michal Luscon <mluscon@redhat.com> - 7:3.2.8-3
3921f5
- Resolved: /usr move - squid service file
3921f5
3921f5
* Sat Mar 09 2013 Michal Luscon <mluscon@redhat.com> - 7:3.2.8-2
3921f5
- Resolved: #896127 - basic_ncsa_auth does not work
3921f5
3921f5
* Fri Mar 08 2013 Michal Luscon <mluscon@redhat.com> - 7:3.2.8-1
3921f5
- Update to latest upstream version 3.2.8
3921f5
- Fixed rawhide build issues (-make check)
3921f5
3921f5
* Thu Feb 07 2013 Michal Luscon <mluscon@redhat.com> - 7:3.2.7-1
3921f5
- Update to latest upstream version 3.2.7
3921f5
3921f5
* Thu Jan 24 2013 Michal Luscon <mluscon@redhat.com> - 7:3.2.5-2
3921f5
- CVE-2013-0189: Incomplete fix for the CVE-2012-5643
3921f5
3921f5
* Mon Dec 17 2012 Michal Luscon <mluscon@redhat.com> - 7:3.2.5-1
3921f5
- Update to latest upstream version 3.2.5
3921f5
3921f5
* Mon Nov 05 2012 Michal Luscon <mluscon@redhat.com> - 7:3.2.3-3
3921f5
- Resolved: #71483 - httpd 2.4 requires new configuration directives
3921f5
3921f5
* Fri Oct 26 2012 Michal Luscon <mluscon@redhat.com> - 7:3.2.3-2
3921f5
- Resolved: #854356 - squid.service use PIDFile
3921f5
- Resolved: #859393 - Improve cache_swap script
3921f5
- Resolved: #791129 - disk space warning
3921f5
- Resolved: #862252 - reload on VPN or network up/down
3921f5
- Resolved: #867531 - run test suite during build
3921f5
- Resolved: #832684 - missing after dependency nss-lookup.target
3921f5
- Removed obsolete configure options
3921f5
3921f5
* Mon Oct 22 2012 Tomas Hozza <thozza@redhat.com> - 7:3.2.3-1
3921f5
- Update to latest upstream version 3.2.3
3921f5
3921f5
* Tue Oct 16 2012 Tomas Hozza <thozza@redhat.com> - 7:3.2.2-1
3921f5
- Update to latest upstream version 3.2.2
3921f5
3921f5
* Fri Oct 05 2012 Tomas Hozza <thozza@redhat.com> - 7:3.2.1-2
3921f5
- Introduced new systemd-rpm macros in squid spec file. (#850326)
3921f5
3921f5
* Wed Aug 29 2012 Michal Luscon <mluscon@redhat.com> - 7:3.2.1-1
3921f5
- Update to latest upstream 3.2.1
3921f5
3921f5
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7:3.2.0.16-3
3921f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
3921f5
3921f5
* Mon Apr 02 2012 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.2.0.16-2
3921f5
- Enable SSL CRTD for ssl bump
3921f5
3921f5
* Wed Mar 07 2012 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.2.0.16-1
3921f5
- Upstream 3.2.0.16 bugfix release
3921f5
3921f5
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7:3.2.0.15-2
3921f5
- Rebuilt for c++ ABI breakage
3921f5
3921f5
* Mon Feb 06 2012 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.2.0.15-1
3921f5
- Upstream 3.2.0.15 bugfix release
3921f5
3921f5
* Wed Feb 01 2012 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.2.0.14-7
3921f5
- update with upstreamed patch versions
3921f5
3921f5
* Tue Jan 17 2012 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.2.0.14-6
3921f5
- upstream gcc-4.7 patch
3921f5
- fix for bug #772483 running out of memory, mem_node growing out of bounds
3921f5
3921f5
* Mon Jan 16 2012 Jiri Skala <jskala@redhat.com> - 7:3.2.0.14-5
3921f5
- fixes FTBFS due to gcc-4.7
3921f5
3921f5
* Fri Jan 13 2012 Jiri Skala <jskala@redhat.com> - 7:3.2.0.14-4
3921f5
- fixes #772481 - Low number of open files for squid process
3921f5
- fixes FTBFS due to gcc4.7
3921f5
3921f5
* Thu Jan 05 2012 Henrik Nordstrom <henrik@henriknordstrom.net> - 3.2.0.14-3
3921f5
- rebuild for gcc-4.7.0
3921f5
3921f5
* Mon Dec 19 2011 Jiri Skala <jskala@redhat.com> - 7:3.2.0.14-2
3921f5
- fixes #768586 - Please enable eCAP support again
3921f5
3921f5
* Wed Dec 14 2011 Jiri Skala <jskala@redhat.com> - 7:3.2.0.14-1
3921f5
- update to latest upstream 3.2.0.14
3921f5
3921f5
* Mon Nov 07 2011 Jiri Skala <jskala@redhat.com> - 7:3.2.0.13-5
3921f5
- fixes #751679 - host_strict_verify setting inverted in squid.conf
3921f5
3921f5
* Thu Nov 03 2011 Jiri Skala <jskala@redhat.com> - 7:3.2.0.13-4
3921f5
- fixes #750550 - Squid might depend on named
3921f5
3921f5
* Wed Oct 26 2011 Jiri Skala <jskala@redhat.com> - 7:3.2.0.13-3
3921f5
- added upstream fix for #747125
3921f5
3921f5
* Wed Oct 26 2011 Jiri Skala <jskala@redhat.com> - 7:3.2.0.13-2
3921f5
- fixes #747103 - squid does not start if /var/spool/squid is empty
3921f5
- fixes #747110 - squid does not start adding "memory_pools off"
3921f5
3921f5
* Mon Oct 17 2011 Jiri Skala <jskala@redhat.com> - 7:3.2.0.13-1
3921f5
- update to latest upstream 3.2.0.13
3921f5
3921f5
* Tue Sep 20 2011 Jiri Skala <jskala@redhat.com> - 7:3.2.0.12-1
3921f5
- update to latest upstream 3.2.0.12
3921f5
3921f5
* Mon Aug 29 2011 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.2.0.11-3
3921f5
- update to latest upstream 3.2.0.11
3921f5
3921f5
* Sat Aug 27 2011 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.2.0.10-3
3921f5
- Fix for SQUID-2011:3 Gopher vulnerability
3921f5
3921f5
* Thu Aug 18 2011 Jiri Skala <jskala@redhat.com> - 7:3.2.0.10-2
3921f5
- rebuild for rpm
3921f5
3921f5
* Mon Aug 01 2011 Jiri Skala <jskala@redhat.com> - 7:3.2.0.10-1
3921f5
- update to latest upsteam 3.2.0.10
3921f5
3921f5
* Mon Aug 01 2011 Jiri Skala <jskala@redhat.com> - 7:3.2.0.9-2
3921f5
- rebuild for libcap
3921f5
3921f5
* Tue Jun 07 2011 Jiri Skala <jskala@redhat.com> - 7:3.2.0.9-1
3921f5
- upgrade to squid-3.2
3921f5
- fixes #720445 - Provide native systemd unit file
3921f5
- SysV initscript moved to subpackage
3921f5
- temproary disabled eCap
3921f5
3921f5
* Wed May 18 2011 Jiri Skala <jskala@redhat.com> - 7:3.1.12-3
3921f5
- enabled eCAP support
3921f5
3921f5
* Wed May 04 2011 Jiri Skala <jskala@redhat.com> - 7:3.1.12-2
3921f5
- applied corrections of unused patch (Ismail Dönmez)
3921f5
3921f5
* Fri Apr 15 2011 Jiri Skala <jskala@redhat.com> - 7:3.1.12-1
3921f5
- Update to 3.1.12 upstream release
3921f5
3921f5
* Thu Feb 10 2011 Jiri Skala <jskala@redhat.com> - 7:3.1.11-1
3921f5
- Update to 3.1.11 upstream release
3921f5
- fixes issue with unused variale after mass rebuild (gcc-4.6)
3921f5
3921f5
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7:3.1.10-2
3921f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
3921f5
3921f5
* Thu Jan 06 2011 Jiri Skala <jskala@redhat.com> - 7:3.1.10-1
3921f5
- Update to 3.1.10 upstream release
3921f5
3921f5
* Fri Nov 05 2010 Jiri Skala <jskala@redhat.com> - 7:3.1.9-5
3921f5
- rebuild for libxml2
3921f5
3921f5
* Mon Nov 01 2010 Jiri Skala <jskala@redhat.com> - 7:3.1.9-4
3921f5
- fixes #647967 - build with -fPIE option back and dropped proper libltdl usage
3921f5
3921f5
* Sat Oct 30 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.9-3
3921f5
- Bug #647967 - License clarification & spec-file cleanup
3921f5
3921f5
* Mon Oct 25 2010 Henrik Nordstrom <henrik@henriknordstrom.net> 7:3.1.9-2
3921f5
- Upstream 3.1.9 bugfix release
3921f5
3921f5
* Wed Oct 13 2010 Jiri Skala <jskala@redhat.com> - 7:3.1.8-2
3921f5
- fixes #584161 - squid userid not added to wbpriv group
3921f5
3921f5
* Sun Sep 05 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.8-1
3921f5
- Bug #630445: SQUID-2010:3 Denial of service issue
3921f5
3921f5
* Tue Aug 24 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.7-1
3921f5
- Upstream 3.1.7 bugfix release
3921f5
3921f5
* Fri Aug 20 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.6-1
3921f5
- Upstream 3.1.6 bugfix release
3921f5
- Build with system libtool-ltdl
3921f5
3921f5
* Thu Jul 15 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.5-2
3921f5
- Upstream 3.1.5 bugfix release
3921f5
- Upstream patch for Bug #614665: Squid crashes with  ident auth
3921f5
- Upstream patches for various memory leaks
3921f5
3921f5
* Mon May 31 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.4-2
3921f5
- Correct case-insensitiveness in HTTP list header parsing
3921f5
3921f5
* Sun May 30 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.4-1
3921f5
- Upstream 3.1.4 bugfix release, issues relating to IPv6, TPROXY, Memory
3921f5
  management, follow_x_forwarded_for, and stability fixes
3921f5
3921f5
* Fri May 14 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.3-2
3921f5
- Fully fix #548903 - "comm_open: socket failure: (97) Address family not supported by protocol" if IPv6 disabled
3921f5
- Various IPv6 related issues fixed, making tcp_outgoing_address behave
3921f5
  as expected and no commResetFD warnings when using tproxy setups.
3921f5
3921f5
* Sun May 02 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.3-1
3921f5
- Update to 3.1.3 Upstream bugfix release, fixing WCCPv1
3921f5
3921f5
* Mon Apr 19 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.1-4
3921f5
- Bug #583489: Adjust logrotate script to changes in logrotate package.
3921f5
3921f5
* Mon Apr 19 2010 Jiri Skala <jskala@redhat.com>
3921f5
- fixes #548903 - "comm_open: socket failure: (97) Address family not supported by protocol" if IPv6 disabled
3921f5
3921f5
* Tue Mar 30 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.1-2
3921f5
- Update to 3.1.1 Squid bug #2827 crash with assertion failed:
3921f5
  FilledChecklist.cc:90: "conn() != NULL" under high load.
3921f5
3921f5
* Mon Mar 15 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.0.18-1
3921f5
- Upgrade to 3.1.0.18 fixing Digest authentication and improved HTTP/1.1 support
3921f5
3921f5
* Sun Feb 28 2010 Henrik Nordstrom <henrik@henriknordstrom.net> -  7:3.1.0.17-3
3921f5
- Bug 569120, fails to open unbound ipv4 listening sockets
3921f5
3921f5
* Thu Feb 25 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.0.17-2
3921f5
- Upgrade to 3.1.0.17
3921f5
3921f5
* Thu Feb 18 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.0.16-7
3921f5
- Workaround for Fedora-13 build failure
3921f5
3921f5
* Sun Feb 14 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.0.16-6
3921f5
- Patch for Squid security advisory SQUID-2010:2, denial of service
3921f5
  issue in HTCP processing (CVE-2010-0639)
3921f5
3921f5
* Sun Feb 07 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.0.16-5
3921f5
- Rebuild 3.1.0.16 with corrected upstream release.
3921f5
3921f5
* Wed Feb 03 2010 Jiri Skala <jskala@redhat.com> - 7:3.1.0.16-4
3921f5
- spec file modified to be fedora packaging guidline compliant
3921f5
- little shifting lines in init script header due to rpmlint complaint
3921f5
- fixes assertion during start up
3921f5
3921f5
* Mon Feb 01 2010 Henrik Nordstrom <henrik@henriknordstrom.net> 7:3.1.0.16-3
3921f5
- Upgrade to 3.1.0.16 for DNS related DoS fix (Squid-2010:1)
3921f5
3921f5
* Sat Jan 09 2010 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.0.15-3
3921f5
- fixed #551302 PROXY needs libcap. Also increases security a little.
3921f5
- merged relevant upstream bugfixes waiting for next 3.1 release
3921f5
3921f5
* Mon Nov 23 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.0.15-2
3921f5
- Update to 3.1.0.15 with a number of bugfixes and a workaround for
3921f5
  ICEcast/SHOUTcast streams.
3921f5
3921f5
* Mon Nov 23 2009 Jiri Skala <jskala@redhat.com> 7:3.1.0.14-2
3921f5
- fixed #532930 Syntactic error in /etc/init.d/squid
3921f5
- fixed #528453 cannot initialize cache_dir with user specified config file
3921f5
3921f5
* Sun Sep 27 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.0.14-1
3921f5
- Update to 3.1.0.14
3921f5
3921f5
* Sat Sep 26 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.0.13-7
3921f5
- Include upstream patches fixing important operational issues
3921f5
- Enable ESI support now that it does not conflict with normal operation
3921f5
3921f5
* Fri Sep 18 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.0.13-6
3921f5
- Rotate store.log if enabled
3921f5
3921f5
* Wed Sep 16 2009 Tomas Mraz <tmraz@redhat.com> - 7:3.1.0.13-5
3921f5
- Use password-auth common PAM configuration instead of system-auth
3921f5
3921f5
* Tue Sep 15 2009 Jiri Skala <jskala@redhat.com> - 7:3.1.0.13-4
3921f5
- fixed #521596 - wrong return code of init script
3921f5
3921f5
* Tue Sep 08 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.0.13-3
3921f5
- Enable squid_kerb_auth
3921f5
3921f5
* Mon Sep 07 2009 Henrik Nordstrom <henrik@henriknordtrom.net> - 7:3.1.0.13-2
3921f5
- Cleaned up packaging to ease future maintenance
3921f5
3921f5
* Fri Sep 04 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.1.0.13-1
3921f5
- Upgrade to next upstream release 3.1.0.13 with many new features
3921f5
  * IPv6 support
3921f5
  * NTLM-passthru
3921f5
  * Kerberos/Negotiate authentication scheme support
3921f5
  * Localized error pages based on browser language preferences
3921f5
  * Follow X-Forwarded-For capability
3921f5
  * and more..
3921f5
3921f5
* Mon Aug 31 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 3.0.STABLE18-3
3921f5
- Bug #520445 silence logrotate when Squid is not running
3921f5
3921f5
* Fri Aug 21 2009 Tomas Mraz <tmraz@redhat.com> - 7:3.0.STABLE18-2
3921f5
- rebuilt with new openssl
3921f5
3921f5
* Tue Aug 04 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE18-1
3921f5
- Update to 3.0.STABLE18
3921f5
3921f5
* Sat Aug 01 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE17-3
3921f5
- Squid Bug #2728: regression: assertion failed: http.cc:705: "!eof"
3921f5
3921f5
* Mon Jul 27 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE17-2
3921f5
- Bug #514014, update to 3.0.STABLE17 fixing the denial of service issues
3921f5
  mentioned in Squid security advisory SQUID-2009_2.
3921f5
3921f5
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7:3.0.STABLE16-3
3921f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
3921f5
3921f5
* Wed Jul 01 2009 Jiri Skala <jskala@redhat.com> 7:3.0.STABLE16-2
3921f5
- fixed patch parameter of bXXX patches
3921f5
3921f5
* Mon Jun 29 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE16-1
3921f5
- Upgrade to 3.0.STABLE16
3921f5
3921f5
* Sat May 23 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE15-2
3921f5
- Bug #453304 - Squid requires restart after Network Manager connection setup
3921f5
3921f5
* Sat May 09 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE15-1
3921f5
- Upgrade to 3.0.STABLE15
3921f5
3921f5
* Tue Apr 28 2009 Jiri Skala <jskala@redhat.com> - 7:3.0.STABLE14-3
3921f5
- fixed ambiguous condition in the init script (exit 4)
3921f5
3921f5
* Mon Apr 20 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE14-2
3921f5
- Squid bug #2635: assertion failed: HttpHeader.cc:1196: "Headers[id].type == ftInt64"
3921f5
3921f5
* Sun Apr 19 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE14-1
3921f5
- Upgrade to 3.0.STABLE14
3921f5
3921f5
* Fri Mar 06 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE13-2
3921f5
- backported logfile.cc syslog parameters patch from 3.1 (b9443.patch)
3921f5
- GCC-4.4 workaround in src/wccp2.cc
3921f5
3921f5
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7:3.0.STABLE13-2
3921f5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
3921f5
3921f5
* Thu Feb 5 2009 Jonathan Steffan <jsteffan@fedoraproject.org> - 7:3.0.STABLE13-1
3921f5
- upgrade to latest upstream
3921f5
3921f5
* Tue Jan 27 2009 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE12-1
3921f5
- upgrade to latest upstream
3921f5
3921f5
* Sun Jan 18 2009 Tomas Mraz <tmraz@redhat.com> - 7:3.0.STABLE10-4
3921f5
- rebuild with new openssl
3921f5
3921f5
* Fri Dec 19 2008 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE10-3
3921f5
- actually include the upstream bugfixes in the build
3921f5
3921f5
* Fri Dec 19 2008 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE10-2
3921f5
- upstream bugfixes for cache corruption and access.log response size errors
3921f5
3921f5
* Fri Oct 24 2008 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE10-1
3921f5
- upgrade to latest upstream
3921f5
3921f5
* Sun Oct 19 2008 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE9-2
3921f5
- disable coss support, not officially supported in 3.0
3921f5
3921f5
* Sun Oct 19 2008 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE9-1
3921f5
- update to latest upstream
3921f5
3921f5
* Thu Oct 09 2008 Henrik Nordstrom <henrik@henriknordstrom.net> - 7:3.0.STABLE7-4
3921f5
- change logrotate to move instead of copytruncate
3921f5
3921f5
* Wed Oct 08 2008 Jiri Skala <jskala@redhat.com> - 7:3.0.STABLE7-3
3921f5
- fix #465052 -  FTBFS squid-3.0.STABLE7-1.fc10
3921f5
3921f5
* Thu Aug 14 2008 Jiri Skala <jskala@redhat.com> - 7:3.0.STABLE7-2
3921f5
- used ncsa_auth.8 from man-pages. there will be this file removed due to conflict
3921f5
- fix #458593 noisy initscript
3921f5
- fix #463129 init script tests wrong conf file
3921f5
- fix #450352 - build.patch patches only generated files
3921f5
3921f5
* Wed Jul 02 2008 Jiri Skala <jskala@redhat.com> - 7:3.0.STABLE7-1
3921f5
- update to latest upstream
3921f5
- fix #453214
3921f5
3921f5
* Mon May 26 2008 Martin Nagy <mnagy@redhat.com> - 7:3.0.STABLE6-2
3921f5
- fix bad allocation
3921f5
3921f5
* Wed May 21 2008 Martin Nagy <mnagy@redhat.com> - 7:3.0.STABLE6-1
3921f5
- upgrade to latest upstream
3921f5
- fix bad allocation
3921f5
3921f5
* Fri May 09 2008 Martin Nagy <mnagy@redhat.com> - 7:3.0.STABLE5-2
3921f5
- fix configure detection of netfilter kernel headers (#435499),
3921f5
  patch by aoliva@redhat.com
3921f5
- add support for negotiate authentication (#445337)
3921f5
3921f5
* Fri May 02 2008 Martin Nagy <mnagy@redhat.com> - 7:3.0.STABLE5-1
3921f5
- upgrade to latest upstream
3921f5
3921f5
* Tue Apr 08 2008 Martin Nagy <mnagy@redhat.com> - 7:3.0.STABLE4-1
3921f5
- upgrade to latest upstream
3921f5
3921f5
* Thu Apr 03 2008 Martin Nagy <mnagy@redhat.com> - 7:3.0.STABLE2-2
3921f5
- add %%{optflags} to make
3921f5
- remove warnings about unused return values
3921f5
3921f5
* Thu Mar 13 2008 Martin Nagy <mnagy@redhat.com> - 7:3.0.STABLE2-1
3921f5
- upgrade to latest upstream 3.0.STABLE2
3921f5
- check config file before starting (#428998)
3921f5
- whitespace unification of init script
3921f5
- some minor path changes in the QUICKSTART file
3921f5
- configure with the --with-filedescriptors=16384 option
3921f5
3921f5
* Tue Feb 26 2008 Martin Nagy <mnagy@redhat.com> - 7:3.0.STABLE1-3
3921f5
- change the cache_effective_group default back to none
3921f5
3921f5
* Mon Feb 11 2008 Martin Nagy <mnagy@redhat.com> - 7:3.0.STABLE1-2
3921f5
- rebuild for 4.3
3921f5
3921f5
* Wed Jan 23 2008 Martin Nagy <mnagy@redhat.com> - 7:3.0.STABLE1-1
3921f5
- upgrade to latest upstream 3.0.STABLE1
3921f5
3921f5
* Tue Dec 04 2007 Martin Bacovsky <mbacovsk@redhat.com> - 2.6.STABLE17-1
3921f5
- upgrade to latest upstream 2.6.STABLE17
3921f5
3921f5
* Wed Oct 31 2007 Martin Bacovsky <mbacovsk@redhat.com> - 7:2.6.STABLE16-3
3921f5
- arp-acl was enabled
3921f5
3921f5
* Tue Sep 25 2007 Martin Bacovsky <mbacovsk@redhat.com> - 7:2.6.STABLE16-2
3921f5
- our fd_config patch was replaced by upstream's version 
3921f5
- Source1 (FAQ.sgml) points to local source (upstream's moved to wiki)
3921f5
3921f5
* Fri Sep 14 2007 Martin Bacovsky <mbacovsk@redhat.com> - 7:2.6.STABLE16-1
3921f5
- upgrade to latest upstream 2.6.STABLE16
3921f5
3921f5
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 7:2.6.STABLE14-2
3921f5
- Rebuild for selinux ppc32 issue.
3921f5
3921f5
* Thu Jul 19 2007 Martin Bacovsky <mbacovsk@redhat.com> - 7:2.6.STABLE14-1
3921f5
- update to latest upstream 2.6.STABLE14
3921f5
- resolves: #247064: Initscript Review
3921f5
3921f5
* Tue Mar 27 2007 Martin Bacovsky <mbacovsk@redhat.com> - 7:2.6.STABLE12-1
3921f5
- update to latest upstream 2.6.STABLE12
3921f5
- Resolves: #233913: squid: unowned directory
3921f5
3921f5
* Mon Feb 19 2007 Martin Bacovsky <mbacovsk@redhat.com> - 7:2.6.STABLE9-2
3921f5
- Resolves: #226431: Merge Review: squid
3921f5
3921f5
* Mon Jan 29 2007 Martin Bacovsky <mbacovsk@redhat.com> - 7:2.6.STABLE9-1
3921f5
- update to the latest upstream
3921f5
3921f5
* Sun Jan 14 2007 Martin Stransky <stransky@redhat.com> - 7:2.6.STABLE7-1
3921f5
- update to the latest upstream
3921f5
3921f5
* Tue Dec 12 2006 Martin Stransky <stransky@redhat.com> - 7:2.6.STABLE6-1
3921f5
- update to the latest upstream
3921f5
3921f5
* Mon Nov  6 2006 Martin Stransky <stransky@redhat.com> - 7:2.6.STABLE5-1
3921f5
- update to the latest upstream
3921f5
3921f5
* Thu Oct 26 2006 Martin Stransky <stransky@redhat.com> - 7:2.6.STABLE4-4
3921f5
- added fix for #205568 - marked cachemgr.conf as world readable
3921f5
3921f5
* Wed Oct 25 2006 Martin Stransky <stransky@redhat.com> - 7:2.6.STABLE4-3
3921f5
- added fix for #183869 - squid can abort when getting status
3921f5
- added upstream fixes:
3921f5
    * Bug #1796: Assertion error HttpHeader.c:914: "str"
3921f5
    * Bug #1779: Delay pools fairness, correction to first patch
3921f5
    * Bug #1802: Crash on exit in certain conditions where cache.log is not writeable
3921f5
    * Bug #1779: Delay pools fairness when multiple connections compete for bandwidth
3921f5
    * Clarify the select/poll/kqueue/epoll configure --enable/disable options
3921f5
- reworked fd patch for STABLE4
3921f5
3921f5
* Tue Oct 17 2006 Martin Stransky <stransky@redhat.com> - 7:2.6.STABLE4-2
3921f5
- upstream fixes:
3921f5
  * Accept 00:00-24:00 as a valid time specification (upstream BZ #1794)
3921f5
  * aioDone() could be called twice
3921f5
  * Squid reconfiguration (upstream BZ #1800)
3921f5
3921f5
* Mon Oct 2 2006 Martin Stransky <stransky@redhat.com> - 7:2.6.STABLE4-1
3921f5
- new upstream
3921f5
- fixes from upstream bugzilla, items #1782,#1780,#1785,#1719,#1784,#1776
3921f5
3921f5
* Tue Sep 5 2006 Martin Stransky <stransky@redhat.com> - 7:2.6.STABLE3-2
3921f5
- added upstream patches for ACL
3921f5
3921f5
* Mon Aug 21 2006 Martin Stransky <stransky@redhat.com> - 7:2.6.STABLE3-1
3921f5
- the latest stable upstream
3921f5
3921f5
* Thu Aug 10 2006 Karsten Hopp <karsten@redhat.de> 7:2.6.STABLE2-3
3921f5
- added some requirements for pre/post install scripts
3921f5
3921f5
* Fri Aug 04 2006 Martin Stransky <stransky@redhat.com> - 7:2.6.STABLE2-2
3921f5
- added patch for #198253 - squid: don't chgrp another pkg's
3921f5
  files/directory
3921f5
3921f5
* Mon Jul 31 2006 Martin Stransky <stransky@redhat.com> - 7:2.6.STABLE2-1
3921f5
- the latest stable upstream
3921f5
- reworked fd config patch
3921f5
3921f5
* Tue Jul 25 2006 Martin Stransky <stransky@redhat.com> - 7:2.6.STABLE1-3
3921f5
- the latest CVS upstream snapshot
3921f5
3921f5
* Wed Jul 19 2006 Martin Stransky <stransky@redhat.com> - 7:2.6.STABLE1-2
3921f5
- the latest CVS snapshot
3921f5
3921f5
* Tue Jul 18 2006 Martin Stransky <stransky@redhat.com> - 7:2.6.STABLE1-1
3921f5
- new upstream + the latest CVS snapshot from 2006/07/18
3921f5
- updated fd config patch
3921f5
- enabled epoll
3921f5
- fixed release format (#197405)
3921f5
- enabled WCCPv2 support (#198642)
3921f5
3921f5
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 7:2.5.STABLE14-2.1
3921f5
- rebuild
3921f5
3921f5
* Thu Jun 8 2006 Martin Stransky <stransky@redhat.com> - 7:2.5.STABLE14-2
3921f5
- fix for squid BZ#1511 - assertion failed: HttpReply.c:105: "rep"
3921f5
3921f5
* Tue May 30 2006 Martin Stransky <stransky@redhat.com> - 7:2.5.STABLE14-1
3921f5
- update to new upstream
3921f5
3921f5
* Sun May 28 2006 Martin Stransky <stransky@redhat.com> - 7:2.5.STABLE13-5
3921f5
- fixed libbind patch (#193298)
3921f5
3921f5
* Wed May 3  2006 Martin Stransky <stransky@redhat.com> - 7:2.5.STABLE13-4
3921f5
- added extra group check (#190544)
3921f5
3921f5
* Wed Mar 29 2006 Martin Stransky <stransky@redhat.com> - 7:2.5.STABLE13-3
3921f5
- improved pre script (#187217) - added group switch
3921f5
3921f5
* Thu Mar 23 2006 Martin Stransky <stransky@redhat.com> - 7:2.5.STABLE13-2
3921f5
- removed "--with-large-files" on 64bit arches
3921f5
3921f5
* Mon Mar 13 2006 Martin Stransky <stransky@redhat.com> - 7:2.5.STABLE13-1
3921f5
- update to new upstream
3921f5
3921f5
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 7:2.5.STABLE12-5.1
3921f5
- bump again for double-long bug on ppc(64)
3921f5
3921f5
* Tue Feb 07 2006 Martin Stransky <stransky@redhat.com> - 7:2.5.STABLE12-5
3921f5
- new upstream patches
3921f5
3921f5
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 7:2.5.STABLE12-4.1
3921f5
- rebuilt for new gcc4.1 snapshot and glibc changes
3921f5
3921f5
* Wed Dec 28 2005  Martin Stransky <stransky@redhat.com> 7:2.5.STABLE12-4
3921f5
- added follow-xff patch (#176055)
3921f5
- samba path fix (#176659)
3921f5
3921f5
* Mon Dec 19 2005  Martin Stransky <stransky@redhat.com> 7:2.5.STABLE12-3
3921f5
- fd-config.patch clean-up
3921f5
- SMB_BadFetch patch from upstream
3921f5
3921f5
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
3921f5
- rebuilt
3921f5
3921f5
* Mon Nov 28 2005  Martin Stransky <stransky@redhat.com> 7:2.5.STABLE12-2
3921f5
- rewriten patch squid-2.5.STABLE10-64bit.patch, it works with
3921f5
  "--with-large-files" option now
3921f5
- fix for #72896 - squid does not support > 1024 file descriptors,
3921f5
  new "--enable-fd-config" option for it.
3921f5
3921f5
* Wed Nov 9 2005  Martin Stransky <stransky@redhat.com> 7:2.5.STABLE12-1
3921f5
- update to STABLE12
3921f5
- setenv patch
3921f5
3921f5
* Mon Oct 24 2005 Martin Stransky <stransky@redhat.com> 7:2.5.STABLE11-6
3921f5
- fix for delay pool from upstream
3921f5
3921f5
* Thu Oct 20 2005 Martin Stransky <stransky@redhat.com> 7:2.5.STABLE11-5
3921f5
- fix for #171213 - CVE-2005-3258 Squid crash due to malformed FTP response
3921f5
- more fixes from upstream
3921f5
3921f5
* Fri Oct 14 2005 Martin Stransky <stransky@redhat.com> 7:2.5.STABLE11-4
3921f5
- enabled support for large files (#167503)
3921f5
3921f5
* Thu Oct 13 2005 Tomas Mraz <tmraz@redhat.com> 7:2.5.STABLE11-3
3921f5
- use include instead of pam_stack in pam config
3921f5
3921f5
* Thu Sep 29 2005 Martin Stransky <stransky@redhat.com> 7:2.5.STABLE11-2
3921f5
- added patch for delay pools and some minor fixes
3921f5
3921f5
* Fri Sep 23 2005 Martin Stransky <stransky@redhat.com> 7:2.5.STABLE11-1
3921f5
- update to STABLE11
3921f5
3921f5
* Mon Sep 5 2005 Martin Stransky <stransky@redhat.com> 7:2.5.STABLE10-4
3921f5
- Three upstream patches for #167414
3921f5
- Spanish and Greek messages
3921f5
- patch for -D_FORTIFY_SOURCE=2 
3921f5
3921f5
* Tue Aug 30 2005 Martin Stransky <stransky@redhat.com> 7:2.5.STABLE10-3
3921f5
- removed "--enable-truncate" option (#165948)
3921f5
- added "--enable-cache-digests" option (#102134)
3921f5
- added "--enable-ident-lookups" option (#161640)
3921f5
- some clean up (#165949)
3921f5
3921f5
* Fri Jul 15 2005 Martin Stransky <stransky@redhat.com> 7:2.5.STABLE10-2
3921f5
- pam_auth and ncsa_auth have setuid (#162660)
3921f5
3921f5
* Thu Jul 7 2005 Martin Stransky <stransky@redhat.com> 7:2.5.STABLE10-1
3921f5
- new upstream version
3921f5
- enabled fakeauth utility (#154020)
3921f5
- enabled digest authentication scheme (#155882)
3921f5
- all error pages marked as config (#127836)
3921f5
- patch for 64bit statvfs interface (#153274)
3921f5
- added httpd config file for cachemgr.cgi (#112725)
3921f5
3921f5
* Mon May 16 2005 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE9-7
3921f5
- Upgrade the upstream -dns_query patch from -4 to -5
3921f5
3921f5
* Wed May 11 2005 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE9-6
3921f5
- More upstream patches, including a fix for
3921f5
  bz#157456 CAN-2005-1519 DNS lookups unreliable on untrusted networks
3921f5
3921f5
* Tue Apr 26 2005 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE9-5
3921f5
- more upstream patches, including a fix for
3921f5
  CVE-1999-0710 cachemgr malicious use
3921f5
3921f5
* Fri Apr 22 2005 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE9-4
3921f5
- More upstream patches, including the fixed 2GB patch.
3921f5
- include the -libbind patch, which prevents squid from using the optional
3921f5
  -lbind library, even if it's installed.
3921f5
3921f5
* Tue Mar 15 2005 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE9-2
3921f5
- New upstream version, with 14 upstream patches.
3921f5
3921f5
* Wed Feb 16 2005 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE8-2
3921f5
- new upstream version with 4 upstream patches.
3921f5
- Reorganize spec file to apply upstream patches first
3921f5
3921f5
* Tue Feb 1 2005 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE7-4
3921f5
- Include two more upstream patches for security vulns:
3921f5
  bz#146783 Correct handling of oversized reply headers
3921f5
  bz#146778 CAN-2005-0211 Buffer overflow in WCCP recvfrom() call
3921f5
3921f5
* Tue Jan 25 2005 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE7-3
3921f5
- Include more upstream patches, including two for security holes.
3921f5
3921f5
* Tue Jan 18 2005 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE7-2
3921f5
- Add a triggerin on samba-common to make /var/cache/samba/winbindd_privileged
3921f5
  accessable so that ntlm_auth will work.  It needs to be in this rpm,
3921f5
  because the Samba RPM can't assume the squid user exists.
3921f5
  Note that this will only work if the Samba RPM is recent enough to create
3921f5
  that directory at install time instead of at winbindd startup time.
3921f5
  That should be samba-common-3.0.0-15 or later.
3921f5
  This fixes bugzilla #103726
3921f5
- Clean up extra whitespace in this spec file.
3921f5
- Add additional upstream patches. (Now 18 upstream patches).
3921f5
- patch #112 closes CAN-2005-0096 and CAN-2005-0097, remote DOS security holes.
3921f5
- patch #113 closes CAN-2005-0094, a remote buffer-overflow DOS security hole.
3921f5
- patch #114 closes CAN-2005-0095, a remote DOS security hole.
3921f5
- Remove the -nonbl (replaced by #104) and -close (replaced by #111) patches, since
3921f5
  they're now fixed by upstream patches.
3921f5
3921f5
* Mon Oct 25 2004 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE7-1
3921f5
- new upstream version, with 3 upstream patches.
3921f5
  Updated the -build and -config patches
3921f5
- Include patch from Ulrich Drepper <frepper@redhat.com> to more
3921f5
  intelligently close all file descriptors.
3921f5
3921f5
* Mon Oct 18 2004 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE6-3
3921f5
- include patch from Ulrich Drepper <drepper@redhat.com> to stop
3921f5
  problems with O_NONBLOCK.  This closes #136049
3921f5
3921f5
* Tue Oct 12 2004 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE6-2
3921f5
- Include fix for CAN-2004-0918
3921f5
3921f5
* Tue Sep 28 2004 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE6-1
3921f5
- New upstream version, with 32 upstream patches.
3921f5
  This closes #133970, #133931, #131728, #128143, #126726
3921f5
3921f5
- Change the permissions on /etc/squid/squid.conf to 640.  This closes
3921f5
  bugzilla #125007
3921f5
3921f5
* Mon Jun 28 2004 Jay Fenlason <fenlason@redhat.com> 7:2.5STABLE5-5
3921f5
- Merge current upstream patches.
3921f5
- Fix the -pipe patch to have the correct name of the winbind pipe.
3921f5
3921f5
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
3921f5
- rebuilt
3921f5
3921f5
* Mon Apr 5 2004 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE5-2
3921f5
- Include the first 10 upstream patches
3921f5
- Add a patch for the correct location of the winbindd pipe.  This closes
3921f5
  bugzilla #107561
3921f5
- Remove the change to ssl_support.c from squid-2.5.STABLE3-build patch
3921f5
  This closes #117851
3921f5
- Include /etc/pam.d/squid .  This closes #113404
3921f5
- Include a patch to close #111254 (assignment in assert)
3921f5
- Change squid.init to put output messages in /var/log/squid/squid.out
3921f5
  This closes #104697
3921f5
- Only useradd the squid user if it doesn't already exist, and error out
3921f5
  if the useradd fails.  This closes #118718.
3921f5
3921f5
* Tue Mar 2 2004 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE5-1
3921f5
- New upstream version, obsoletes many patches.
3921f5
- Fix --datadir passed to configure.  Configure automatically adds /squid
3921f5
  so we shouldn't.
3921f5
- Remove the problematic triggerpostun trigger, since is's broken, and FC2
3921f5
  never shipped with that old version.
3921f5
- add %%{?_smp_mflags} to make line.
3921f5
3921f5
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
3921f5
- rebuilt
3921f5
3921f5
* Mon Feb 23 2004 Tim Waugh <twaugh@redhat.com>
3921f5
- Use ':' instead of '.' as separator for chown.
3921f5
3921f5
* Fri Feb 20 2004 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE4-3
3921f5
- Clean up the spec file to work on 64-bit platforms (use %%{_libdir}
3921f5
  instead of /usr/lib, etc)
3921f5
- Make the release number in the changelog section agree with reality.
3921f5
- use -fPIE rather than -fpie.  s390 fails with just -fpie
3921f5
3921f5
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
3921f5
- rebuilt
3921f5
3921f5
* Thu Feb 5 2004 Jay Fenlason <fenlason@redhat.com>
3921f5
- Incorporate many upstream patches
3921f5
- Include many spec file changes from D.Johnson <dj@www.uk.linux.org>
3921f5
3921f5
* Tue Sep 23 2003 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE4-1
3921f5
- New upstream version.
3921f5
- Fix the Source: line in this spec file to point to the correct URL.
3921f5
- redo the -location patch to work with the new upstream version.
3921f5
3921f5
* Mon Jun 30 2003 Jay Fenlason <fenlason@redhat.com> 7:2.5.STABLE3-0
3921f5
- Spec file change to enable the nul storage module. bugzilla #74654
3921f5
- Upgrade to 2.5STABLE3 with current official patches.
3921f5
- Added --enable-auth="basic,ntlm": closes bugzilla #90145
3921f5
- Added --with-winbind-auth-challenge: closes bugzilla #78691
3921f5
- Added --enable-useragent-log and --enable-referer-log, closes
3921f5
- bugzilla #91884
3921f5
# - Changed configure line to enable pie
3921f5
# (Disabled due to broken compilers on ia64 build machines)
3921f5
#- Patched to increase the maximum number of file descriptors #72896
3921f5
#- (disabled for now--needs more testing)
3921f5
3921f5
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
3921f5
- rebuilt
3921f5
3921f5
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
3921f5
- rebuilt
3921f5
3921f5
* Wed Jan 15 2003 Bill Nottingham <notting@redhat.com> 7:2.5.STABLE1-1
3921f5
- update to 2.5.STABLE1
3921f5
3921f5
* Wed Nov 27 2002 Tim Powers <timp@redhat.com> 7:2.4.STABLE7-5
3921f5
- remove unpackaged files from the buildroot
3921f5
3921f5
* Tue Aug 27 2002 Nalin Dahyabhai <nalin@redhat.com> 2.4.STABLE7-4
3921f5
- rebuild
3921f5
3921f5
* Wed Jul 31 2002 Karsten Hopp <karsten@redhat.de>
3921f5
- don't raise an error if the config file is incomplete
3921f5
  set defaults instead (#69322, #70065)
3921f5
3921f5
* Thu Jul 18 2002 Bill Nottingham <notting@redhat.com> 2.4.STABLE7-2
3921f5
- don't strip binaries
3921f5
3921f5
* Mon Jul  8 2002 Bill Nottingham <notting@redhat.com>
3921f5
- update to 2.4.STABLE7
3921f5
- fix restart (#53761)
3921f5
3921f5
* Tue Jun 25 2002 Bill Nottingham <notting@redhat.com>
3921f5
- add various upstream bugfix patches
3921f5
3921f5
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
3921f5
- automated rebuild
3921f5
3921f5
* Thu May 23 2002 Tim Powers <timp@redhat.com>
3921f5
- automated rebuild
3921f5
3921f5
* Fri Mar 22 2002 Bill Nottingham <notting@redhat.com>
3921f5
- 2.4.STABLE6
3921f5
- turn off carp
3921f5
3921f5
* Mon Feb 18 2002 Bill Nottingham <notting@redhat.com>
3921f5
- 2.4.STABLE3 + patches
3921f5
- turn off HTCP at request of maintainers
3921f5
- leave SNMP enabled in the build, but disabled in the default config
3921f5
3921f5
* Fri Jan 25 2002 Tim Powers <timp@redhat.com>
3921f5
- rebuild against new libssl
3921f5
3921f5
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
3921f5
- automated rebuild
3921f5
3921f5
* Mon Jan 07 2002 Florian La Roche <Florian.LaRoche@redhat.de>
3921f5
- require linuxdoc-tools instead of sgml-tools
3921f5
3921f5
* Tue Sep 25 2001 Bill Nottingham <notting@redhat.com>
3921f5
- update to 2.4.STABLE2
3921f5
3921f5
* Mon Sep 24 2001 Bill Nottingham <notting@redhat.com>
3921f5
- add patch to fix FTP crash
3921f5
3921f5
* Mon Aug  6 2001 Bill Nottingham <notting@redhat.com>
3921f5
- fix uninstall (#50411)
3921f5
3921f5
* Mon Jul 23 2001 Bill Nottingham <notting@redhat.com>
3921f5
- add some buildprereqs (#49705)
3921f5
3921f5
* Sun Jul 22 2001 Bill Nottingham <notting@redhat.com>
3921f5
- update FAQ
3921f5
3921f5
* Tue Jul 17 2001 Bill Nottingham <notting@redhat.com>
3921f5
- own /etc/squid, /usr/lib/squid
3921f5
3921f5
* Tue Jun 12 2001 Nalin Dahyabhai <nalin@redhat.com>
3921f5
- rebuild in new environment
3921f5
- s/Copyright:/License:/
3921f5
3921f5
* Tue Apr 24 2001 Bill Nottingham <notting@redhat.com>
3921f5
- update to 2.4.STABLE1 + patches
3921f5
- enable some more configure options (#24981)
3921f5
- oops, ship /etc/sysconfig/squid
3921f5
3921f5
* Fri Mar  2 2001 Nalin Dahyabhai <nalin@redhat.com>
3921f5
- rebuild in new environment
3921f5
3921f5
* Tue Feb  6 2001 Trond Eivind Glomsrød <teg@redhat.com>
3921f5
- improve i18n
3921f5
- make the initscript use the standard OK/FAILED
3921f5
3921f5
* Tue Jan 23 2001 Bill Nottingham <notting@redhat.com>
3921f5
- change i18n mechanism
3921f5
3921f5
* Fri Jan 19 2001 Bill Nottingham <notting@redhat.com>
3921f5
- fix path references in QUICKSTART (#15114)
3921f5
- fix initscript translations (#24086)
3921f5
- fix shutdown logic (#24234), patch from <jos@xos.nl>
3921f5
- add /etc/sysconfig/squid for daemon options & shutdown timeouts
3921f5
- three more bugfixes from the Squid people
3921f5
- update FAQ.sgml
3921f5
- build and ship auth modules (#23611)
3921f5
3921f5
* Thu Jan 11 2001 Bill Nottingham <notting@redhat.com>
3921f5
- initscripts translations
3921f5
3921f5
* Mon Jan  8 2001 Bill Nottingham <notting@redhat.com>
3921f5
- add patch to use mkstemp (greg@wirex.com)
3921f5
3921f5
* Fri Dec 01 2000 Bill Nottingham <notting@redhat.com>
3921f5
- rebuild because of broken fileutils
3921f5
3921f5
* Sat Nov 11 2000 Bill Nottingham <notting@redhat.com>
3921f5
- fix the acl matching cases (only need the second patch)
3921f5
3921f5
* Tue Nov  7 2000 Bill Nottingham <notting@redhat.com>
3921f5
- add two patches to fix domain ACLs
3921f5
- add 2 bugfix patches from the squid people
3921f5
3921f5
* Fri Jul 28 2000 Bill Nottingham <notting@redhat.com>
3921f5
- clean up init script; fix condrestart
3921f5
- update to STABLE4, more bugfixes
3921f5
- update FAQ
3921f5
3921f5
* Tue Jul 18 2000 Nalin Dahyabhai <nalin@redhat.com>
3921f5
- fix syntax error in init script
3921f5
- finish adding condrestart support
3921f5
3921f5
* Fri Jul 14 2000 Bill Nottingham <notting@redhat.com>
3921f5
- move initscript back
3921f5
3921f5
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
3921f5
- automatic rebuild
3921f5
3921f5
* Thu Jul  6 2000 Bill Nottingham <notting@redhat.com>
3921f5
- prereq /etc/init.d
3921f5
- add bugfix patch
3921f5
- update FAQ
3921f5
3921f5
* Thu Jun 29 2000 Bill Nottingham <notting@redhat.com>
3921f5
- fix init script
3921f5
3921f5
* Tue Jun 27 2000 Bill Nottingham <notting@redhat.com>
3921f5
- don't prereq new initscripts
3921f5
3921f5
* Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
3921f5
- initscript munging
3921f5
3921f5
* Sat Jun 10 2000 Bill Nottingham <notting@redhat.com>
3921f5
- rebuild for exciting FHS stuff
3921f5
3921f5
* Wed May 31 2000 Bill Nottingham <notting@redhat.com>
3921f5
- fix init script again (#11699)
3921f5
- add --enable-delay-pools (#11695)
3921f5
- update to STABLE3
3921f5
- update FAQ
3921f5
3921f5
* Fri Apr 28 2000 Bill Nottingham <notting@redhat.com>
3921f5
- fix init script (#11087)
3921f5
3921f5
* Fri Apr  7 2000 Bill Nottingham <notting@redhat.com>
3921f5
- three more bugfix patches from the squid people
3921f5
- buildprereq jade, sgmltools
3921f5
3921f5
* Sun Mar 26 2000 Florian La Roche <Florian.LaRoche@redhat.com>
3921f5
- make %%pre more portable
3921f5
3921f5
* Thu Mar 16 2000 Bill Nottingham <notting@redhat.com>
3921f5
- bugfix patches
3921f5
- fix dependency on /usr/local/bin/perl
3921f5
3921f5
* Sat Mar  4 2000 Bill Nottingham <notting@redhat.com>
3921f5
- 2.3.STABLE2
3921f5
3921f5
* Mon Feb 14 2000 Bill Nottingham <notting@redhat.com>
3921f5
- Yet More Bugfix Patches
3921f5
3921f5
* Tue Feb  8 2000 Bill Nottingham <notting@redhat.com>
3921f5
- add more bugfix patches
3921f5
- --enable-heap-replacement
3921f5
3921f5
* Mon Jan 31 2000 Cristian Gafton <gafton@redhat.com>
3921f5
- rebuild to fix dependencies
3921f5
3921f5
* Fri Jan 28 2000 Bill Nottingham <notting@redhat.com>
3921f5
- grab some bugfix patches
3921f5
3921f5
* Mon Jan 10 2000 Bill Nottingham <notting@redhat.com>
3921f5
- 2.3.STABLE1 (whee, another serial number)
3921f5
3921f5
* Tue Dec 21 1999 Bernhard Rosenkraenzer <bero@redhat.com>
3921f5
- Fix compliance with ftp RFCs
3921f5
  (http://www.wu-ftpd.org/broken-clients.html)
3921f5
- Work around a bug in some versions of autoconf
3921f5
- BuildPrereq sgml-tools - we're using sgml2html
3921f5
3921f5
* Mon Oct 18 1999 Bill Nottingham <notting@redhat.com>
3921f5
- add a couple of bugfix patches
3921f5
3921f5
* Wed Oct 13 1999 Bill Nottingham <notting@redhat.com>
3921f5
- update to 2.2.STABLE5.
3921f5
- update FAQ, fix URLs.
3921f5
3921f5
* Sat Sep 11 1999 Cristian Gafton <gafton@redhat.com>
3921f5
- transform restart in reload and add restart to the init script
3921f5
3921f5
* Tue Aug 31 1999 Bill Nottingham <notting@redhat.com>
3921f5
- add squid user as user 23.
3921f5
3921f5
* Mon Aug 16 1999 Bill Nottingham <notting@redhat.com>
3921f5
- initscript munging
3921f5
- fix conflict between logrotate & squid -k (#4562)
3921f5
3921f5
* Wed Jul 28 1999 Bill Nottingham <notting@redhat.com>
3921f5
- put cachemgr.cgi back in /usr/lib/squid
3921f5
3921f5
* Wed Jul 14 1999 Bill Nottingham <notting@redhat.com>
3921f5
- add webdav bugfix patch (#4027)
3921f5
3921f5
* Mon Jul 12 1999 Bill Nottingham <notting@redhat.com>
3921f5
- fix path to config in squid.init (confuses linuxconf)
3921f5
3921f5
* Wed Jul  7 1999 Bill Nottingham <notting@redhat.com>
3921f5
- 2.2.STABLE4
3921f5
3921f5
* Wed Jun 9 1999 Dale Lovelace <dale@redhat.com>
3921f5
- logrotate changes
3921f5
- errors from find when /var/spool/squid or
3921f5
- /var/log/squid didn't exist
3921f5
3921f5
* Thu May 20 1999 Bill Nottingham <notting@redhat.com>
3921f5
- 2.2.STABLE3
3921f5
3921f5
* Thu Apr 22 1999 Bill Nottingham <notting@redhat.com>
3921f5
- update to 2.2.STABLE.2
3921f5
3921f5
* Sun Apr 18 1999 Bill Nottingham <notting@redhat.com>
3921f5
- update to 2.2.STABLE1
3921f5
3921f5
* Thu Apr 15 1999 Bill Nottingham <notting@redhat.com>
3921f5
- don't need to run groupdel on remove
3921f5
- fix useradd
3921f5
3921f5
* Mon Apr 12 1999 Bill Nottingham <notting@redhat.com>
3921f5
- fix effective_user (bug #2124)
3921f5
3921f5
* Mon Apr  5 1999 Bill Nottingham <notting@redhat.com>
3921f5
- strip binaries
3921f5
3921f5
* Thu Apr  1 1999 Bill Nottingham <notting@redhat.com>
3921f5
- duh. adduser does require a user name.
3921f5
- add a serial number
3921f5
3921f5
* Tue Mar 30 1999 Bill Nottingham <notting@redhat.com>
3921f5
- add an adduser in %%pre, too
3921f5
3921f5
* Thu Mar 25 1999 Bill Nottingham <notting@redhat.com>
3921f5
- oog. chkconfig must be in %%preun, not %%postun
3921f5
3921f5
* Wed Mar 24 1999 Bill Nottingham <notting@redhat.com>
3921f5
- switch to using group squid
3921f5
- turn off icmp (insecure)
3921f5
- update to 2.2.DEVEL3
3921f5
- build FAQ docs from source
3921f5
3921f5
* Tue Mar 23 1999 Bill Nottingham <notting@redhat.com>
3921f5
- logrotate changes
3921f5
3921f5
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
3921f5
- auto rebuild in the new build environment (release 4)
3921f5
3921f5
* Wed Feb 10 1999 Bill Nottingham <notting@redhat.com>
3921f5
- update to 2.2.PRE2
3921f5
3921f5
* Wed Dec 30 1998 Bill Nottingham <notting@redhat.com>
3921f5
- cache & log dirs shouldn't be world readable
3921f5
- remove preun script (leave logs & cache @ uninstall)
3921f5
3921f5
* Tue Dec 29 1998 Bill Nottingham <notting@redhat.com>
3921f5
- fix initscript to get cache_dir correct
3921f5
3921f5
* Fri Dec 18 1998 Bill Nottingham <notting@redhat.com>
3921f5
- update to 2.1.PATCH2
3921f5
- merge in some changes from RHCN version
3921f5
3921f5
* Sat Oct 10 1998 Cristian Gafton <gafton@redhat.com>
3921f5
- strip binaries
3921f5
- version 1.1.22
3921f5
3921f5
* Sun May 10 1998 Cristian Gafton <gafton@redhat.com>
3921f5
- don't make packages conflict with each other...
3921f5
3921f5
* Sat May 02 1998 Cristian Gafton <gafton@redhat.com>
3921f5
- added a proxy auth patch from Alex deVries <adevries@engsoc.carleton.ca>
3921f5
- fixed initscripts
3921f5
3921f5
* Thu Apr 09 1998 Cristian Gafton <gafton@redhat.com>
3921f5
- rebuilt for Manhattan
3921f5
3921f5
* Fri Mar 20 1998 Cristian Gafton <gafton@redhat.com>
3921f5
- upgraded to 1.1.21/1.NOVM.21
3921f5
3921f5
* Mon Mar 02 1998 Cristian Gafton <gafton@redhat.com>
3921f5
- updated the init script to use reconfigure option to restart squid instead
3921f5
  of shutdown/restart (both safer and quicker)
3921f5
3921f5
* Sat Feb 07 1998 Cristian Gafton <gafton@redhat.com>
3921f5
- upgraded to 1.1.20
3921f5
- added the NOVM package and tryied to reduce the mess in the spec file
3921f5
3921f5
* Wed Jan 7 1998 Cristian Gafton <gafton@redhat.com>
3921f5
- first build against glibc
3921f5
- patched out the use of setresuid(), which is available only on kernels
3921f5
  2.1.44 and later
3921f5