16856 need to check keyUsage for leaf certs (fix api versions)
authorBrock Pytlik <brock.pytlik@oracle.com>
Wed, 09 Feb 2011 15:25:24 -0800
changeset 2218 f025ba1faae7
parent 2217 222c354606f3
child 2219 60ad60f7592c
16856 need to check keyUsage for leaf certs (fix api versions)
src/gui/modules/misc_non_gui.py
src/pkgdep.py
src/tests/api/t_api.py
src/tests/pkg5unittest.py
--- a/src/gui/modules/misc_non_gui.py	Wed Feb 09 10:10:53 2011 -0800
+++ b/src/gui/modules/misc_non_gui.py	Wed Feb 09 15:25:24 2011 -0800
@@ -40,7 +40,7 @@
 
 # The current version of the Client API the PM, UM and
 # WebInstall GUIs have been tested against and are known to work with.
-CLIENT_API_VERSION = 51
+CLIENT_API_VERSION = 52
 LOG_DIR = "/var/tmp"
 LOG_ERROR_EXT = "_error.log"
 LOG_INFO_EXT = "_info.log"
--- a/src/pkgdep.py	Wed Feb 09 10:10:53 2011 -0800
+++ b/src/pkgdep.py	Wed Feb 09 15:25:24 2011 -0800
@@ -41,7 +41,7 @@
 import pkg.publish.dependencies as dependencies
 from pkg.misc import msg, emsg, PipeError
 
-CLIENT_API_VERSION = 51
+CLIENT_API_VERSION = 52
 PKG_CLIENT_NAME = "pkgdepend"
 
 DEFAULT_SUFFIX = ".res"
--- a/src/tests/api/t_api.py	Wed Feb 09 10:10:53 2011 -0800
+++ b/src/tests/api/t_api.py	Wed Feb 09 15:25:24 2011 -0800
@@ -41,7 +41,7 @@
 import time
 import unittest
 
-CLIENT_API_VERSION = 51
+CLIENT_API_VERSION = 52
 PKG_CLIENT_NAME = "pkg"
 
 class TestPkgApi(pkg5unittest.SingleDepotTestCase):
--- a/src/tests/pkg5unittest.py	Wed Feb 09 10:10:53 2011 -0800
+++ b/src/tests/pkg5unittest.py	Wed Feb 09 15:25:24 2011 -0800
@@ -98,7 +98,7 @@
 
 # Version test suite is known to work with.
 PKG_CLIENT_NAME = "pkg"
-CLIENT_API_VERSION = 51
+CLIENT_API_VERSION = 52
 
 ELIDABLE_ERRORS = [ TestSkippedException, depotcontroller.DepotStateException ]