Update subscription-manager to 1.18.6-1
Resolves: #1401078 - "Remote server error" on BadStatusLine (khowell@redhat.com) Resolves: #1390712 - Add --remove-rhn-packages to man pages (khowell@redhat.com) Resolves: #1261215 - Fix frozen progress bars (khowell@redhat.com) Resolves: #1360427 - Show error if browser is not detected (khowell@redhat.com) Resolves: #1395659 - Handle ProxyExceptions that occur during GUI operation Resolves: #1395662 - Properly parses exc_info based on type (csnyder@redhat.com) Resolves: #1395794 - Include python-decorator as a required dependency Resolves: #1378495 - Do not touch OSTree Origin files. (csnyder@redhat.com) Resolves: #1390258 - Validate --remove-rhn-packages conflicting options Resolves: #1390341 - Disable SysV/systemd services properly (khowell@redhat.com) Resolves: #1268033 - Add progress screen for validate server (khowell@redhat.com) Resolves: #1389559 - Parse log levels properly from config (khowell@redhat.com) Resolves: #1390549 - Force input prompts to use stdout (khowell@redhat.com) Resolves: #1305729 - Improve dnf-plugin package metadata (khowell@redhat.com) Resolves: #1382897 - Don't always reenable register menu item (khowell@redhat.com) Resolves: #1382355 - Don't swallow CLI autoattach exceptions (khowell@redhat.com) Resolves: #1245473 - Add container-specific no-certs warning (khowell@redhat.com) Resolves: #1369577 - Fix rct cat-manifest --no-content format (khowell@redhat.com) Resolves: #1379258 - Fix alignment of GTK3 choose_server screen (khowell@redhat.com) Resolves: #1320371 - Display user-friendly rate limit messages (khowell@redhat.com) Resolves: #1362731 - Change titles when moving to subscription attachment Resolves: #1163968 - Use macro for service restart (wpoteat@redhat.com) Resolves: #1372779 - Fix typo in "connection" (khowell@redhat.com) Resolves: #1259768 - initial-setup: notify and block for async (khowell@redhat.com) Resolves: #1365472 - Add keyboard mnemonics for initial-setup (khowell@redhat.com) Resolves: #1176219 - Treat port as integer for GUI conn test (khowell@redhat.com) Resolves: #1366523 - Ensure that each quantity spinner has proper settings
This commit is contained in:
parent
94a9f6e060
commit
cd1ae4e0bd
1
.gitignore
vendored
1
.gitignore
vendored
@ -67,3 +67,4 @@
|
||||
/subscription-manager-1.17.6.tar.gz
|
||||
/subscription-manager-1.18.1.tar.gz
|
||||
/subscription-manager-1.18.2.tar.gz
|
||||
/subscription-manager-1.18.6.tar.gz
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
349bb5a44c6f0032aef81706499b2965 subscription-manager-1.18.2.tar.gz
|
||||
SHA512 (subscription-manager-1.18.6.tar.gz) = c56a259c72631a6fa3e57ab5a6feff478209e3e6d5a3d6b7f98c98e94421fa43d4683697e52df522f296917da674dbcdb8271de52f7d66c783aa51587a4d7cfe
|
||||
|
@ -60,7 +60,7 @@
|
||||
%endif
|
||||
|
||||
Name: subscription-manager
|
||||
Version: 1.18.2
|
||||
Version: 1.18.6
|
||||
Release: 1%{?dist}
|
||||
Summary: Tools and libraries for subscription and repository management
|
||||
Group: System Environment/Base
|
||||
@ -79,6 +79,8 @@ Requires: python-ethtool
|
||||
Requires: python-iniparse
|
||||
Requires: virt-what
|
||||
Requires: python-rhsm >= 1.18.1
|
||||
Requires: python-decorator
|
||||
|
||||
%if 0%{?sles_version}
|
||||
Requires: dbus-1-python
|
||||
%else
|
||||
@ -218,7 +220,9 @@ Requires: %{name} = %{version}-%{release}
|
||||
Requires: dnf >= 1.0.0
|
||||
|
||||
%description -n dnf-plugin-subscription-manager
|
||||
Subscription Manager plugins for DNF, contains subscription-manager and product-id plugins.
|
||||
This package provides plugins to interact with repositories and subscriptions
|
||||
from the Red Hat entitlement platform; contains subscription-manager and
|
||||
product-id plugins.
|
||||
%endif
|
||||
|
||||
|
||||
@ -546,9 +550,7 @@ rm -rf %{buildroot}
|
||||
|
||||
%post
|
||||
%if %use_systemd
|
||||
/bin/systemctl enable rhsmcertd.service >/dev/null 2>&1 || :
|
||||
/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
||||
/bin/systemctl try-restart rhsmcertd.service >/dev/null 2>&1 || :
|
||||
%systemd_post rhsmcertd.service
|
||||
%else
|
||||
chkconfig --add rhsmcertd
|
||||
%endif
|
||||
@ -597,6 +599,54 @@ fi
|
||||
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||
|
||||
%changelog
|
||||
* Fri Dec 09 2016 Vritant Jain <adarshvritant@gmail.com> 1.18.6-1
|
||||
- 1401078: "Remote server error" on BadStatusLine (khowell@redhat.com)
|
||||
- 1390712: Add --remove-rhn-packages to man pages (khowell@redhat.com)
|
||||
- fix keyerror when showing subs that doesnt have derivedProvidedProducts
|
||||
(rjerrido@outsidaz.org)
|
||||
- Fix test failure when no legacy services installed (khowell@redhat.com)
|
||||
- show Derived Provided Products for products that have them
|
||||
(rjerrido@outsidaz.org)
|
||||
- 1261215: Fix frozen progress bars (khowell@redhat.com)
|
||||
- 1360427: Show error if browser is not detected (khowell@redhat.com)
|
||||
|
||||
* Fri Nov 25 2016 Vritant Jain <adarshvritant@gmail.com> 1.18.5-1
|
||||
- 1395659: Handle ProxyExceptions that occur during GUI operation
|
||||
(csnyder@redhat.com)
|
||||
- 1395662: Properly parses exc_info based on type (csnyder@redhat.com)
|
||||
- 1395794: Include python-decorator as a required dependency
|
||||
(csnyder@redhat.com)
|
||||
- 1378495: Do not touch OSTree Origin files. (csnyder@redhat.com)
|
||||
- Replace m2crypto references (khowell@redhat.com)
|
||||
- 1390258: Validate --remove-rhn-packages conflicting options
|
||||
(khowell@redhat.com)
|
||||
- 1390341: Disable SysV/systemd services properly (khowell@redhat.com)
|
||||
- 1268033: Add progress screen for validate server (khowell@redhat.com)
|
||||
* Tue Nov 08 2016 Vritant Jain <adarshvritant@gmail.com> 1.18.4-1
|
||||
- Rev zanata version to 1.18.X (adarshvritant@gmail.com)
|
||||
- 1389559: Parse log levels properly from config (khowell@redhat.com)
|
||||
- 1390549: Force input prompts to use stdout (khowell@redhat.com)
|
||||
- debrand so my Katello server errors don't point to real RHSM
|
||||
(riehecky@fnal.gov)
|
||||
|
||||
* Mon Oct 17 2016 Vritant Jain <adarshvritant@gmail.com> 1.18.3-1
|
||||
- 1367128, 1367126: Add network.fqdn fact (khowell@redhat.com)
|
||||
- 1305729: Improve dnf-plugin package metadata (khowell@redhat.com)
|
||||
- 1382897: Don't always reenable register menu item (khowell@redhat.com)
|
||||
- 1382355: Don't swallow CLI autoattach exceptions (khowell@redhat.com)
|
||||
- 1245473: Add container-specific no-certs warning (khowell@redhat.com)
|
||||
- 1369577: Fix rct cat-manifest --no-content format (khowell@redhat.com)
|
||||
- 1379258: Fix alignment of GTK3 choose_server screen (khowell@redhat.com)
|
||||
- 1320371: Display user-friendly rate limit messages (khowell@redhat.com)
|
||||
- 1362731: Change titles when moving to subscription attachment
|
||||
(wpoteat@redhat.com)
|
||||
- 1163968: Use macro for service restart (wpoteat@redhat.com)
|
||||
- 1372779: Fix typo in "connection" (khowell@redhat.com)
|
||||
- 1259768: initial-setup: notify and block for async (khowell@redhat.com)
|
||||
- 1365472: Add keyboard mnemonics for initial-setup (khowell@redhat.com)
|
||||
- 1176219: Treat port as integer for GUI conn test (khowell@redhat.com)
|
||||
- 1366523: Ensure that each quantity spinner has proper settings
|
||||
(wpoteat@redhat.com)
|
||||
* Fri Sep 16 2016 Alex Wood <awood@redhat.com> 1.18.2-1
|
||||
- 1176219: Error out if bad proxy settings detected (khowell@redhat.com)
|
||||
- 1376014: Clear activation key list when checkbox unchecked
|
||||
|
Loading…
Reference in New Issue
Block a user