diff --git a/connector/docs/changelog/2026/june.rst b/connector/docs/changelog/2026/june.rst new file mode 100644 index 0000000..454f84a --- /dev/null +++ b/connector/docs/changelog/2026/june.rst @@ -0,0 +1,43 @@ +June 2026 +========== + +June 30 - Yang v26.6 +------------------------ + + + +.. csv-table:: New Module Versions + :header: "Modules", "Version" + + ``yang.connector``, v26.6 + ``yang.ncdiff``, v26.6 + + + + +Changelogs +^^^^^^^^^^ +yang.connector +"""""""""""""" +-------------------------------------------------------------------------------- + New +-------------------------------------------------------------------------------- + +* gnmi + * Modified Gnmi + * Added support for commit and rollback operations + + +-------------------------------------------------------------------------------- + Fix +-------------------------------------------------------------------------------- + +* yang.connector + * Modified Netconf + * Captured SSH tunnel setup and ncclient session logs in the per-connection NETCONF log file. + * Avoided attaching the pyATS tasklog handler when its stream is unavailable. + + + +yang.ncdiff +""""""""""" diff --git a/connector/docs/changelog/index.rst b/connector/docs/changelog/index.rst index d49d787..1e1f1d1 100644 --- a/connector/docs/changelog/index.rst +++ b/connector/docs/changelog/index.rst @@ -4,6 +4,7 @@ Changelog .. toctree:: :maxdepth: 2 + 2026/june 2026/may 2026/april 2026/march diff --git a/connector/docs/changelog/undistributed/changelog_sodn_yang_connector_proto_202605251206.rst b/connector/docs/changelog/undistributed/changelog_sodn_yang_connector_proto_202605251206.rst deleted file mode 100644 index e8534f4..0000000 --- a/connector/docs/changelog/undistributed/changelog_sodn_yang_connector_proto_202605251206.rst +++ /dev/null @@ -1,6 +0,0 @@ --------------------------------------------------------------------------------- - New --------------------------------------------------------------------------------- -* gnmi - * Modified Gnmi - * Added support for commit and rollback operations \ No newline at end of file diff --git a/connector/docs/changelog/undistributed/netconf_sshtunnel_logging.rst b/connector/docs/changelog/undistributed/netconf_sshtunnel_logging.rst deleted file mode 100644 index 892d629..0000000 --- a/connector/docs/changelog/undistributed/netconf_sshtunnel_logging.rst +++ /dev/null @@ -1,7 +0,0 @@ --------------------------------------------------------------------------------- -Fix --------------------------------------------------------------------------------- -* yang.connector - * Modified Netconf: - * Captured SSH tunnel setup and ncclient session logs in the per-connection NETCONF log file. - * Avoided attaching the pyATS tasklog handler when its stream is unavailable. diff --git a/connector/setup.py b/connector/setup.py index 50dbadd..fb003a1 100755 --- a/connector/setup.py +++ b/connector/setup.py @@ -179,8 +179,8 @@ def find_version(*paths): 'paramiko >= 1.15.1', 'lxml >= 6.0.1', 'ncclient >= 0.6.6', - 'grpcio', - 'protobuf' + 'grpcio >= 1.63.0', + 'protobuf >= 5.27.2' ], # any additional groups of dependencies. diff --git a/connector/src/yang/connector/__init__.py b/connector/src/yang/connector/__init__.py index 313e229..53ad0f7 100644 --- a/connector/src/yang/connector/__init__.py +++ b/connector/src/yang/connector/__init__.py @@ -7,7 +7,7 @@ """ # metadata -__version__ = "26.5" +__version__ = "26.6" __author__ = ( 'Jonathan Yang ', 'Siming Yuan