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