-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* SIMPLE-7063 Added group_display_attribute and refactored test_auth (#122) Do not fail if importing topologies for previous CML versions * Removed unexpected behavior of import lab method (#120) When a lab with a specific title existed on a CML instance, we joined that lab instead of creating a new lab with the same title which would had been perfectly fine. I believe that this was some obsolete feature request from pre-CML 2.0 era where labs possibly were enforced to have unique titles. * SIMPLE-6969 Changed PUT to PATCH for /system/auth/config * SIMPLE-6964 Dropped smart annotation tag and font properties (#119) * SIMPLE-6883 Support for smart annotations (#118) * SIMPLE-6813 Added deployed_mac_address property to Interface (#116) * SIMPLE-6776 local groups should still work with unset group filter (#115) * SIMPLE-6827 - removed MAC address block support (#114) * Dropped support for python3.8 in github actions * SIMPLE-6834 integration tests for ldap groups (#113) * Added the virlutils option to disable SSL check via ENV (#111) * SIMPLE-6706 fixed the 'owner' attribute of a joined lab (#108) * SIMPLE-6764 ldap group tests and system auth test (#110) * SIMPLE-6615 custom mac addresses implementation (#106) * SIMPLE-6397 Added support for 2.8, updated obsolete controller versions (#102) * SIMPLE-6345 refactored API error handling for better tracebacks (#98) * SIMPLE-6506 removed/deprecated offline mode leftovers (#97) * SIMPLE-6429 fix potentially mishandled data structures (#94) * SIMPLE-6384 Added rotation attribute to ellipse and rectangle annotations (#96) * Re-added api/* to the doc source tree removed by mistake * SIMPLE-6410 SQ issues is PCL (#90)
- Loading branch information
Showing
31 changed files
with
2,746 additions
and
1,533 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ | |
|
||
sys.path.insert(0, os.path.abspath("../virl2_client")) | ||
|
||
VIRL2_DOC = "virl2_client Documentation" | ||
|
||
# -- Project information ----------------------------------------------------- | ||
|
||
|
@@ -139,7 +140,7 @@ | |
( | ||
master_doc, | ||
"virl2_client.tex", | ||
"virl2_client Documentation", | ||
VIRL2_DOC, | ||
"VIRL2 team <[email protected]>", | ||
"manual", | ||
), | ||
|
@@ -150,7 +151,7 @@ | |
|
||
# One entry per manual page. List of tuples | ||
# (source start file, name, description, authors, manual section). | ||
man_pages = [(master_doc, "virl2_client", "virl2_client Documentation", [author], 1)] | ||
man_pages = [(master_doc, "virl2_client", VIRL2_DOC, [author], 1)] | ||
|
||
|
||
# -- Options for Texinfo output ---------------------------------------------- | ||
|
@@ -162,7 +163,7 @@ | |
( | ||
master_doc, | ||
"virl2_client", | ||
"virl2_client Documentation", | ||
VIRL2_DOC, | ||
author, | ||
"virl2_client", | ||
"One line description of project.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ CML 2 controller. | |
|
||
intro | ||
examples | ||
api/* | ||
|
||
.. only:: internal | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "virl2_client" | ||
version = "2.7.1" | ||
version = "2.8.0" | ||
description = "VIRL2 Client Library" | ||
authors = ["Simon Knight <[email protected]>", "Ralph Schmieder <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -15,13 +15,13 @@ classifiers = [ | |
"Environment :: Console", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: System :: Networking", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8.1" | ||
httpx = "^0.26.0" | ||
python = "^3.9.0" | ||
httpx = "^0.27.0" | ||
|
||
# https://github.com/python-poetry/poetry/pull/606 -- no support for optional dev-deps | ||
# optional package for events | ||
|
@@ -33,15 +33,15 @@ aiohttp = {version = "^3.8", optional = true} | |
pyats = {version = "^24", optional = true} | ||
|
||
# optional packages for documentation build | ||
sphinx_rtd_theme = {version="^1", optional = true} | ||
sphinx_rtd_theme = {version="^2", optional = true} | ||
# version 8 is available but requires python>=3.10 | ||
sphinx = {version="^7", optional = true} | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
flake8 = "^7" | ||
pre-commit = "^3" | ||
# https://github.com/pytest-dev/pytest-asyncio/issues/737 | ||
pytest = "<8" | ||
respx = "^0.20.0" | ||
pytest = "*" | ||
respx = "^0.21.0" | ||
|
||
[tool.poetry.extras] | ||
events = ["aiohttp"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,29 @@ | ||
anyio==4.3.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
certifi==2024.2.2 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
cfgv==3.4.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
colorama==0.4.6 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" and sys_platform == "win32" | ||
distlib==0.3.8 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
exceptiongroup==1.2.1 ; python_full_version >= "3.8.1" and python_version < "3.11" | ||
filelock==3.14.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
flake8==7.0.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
h11==0.14.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
httpcore==1.0.5 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
httpx==0.26.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
identify==2.5.36 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
idna==3.7 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
iniconfig==2.0.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
mccabe==0.7.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
nodeenv==1.8.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
packaging==24.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
platformdirs==4.2.2 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
pluggy==1.5.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
pre-commit==3.5.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
pycodestyle==2.11.1 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
pyflakes==3.2.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
pytest==7.4.4 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
pyyaml==6.0.1 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
respx==0.20.2 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
setuptools==69.5.1 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
sniffio==1.3.1 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
tomli==2.0.1 ; python_full_version >= "3.8.1" and python_version < "3.11" | ||
typing-extensions==4.11.0 ; python_full_version >= "3.8.1" and python_version < "3.11" | ||
virtualenv==20.26.2 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" | ||
anyio==4.6.1 ; python_version >= "3.9" and python_full_version < "4.0.0" | ||
certifi==2024.8.30 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0" | ||
cfgv==3.4.0 ; python_version >= "3.9" and python_full_version < "4.0.0" | ||
colorama==0.4.6 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0" and sys_platform == "win32" | ||
distlib==0.3.9 ; python_version >= "3.9" and python_full_version < "4.0.0" | ||
exceptiongroup==1.2.2 ; python_version >= "3.9" and python_version < "3.11" | ||
filelock==3.16.1 ; python_version >= "3.9" and python_full_version < "4.0.0" | ||
flake8==7.1.1 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0" | ||
h11==0.14.0 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0" | ||
httpcore==1.0.6 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0" | ||
httpx==0.27.2 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0" | ||
identify==2.6.1 ; python_version >= "3.9" and python_full_version < "4.0.0" | ||
idna==3.10 ; python_version >= "3.9" and python_full_version < "4.0.0" | ||
iniconfig==2.0.0 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0" | ||
mccabe==0.7.0 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0" | ||
nodeenv==1.9.1 ; python_version >= "3.9" and python_full_version < "4.0.0" | ||
packaging==24.1 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0" | ||
platformdirs==4.3.6 ; python_version >= "3.9" and python_full_version < "4.0.0" | ||
pluggy==1.5.0 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0" | ||
pre-commit==3.8.0 ; python_version >= "3.9" and python_full_version < "4.0.0" | ||
pycodestyle==2.12.1 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0" | ||
pyflakes==3.2.0 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0" | ||
pytest==8.3.3 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0" | ||
pyyaml==6.0.2 ; python_version >= "3.9" and python_full_version < "4.0.0" | ||
respx==0.21.1 ; python_full_version >= "3.9.0" and python_full_version < "4.0.0" | ||
sniffio==1.3.1 ; python_version >= "3.9" and python_full_version < "4.0.0" | ||
tomli==2.0.2 ; python_full_version >= "3.9.0" and python_version < "3.11" | ||
typing-extensions==4.12.2 ; python_version >= "3.9" and python_version < "3.11" | ||
virtualenv==20.26.6 ; python_version >= "3.9" and python_full_version < "4.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.