Skip to content
Merged
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
43 changes: 43 additions & 0 deletions connector/docs/changelog/2026/june.rst
Original file line number Diff line number Diff line change
@@ -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
"""""""""""
1 change: 1 addition & 0 deletions connector/docs/changelog/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changelog
.. toctree::
:maxdepth: 2

2026/june
2026/may
2026/april
2026/march
Expand Down

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions connector/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion connector/src/yang/connector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""

# metadata
__version__ = "26.5"
__version__ = "26.6"
__author__ = (
'Jonathan Yang <yuekyang@cisco.com>',
'Siming Yuan <siyuan@cisco.com',
Expand Down
2 changes: 1 addition & 1 deletion ncdiff/src/yang/ncdiff/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
edit-config message."""

# metadata
__version__ = "26.5"
__version__ = "26.6"
__author__ = 'Jonathan Yang <yuekyang@cisco.com>'
__contact__ = 'yang-python@cisco.com'
__copyright__ = 'Cisco Systems, Inc.'
Expand Down
Loading