Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ The CloudGenix Config Utility will default to using the SDK version. An out-of-d
#### Version
| Version | Build | Changes |
| ------- | ----- | ------- |
| **1.7.0** | **b2** | Fix for CGCBL-336, #73, #74 and CGESC-700|
| **1.7.0** | **b2** | Fix for CGESC-700|
| | **b2** | Fix for CGCBL-336, #73, #74|
| | **b1** | Support for CloudGenix SDK 6.0.1b1, bug fixes|
| **1.6.0** | **b2** | Minor bug fixes |
| | **b1** | Support for CloudGenix SDK 5.6.1b2, cellular devices, multicast, apiversion flag in cli, bugfixes
Expand Down
4 changes: 2 additions & 2 deletions cloudgenix_config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
Configuration IMPORT/EXPORT common functions

**Version:** 1.7.0b2
**Version:** 1.7.0b3

**Author:** CloudGenix

Expand Down Expand Up @@ -49,7 +49,7 @@


# Version for reference
__version__ = "1.7.0b2"
__version__ = "1.7.0b3"
version = __version__

__author__ = "CloudGenix Developer Support <developers@cloudgenix.com>"
Expand Down
2 changes: 1 addition & 1 deletion cloudgenix_config/default_interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
Configuration IMPORT/EXPORT default device port configurations

**Version:** 1.7.0b2
**Version:** 1.7.0b3

**Author:** CloudGenix

Expand Down
6 changes: 5 additions & 1 deletion cloudgenix_config/do.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
Configuration IMPORT worker/script

**Version:** 1.7.0b2
**Version:** 1.7.0b3

**Author:** CloudGenix

Expand Down Expand Up @@ -3850,6 +3850,10 @@ def modify_interface(config_interface, interface_id, interfaces_n2id, waninterfa
if interface_config.get('type') == 'subinterface' or interface_config.get('type') == 'pppoe':
config['mtu'] = 0
config['used_for'] = interface_config.get('used_for')
config['type'] = interface_config.get('type')
if interface_config.get('type') == 'virtual_interface':
config['type'] = 'virtual_interface'
config['bound_interfaces'] = interface_config.get('bound_interfaces')
# Check for changes:
interface_change_check = copy.deepcopy(interface_config)
interface_config.update(interface_template)
Expand Down
2 changes: 1 addition & 1 deletion cloudgenix_config/pull.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
Configuration EXPORT worker/script

**Version:** 1.7.0b2
**Version:** 1.7.0b3

**Author:** CloudGenix

Expand Down
2 changes: 1 addition & 1 deletion release_notes/170b2.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Release Notes 1.7.0b2
# Release Notes 1.7.0b3

## Release Date
August 25, 2022
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]
name = cloudgenix_config
description = Configuration exporting and Continuous Integration (CI) capable configuration importing for the CloudGenix Cloud Controller.
version = 1.7.0b2
version = 1.7.0b3
author = CloudGenix Developer Support
author-email = prisma-sase-developers@paloaltonetworks.com
description-file = README.md
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
long_description = f.read()

setup(name='cloudgenix_config',
version='1.7.0b2',
version='1.7.0b3',
description='Configuration exporting and Continuous Integration (CI) capable configuration importing for the '
'CloudGenix Cloud Controller.',
long_description=long_description,
Expand Down