Update git submodules

* Update os-win from branch 'master'
  - Merge "Cleanup utilsfactory map"
  - Cleanup utilsfactory map
    
    This change cleans up the utilsfactory map, making it easier to add
    new classes.
    
    Most classes have 6.2 as a minimum version, without having a maximum
    version cap. For this reason, this change sets those versions as
    defaults so that we don't have to be explicit every time.
    
    At the same time, we're now using a list for each class type, instead
    of a dict that uses the class name as a key (which is redundant). So,
    something like this:
    
    'networkutils': {
        'NetworkUtils': {
            'min_version': 6.2,
            'max_version': 6.3,
            'path': 'os_win.utils.network.networkutils.NetworkUtils'},
        'NetworkUtilsR2': {
            'min_version': 6.3,
            'max_version': None,
            'path': 'os_win.utils.network.networkutils.NetworkUtilsR2'}},
    
    ... becomes
    
    'networkutils': [
        {'max_version': 6.3,
         'path': 'os_win.utils.network.networkutils.NetworkUtils'},
        {'min_version': 6.3,
         'path': 'os_win.utils.network.networkutils.NetworkUtilsR2'},
    ],
    
    Change-Id: I7919617166b2e872f1b50c0a0f40196fc90e9a82
This commit is contained in:
Zuul 2019-01-16 14:01:23 +00:00 committed by Gerrit Code Review
parent 3557d39894
commit 8a1ffb2053
1 changed files with 1 additions and 1 deletions

2
os-win

@ -1 +1 @@
Subproject commit 2223f3c7fa7b91ab824afbe014510da8909f4931
Subproject commit 7fa5db4de9bd92e7b4e110168f91a6597430bf47