Skip to content

Commit 082e7f9

Browse files
authored
drop support CML 2.6.x (#103)
1 parent 21bfa0b commit 082e7f9

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1+
# Catalyst SD-WAN Lab 2.1.1 [Jun 18, 2025]
2+
3+
- Print error when user tries to use the SD-WAN Lab Tool 2.1.x or higher against CML 2.6.x
4+
15
# Catalyst SD-WAN Lab 2.1.0 [Jun 17, 2025]
26

7+
- Drop support for CML 2.6.x
38
- Add support for IPv6 and dual stack overlays
49
- Change Gateway node type from c8000v to IOL XE
510
- Change transports node type from unmanaged_switch to IOL L2 XE

catalyst_sdwan_lab/tasks/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,10 @@ def create_cert(ca_cert_str: str, ca_key_str: str, csr_str: str) -> str:
208208

209209

210210
def verify_cml_version(cml: ClientLibrary) -> None:
211-
if cml.VERSION.major == 2 and cml.VERSION.minor >= 6:
211+
if cml.VERSION.major == 2 and cml.VERSION.minor >= 7:
212212
pass
213213
else:
214-
exit("Upgrade CML to 2.6 or later to use the tool.")
214+
exit("Upgrade CML to 2.7 or later to use the tool.")
215215

216216

217217
def get_cml_sdwan_image_definition(

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "catalyst-sdwan-lab"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
description = "Catalyst SD-WAN Lab Deployment Tool - Automation Tool for managing Cisco Catalyst SD-WAN labs inside Cisco Modeling Labs"
55
license = "BSD-3-Clause"
66
authors = ["Tomasz Zarski <[email protected]>"]

0 commit comments

Comments
 (0)