Blame SPECS/python-rhsm.spec

8813ec
# If on Fedora 12 or RHEL 5 or earlier, we need to define these:
8813ec
%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
8813ec
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
8813ec
%endif
8813ec
63f4e2
# Use python-simplejson on RHEL 5 as there is no json module in Python 2.4.
63f4e2
# On RHEL 6, we'll use it if it's installed (see ourjson.py).
63f4e2
# simplejson is not available in RHEL 7 at all.
63f4e2
%global use_simplejson (0%{?rhel} && 0%{?rhel} == 5)
63f4e2
9bf2b9
# on non-EOL Fedora and RHEL 7, let's not use m2crypto
9bf2b9
%global use_m2crypto (0%{?fedora} < 23 && 0%{?rhel} < 7)
9bf2b9
84ba10
%global _hardened_build 1
84ba10
%{!?__global_ldflags: %global __global_ldflags -Wl,-z,relro -Wl,-z,now}
8813ec
8813ec
Name: python-rhsm
9bf2b9
Version: 1.19.9
e4e5d1
Release: 1%{?dist}
8813ec
8813ec
Summary: A Python library to communicate with a Red Hat Unified Entitlement Platform
8813ec
Group: Development/Libraries
8813ec
License: GPLv2
8813ec
# How to create the source tarball:
8813ec
#
8813ec
# git clone git://git.fedorahosted.org/git/python-rhsm.git/
8813ec
# cd client/python-rhsm
8813ec
# tito build --tag python-rhsm-$VERSION-$RELEASE --tgz
8813ec
Source0: %{name}-%{version}.tar.gz
84ba10
URL: http://www.candlepinproject.org
8813ec
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
8813ec
9bf2b9
%if %use_m2crypto
e4e5d1
%if 0%{?sles_version}
e4e5d1
Requires: python-m2crypto
e4e5d1
%else
8813ec
Requires: m2crypto
e4e5d1
%endif
9bf2b9
%endif
8813ec
Requires: python-iniparse
8813ec
Requires: rpm-python
63f4e2
Requires: python-dateutil
63f4e2
%if %use_simplejson
63f4e2
Requires: python-simplejson
63f4e2
%endif
e4e5d1
Requires: python-rhsm-certificates = %{version}-%{release}
8813ec
e4e5d1
%if 0%{?sles_version}
e4e5d1
BuildRequires: python-devel >= 2.6
e4e5d1
%else
8813ec
BuildRequires: python2-devel
e4e5d1
%endif
8813ec
BuildRequires: python-setuptools
8813ec
BuildRequires: openssl-devel
8813ec
8813ec
8813ec
%description
8813ec
A small library for communicating with the REST interface of a Red Hat Unified
8813ec
Entitlement Platform. This interface is used for the management of system
8813ec
entitlements, certificates, and access to content.
8813ec
e4e5d1
e4e5d1
%package certificates
e4e5d1
Summary: Certificates required to communicate with a Red Hat Unified Entitlement Platform
e4e5d1
Group: Development/Libraries
e4e5d1
e4e5d1
%description certificates
e4e5d1
This package contains certificates required for communicating with the REST interface
e4e5d1
of a Red Hat Unified Entitlement Platform, used for the management of system entitlements
e4e5d1
and to receive access to content. Please note this package does not have a dependency on
e4e5d1
Python. The name instead reflects its relationship to python-rhsm.
e4e5d1
8813ec
%prep
8813ec
%setup -q -n python-rhsm-%{version}
8813ec
8813ec
%build
84ba10
# create a version.py with the rpm version info
84ba10
PYTHON_RHSM_VERSION=%{version} PYTHON_RHSM_RELEASE=%{release} CFLAGS="%{optflags}" LDFLAGS="%{__global_ldflags}" %{__python} setup.py build
8813ec
8813ec
%install
8813ec
rm -rf %{buildroot}
8813ec
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
8813ec
mkdir -p %{buildroot}%{_sysconfdir}/rhsm/ca
8813ec
install etc-conf/ca/*.pem %{buildroot}%{_sysconfdir}/rhsm/ca
8813ec
8813ec
%clean
8813ec
rm -rf %{buildroot}
8813ec
8813ec
%files
8813ec
%defattr(-,root,root,-)
8813ec
%doc README
8813ec
8813ec
%dir %{python_sitearch}/rhsm
8813ec
8813ec
%{python_sitearch}/rhsm/*
8813ec
%{python_sitearch}/rhsm-*.egg-info
e4e5d1
e4e5d1
%files certificates
e4e5d1
%attr(755,root,root) %dir %{_sysconfdir}/rhsm
e4e5d1
%attr(755,root,root) %dir %{_sysconfdir}/rhsm/ca
e4e5d1
63f4e2
%attr(644,root,root) %{_sysconfdir}/rhsm/ca/*.pem
8813ec
8813ec
%changelog
9bf2b9
* Wed Jun 07 2017 Kevin Howell <khowell@redhat.com> 1.19.9-1
9bf2b9
- 1444453: Have gettext return unicode instead of bytes. (awood@redhat.com)
9bf2b9
- 1457197: Env. variable no_proxy=* is not ignored (jhnidek@redhat.com)
9bf2b9
9bf2b9
* Tue May 30 2017 Kevin Howell <khowell@redhat.com> 1.19.8-1
9bf2b9
- 1443164: no_proxy match the host name when *.redhat.com is used
9bf2b9
  (jhnidek@redhat.com)
9bf2b9
9bf2b9
* Wed May 24 2017 Kevin Howell <khowell@redhat.com> 1.19.7-1
9bf2b9
- 1443159: Added default value for splay configuration (jhnidek@redhat.com)
9bf2b9
- 1451166: Fix Host header when using proxy (khowell@redhat.com)
9bf2b9
9bf2b9
* Tue May 02 2017 Kevin Howell <khowell@redhat.com> 1.19.6-1
9bf2b9
- 1426343: fixed rct to display cert without subjectAltName.
9bf2b9
  (jhnidek@redhat.com)
9bf2b9
- Add Update subscriptions pools (tcoufal@redhat.com)
9bf2b9
- Add support to list future subscription pools (tcoufal@redhat.com)
9bf2b9
9bf2b9
* Mon Apr 17 2017 Kevin Howell <khowell@redhat.com> 1.19.5-1
9bf2b9
- 1432990: Better message for bad CA cert (wpoteat@redhat.com)
9bf2b9
9bf2b9
* Mon Apr 10 2017 Kevin Howell <khowell@redhat.com> 1.19.4-1
9bf2b9
- 1438552: Allows releases to be listed through a proxy (csnyder@redhat.com)
9bf2b9
- 1420533: Add no_proxy option to API, config, UI (khowell@redhat.com)
9bf2b9
9bf2b9
* Fri Mar 31 2017 Kevin Howell <khowell@redhat.com> 1.19.3-1
9bf2b9
- 1435475: Support older versions of M2Crypto (awood@redhat.com)
9bf2b9
- 1427069: Prioritize content from Basic entitlements (khowell@redhat.com)
9bf2b9
9bf2b9
* Mon Mar 13 2017 Kevin Howell <khowell@redhat.com> 1.19.2-1
9bf2b9
- 1423443: Handle IndexError during m2crypto request (khowell@redhat.com)
9bf2b9
- Move python-rhsm into subdirectory (khowell@redhat.com)
9bf2b9
9bf2b9
* Wed Jan 25 2017 Alex Wood <awood@redhat.com> 1.19.1-1
9bf2b9
- Adjust our C bindings for OpenSSL v1.1 API. (awood@redhat.com)
9bf2b9
- Make python-rhsm Python-3 compatible (khowell@redhat.com)
9bf2b9
9bf2b9
* Thu Jan 19 2017 Alex Wood <awood@redhat.com> 1.19.0-1
9bf2b9
- Bump version to 1.19 (adarshvritant@gmail.com)
9bf2b9
- Adds new super class BaseRhsmLib that exposes request results.
9bf2b9
  (awood@redhat.com)
9bf2b9
9bf2b9
* Fri Dec 09 2016 Vritant Jain <adarshvritant@gmail.com> 1.18.6-1
9bf2b9
- 1400719: Proxy host not available for release command (wpoteat@redhat.com)
9bf2b9
- 1397201: Expose classes in m2crypto wrapper (khowell@redhat.com)
9bf2b9
9bf2b9
* Fri Nov 25 2016 Vritant Jain <adarshvritant@gmail.com> 1.18.5-1
9bf2b9
- 1396405: Use an int for port on connections (csnyder@redhat.com)
9bf2b9
- 1393010: Correlate request ID, method and handler in logs
9bf2b9
  (csnyder@redhat.com)
9bf2b9
- 1394776: Fix port, insecure, and handler options on M2Crypto wrapper
9bf2b9
  (csnyder@redhat.com)
9bf2b9
- 1394351: Add httplib constants to m2cryptohttp (khowell@redhat.com)
9bf2b9
- 1390688: Add missing socket import (khowell@redhat.com)
9bf2b9
- Reduce usage of m2crypto (#184) (kevin@kahowell.net)
9bf2b9
9bf2b9
* Sun Oct 16 2016 Vritant Jain <adarshvritant@gmail.com> 1.18.4-1
9bf2b9
- Added 6.9 releaser (adarshvritant@gmail.com)
9bf2b9
9bf2b9
* Sun Oct 16 2016 Vritant Jain <adarshvritant@gmail.com> 1.18.3-1
9bf2b9
- 1320371: Fix case of retry-after header handling (khowell@redhat.com)
9bf2b9
- Fedora 22 is end-of-life. (awood@redhat.com)
9bf2b9
- 1311429: Honor no_proxy environment variable (khowell@redhat.com)
9bf2b9
9bf2b9
* Fri Sep 16 2016 Alex Wood <awood@redhat.com> 1.18.2-1
9bf2b9
- 1176219: Raise ProxyException in Restlib (khowell@redhat.com)
e4e5d1
- 1367243: Handle RestlibException 404 in refresh (khowell@redhat.com)
e4e5d1
- 1367243: Fix 404 check in regen entitlement funcs (khowell@redhat.com)
9bf2b9
- Revert "1367243: Fix 404 check in regen entitlement funcs"
9bf2b9
  (khowell@redhat.com)
9bf2b9
- 1367243: Fix 404 check in regen entitlement funcs (khowell@redhat.com)
9bf2b9
- Ensure both cert regen methods succeed despite BadStatusLine from server
9bf2b9
  (csnyder@redhat.com)
9bf2b9
- Update fix to include BadStatusLine responses from the server
9bf2b9
  (csnyder@redhat.com)
e4e5d1
- 1366301: Entitlement regeneration no longer propagates server errors
e4e5d1
  (crog@redhat.com)
e4e5d1
- 1365280: Update default_log_level to INFO (csnyder@redhat.com)
e4e5d1
- 1334916: Add rhsm.conf logging section defaults (csnyder@redhat.com)
e4e5d1
- 1360909: Added functionality for regenerating entitlement certificates
e4e5d1
  (crog@redhat.com)
9bf2b9
- 1315901: Exception handling for PEM cert read (wpoteat@redhat.com)
9bf2b9
9bf2b9
* Fri Jul 15 2016 Alex Wood <awood@redhat.com> 1.18.1-1
9bf2b9
- Bump version to 1.18 (vrjain@redhat.com)
e4e5d1
e4e5d1
* Thu Jun 30 2016 Vritant Jain <vrjain@redhat.com> 1.17.5-1
e4e5d1
- 1104332: Separate out the rhsm certs into a separate RPM (vrjain@redhat.com)
e4e5d1
e4e5d1
* Tue Jun 21 2016 Vritant Jain <vrjain@redhat.com> 1.17.4-1
e4e5d1
- 1346417: Allow users to set socket timeout. (awood@redhat.com)
e4e5d1
- Fix Flake8 Errors (bcourt@redhat.com)
e4e5d1
- Add Fedora 24 to the branch list. (awood@redhat.com)
e4e5d1
- Added basic SLES compatibilty. Tested against SLES 11 SP3
e4e5d1
  (darinlively@gmail.com)
e4e5d1
e4e5d1
* Thu May 12 2016 Darin Lively <darinlively@gmail.com> 1.17.3-0
e4e5d1
- Added basic SLES build compatibilty
e4e5d1
e4e5d1
* Mon Apr 25 2016 Vritant Jain <vrjain@redhat.com> 1.17.2-1
e4e5d1
- Added 7.3 releaser (vrjain@redhat.com)
e4e5d1
- Updated UEPConnection.getProduct to explicitly reference product UUID
e4e5d1
  (crog@redhat.com)
e4e5d1
e4e5d1
* Mon Feb 01 2016 Christopher Snyder <csnyder@redhat.com> 1.17.1-1
e4e5d1
- Bump version to 1.17.0 (csnyder@redhat.com)
e4e5d1
e4e5d1
* Tue Jan 19 2016 Christopher Snyder <csnyder@redhat.com> 1.16.6-1
e4e5d1
- 1297337: change server strings to new default (wpoteat@redhat.com)
e4e5d1
e4e5d1
* Wed Jan 06 2016 Christopher Snyder <csnyder@redhat.com> 1.16.5-1
e4e5d1
- 1271158: Updates documentation to better explain when exceptions are thrown
e4e5d1
  (csnyder@redhat.com)
e4e5d1
- 1272203: Default used in place of empty config entry (wpoteat@redhat.com)
e4e5d1
- 1284683: Entitlement certificate path checking allows for listing files
e4e5d1
  (wpoteat@redhat.com)
e4e5d1
- Fedora 21 is end of life. (awood@redhat.com)
e4e5d1
e4e5d1
* Fri Dec 04 2015 Alex Wood <awood@redhat.com> 1.16.4-1
e4e5d1
- HypervisorCheckIn now accepts options as a keyword argument,
e4e5d1
  options.reporter_id is now sent if provided (csnyder@redhat.com)
e4e5d1
e4e5d1
* Tue Dec 01 2015 Christopher Snyder <csnyder@redhat.com> 1.16.3-1
e4e5d1
- Added release target for RHEL 6.8 (crog@redhat.com)
e4e5d1
- 1198178: Adds wrapper method to allow removal of entitlements by pool id
e4e5d1
  (csnyder@redhat.com)
e4e5d1
- Expand the docs and comments about GoneException. (alikins@redhat.com)
e4e5d1
- Adieu dgoodwin. (awood@redhat.com)
e4e5d1
e4e5d1
* Wed Sep 02 2015 Alex Wood <awood@redhat.com> 1.16.2-1
84ba10
- Adds RateLimitExceededException which is raised in response to 429 from the
84ba10
  remote host (csnyder@redhat.com)
e4e5d1
- 1242057: This cert is no longer used and can be removed (wpoteat@redhat.com)
84ba10
e4e5d1
* Thu Aug 13 2015 Alex Wood <awood@redhat.com> 1.16.1-1
84ba10
- 1247890: KeyErrors are now caught when checking manager capabilities
84ba10
  (csnyder@redhat.com)
e4e5d1
- Add user-agent to rhsm requests. (alikins@redhat.com)
84ba10
e4e5d1
* Thu Jul 23 2015 Alex Wood <awood@redhat.com> 1.16.0-1
e4e5d1
- Bump to version 1.16 (crog@redhat.com)
84ba10
84ba10
* Fri Jul 10 2015 Chris Rog <crog@redhat.com> 1.15.4-1
84ba10
- 
84ba10
84ba10
* Tue Jul 07 2015 Adrian Likins <alikins@redhat.com> 1.15.3-1
84ba10
- Define global_ld_flags when not already defined. (awood@redhat.com)
84ba10
- Adding tests for 202s from alikins/AsyncBind (csnyder@redhat.com)
84ba10
- Updates to accomodate candlepin/virt-who/csnyder/new_report_api
84ba10
  (csnyder@redhat.com)
84ba10
- Adding jobStatus helper methods from alikins/AsyncBind (csnyder@redhat.com)
84ba10
- HypervisorCheckIn now uses the new API, if available (csnyder@redhat.com)
84ba10
84ba10
* Mon Jun 22 2015 Chris Rog <crog@redhat.com> 1.15.2-1
84ba10
- Added releaser configuration for RHEL 7.2 (crog@redhat.com)
84ba10
- Use non-deprecated Tito properties. (awood@redhat.com)
84ba10
84ba10
* Thu Jun 11 2015 Alex Wood <awood@redhat.com> 1.15.1-1
84ba10
- Move Python.h include to be first include (alikins@redhat.com)
84ba10
- 1092564: Provide LDFLAGS to setup.py to enable hardened build.
84ba10
  (awood@redhat.com)
84ba10
- Bump version to 1.15 (wpoteat@redhat.com)
84ba10
- Do not process proxy environment variables if host is in no_proxy
84ba10
  (martin.matuska@axelspringer.de)
84ba10
84ba10
* Tue Jun 02 2015 William Poteat <wpoteat@redhat.com> 1.14.3-1
84ba10
- 1225600: Default config entry needs to include the substitution string
84ba10
  (wpoteat@redhat.com)
84ba10
- Add F22 to Fedora branches. (awood@redhat.com)
84ba10
84ba10
* Thu Feb 26 2015 Alex Wood <awood@redhat.com> 1.14.2-1
84ba10
- 1195446: Only set global socket timeout on RHEL 5. (alikins@redhat.com)
84ba10
- Cleanup up connection logging. (alikins@redhat.com)
84ba10
84ba10
* Fri Feb 06 2015 Devan Goodwin <dgoodwin@rm-rf.ca> 1.14.1-1
84ba10
- 976855: build_py now populates version.py with ver (alikins@redhat.com)
84ba10
- 1187587: Correct project URL in spec file. (awood@redhat.com)
63f4e2
* Fri Jan 09 2015 William Poteat <wpoteat@redhat.com> 1.13.10-1
63f4e2
- Add custom JSON encoding for set objects. (awood@redhat.com)
63f4e2
- Update SSL context options to follow the M2Crypto standard idiom.
63f4e2
  (awood@redhat.com)
63f4e2
63f4e2
* Wed Jan 07 2015 Devan Goodwin <dgoodwin@rm-rf.ca> 1.13.9-1
63f4e2
- Allow clients to report product tags. (awood@redhat.com)
63f4e2
63f4e2
* Fri Nov 21 2014 William Poteat <wpoteat@redhat.com> 1.13.8-1
63f4e2
- 
63f4e2
63f4e2
* Fri Nov 07 2014 Unknown name <wpoteat@redhat.com> 1.13.7-1
63f4e2
- 
63f4e2
63f4e2
* Thu Oct 23 2014 Alex Wood <awood@redhat.com> 1.13.6-1
63f4e2
- 1153375: Support TLSv1.2 and v1.1 by default. (alikins@redhat.com)
63f4e2
- Set CA PEM files permissions to 644. (awood@redhat.com)
63f4e2
63f4e2
* Thu Oct 16 2014 Devan Goodwin <dgoodwin@rm-rf.ca> 1.13.5-1
63f4e2
- Renamed the "containstext" parameter to "matches." (crog@redhat.com)
63f4e2
63f4e2
* Thu Oct 16 2014 Devan Goodwin <dgoodwin@rm-rf.ca> 1.13.4-1
63f4e2
- Added support for contains_text to UEPConnection.getPoolsList
63f4e2
  (crog@redhat.com)
63f4e2
63f4e2
* Fri Oct 03 2014 Alex Wood <awood@redhat.com> 1.13.3-1
63f4e2
- Make more use of setup.py. (alikins@redhat.com)
63f4e2
63f4e2
* Sun Sep 07 2014 Alex Wood <awood@redhat.com> 1.13.2-1
63f4e2
- Remove a 2.6ism that slipped in. (awood@redhat.com)
63f4e2
63f4e2
* Thu Sep 04 2014 Alex Wood <awood@redhat.com> 1.13.1-1
63f4e2
- version bump (jesusr@redhat.com)
63f4e2
63f4e2
* Fri Jul 25 2014 jesus m. rodriguez <jesusr@redhat.com> 1.12.5-1
63f4e2
- 1120431: Support for complex path matching. (bkearney@redhat.com)
63f4e2
63f4e2
* Thu Jul 03 2014 jesus m. rodriguez <jesusr@redhat.com> 1.12.4-1
63f4e2
- Add required bz flags to tito releasers. (dgoodwin@redhat.com)
63f4e2
- Remove pyqver verbose flag. (alikins@redhat.com)
63f4e2
- Use tox.ini to setup pep8 for 'make stylish' (alikins@redhat.com)
63f4e2
- Update pyqver setup. Set min version of 2.7. (alikins@redhat.com)
63f4e2
- Add libcrypto to list of libs to link to. (bcourt@redhat.com)
63f4e2
63f4e2
* Mon Jun 16 2014 Michael Stead <mstead@redhat.com> 1.12.3-1
63f4e2
- Add 6.6/7.1 release targets. (dgoodwin@redhat.com)
63f4e2
- Add a key_path() to EntitlementCertificate (alikins@redhat.com)
63f4e2
63f4e2
* Tue Jun 10 2014 Devan Goodwin <dgoodwin@rm-rf.ca> 1.12.2-1
63f4e2
- Detect when operating in container mode and load host system's config.
63f4e2
  (dgoodwin@redhat.com)
63f4e2
- Convert doc strings to sphinx/restructuredtext (alikins@redhat.com)
63f4e2
- Add setup for using sphinx for docs. (alikins@redhat.com)
63f4e2
63f4e2
* Thu Jun 05 2014 jesus m. rodriguez <jesusr@redhat.com> 1.12.1-1
63f4e2
- bump version to 1.12 (jesusr@redhat.com)
63f4e2
- Add connection method to get available releases (mstead@redhat.com)
63f4e2
63f4e2
* Mon May 26 2014 Devan Goodwin <dgoodwin@rm-rf.ca> 1.11.5-1
63f4e2
- 1090350: fix time drift detection (ckozak@redhat.com)
63f4e2
- 1096676: Use simplejson on RHEL 5. (dgoodwin@redhat.com)
63f4e2
- 1094492: Alternate Subject needs different type that allows more characters.
63f4e2
  (wpoteat@redhat.com)
63f4e2
63f4e2
* Mon Apr 28 2014 ckozak <ckozak@redhat.com> 1.11.4-1
63f4e2
63f4e2
* Thu Apr 10 2014 Alex Wood <awood@redhat.com> 1.11.3-1
63f4e2
- Specifically check for brand_name/brand_type="" (alikins@redhat.com)
63f4e2
- Support new apis for guests and hypervisors (ckozak@redhat.com)
63f4e2
63f4e2
* Thu Mar 20 2014 Alex Wood <awood@redhat.com> 1.11.2-1
4e5764
- Add attributes for brand_name (alikins@redhat.com)
63f4e2
63f4e2
* Thu Feb 27 2014 Alex Wood <awood@redhat.com> 1.11.1-1
63f4e2
- rev version to 1.11.1 (ckozak@redhat.com)
63f4e2
- removed rhel7 releaser (ckozak@redhat.com)
4e5764
4e5764
* Mon Feb 03 2014 ckozak <ckozak@redhat.com> 1.10.12-1
4e5764
- Add request_certs option to getEntitlementList() call (vitty@redhat.com)
4e5764
4e5764
* Wed Jan 22 2014 ckozak <ckozak@redhat.com> 1.10.11-1
4e5764
- Fedora 18 is at end of life. (awood@redhat.com)
4e5764
4e5764
* Mon Jan 06 2014 ckozak <ckozak@redhat.com> 1.10.10-1
4e5764
- make sure server supports guestId data (ckozak@redhat.com)
4e5764
4e5764
* Tue Dec 17 2013 ckozak <ckozak@redhat.com> 1.10.9-1
4e5764
- Removing entitlement cert and key from getEntitlementList (ckozak@redhat.com)
4e5764
- respect http(s)_proxy env variable for proxy information (jesusr@redhat.com)
4e5764
4e5764
* Wed Nov 27 2013 jesus m. rodriguez <jmrodri@gmail.com> 1.10.8-1
4e5764
- Add the method to retrieve all the subscriptions for an owner (wpoteat@redhat.com)
4e5764
4e5764
* Thu Nov 14 2013 ckozak <ckozak@redhat.com> 1.10.7-1
4e5764
- getOwnerInfo introduced (vitty@redhat.com)
4e5764
8813ec
* Thu Nov 07 2013 ckozak <ckozak@redhat.com> 1.10.6-1
8813ec
- Fix a crash that occurs when rhsm.conf is missing (ckozak@redhat.com)
8813ec
- Correct implementation of __eq__ for Content objects. (awood@redhat.com)
8813ec
- Log ca_dir and loaded ca pems on one line. (alikins@redhat.com)
8813ec
- Add default full_refresh_on_yum option. (awood@redhat.com)
8813ec
- Send empty JSON list when deleting all overrides. (awood@redhat.com)
8813ec
- Add __hash__ method to Content classes. (awood@redhat.com)
8813ec
- Add method to get all content overrides for a consumer (mstead@redhat.com)
8813ec
- Add methods to set and delete content overrides. (awood@redhat.com)
8813ec
- 1008808: json ValueErrors have no .msg attribute (alikins@redhat.com)
8813ec
8813ec
* Fri Oct 25 2013 ckozak <ckozak@redhat.com> 1.10.5-1
8813ec
- 1006748: replace simplejson with 'ourjson' (alikins@redhat.com)
8813ec
- Log the new requestUuid from candlepin if it is present in the response.
8813ec
  (dgoodwin@redhat.com)
8813ec
8813ec
* Fri Oct 25 2013 ckozak <ckozak@redhat.com>
8813ec
- 1006748: replace simplejson with 'ourjson' (alikins@redhat.com)
8813ec
- Log the new requestUuid from candlepin if it is present in the response.
8813ec
  (dgoodwin@redhat.com)
8813ec
8813ec
* Wed Oct 02 2013 ckozak <ckozak@redhat.com> 1.10.3-1
8813ec
- Merge pull request #89 from candlepin/alikins/flex_branding
8813ec
  (c4kofony@gmail.com)
8813ec
- Change brand attr 'os' to 'brand_type' (alikins@redhat.com)
8813ec
- s/os_name/os (alikins@redhat.com)
8813ec
- add support for 'os_name' productid attribute (alikins@redhat.com)
8813ec
8813ec
* Thu Sep 12 2013 Alex Wood <awood@redhat.com> 1.10.2-1
8813ec
- 998033: Handle 401 and 403 with no response body (alikins@redhat.com)
8813ec
- Ignore json errors in validate_response (alikins@redhat.com)
8813ec
- Add unit tests for Restlib.validate_response (alikins@redhat.com)
8813ec
- 1000145: Fix deprecated exception message warning. (dgoodwin@redhat.com)
8813ec
8813ec
* Thu Aug 22 2013 Alex Wood <awood@redhat.com> 1.10.1-1
8813ec
- 997194: fix interpolation of default values (ckozak@redhat.com)
8813ec
- bump version to 1.10.x (jesusr@redhat.com)
8813ec
- remove 6.5 releaser (jesusr@redhat.com)
8813ec
8813ec
* Wed Aug 14 2013 jesus m. rodriguez <jesusr@redhat.com> 1.9.2-1
8813ec
- remove rhel 5.9, 5.10, 6.3, 6.4 (jesusr@redhat.com)
8813ec
- Fedora 17 is at end of life. (awood@redhat.com)
8813ec
8813ec
* Wed Jul 31 2013 Alex Wood <awood@redhat.com> 1.9.1-1
8813ec
- fix config failure (ckozak@redhat.com)
8813ec
- 988476, 988085: fix default hostname, remove excess config list output
8813ec
  (ckozak@redhat.com)
8813ec
- rev master to 1.9.x (alikins@redhat.com)
8813ec
- add compliance date option (ckozak@redhat.com)
8813ec
8813ec
* Fri Jul 12 2013 Adrian Likins <alikins@redhat.com> 1.8.14-1
8813ec
- certs check warning period (ckozak@redhat.com)
8813ec
8813ec
* Fri Jun 21 2013 Adrian Likins <alikins@redhat.com> 1.8.13-1
8813ec
- Added autoheal option to updateConsumer (cschevia@redhat.com)
8813ec
8813ec
* Fri May 31 2013 jesus m. rodriguez <jesusr@redhat.com> 1.8.12-1
8813ec
- Update the releasers with a 6.3 (bkearney@redhat.com)
8813ec
- 967566: Enhance the ssl bindings to expose the issuer. (bkearney@redhat.com)
8813ec
- Update the dist-git releasers (bkearney@redhat.com)
8813ec
8813ec
* Fri May 10 2013 Devan Goodwin <dgoodwin@rm-rf.ca> 1.8.11-1
8813ec
- Don't attach a question mark to the request if not necessary.
8813ec
  (awood@redhat.com)
8813ec
- Sanitize consumerId input. (awood@redhat.com)
8813ec
- Add more test cases for Content.arches (alikins@redhat.com)
8813ec
- add 'arches' list of arches to Content object (alikins@redhat.com)
8813ec
- Add optional consumer to getPool. (awood@redhat.com)
8813ec
8813ec
* Tue May 07 2013 Devan Goodwin <dgoodwin@rm-rf.ca> 1.8.10-1
8813ec
- Added core limit to entitlement object. (mstead@redhat.com)
8813ec
- Codestyle cleanup. (alikins@redhat.com)
8813ec
8813ec
* Thu Apr 18 2013 Devan Goodwin <dgoodwin@rm-rf.ca> 1.8.9-1
8813ec
- add note about check_path squashing '//' in paths (alikins@redhat.com)
8813ec
- normalizing path before checking (jsherril@redhat.com)
8813ec
- two new candlepin API methods (cduryee@redhat.com)
8813ec
- remove redundant \'s and slight formatting cleanup (alikins@redhat.com)
8813ec
- replace if "a == None" calls with if a is None (alikins@redhat.com)
8813ec
- Additional methods for working with owners (cduryee@redhat.com)
8813ec
8813ec
* Wed Mar 27 2013 Devan Goodwin <dgoodwin@rm-rf.ca> 1.8.8-1
8813ec
- no 'json' module in rhel5, use simplejson instead (alikins@redhat.com)
8813ec
- Adding plugin directory config option. (awood@redhat.com)
8813ec
8813ec
* Thu Mar 07 2013 Devan Goodwin <dgoodwin@rm-rf.ca> 1.8.7-1
8813ec
- 912776: Improve error message (wpoteat@redhat.com)
8813ec
- Add a method to get compliance status for a consumer. (awood@redhat.com)
8813ec
8813ec
* Mon Mar 04 2013 William Poteat <wpoteat@redhat.com> 1.8.6-1
8813ec
- Add a get_int method to RhsmConfigParser (alikins@redhat.com)
8813ec
8813ec
* Tue Feb 19 2013 Alex Wood <awood@redhat.com> 1.8.5-1
8813ec
- 908671: Adding pool id to entitlement certificate. (awood@redhat.com)
8813ec
8813ec
* Tue Feb 19 2013 Alex Wood <awood@redhat.com>
8813ec
- 908671: Adding pool id to entitlement certificate. (awood@redhat.com)
8813ec
8813ec
* Thu Feb 14 2013 Devan Goodwin <dgoodwin@rm-rf.ca> 1.8.3-1
8813ec
- 907536: Don't send body if it's just "" (alikins@redhat.com)
8813ec
- 882459: Change --heal-interval to --attach-interval in rhsmcertd
8813ec
  (wpoteat@redhat.com)
8813ec
8813ec
* Thu Jan 31 2013 Bryan Kearney <bkearney@redhat.com> 1.8.2-1
8813ec
- Add a default value for the report_package_profile setting
8813ec
  (bkearney@redhat.com)
8813ec
- Remove F16 releasers, add F18. (dgoodwin@redhat.com)
8813ec
8813ec
* Thu Jan 24 2013 Devan Goodwin <dgoodwin@rm-rf.ca> 1.8.1-1
8813ec
- Do not retrieve the value unless the match is valid (bkearney@redhat.com)
8813ec
- Only look for a single item as it is quicker and all we care about is zero or
8813ec
  not zero (bkearney@redhat.com)
8813ec
- Several small tweaks: (bkearney@redhat.com)
8813ec
- Store off the len of the oid to save recalculating it more that once
8813ec
  (bkearney@redhat.com)
8813ec
- certificate.match will now only accept oids. (bkearney@redhat.com)
8813ec
- Remove the use of exceptions to denote a return value of false.
8813ec
  (bkearney@redhat.com)
8813ec
- The email.utils module was named email.Utils in RHEL5 (bkearney@redhat.com)
8813ec
- Make stylish issues resolved (bkearney@redhat.com)
8813ec
- 772936: Warn the user when clock skew is detected. (bkearney@redhat.com)
8813ec
- Improve logging for rhsmcertd scenarios (wpoteat@redhat.com)
8813ec
- 845622: If an identity certificate has expired, there should be a friendly
8813ec
  error message (wpoteat@redhat.com)
8813ec
- Add international text to test automatic JSON encoding. (awood@redhat.com)
8813ec
- 880070: Adding unicode encoding hook for simplejson. (awood@redhat.com)
8813ec
- 848836: Remove trailing / from the handler in UEPConnection
8813ec
  (bkearney@redhat.com)
8813ec
- 884259: If LANG is unset, do not attempt to send up a default locale in
8813ec
  redeem call (bkearney@redhat.com)
8813ec
8813ec
* Tue Nov 20 2012 Devan Goodwin <dgoodwin@rm-rf.ca> 1.8.0-1
8813ec
- Reversioning to 1.8.x stream.
8813ec
8813ec
* Mon Nov 19 2012 Adrian Likins <alikins@redhat.com> 1.1.6-1
8813ec
- Making product and order info optional for a v3 EntitlementCertificate, since
8813ec
  the server side will never have that data. (mhrivnak@redhat.com)
8813ec
- Adding path authorization checking for both v1 and v3 entitlement
8813ec
  certificates (mhrivnak@redhat.com)
8813ec
8813ec
* Fri Nov 16 2012 Adrian Likins <alikins@redhat.com> 1.1.5-1
8813ec
- Added ram_limit to certificate Order (mstead@redhat.com)
8813ec
8813ec
* Thu Nov 01 2012 Adrian Likins <alikins@redhat.com> 1.1.4-1
8813ec
- fixing a bug where certificates with carriage returns could not be parsed.
8813ec
  (mhrivnak@redhat.com)
8813ec
- 790481: Send up headers with the subscription-manager and python-rhsm version
8813ec
  info. (bkearney@redhat.com)
8813ec
8813ec
* Wed Oct 10 2012 Adrian Likins <alikins@redhat.com> 1.1.3-1
8813ec
- 863961: add test case for id cert default version (alikins@redhat.com)
8813ec
- 857426: Do not pass None when body is empty collection (mstead@redhat.com)
8813ec
- 863961: set a default version for id certs (alikins@redhat.com)
8813ec
- 859652: Subscribe with service level being ignored (wpoteat@redhat.com)
8813ec
8813ec
* Tue Sep 25 2012 Adrian Likins <alikins@redhat.com> 1.1.2-1
8813ec
- add 6.4 releaser (alikins@redhat.com)
8813ec
8813ec
* Wed Sep 19 2012 Devan Goodwin <dgoodwin@rm-rf.ca> 1.1.1-1
8813ec
- Read certv3 detached format (jbowes@redhat.com)
8813ec
- Read file content types from certificates (mstead@redhat.com)
8813ec
8813ec
* Wed Aug 29 2012 Alex Wood <awood@redhat.com> 1.0.7-1
8813ec
- 851644: Only use the cert file if it exists (bkearney@redhat.com)
8813ec
8813ec
* Tue Aug 28 2012 Alex Wood <awood@redhat.com> 1.0.6-1
8813ec
- 848742: support arbitrary bit length serial numbers (jbowes@redhat.com)
8813ec
- Stop doing F15 Fedora builds, add EL5 public builds. (dgoodwin@redhat.com)
8813ec
8813ec
* Thu Aug 09 2012 Alex Wood <awood@redhat.com> 1.0.5-1
8813ec
- add versionlint, requires pyqver (alikins@redhat.com)
8813ec
- Adding subject back to new certs (mstead@redhat.com)
8813ec
- 842885: add __str__ to NetworkException, ala  #830767 (alikins@redhat.com)
8813ec
- 830767: Add __str__ method to RemoteServerException. (awood@redhat.com)
8813ec
- Fix None product architectures. (dgoodwin@redhat.com)
8813ec
- Remove deprecated use of DateRange.has[Date|Now] (jbowes@redhat.com)
8813ec
- mark hasDate as deprecated as well (alikins@redhat.com)
8813ec
8813ec
* Wed Jul 25 2012 Alex Wood <awood@redhat.com> 1.0.4-1
8813ec
- Remove unused stub method. (dgoodwin@redhat.com)
8813ec
- Cleanup entitlement cert keys on delete. (dgoodwin@redhat.com)
8813ec
- Drop unused quantity and flex quantity from Content. (dgoodwin@redhat.com)
8813ec
- Make CertFactory and Extensions2 classes private. (dgoodwin@redhat.com)
8813ec
- RHEL5 syntax fixes. (dgoodwin@redhat.com)
8813ec
- Handle empty pem strings when creating certs. (dgoodwin@redhat.com)
8813ec
- Remove Base64 decoding. (dgoodwin@redhat.com)
8813ec
- Fix failing subjectAltName nosetest (jbowes@redhat.com)
8813ec
- Fix up remaining compiler warnings (jbowes@redhat.com)
8813ec
- Fix up memory leaks (jbowes@redhat.com)
8813ec
- clean up some C module compiler warnings (jbowes@redhat.com)
8813ec
- Fix get_all_extensions (jbowes@redhat.com)
8813ec
- C module formatting fixups (jbowes@redhat.com)
8813ec
- Add as_pem method to C module (jbowes@redhat.com)
8813ec
- Revert Extensions object to old state, add new sub-class.
8813ec
  (dgoodwin@redhat.com)
8813ec
- Spec file changes for C module (jbowes@redhat.com)
8813ec
- Get nosetests running (jbowes@redhat.com)
8813ec
- tell setup.py to use nose (jbowes@redhat.com)
8813ec
- get certv2 tests passing (jbowes@redhat.com)
8813ec
- Move methods onto X509 class in C cert reader (jbowes@redhat.com)
8813ec
- Add method to get all extensions in a dict (jbowes@redhat.com)
8813ec
- Add POC C based cert reader (jbowes@redhat.com)
8813ec
- Remove use of str.format for RHEL5. (dgoodwin@redhat.com)
8813ec
- Remove some python2.6'ism (trailing if's) (alikins@redhat.com)
8813ec
- add "version_check" target that runs pyqver (alikins@redhat.com)
8813ec
- Fix error reporting on bad certs. (dgoodwin@redhat.com)
8813ec
- Remove number from order/account fields. (dgoodwin@redhat.com)
8813ec
- Style fixes. (dgoodwin@redhat.com)
8813ec
- Certv2 cleanup. (dgoodwin@redhat.com)
8813ec
- Cleanup bad padding/header cert testing. (dgoodwin@redhat.com)
8813ec
- New method of parsing X509 extensions. (dgoodwin@redhat.com)
8813ec
- Better cert type detection. (dgoodwin@redhat.com)
8813ec
- Deprecate the old certificate module classes. (dgoodwin@redhat.com)
8813ec
- Rename order support level to service level. (dgoodwin@redhat.com)
8813ec
- Convert product arch to multi-valued. (dgoodwin@redhat.com)
8813ec
- Add factory methods to certificate module. (dgoodwin@redhat.com)
8813ec
- Parse V2 entitlement certificates. (dgoodwin@redhat.com)
8813ec
- Add missing os import. (dgoodwin@redhat.com)
8813ec
- Improve certificate2 error handling. (dgoodwin@redhat.com)
8813ec
- Remove V1 named classes. (dgoodwin@redhat.com)
8813ec
- Add cert is_expired method. (dgoodwin@redhat.com)
8813ec
- Fix cert path issue. (dgoodwin@redhat.com)
8813ec
- Major/minor attributes not available in 5.4 (mstead@redhat.com)
8813ec
- 834108: Set the default connection timeout to 1 min. (jbowes@redhat.com)
8813ec
- Add default values to certificate2 Order class. (dgoodwin@redhat.com)
8813ec
- Define identity certificates explicitly. (dgoodwin@redhat.com)
8813ec
- Add identity cert support to certificate2 module. (dgoodwin@redhat.com)
8813ec
- Add file writing/deleting for new certificates. (dgoodwin@redhat.com)
8813ec
- Add product info to certificate2 module. (dgoodwin@redhat.com)
8813ec
- Add content info to certificate2 module. (dgoodwin@redhat.com)
8813ec
- Add order info to certificate2 module. (dgoodwin@redhat.com)
8813ec
- Port basic certificate data into new module. (dgoodwin@redhat.com)
8813ec
- Add certificate2 module and cert creation factory. (dgoodwin@redhat.com)
8813ec
8813ec
* Thu Jun 28 2012 Alex Wood <awood@redhat.com> 1.0.3-1
8813ec
- Update copyright dates (jbowes@redhat.com)
8813ec
- 825952: Error after deleting consumer at server (wpoteat@redhat.com)
8813ec
8813ec
* Thu Jun 07 2012 Alex Wood <awood@redhat.com> 1.0.2-1
8813ec
- add upstream server var to version obj (cduryee@redhat.com)
8813ec
- 822057: wrap ContentConnection port in safe_int (cduryee@redhat.com)
8813ec
- 822965: subscription-manager release does not work with proxies
8813ec
  (cduryee@redhat.com)
8813ec
- 806958: BadCertificateException not displaying properly. (awood@redhat.com)
8813ec
- 822965: release verb does not work with proxies (cduryee@redhat.com)
8813ec
- Add config for "checkcommits" (alikins@redhat.com)
8813ec
- Include various Makefile improvements from subscription-manager
8813ec
  (alikins@redhat.com)
8813ec
- Upload el6 yum packages to another dir for compatability.
8813ec
  (dgoodwin@redhat.com)
8813ec
8813ec
* Wed May 16 2012 Devan Goodwin <dgoodwin@rm-rf.ca> 1.0.1-1
8813ec
- Add default constants for RHN connections. (dgoodwin@redhat.com)
8813ec
- 813296: Remove check for candlepin_version (jbowes@redhat.com)
8813ec
- Remove module scope eval of config properties (alikins@redhat.com)
8813ec
- Add call to get Candlepin status. (awood@redhat.com)
8813ec
- Added access to python-rhsm/sub-man versions. (mstead@redhat.com)
8813ec
8813ec
* Thu Apr 26 2012 Michael Stead <mstead@redhat.com> 1.0.0-1
8813ec
- Updated version due to 6.3 branching. (mstead@redhat.com)
8813ec
8813ec
* Wed Apr 04 2012 Michael Stead <mstead@redhat.com> 0.99.8-1
8813ec
- 807721: Setting missing default values (mstead@redhat.com)
8813ec
8813ec
* Fri Mar 23 2012 Michael Stead <mstead@redhat.com> 0.99.7-1
8813ec
- 803773: quote international characters in activation keys before sending to
8813ec
  server (cduryee@redhat.com)
8813ec
- PEP8 fixes. (mstead@redhat.com)
8813ec
8813ec
* Wed Mar 14 2012 Michael Stead <mstead@redhat.com> 0.99.6-1
8813ec
- Add ContentConnection to support rhsm "release" command (alikins@redhat.com)
8813ec
- Allow unsetting the consumer service level. (dgoodwin@redhat.com)
8813ec
8813ec
* Tue Mar 06 2012 Michael Stead <mstead@redhat.com> 0.99.5-1
8813ec
- 744654: Any bad value from the config file, when converting to an int, causes
8813ec
  a traceback. (bkearney@redhat.com)
8813ec
- Add support for dry-run autobind requests. (dgoodwin@redhat.com)
8813ec
- Build for Fedora 17. (dgoodwin@redhat.com)
8813ec
8813ec
* Wed Feb 22 2012 Devan Goodwin <dgoodwin@rm-rf.ca> 0.99.4-1
8813ec
- Add support for updating consumer service level. (dgoodwin@redhat.com)
8813ec
- Add call to list service levels for an org. (dgoodwin@redhat.com)
8813ec
- Add GoneException for deleted consumers (jbowes@redhat.com)
8813ec
8813ec
* Fri Jan 27 2012 Michael Stead <mstead@redhat.com> 0.99.3-1
8813ec
- 785247: Update releasers.conf for RHEL6.3 (mstead@redhat.com)
8813ec
- Stop building for F14. (dgoodwin@redhat.com)
8813ec
8813ec
* Thu Jan 12 2012 Devan Goodwin <dgoodwin@rm-rf.ca> 0.99.2-1
8813ec
- 768983: When consuming a future subsciption, the repos --list should be empty
8813ec
  (wpoteat@redhat.com)
8813ec
- 720360: Write *-key.pem files out with 0600 permissions. (awood@redhat.com)
8813ec
- 754425: Remove grace period logic (cduryee@redhat.com)
8813ec
8813ec
* Mon Dec 12 2011 William Poteat <wpoteat@redhat.com> 0.98.7-1
8813ec
- 766895: Added hypervisorCheckIn call to allow sending a mapping of host/guest ids for
8813ec
  creation/update. (mstead@redhat.com)
8813ec
8813ec
* Tue Dec 06 2011 William Poteat <wpoteat@redhat.com> 0.98.5-1
8813ec
- 754366: workaround a bug in httpslib.ProxyHttpsConnection
8813ec
  (alikins@redhat.com)
8813ec
8813ec
* Thu Nov 17 2011 William Poteat <wpoteat@redhat.com> 0.98.3-1
8813ec
- 752854: Fixing error in iniparser around unpacking of a dictionary for
8813ec
  default values. (awood@redhat.com)
8813ec
- 708362: remove entitlement keys on delete as well (alikins@redhat.com)
8813ec
- 734114: registering with --org="foo bar" throws a NetworkException instead of
8813ec
  a RestlibException (awood@redhat.com)
8813ec
8813ec
* Fri Oct 28 2011 William Poteat <wpoteat@redhat.com> 0.98.2-1
8813ec
- 749853: backport new python-rhsm API calls present in 6.2 for 5.8
8813ec
  (cduryee@redhat.com)
8813ec
- rev python-rhsm version to match sub-mgr (cduryee@redhat.com)
8813ec
- point master to rhel5 builder (cduryee@redhat.com)
8813ec
- fix python syntax for older versions (jbowes@redhat.com)
8813ec
- Fix yum repo location for EL6. (dgoodwin@redhat.com)
8813ec
8813ec
* Mon Oct 17 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.97.1-1
8813ec
- 746241: UEPConnection.updateConsumer now passes empty list in POST request
8813ec
  (mstead@redhat.com)
8813ec
- 737935: overcome 255 char limit in uuid list (cduryee@redhat.com)
8813ec
* Tue Sep 13 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.96.12-1
8813ec
- Add makefile and targets for coverage and "stylish" checks
8813ec
  (alikins@redhat.com)
8813ec
- Add tests for config parsing (cduryee@redhat.com)
8813ec
- 736166: move certs from subscription-manager to python-rhsm
8813ec
  (cduryee@redhat.com)
8813ec
8813ec
* Wed Sep 07 2011 James Bowes <jbowes@redhat.com> 0.96.11-1
8813ec
- add future date bind (jesusr@redhat.com)
8813ec
- 735226: allow Keys to validate themselves (bkearney@redhat.com)
8813ec
- Add getVirtOnly() (cduryee@redhat.com)
8813ec
8813ec
* Wed Aug 24 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.96.10-1
8813ec
- Submit a Content-Length when body of request is empty. (dgoodwin@redhat.com)
8813ec
- Support installed products when registering. (dgoodwin@redhat.com)
8813ec
- Add ability to update a consumer's installed products list.
8813ec
  (dgoodwin@redhat.com)
8813ec
- Support for new bind method (cduryee@redhat.com)
8813ec
8813ec
* Wed Aug 17 2011 James Bowes <jbowes@redhat.com> 0.96.9-1
8813ec
- self.sanitize, and add support for quote_plus. (cduryee@redhat.com)
8813ec
- Enhance the insecure mode to not do peer checks. (bkearney@redhat.com)
8813ec
- Wrap urllib.quote in a helper method to cast int to str as needed.
8813ec
  (cduryee@redhat.com)
8813ec
- 728266: Unsubscribe from subscription manager GUI is broken
8813ec
  (cduryee@redhat.com)
8813ec
- Remove quantity for bind by product. (dgoodwin@redhat.com)
8813ec
* Wed Aug 03 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.96.8-1
8813ec
- 719378: Encode whitespace in urls (bkearney@redhat.com)
8813ec
- Change package profile upload url. (dgoodwin@redhat.com)
8813ec
8813ec
* Wed Jul 13 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.96.7-1
8813ec
- Logging cleanup. (dgoodwin@redhat.com)
8813ec
- Remove unused add_ssl_certs method. (dgoodwin@redhat.com)
8813ec
- Load supported resources when UEPConnection is instantiated.
8813ec
  (dgoodwin@redhat.com)
8813ec
- Send package profile. (dgoodwin@redhat.com)
8813ec
- Allow testing if package profiles equal one another. (dgoodwin@redhat.com)
8813ec
- Support creating package profile from a file descriptor.
8813ec
  (dgoodwin@redhat.com)
8813ec
- Allow the attributes to be None for username and password in consumer
8813ec
  selction. (bkearney@redhat.com)
8813ec
- Add a Package object. (dgoodwin@redhat.com)
8813ec
8813ec
* Wed Jul 06 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.96.6-1
8813ec
- Add support for new Katello error responses. (dgoodwin@redhat.com)
8813ec
- Log the response when there's an issue parsing error JSON.
8813ec
  (dgoodwin@redhat.com)
8813ec
- Add support for registration to Katello environments. (dgoodwin@redhat.com)
8813ec
- Don't send an http body if we don't have one. (jbowes@redhat.com)
8813ec
- Add call to list environments. (dgoodwin@redhat.com)
8813ec
- Do not load CA certs if in insecure mode. (dgoodwin@redhat.com)
8813ec
- Cache supported resources after establishing connection.
8813ec
  (dgoodwin@redhat.com)
8813ec
8813ec
* Fri Jun 24 2011 Devan Goodwin <dgoodwin@redhat.com> 0.96.5-1
8813ec
- Fix backward compatability with old use of getPoolsList.
8813ec
  (dgoodwin@redhat.com)
8813ec
- Remove one built in type issue. (bkearney@redhat.com)
8813ec
- Removed unused Bundle class (alikins@redhat.com)
8813ec
- quantity for subscription (wottop@dhcp231-152.rdu.redhat.com)
8813ec
- Add the activation key call, and remove subscription tokens
8813ec
  (bkearney@redhat.com)
8813ec
- Improve the doco, referencing the candlepin site. (bkearney@redhat.com)
8813ec
- Improve the defualt values for the config (bkearney@redhat.com)
8813ec
- Fix bug with owner specification during registration. (dgoodwin@redhat.com)
8813ec
8813ec
* Wed Jun 08 2011 Bryan Kearney <bkearney@redhat.com> 0.96.4-1
8813ec
- Adding profile module and updating spec (pkilambi@redhat.com)
8813ec
- Added stacking Id to the certificate (wottop@dhcp231-152.rdu.redhat.com)
8813ec
- Changed call to CP for owner list (wottop@dhcp231-152.rdu.redhat.com)
8813ec
- added getOwners function for use with 'list --owners'
8813ec
  (wottop@dhcp231-152.rdu.redhat.com)
8813ec
- change (wottop@dhcp231-152.rdu.redhat.com)
8813ec
- Added the owner entered in the cli to the post for register
8813ec
  (wottop@dhcp231-152.rdu.redhat.com)
8813ec
- altered pool query to use both owner and consumer
8813ec
  (wottop@dhcp231-152.rdu.redhat.com)
8813ec
- Added getOwner(consumerid) function (wottop@dhcp231-152.rdu.redhat.com)
8813ec
8813ec
* Wed May 11 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.96.3-1
8813ec
- 700601: Don't set the Accept-Language if we don't have a valid locale
8813ec
  (alikins@redhat.com)
8813ec
- 692210: remove a non critical warning message that is spamming the logs
8813ec
  (alikins@redhat.com)
8813ec
- 691788: Fix bad check for missing order info. (dgoodwin@redhat.com)
8813ec
- Add a version of get_datetime from M2Crypto since it isnt avail on RHEL 5.7
8813ec
  (alikins@redhat.com)
8813ec
- Use older strptime call format (cduryee@redhat.com)
8813ec
- 683550: fix parsing empty cert extensions (jbowes@redhat.com)
8813ec
- Add support for content tagging. (dgoodwin@redhat.com)
8813ec
- Use tlsv1 instead of sslv3, for fips compliance (cduryee@redhat.com)
8813ec
8813ec
* Mon Feb 14 2011 Devan Goodwin <dgoodwin@rm-rf.ca> 0.96.2-1
8813ec
- Setup configuration for Fedora git builds. (dgoodwin@rm-rf.ca)
8813ec
8813ec
* Fri Feb 04 2011 Devan Goodwin <dgoodwin@redhat.com> 0.96.1-1
8813ec
- 674078: send a full iso 8601 timestamp for activeOn pools query
8813ec
  (jbowes@repl.ca)
8813ec
8813ec
* Tue Feb 01 2011 Devan Goodwin <dgoodwin@redhat.com> 0.95.2-1
8813ec
- Add content metadata expire to certificate class. (dgoodwin@redhat.com)
8813ec
8813ec
* Fri Jan 28 2011 Chris Duryee (beav) <cduryee@redhat.com>
8813ec
- Add new extensions to order (jbowes@redhat.com)
8813ec
- remove shebang from certificate.py for rpmlint (jbowes@redhat.com)
8813ec
- Adding activateMachine to connection api. (jharris@redhat.com)
8813ec
- 668814: break out 404 and 500s into a different error (cduryee@redhat.com)
8813ec
- Initialized to use tito. (jbowes@redhat.com)
8813ec
- bump version (jbowes@redhat.com)
8813ec
8813ec
* Wed Jan 12 2011 jesus m. rodriguez <jesusr@redhat.com> 0.94.13-1
8813ec
- 667829: handle proxy config options being absent from rhsm.conf (alikins@redhat.com)
8813ec
8813ec
* Fri Jan 07 2011 Devan Goodwin <dgoodwin@redhat.com> 0.94.12-1
8813ec
- Related: #668006
8813ec
- Remove a missed translation. (dgoodwin@redhat.com)
8813ec
- Fix logger warning messages. (dgoodwin@redhat.com)
8813ec
8813ec
8813ec
* Tue Dec 21 2010 Devan Goodwin <dgoodwin@redhat.com> 0.94.10-1
8813ec
- Related: #661863
8813ec
- Add certificate parsing library. (dgoodwin@redhat.com)
8813ec
- Fix build on F12/RHEL5 and earlier. (dgoodwin@redhat.com)
8813ec
8813ec
* Fri Dec 17 2010 jesus m. rodriguez <jesusr@redhat.com> 0.94.9-1
8813ec
- add comment on how to generate source tarball (jesusr@redhat.com)
8813ec
8813ec
* Fri Dec 17 2010 Devan Goodwin <dgoodwin@redhat.com> 0.94.8-1
8813ec
- Adding GPLv2 license file. (dgoodwin@redhat.com)
8813ec
8813ec
* Fri Dec 17 2010 Devan Goodwin <dgoodwin@redhat.com> 0.94.7-1
8813ec
- Related: #661863
8813ec
- Add buildrequires for python-setuptools.
8813ec
8813ec
* Thu Dec 16 2010 Devan Goodwin <dgoodwin@redhat.com> 0.94.4-1
8813ec
- Add python-rhsm tito.props. (dgoodwin@redhat.com)
8813ec
8813ec
* Thu Dec 16 2010 Devan Goodwin <dgoodwin@redhat.com> 0.94.3-1
8813ec
- Refactor logging. (dgoodwin@redhat.com)
8813ec
- Add a small README. (dgoodwin@redhat.com)
8813ec
8813ec
* Tue Dec 14 2010 Devan Goodwin <dgoodwin@redhat.com> 0.94.2-1
8813ec
- Remove I18N code. (dgoodwin@redhat.com)
8813ec
- Spec cleanup. (dgoodwin@redhat.com)
8813ec
- Cleaning out unused log parsing functions (jharris@redhat.com)
8813ec
- More tolerant with no rhsm.conf in place. (dgoodwin@redhat.com)
8813ec
- Switch to python-iniparse. (alikins@redhat.com)
8813ec
8813ec
* Fri Dec 10 2010 Devan Goodwin <dgoodwin@redhat.com> 0.94.1-1
8813ec
- Initial package tagging.
8813ec