VOL-4840 - Tracking ticket for release documentation

conf.py
-------
  o Define more external link macros to shorten URLs.

Misc
----
  o Re-create patch Ifa5009e78f85944c9b6ce2991bed86ae852fcd4b
     to re-sync with master -vs- resovle server merge conflicts.
  o Bulk copyright update.
  o Update more released version strings in the component dependency grid.

Change-Id: I71b7cfbaa3f52191d28e1d2164784e6ffaad86a1
diff --git a/VERSION b/VERSION
index c62007a..763f85e 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.11.0-dev7
+2.11.0-dev8
diff --git a/_static/css/rtd_theme_mods.css b/_static/css/rtd_theme_mods.css
index be943dc..1e3f8d9 100644
--- a/_static/css/rtd_theme_mods.css
+++ b/_static/css/rtd_theme_mods.css
@@ -1,5 +1,5 @@
 /*
- * Copyright 2019-present Open Networking Foundation
+ * Copyright 2019-2023 Open Networking Foundation (ONF) and the ONF Contributors
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
diff --git a/_templates/meta_refresh.html b/_templates/meta_refresh.html
index b940c76..fde0998 100644
--- a/_templates/meta_refresh.html
+++ b/_templates/meta_refresh.html
@@ -1,5 +1,6 @@
 <!--
-SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
+SPDX-FileCopyrightText: 2020-2023 Open Networking Foundation (ONF) and the ONF Contributors
+
 SPDX-License-Identifier: Apache-2.0
 --!>
 <html><head>
diff --git a/_templates/versions.html b/_templates/versions.html
index 8ed5e31..85dc1eb 100644
--- a/_templates/versions.html
+++ b/_templates/versions.html
@@ -1,5 +1,5 @@
 <!--
-SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
+SPDX-FileCopyrightText: 2020-2023 Open Networking Foundation (ONF) and the ONF Contributors
 SPDX-License-Identifier: Apache-2.0
 --!>
 {%- if current_version %}
diff --git a/howto/edit_voltha_docs.rst b/howto/edit_voltha_docs.rst
index fcbf98e..540b734 100644
--- a/howto/edit_voltha_docs.rst
+++ b/howto/edit_voltha_docs.rst
@@ -42,7 +42,7 @@
 Guides for RST:
 
 - https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html
-- http://www.sphinx-doc.org/en/master/usage/restructuredtext/index.html
+- https://www.sphinx-doc.org/en/master/usage/restructuredtext/index.html
 
 RST has multiple heading formats possible, the ones we're using are in the
 order for the HTML h1-h5: ``=``, ``-`` ``"``, ``'``, ``^``.
diff --git a/howto/release/ci-management/index.rst b/howto/release/ci-management/index.rst
new file mode 100644
index 0000000..6a69d0f
--- /dev/null
+++ b/howto/release/ci-management/index.rst
@@ -0,0 +1,27 @@
+repo:ci-management
+==================
+
+General
+-------
+
+For an LTS release (v2.11, v2.8) tests on the master branch will need
+to be copied into a named voltha-version folder and updated to checkout
+and exercise tests and source on that branch.
+
+`Jenkins Views <https://jenkins.opencord.org/>`_
+------------------------------------------------
+Begin by creating voltha-{LST} views for the new pipeline jobs.
+
+jjb/software-upgrades.yaml
+--------------------------
+
+- Create a new software-upgrades-test-0211 branch from the old.
+- Update released component versions mentioned in the configs.
+- Update master branch released versions as well.
+- Tricky part, SNAPSHOT versions are not visible to navigation browsing:
+
+  - `org/opencord <https://oss.sonatype.org/content/groups/public/org/opencord>`_
+
+- Instead obtain snapshot version from pom.xml and type in the explicit URL path:
+
+  - `aaa-app/2.9.0-SNAPSHOT <https://oss.sonatype.org/content/groups/public/org/opencord/aaa-app/2.9.0-SNAPSHOT/>`_
diff --git a/howto/release/components/voltha-go.rst b/howto/release/components/voltha-go.rst
new file mode 100644
index 0000000..257faf2
--- /dev/null
+++ b/howto/release/components/voltha-go.rst
@@ -0,0 +1,46 @@
+VOLTHA Components: voltha-go
+============================
+
+Dependencies
+------------
+
+- update go.mod
+
+  - grep '/opencord/' go.mod
+  - omci-lib-go
+  - voltha-protos
+  - voltha-lib-go
+
+
+Validate
+--------
+
+Versioning
+----------
+
+- Based on VERSION file contents in root directory of the repository.
+
+Release
+-------
+
+- Update project copyright notice ending date.
+- Bump /opencord/ component version(s) in go.mod
+- make distclean
+- make lint
+  - if go.mod and go.sum are the only deltas
+  - git commit -F {commit_message_file}
+- make mod-update
+  - git add --all
+  - avoid running 'make lint' prior to git commit --amend
+  - vendor/ files modified, git status reports delta w/o content (file touch?)
+- Review and commit changes.
+- make lint lint-mod
+- If docker is configured
+  - make build test
+- When ready to release a new component version of voltha-openolt-adapter
+
+  - Bump VERSION file to a non-dev semantic version.
+
+- Commit changes and create a pull request.
+- Once approved a jenkins job will launch.
+
diff --git a/howto/release/components/voltha-lib-go.rst b/howto/release/components/voltha-lib-go.rst
index da1b057..8785b06 100644
--- a/howto/release/components/voltha-lib-go.rst
+++ b/howto/release/components/voltha-lib-go.rst
@@ -20,6 +20,27 @@
 Release
 -------
 
+<<<<<<< HEAD
 - Bump VERSION file to a non-dev semantic version.
 - See Validate above
 - Commit and approve to trigger a build
+=======
+<<<<<<< HEAD
+- Bump VERSION file to a non-dev semantic version.
+- See Validate above
+- Commit and approve to trigger a build
+=======
+- Bump /opencord/ component versions in go.mod
+- make distclean
+- make mod-update
+- Review and commit changes.
+- make lint-mod
+- When ready to release a new component version of voltha-lib-go
+
+  - Bump VERSION file to a non-dev semantic version.
+
+- Commit changes and create a pull request.
+- Once approved a jenkins job will launch.
+
+>>>>>>> cb4f2e0 (VOL-4840 - Tracking ticket for release documentation.)
+>>>>>>> f854950 (VOL-4840 - Tracking ticket for release documentation.)
diff --git a/howto/release/components/voltha-onos.rst b/howto/release/components/voltha-onos.rst
new file mode 100644
index 0000000..6e84479
--- /dev/null
+++ b/howto/release/components/voltha-onos.rst
@@ -0,0 +1,24 @@
+VOLTHA Components: votlha-onos
+==============================
+
+voltha-onos is the last onos dependency to be released.
+
+Release Steps
+-------------
+
+- After all ONOS component dependencies have been released.
+- Clone the :vol-ger:`voltha-onos` repository.
+- Modify `dependencies.xml <https://gerrit.opencord.org/plugins/gitiles/voltha-onos/+/refs/heads/master/dependencies.xml>`_
+
+  - Update copyright notice.
+  - Update released version for each component.
+
+- Bump the VERSION file string
+
+  - :vol-ger:`voltha-onos/+/refs/heads/master/VERSION`
+  - This will release a new ONOS docker image.
+
+- `release_notes <https://docs.voltha.org/master/release_notes/index.html>`_
+
+  - Update all released component version strings in the grid.
+
diff --git a/howto/release/components/voltha-openolt-adapter.rst b/howto/release/components/voltha-openolt-adapter.rst
new file mode 100644
index 0000000..89ff693
--- /dev/null
+++ b/howto/release/components/voltha-openolt-adapter.rst
@@ -0,0 +1,45 @@
+VOLTHA Components: voltha-openolt-adapter
+=========================================
+
+Dependencies
+------------
+
+- update go.mod
+
+  - grep '/opencord/' go.mod
+  - voltha-protos
+  - voltha-lib-go
+
+
+Validate
+--------
+
+Versioning
+----------
+
+- Based on VERSION file contents in root directory of the repository.
+
+Release
+-------
+
+- Update project copyright notice ending date.
+- Bump /opencord/ component version(s) in go.mod
+- make distclean
+- make lint
+  - if go.mod and go.sum are the only deltas
+  - git commit -F {commit_message_file}
+- make mod-update
+  - git add vendor/ modified files.
+  - avoid running 'make lint' prior to git commit --amend
+  - vendor/ files modified, git status reports delta w/o content (file touch?)
+- Review and commit changes.
+- make lint lint-mod
+- If docker is configured
+  - make build test
+- When ready to release a new component version of voltha-openolt-adapter
+
+  - Bump VERSION file to a non-dev semantic version.
+
+- Commit changes and create a pull request.
+- Once approved a jenkins job will launch.
+
diff --git a/howto/release/components/voltha-openonu-adapter-go.rst b/howto/release/components/voltha-openonu-adapter-go.rst
new file mode 100644
index 0000000..65ff6dc
--- /dev/null
+++ b/howto/release/components/voltha-openonu-adapter-go.rst
@@ -0,0 +1,46 @@
+VOLTHA Components: voltha-openonu-adapter-go
+============================================
+
+Dependencies
+------------
+
+- update go.mod
+
+  - grep '/opencord/' go.mod
+  - omci-lib-go
+  - voltha-protos
+  - voltha-lib-go
+
+
+Validate
+--------
+
+Versioning
+----------
+
+- Based on VERSION file contents in root directory of the repository.
+
+Release
+-------
+
+- Update project copyright notice ending date.
+- Bump /opencord/ component version(s) in go.mod
+- make distclean
+- make lint
+  - if go.mod and go.sum are the only deltas
+  - git commit -F {commit_message_file}
+- make mod-update
+  - git add --all
+  - avoid running 'make lint' prior to git commit --amend
+  - vendor/ files modified, git status reports delta w/o content (file touch?)
+- Review and commit changes.
+- make lint lint-mod
+- If docker is configured
+  - make build test
+- When ready to release a new component version of voltha-openolt-adapter
+
+  - Bump VERSION file to a non-dev semantic version.
+
+- Commit changes and create a pull request.
+- Once approved a jenkins job will launch.
+
diff --git a/howto/release/index.rst b/howto/release/index.rst
index db164b3..e253cb2 100644
--- a/howto/release/index.rst
+++ b/howto/release/index.rst
@@ -3,6 +3,7 @@
 .. toctree::
    :maxdepth: 2
 
+   ci-management/index
    components/index
    hierarchy/index
 
diff --git a/makefiles/consts.mk b/makefiles/consts.mk
index c34d119..043ec65 100644
--- a/makefiles/consts.mk
+++ b/makefiles/consts.mk
@@ -1,6 +1,6 @@
 # -*- makefile -*-
 # -----------------------------------------------------------------------
-# Copyright 2022 Open Networking Foundation
+# Copyright 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/makefiles/help/trailer.mk b/makefiles/help/trailer.mk
index bf548db..d5d5369 100644
--- a/makefiles/help/trailer.mk
+++ b/makefiles/help/trailer.mk
@@ -1,6 +1,6 @@
 # -*- makefile -*-
 # -----------------------------------------------------------------------
-# Copyright 2017-2022 Open Networking Foundation
+# Copyright 2017-2023 Open Networking Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/makefiles/help/variables.mk b/makefiles/help/variables.mk
index a50b233..80171a7 100644
--- a/makefiles/help/variables.mk
+++ b/makefiles/help/variables.mk
@@ -1,6 +1,6 @@
 # -*- makefile -*-
 # -----------------------------------------------------------------------
-# Copyright 2017-2022 Open Networking Foundation
+# Copyright 2017-2023 Open Networking Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/makefiles/lint/include.mk b/makefiles/lint/include.mk
index 979a6fb..0f653c9 100644
--- a/makefiles/lint/include.mk
+++ b/makefiles/lint/include.mk
@@ -1,6 +1,6 @@
 # -*- makefile -*-
 # -----------------------------------------------------------------------
-# Copyright 2017-2022 Open Networking Foundation
+# Copyright 2017-2023 Open Networking Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/makefiles/lint/json.mk b/makefiles/lint/json.mk
index 0a11c71..e67fee1 100644
--- a/makefiles/lint/json.mk
+++ b/makefiles/lint/json.mk
@@ -1,6 +1,6 @@
 # -*- makefile -*-
 # -----------------------------------------------------------------------
-# Copyright 2017-2022 Open Networking Foundation
+# Copyright 2017-2023 Open Networking Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/makefiles/lint/python.mk b/makefiles/lint/python.mk
index 5aecd58..d8bdfe0 100644
--- a/makefiles/lint/python.mk
+++ b/makefiles/lint/python.mk
@@ -1,6 +1,6 @@
 # -*- makefile -*-
 # -----------------------------------------------------------------------
-# Copyright 2017-2022 Open Networking Foundation
+# Copyright 2017-2023 Open Networking Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/makefiles/lint/robot.mk b/makefiles/lint/robot.mk
index ec5579e..1c7119f 100644
--- a/makefiles/lint/robot.mk
+++ b/makefiles/lint/robot.mk
@@ -1,6 +1,6 @@
 # -*- makefile -*-
 # -----------------------------------------------------------------------
-# Copyright 2017-2022 Open Networking Foundation
+# Copyright 2017-2023 Open Networking Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/makefiles/lint/shell.mk b/makefiles/lint/shell.mk
index da92921..9923b72 100644
--- a/makefiles/lint/shell.mk
+++ b/makefiles/lint/shell.mk
@@ -1,6 +1,6 @@
 # -*- makefile -*-
 # -----------------------------------------------------------------------
-# Copyright 2017-2022 Open Networking Foundation
+# Copyright 2017-2023 Open Networking Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/makefiles/lint/yaml.mk b/makefiles/lint/yaml.mk
index c9cb392..c875686 100644
--- a/makefiles/lint/yaml.mk
+++ b/makefiles/lint/yaml.mk
@@ -1,6 +1,6 @@
 # -*- makefile -*-
 # -----------------------------------------------------------------------
-# Copyright 2017-2022 Open Networking Foundation
+# Copyright 2017-2023 Open Networking Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/makefiles/patches/help.mk b/makefiles/patches/help.mk
index ce459fd..e0745a8 100644
--- a/makefiles/patches/help.mk
+++ b/makefiles/patches/help.mk
@@ -1,6 +1,6 @@
 # -*- makefile -*-
 # -----------------------------------------------------------------------
-# Copyright 2017-2022 Open Networking Foundation
+# Copyright 2017-2023 Open Networking Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/makefiles/patches/include.mk b/makefiles/patches/include.mk
index 1c0c869..2bd1bfd 100644
--- a/makefiles/patches/include.mk
+++ b/makefiles/patches/include.mk
@@ -1,6 +1,6 @@
 # -*- makefile -*-
 # -----------------------------------------------------------------------
-# Copyright 2022 Open Networking Foundation
+# Copyright 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/makefiles/virtualenv.mk b/makefiles/virtualenv.mk
index e8cab77..d54bfda 100644
--- a/makefiles/virtualenv.mk
+++ b/makefiles/virtualenv.mk
@@ -1,6 +1,6 @@
 # -*- makefile -*-
 ## -----------------------------------------------------------------------
-# Copyright 2017-2022 Open Networking Foundation
+# Copyright 2017-2023 Open Networking Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/makefiles/voltha/docs-catchall-targets.mk b/makefiles/voltha/docs-catchall-targets.mk
index 72ed700..ca27d5c 100644
--- a/makefiles/voltha/docs-catchall-targets.mk
+++ b/makefiles/voltha/docs-catchall-targets.mk
@@ -1,6 +1,6 @@
 # -*- makefile -*-
 # -----------------------------------------------------------------------
-# Copyright 2022 Open Networking Foundation
+# Copyright 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/mdl_strict.rb b/mdl_strict.rb
index 2e02e7c..1f7944e 100644
--- a/mdl_strict.rb
+++ b/mdl_strict.rb
@@ -1,4 +1,4 @@
-# Copyright 2017-present Open Networking Foundation
+# Copyright 2017-2023 Open Networking Foundation (ONF) and the ONF Contributors
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/overview/release_process.rst b/overview/release_process.rst
index ef88956..45686eb 100644
--- a/overview/release_process.rst
+++ b/overview/release_process.rst
@@ -1,4 +1,3 @@
-======================
 VOLTHA Release process
 ======================
 This document describes the technical steps of VOLTHA's release process.
diff --git a/patches/python_310_migration.sh b/patches/python_310_migration.sh
index e324146..608249a 100755
--- a/patches/python_310_migration.sh
+++ b/patches/python_310_migration.sh
@@ -1,6 +1,6 @@
 #!/bin/bash
 # -----------------------------------------------------------------------
-# Copyright 2022 Open Networking Foundation
+# Copyright 2022-2023 Open Networking Foundation (ONF) and the ONF Contributors
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
diff --git a/release_notes/voltha_2.11.rst b/release_notes/voltha_2.11.rst
index a8f2d62..f808e4e 100644
--- a/release_notes/voltha_2.11.rst
+++ b/release_notes/voltha_2.11.rst
@@ -176,10 +176,10 @@
      -
    * - `aaa <https://gerrit.opencord.org/gitweb?p=aaa.git;a=summary>`_
      - N/A
-     - ``2.8.0``
+     - ``2.9.0``
      -
-     - `X <https://gerrit.opencord.org/plugins/gitiles/aaa/+/refs/tags/2.8.0>`__
-     -
+     - `X <https://gerrit.opencord.org/plugins/gitiles/aaa/+/refs/tags/2.9.0>`__
+     - `X <https://github.com/opencord/aaa/tree/2.9.0>`__
    * - `dhcpl2relay <https://gerrit.opencord.org/gitweb?p=dhcpl2relay.git;a=summary>`_
      -
      - ``2.9.0``
@@ -239,7 +239,7 @@
 +++++++++++++++++
 
 .. list-table:: VOLTHA Components
-   :widths: 30, 5, 5, 5, 5, 5
+   :widths: 30, 5, 5, 5, 5, 5, 5
    :header-rows: 2
 
    * - Component
@@ -248,10 +248,12 @@
      -
      - Gerrit
      - Github
+     - `Docker <https://hub.docker.com/search?q=voltha>`_
    * - Name
      - Version
      - Version
-     - with Chart
+     - `with Chart <https://gerrit.opencord.org/gitweb?p=helm-charts.git;a=tree;f=bbsim>`_
+     - URL
      - URL
      - URL
    * -
@@ -260,102 +262,119 @@
      -
      -
      -
+     -
    * - `Helm Charts (voltha-helm-charts) <https://gerrit.opencord.org/gitweb?p=voltha-helm-charts.git;a=tree>`_
      - ``3.2.1-dev1``
      -
      -
      - `X <https://gerrit.opencord.org/plugins/gitiles/voltha-helm-charts/+/refs/heads/master>`__
      - `X <https://github.com/opencord/voltha-helm-charts/tree/3.2.0>`__
+     -
    * - `bbsim <https://gerrit.opencord.org/gitweb?p=bbsim.git;a=tree>`__
      - ``1.14.4``
      - ``4.8.6``
      - `chart <https://gerrit.opencord.org/gitweb?p=helm-charts.git;a=tree;f=bbsim>`_
      - `X <https://gerrit.opencord.org/plugins/gitiles/voltha-openolt-adapter/+/refs/tags/v4.2.10>`__
      - `X <https://github.com/opencord/bbsim/tree/v1.14.4>`__
+     - `X <https://hub.docker.com/layers/voltha/bbsim/1.14.4/images/sha256-c23de193c1d7cf8d32c48edfbec4bfa6c47dbeecd4b31d040da0255eeab2ec58?context=explore>`__
    * - `Bbsim-sadis-server <https://gerrit.opencord.org/gitweb?p=bbsim-sadis-server.git;a=tree>`_
      -
      - ``0.3.4``
      -
-     -
+     - `X <https://gerrit.opencord.org/plugins/gitiles/bbsim-sadis-server/+/refs/tags/v0.3.4>`_
      - `X <https://github.com/opencord/bbsim-sadis-server/releases/tag/v0.3.4>`__
+     -
    * - `ofagent-go <https://gerrit.opencord.org/gitweb?p=ofagent-go.git;a=tree>`_
      - ``2.1.2``
      - ``2.1.2``
      - ``2.11.3``
      -
      - `X <https://github.com/opencord/ofagent-go>`__
+     - `1.1.4-? <https://hub.docker.com/layers/voltha/ofagent-go/1.1.4/images/sha256-8231111b69c8643c4981d64abff0a85d71f80763bb98632bb101e92b89882647?context=explore>`_
    * - `openolt agent <https://gerrit.opencord.org/gitweb?p=openolt.git;a=tree>`_
      -
      - ``3.7.5``
      -
      -
      - `X <https://github.com/opencord/openolt>`__
+     -
    * - `voltctl <https://gerrit.opencord.org/gitweb?p=voltctl.git;a=tree>`_
      - ``1.8.3``
      -
      -
      - `X <https://gerrit.opencord.org/plugins/gitiles/voltctl/+/refs/tags/v1.8.3>`__
      - `X <https://github.com/opencord/voltctl/tree/v1.8.3>`__
+     -
    * - `voltha-go <https://gerrit.opencord.org/gitweb?p=voltha-go.git;a=tree>`_
-     - ``3.1.7``
-     -
+     - ``3.1.8``
+     - `docker <https://jenkins.opencord.org/job/docker-publish_voltha-go/464/console>`__
      - ``2.11.3``
-     - `X <https://gerrit.opencord.org/plugins/gitiles/voltha-go/+/refs/tags/v3.1.7>`__
-     - `X <https://github.com/opencord/voltha-go/tree/v3.1.7>`__
-   * - `voltha-lib-go <https://gerrit.opencord.org/gitweb?p=voltha-lib-go.git;a=tree>`_
-     - ``2.11.3``
-     - ``7.3.1``
+     - `X <https://gerrit.opencord.org/plugins/gitiles/voltha-go/+/refs/tags/v3.1.8>`__
+     - `X <https://github.com/opencord/voltha-go/tree/v3.1.8>`__
      -
+   * - `voltha-lib-go <https://gerrit.opencord.org/plugins/gitiles/voltha-lib-go>`_
+     - ``2.11.3 (?)``
+     - ``7.3.2``
      -
-     - `X <https://github.com/opencord/voltha-lib-go/releases/tag/v7.3.1>`__
+     - `X <https://gerrit.opencord.org/plugins/gitiles/voltha-lib-go/+/refs/tags/v7.3.2>`__
+     - `X <https://github.com/opencord/voltha-lib-go/releases/tag/v7.3.2>`__
+     -
    * - `voltha-onos <https://gerrit.opencord.org/gitweb?p=voltha-onos.git;a=tree>`_
      -
      - ``5.1.2``
      - ``0.1.27``
-     - `X <https://gerrit.opencord.org/plugins/gitiles/voltha-onos/+/refs/tags/5.1.2>`__
-     - `X <https://github.com/opencord/voltha-onos/tree/5.1.2>`__
+     - `X <https://gerrit.opencord.org/plugins/gitiles/voltha-onos/+/refs/tags/5.1.3>`__
+     - `X <https://github.com/opencord/voltha-onos/tree/5.1.3>`__
+     - `X <https://hub.docker.com/layers/voltha/voltha-onos/5.1.3/images/sha256-d9c686acf177ed823ff359dc43ba59aab05ae067be27c92e48c08b72f94b9ca3?context=explore>`__
    * - `voltha-openonu-adapter-go <https://gerrit.opencord.org/gitweb?p=voltha-openonu-adapter-go.git;a=tree>`_
-     - ``2.7.2``
-     - ``2.10.3``
      -
-     - `X <https://gerrit.opencord.org/plugins/gitiles/voltha-openonu-adapter-go/+/refs/tags/v2.7.2>`__
-     - `X <https://github.com/opencord/voltha-openonu-adapter-go/tree/v2.7.2>`__
+     - ``2.7.3``
+     -
+     - `X <https://gerrit.opencord.org/plugins/gitiles/voltha-openonu-adapter-go/+/refs/tags/v2.7.3>`__
+     - `X <https://github.com/opencord/voltha-openonu-adapter-go/tree/v2.7.3>`__
+     - `X <https://hub.docker.com/layers/voltha/voltha-openonu-adapter-go/2.7.3/images/sha256-e9484a8963d08748af5766a6a8ce7f7485efb384488bcf93840ecc1142d7ad74?context=explore>`__
    * - `voltha-openolt-adapter <https://gerrit.opencord.org/gitweb?p=voltha-openolt-adapter.git;a=tree>`_
-     - ``master: v4.2.11``
+     - ``v4.2.12``
      - ``4.2.6``
      -
-     - `X <https://gerrit.opencord.org/plugins/gitiles/voltha-openolt-adapter/+/refs/tags/v4.2.10>`__
-     - `X <https://github.com/opencord/voltha-openolt-adapter/tree/v4.2.11>`__
-   * - `voltha-protos <https://github.com/opencord/voltha-protos/releases/tag/v5.2.5>`__
-     - ``5.3.7``
-     - ``5.3.7``
+     - `X <https://gerrit.opencord.org/plugins/gitiles/voltha-openolt-adapter/+/refs/tags/v4.2.12>`__
+     - `X <https://github.com/opencord/voltha-openolt-adapter/tree/v4.2.12>`__
+     - `X <https://hub.docker.com/layers/voltha/voltha-openolt-adapter/4.2.12/images/sha256-844eac272323dc8bca10880a111957a95839578b3210dd777be5ac9370aaa52e?context=explore>`__
+   * - `voltha-protos <https://gerrit.opencord.org/plugins/gitiles/voltha-protos>`_
      -
-     - `X <https://gerrit.opencord.org/plugins/gitiles/voltha-protos/+/refs/tags/v5.3.7>`__
-     - `X <https://github.com/opencord/voltha-protos/tree/v5.3.7>`__
+     - `5.3.8 <https://pypi.org/project/voltha-protos/5.3.8>`__
+     -
+     - `X <https://gerrit.opencord.org/plugins/gitiles/voltha-protos/+/refs/tags/v5.3.8>`__
+     - `X <https://github.com/opencord/voltha-protos/tree/v5.3.8>`__
+     -
    * - `voltha-system-tests <https://github.com/opencord/voltha-system-tests/releases/tag/2.9.0>`__
      - ``2.11.10``
      -
      -
      - `X <https://gerrit.opencord.org/plugins/gitiles/voltha-system-tests/+/refs/tags/2.11.10>`__
      - `X <https://github.com/opencord/voltha-system-tests/tree/2.11.10>`__
+     -
    * - maclearner
      - ``1.2.1``
      -
      -
      -
      -
+     -
    * - ppoeagent
      - ``1.2.1``
      -
      -
      -
      -
+     -
    * - segmentrouting
      - ``3.0.0``
      -
      -
      -
      -
+     -
 
 
 Helm Chart Versions
@@ -385,13 +404,13 @@
      -
      -
    * - Voltha-infra
-     - ``2.10.7``
+     - ``2.10.10``
      -
      -
      -
      -
    * - Voltha-stack
-     - ``2.10.5``
+     - ``2.10.10``
      -
      -
      -