From 6afa96257add2f3744251b4cae77c80a1c91325c Mon Sep 17 00:00:00 2001
From: chausman <chausman@nrao.edu>
Date: Mon, 11 Dec 2023 10:14:32 -0700
Subject: [PATCH] bump versions to 2.8.2.3

---
 .bump2version.cfg                             |  2 +-
 .gitlab-ci.yml                                |  2 +-
 apps/cli/executables/go/spelunker/main.go     |  8 +++---
 .../carta_envoy/carta_envoy/__init__.py       |  2 +-
 .../pexable/carta_envoy/pyproject.toml        |  2 +-
 .../pexable/casa_envoy/casa_envoy/__init__.py |  2 +-
 .../pexable/casa_envoy/pyproject.toml         |  2 +-
 .../pexable/conveyor/conveyor/__init__.py     |  2 +-
 .../pexable/conveyor/pyproject.toml           |  2 +-
 .../data_annotator/data_annotator/__init__.py |  2 +-
 .../pexable/data_annotator/pyproject.toml     |  2 +-
 .../pexable/deliver/delivery/__init__.py      |  2 +-
 .../pexable/deliver/pyproject.toml            |  2 +-
 .../ingest_envoy/ingest_envoy/__init__.py     |  2 +-
 .../pexable/ingest_envoy/pyproject.toml       |  2 +-
 .../pexable/mediator/pyproject.toml           |  2 +-
 .../mediator/system_mediator/__init__.py      |  2 +-
 .../executables/pexable/null/null/__init__.py |  2 +-
 .../executables/pexable/null/pyproject.toml   |  2 +-
 .../productfetcher/productfetcher/__init__.py |  2 +-
 .../pexable/productfetcher/pyproject.toml     |  2 +-
 .../pexable/update_stage/pyproject.toml       |  2 +-
 .../update_stage/update_stage/__init__.py     |  2 +-
 .../executables/pexable/vela/pyproject.toml   |  2 +-
 .../executables/pexable/vela/vela/__init__.py |  2 +-
 .../pexable/wf_inspector/pyproject.toml       |  2 +-
 .../wf_inspector/wf_inspector/__init__.py     |  2 +-
 .../pexable/ws_annihilator/pyproject.toml     |  2 +-
 .../ws_annihilator/ws_annihilator/__init__.py |  2 +-
 .../pexable/ws_metrics/pyproject.toml         |  2 +-
 .../pexable/ws_metrics/ws_metrics/__init__.py |  2 +-
 .../utilities/aat_wrest/aat_wrest/__init__.py |  2 +-
 apps/cli/utilities/aat_wrest/pyproject.toml   |  2 +-
 .../contacts_wrest/contacts_wrest/__init__.py |  2 +-
 .../utilities/contacts_wrest/pyproject.toml   |  2 +-
 .../core_sampler/core_sampler/__init__.py     |  2 +-
 .../cli/utilities/core_sampler/pyproject.toml |  2 +-
 apps/cli/utilities/wf_monitor/poetry.lock     |  4 +--
 apps/cli/utilities/wf_monitor/pyproject.toml  |  2 +-
 .../wf_monitor/wf_monitor/__init__.py         |  2 +-
 services/capability/capability/__init__.py    |  2 +-
 services/capability/poetry.lock               |  6 ++---
 services/capability/pyproject.toml            |  2 +-
 .../notification/notification/__init__.py     |  2 +-
 services/notification/poetry.lock             |  2 +-
 services/notification/pyproject.toml          |  2 +-
 services/workflow/gitlab-requirements.txt     | 26 +++++++++----------
 services/workflow/poetry.lock                 |  4 +--
 services/workflow/pyproject.toml              |  2 +-
 services/workflow/workflow/__init__.py        |  2 +-
 shared/messaging/pyproject.toml               |  2 +-
 shared/workspaces/pyproject.toml              |  2 +-
 shared/workspaces/workspaces/__init__.py      |  2 +-
 53 files changed, 72 insertions(+), 72 deletions(-)

diff --git a/.bump2version.cfg b/.bump2version.cfg
index d94689eef..98511162d 100644
--- a/.bump2version.cfg
+++ b/.bump2version.cfg
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 2.8.2.2rc1
+current_version = 2.8.2.3rc1
 parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc)?(?P<rc>\d+)
 serialize = 
 	{major}.{minor}.{patch}rc{rc}
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 00d8b00d3..ac023111e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -24,7 +24,7 @@ variables:
     POSTGRES_DB: archive
     POSTGRES_USER: "archive"
     POSTGRES_PASSWORD: "docker"
-    RELEASE_VERSION: 2.8.2.2rc1
+    RELEASE_VERSION: 2.8.2.3rc1
 
 image: docker:19.03.12
 
diff --git a/apps/cli/executables/go/spelunker/main.go b/apps/cli/executables/go/spelunker/main.go
index 93bbdb461..e30732cf0 100644
--- a/apps/cli/executables/go/spelunker/main.go
+++ b/apps/cli/executables/go/spelunker/main.go
@@ -29,9 +29,9 @@ import (
 	"ssa/spelunker/pkg/properties"
 )
 
-//version set executable version based on latest project git tag. Uses go generation and file embedding
-////go:generate sh get_version.sh
-////go:embed version.txt
+// version set executable version based on latest project git tag. Uses go generation and file embedding
+// //go:generate sh get_version.sh
+// //go:embed version.txt
 var version string
 
 func main() {
@@ -46,7 +46,7 @@ func main() {
 
 	if *v {
 		//TODO: fix version system for containers
-		log.Println("2.8.2.2rc1")
+		log.Println("2.8.2.3rc1")
 		os.Exit(0)
 	}
 
diff --git a/apps/cli/executables/pexable/carta_envoy/carta_envoy/__init__.py b/apps/cli/executables/pexable/carta_envoy/carta_envoy/__init__.py
index 902babec0..3f2d9c4ae 100644
--- a/apps/cli/executables/pexable/carta_envoy/carta_envoy/__init__.py
+++ b/apps/cli/executables/pexable/carta_envoy/carta_envoy/__init__.py
@@ -18,4 +18,4 @@
 """
 Workspaces system for launching CARTA for viewing images
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/executables/pexable/carta_envoy/pyproject.toml b/apps/cli/executables/pexable/carta_envoy/pyproject.toml
index 65caf0e21..d690e9847 100644
--- a/apps/cli/executables/pexable/carta_envoy/pyproject.toml
+++ b/apps/cli/executables/pexable/carta_envoy/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "carta_envoy"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Workspaces system for launching CARTA for viewing images"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/executables/pexable/casa_envoy/casa_envoy/__init__.py b/apps/cli/executables/pexable/casa_envoy/casa_envoy/__init__.py
index 982f2d17c..f598851ae 100644
--- a/apps/cli/executables/pexable/casa_envoy/casa_envoy/__init__.py
+++ b/apps/cli/executables/pexable/casa_envoy/casa_envoy/__init__.py
@@ -18,4 +18,4 @@
 """
 Workspaces CASA functionality bridge
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/executables/pexable/casa_envoy/pyproject.toml b/apps/cli/executables/pexable/casa_envoy/pyproject.toml
index d5db976aa..0393fa2c5 100644
--- a/apps/cli/executables/pexable/casa_envoy/pyproject.toml
+++ b/apps/cli/executables/pexable/casa_envoy/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "casa_envoy"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Workspaces CASA functionality bridge"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/executables/pexable/conveyor/conveyor/__init__.py b/apps/cli/executables/pexable/conveyor/conveyor/__init__.py
index 4232c073a..57aed3577 100644
--- a/apps/cli/executables/pexable/conveyor/conveyor/__init__.py
+++ b/apps/cli/executables/pexable/conveyor/conveyor/__init__.py
@@ -18,4 +18,4 @@
 """
 Conveyor
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/executables/pexable/conveyor/pyproject.toml b/apps/cli/executables/pexable/conveyor/pyproject.toml
index ca0351164..588b76658 100644
--- a/apps/cli/executables/pexable/conveyor/pyproject.toml
+++ b/apps/cli/executables/pexable/conveyor/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "conveyor"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Conveyor"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/executables/pexable/data_annotator/data_annotator/__init__.py b/apps/cli/executables/pexable/data_annotator/data_annotator/__init__.py
index 6a09aee2f..0f2d42562 100644
--- a/apps/cli/executables/pexable/data_annotator/data_annotator/__init__.py
+++ b/apps/cli/executables/pexable/data_annotator/data_annotator/__init__.py
@@ -18,4 +18,4 @@
 """
 Workspaces metrics reporter for users outside of SSA.
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/executables/pexable/data_annotator/pyproject.toml b/apps/cli/executables/pexable/data_annotator/pyproject.toml
index 5a2396a45..6a53d46e0 100644
--- a/apps/cli/executables/pexable/data_annotator/pyproject.toml
+++ b/apps/cli/executables/pexable/data_annotator/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "data_annotator"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Workspaces CLI tool for creating and deleting comments associated with data quality."
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/executables/pexable/deliver/delivery/__init__.py b/apps/cli/executables/pexable/deliver/delivery/__init__.py
index 867bc1903..9af98d6d8 100644
--- a/apps/cli/executables/pexable/deliver/delivery/__init__.py
+++ b/apps/cli/executables/pexable/deliver/delivery/__init__.py
@@ -18,4 +18,4 @@
 """
 Workspaces data delivery module
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/executables/pexable/deliver/pyproject.toml b/apps/cli/executables/pexable/deliver/pyproject.toml
index aef915d9d..82c8dcc85 100644
--- a/apps/cli/executables/pexable/deliver/pyproject.toml
+++ b/apps/cli/executables/pexable/deliver/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "ssa_deliver"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Workspaces data delivery module"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/__init__.py b/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/__init__.py
index a3f2c11e2..d27e19809 100644
--- a/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/__init__.py
+++ b/apps/cli/executables/pexable/ingest_envoy/ingest_envoy/__init__.py
@@ -18,4 +18,4 @@
 """
 Ingest envoy
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/executables/pexable/ingest_envoy/pyproject.toml b/apps/cli/executables/pexable/ingest_envoy/pyproject.toml
index 59b58e959..3aa28117c 100644
--- a/apps/cli/executables/pexable/ingest_envoy/pyproject.toml
+++ b/apps/cli/executables/pexable/ingest_envoy/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "ingest_envoy"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Ingest envoy"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/executables/pexable/mediator/pyproject.toml b/apps/cli/executables/pexable/mediator/pyproject.toml
index aed146590..1203d0a39 100644
--- a/apps/cli/executables/pexable/mediator/pyproject.toml
+++ b/apps/cli/executables/pexable/mediator/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "ssa_mediator"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Mediator: the Workspaces intervention utility"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/executables/pexable/mediator/system_mediator/__init__.py b/apps/cli/executables/pexable/mediator/system_mediator/__init__.py
index 3cc32dc43..9bdb4c693 100644
--- a/apps/cli/executables/pexable/mediator/system_mediator/__init__.py
+++ b/apps/cli/executables/pexable/mediator/system_mediator/__init__.py
@@ -18,4 +18,4 @@
 """
 Mediator: the Workspaces intervention utility
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/executables/pexable/null/null/__init__.py b/apps/cli/executables/pexable/null/null/__init__.py
index 6d15c47ec..32fd06ce2 100644
--- a/apps/cli/executables/pexable/null/null/__init__.py
+++ b/apps/cli/executables/pexable/null/null/__init__.py
@@ -18,4 +18,4 @@
 """
 This is the null executable, a baseline test of the functionality of the Workspaces system.
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/executables/pexable/null/pyproject.toml b/apps/cli/executables/pexable/null/pyproject.toml
index 980fa396e..de840291e 100644
--- a/apps/cli/executables/pexable/null/pyproject.toml
+++ b/apps/cli/executables/pexable/null/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "ssa_null"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "This is the null executable, a baseline test of the functionality of the Workspaces system."
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/executables/pexable/productfetcher/productfetcher/__init__.py b/apps/cli/executables/pexable/productfetcher/productfetcher/__init__.py
index e3a05330e..8a12b9089 100644
--- a/apps/cli/executables/pexable/productfetcher/productfetcher/__init__.py
+++ b/apps/cli/executables/pexable/productfetcher/productfetcher/__init__.py
@@ -18,4 +18,4 @@
 """
 Product fetcher: retrieve products from NGAS and other places for the archive and place them on disk
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/executables/pexable/productfetcher/pyproject.toml b/apps/cli/executables/pexable/productfetcher/pyproject.toml
index bdde39e44..41eba059f 100644
--- a/apps/cli/executables/pexable/productfetcher/pyproject.toml
+++ b/apps/cli/executables/pexable/productfetcher/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "productfetcher"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Product fetcher: retrieve products from NGAS and other places for the archive and place them on disk"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/executables/pexable/update_stage/pyproject.toml b/apps/cli/executables/pexable/update_stage/pyproject.toml
index e8078b3d0..317557a2b 100644
--- a/apps/cli/executables/pexable/update_stage/pyproject.toml
+++ b/apps/cli/executables/pexable/update_stage/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "ssa_update_stage"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Update stage: pass status information back to workspaces over the HT Chirp protocol"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/executables/pexable/update_stage/update_stage/__init__.py b/apps/cli/executables/pexable/update_stage/update_stage/__init__.py
index 2f61c0a59..efc2330e5 100644
--- a/apps/cli/executables/pexable/update_stage/update_stage/__init__.py
+++ b/apps/cli/executables/pexable/update_stage/update_stage/__init__.py
@@ -18,4 +18,4 @@
 """
 Update stage: pass status information back to workspaces over the HT Chirp protocol
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/executables/pexable/vela/pyproject.toml b/apps/cli/executables/pexable/vela/pyproject.toml
index 9ed2a34fd..f78a550d6 100644
--- a/apps/cli/executables/pexable/vela/pyproject.toml
+++ b/apps/cli/executables/pexable/vela/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "ssa_vela"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Workspaces CASA functionality bridge"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/executables/pexable/vela/vela/__init__.py b/apps/cli/executables/pexable/vela/vela/__init__.py
index 982f2d17c..f598851ae 100644
--- a/apps/cli/executables/pexable/vela/vela/__init__.py
+++ b/apps/cli/executables/pexable/vela/vela/__init__.py
@@ -18,4 +18,4 @@
 """
 Workspaces CASA functionality bridge
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/executables/pexable/wf_inspector/pyproject.toml b/apps/cli/executables/pexable/wf_inspector/pyproject.toml
index ac12ae5d7..a937054fe 100644
--- a/apps/cli/executables/pexable/wf_inspector/pyproject.toml
+++ b/apps/cli/executables/pexable/wf_inspector/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "wf_inspector"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Command-line script that wraps the functionality of `docker exec -it` to enter our workflow Docker container"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/executables/pexable/wf_inspector/wf_inspector/__init__.py b/apps/cli/executables/pexable/wf_inspector/wf_inspector/__init__.py
index 7817fc069..893c8d443 100644
--- a/apps/cli/executables/pexable/wf_inspector/wf_inspector/__init__.py
+++ b/apps/cli/executables/pexable/wf_inspector/wf_inspector/__init__.py
@@ -16,4 +16,4 @@
 # You should have received a copy of the GNU General Public License
 # along with Workspaces.  If not, see <https://www.gnu.org/licenses/>.
 """wf_inspector: access a running workflow via ssh"""
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/executables/pexable/ws_annihilator/pyproject.toml b/apps/cli/executables/pexable/ws_annihilator/pyproject.toml
index a09a104c7..cb5b8cfd8 100644
--- a/apps/cli/executables/pexable/ws_annihilator/pyproject.toml
+++ b/apps/cli/executables/pexable/ws_annihilator/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "ws_annihilator"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Workspaces Directory Annihilator; Clean up generated products from lustre!"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/executables/pexable/ws_annihilator/ws_annihilator/__init__.py b/apps/cli/executables/pexable/ws_annihilator/ws_annihilator/__init__.py
index a4d2c750a..cd738431c 100644
--- a/apps/cli/executables/pexable/ws_annihilator/ws_annihilator/__init__.py
+++ b/apps/cli/executables/pexable/ws_annihilator/ws_annihilator/__init__.py
@@ -18,4 +18,4 @@
 """
 Workspaces Directory Annihilator; Clean up generated products from lustre!
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/executables/pexable/ws_metrics/pyproject.toml b/apps/cli/executables/pexable/ws_metrics/pyproject.toml
index 438005f3d..2b9ac8ef9 100644
--- a/apps/cli/executables/pexable/ws_metrics/pyproject.toml
+++ b/apps/cli/executables/pexable/ws_metrics/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "ws_metrics"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Workspaces metrics reporter for users outside of SSA."
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/executables/pexable/ws_metrics/ws_metrics/__init__.py b/apps/cli/executables/pexable/ws_metrics/ws_metrics/__init__.py
index 6a09aee2f..0f2d42562 100644
--- a/apps/cli/executables/pexable/ws_metrics/ws_metrics/__init__.py
+++ b/apps/cli/executables/pexable/ws_metrics/ws_metrics/__init__.py
@@ -18,4 +18,4 @@
 """
 Workspaces metrics reporter for users outside of SSA.
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/utilities/aat_wrest/aat_wrest/__init__.py b/apps/cli/utilities/aat_wrest/aat_wrest/__init__.py
index d40dfa174..831285115 100644
--- a/apps/cli/utilities/aat_wrest/aat_wrest/__init__.py
+++ b/apps/cli/utilities/aat_wrest/aat_wrest/__init__.py
@@ -18,4 +18,4 @@
 """
 AAT Wrest: Workspaces-to-Archive metadata retriever
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/utilities/aat_wrest/pyproject.toml b/apps/cli/utilities/aat_wrest/pyproject.toml
index 54ab7edd3..7a62252e2 100644
--- a/apps/cli/utilities/aat_wrest/pyproject.toml
+++ b/apps/cli/utilities/aat_wrest/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
 
 [tool.poetry]
 name = "aat_wrest"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "AAT Wrest: Workspaces-to-Archive metadata retriever"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/utilities/contacts_wrest/contacts_wrest/__init__.py b/apps/cli/utilities/contacts_wrest/contacts_wrest/__init__.py
index 71632e4d3..fbd3c3af3 100644
--- a/apps/cli/utilities/contacts_wrest/contacts_wrest/__init__.py
+++ b/apps/cli/utilities/contacts_wrest/contacts_wrest/__init__.py
@@ -18,4 +18,4 @@
 """
 Contact information wrester
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/utilities/contacts_wrest/pyproject.toml b/apps/cli/utilities/contacts_wrest/pyproject.toml
index f7f70f5e0..4e76f0f28 100644
--- a/apps/cli/utilities/contacts_wrest/pyproject.toml
+++ b/apps/cli/utilities/contacts_wrest/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "contacts_wrest"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Contact information wrester"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/utilities/core_sampler/core_sampler/__init__.py b/apps/cli/utilities/core_sampler/core_sampler/__init__.py
index b52ab60a0..1aa7b49b0 100644
--- a/apps/cli/utilities/core_sampler/core_sampler/__init__.py
+++ b/apps/cli/utilities/core_sampler/core_sampler/__init__.py
@@ -18,4 +18,4 @@
 """
 Workspaces database core sampler
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/apps/cli/utilities/core_sampler/pyproject.toml b/apps/cli/utilities/core_sampler/pyproject.toml
index 46dc9cb68..427edd575 100644
--- a/apps/cli/utilities/core_sampler/pyproject.toml
+++ b/apps/cli/utilities/core_sampler/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "core_sampler"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Workspaces database core sampler"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/utilities/wf_monitor/poetry.lock b/apps/cli/utilities/wf_monitor/poetry.lock
index 592e3977d..dfe1be5ab 100644
--- a/apps/cli/utilities/wf_monitor/poetry.lock
+++ b/apps/cli/utilities/wf_monitor/poetry.lock
@@ -383,7 +383,7 @@ tests = ["pytest", "pytz", "simplejson"]
 
 [[package]]
 name = "messaging"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "SSA Messaging is an AMQP-based asynchronous messaging system based on passing simple Python objects as JSON."
 optional = false
 python-versions = "~3.10"
@@ -706,7 +706,7 @@ files = [
 
 [[package]]
 name = "workspaces"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "SSA Workspaces shared library"
 optional = false
 python-versions = "~3.10"
diff --git a/apps/cli/utilities/wf_monitor/pyproject.toml b/apps/cli/utilities/wf_monitor/pyproject.toml
index 5dca7fc02..ff493116e 100644
--- a/apps/cli/utilities/wf_monitor/pyproject.toml
+++ b/apps/cli/utilities/wf_monitor/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "wf_monitor"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Workflow monitor that reads in HTCondor logs and translates them into AMQP events"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/apps/cli/utilities/wf_monitor/wf_monitor/__init__.py b/apps/cli/utilities/wf_monitor/wf_monitor/__init__.py
index 792905701..e4c76039a 100644
--- a/apps/cli/utilities/wf_monitor/wf_monitor/__init__.py
+++ b/apps/cli/utilities/wf_monitor/wf_monitor/__init__.py
@@ -18,4 +18,4 @@
 """
 Workflow monitor that reads in HTCondor logs and translates them into AMQP events
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/services/capability/capability/__init__.py b/services/capability/capability/__init__.py
index 03006224f..987e07463 100644
--- a/services/capability/capability/__init__.py
+++ b/services/capability/capability/__init__.py
@@ -18,4 +18,4 @@
 """
 Capability: the Workspaces Capability Service
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/services/capability/poetry.lock b/services/capability/poetry.lock
index 34d8c0bd5..eaba29551 100644
--- a/services/capability/poetry.lock
+++ b/services/capability/poetry.lock
@@ -2,7 +2,7 @@
 
 [[package]]
 name = "aat-wrest"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "AAT Wrest: Workspaces-to-Archive metadata retriever"
 optional = false
 python-versions = "~3.10"
@@ -630,7 +630,7 @@ tests = ["pytest", "pytz", "simplejson"]
 
 [[package]]
 name = "messaging"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "SSA Messaging is an AMQP-based asynchronous messaging system based on passing simple Python objects as JSON."
 optional = false
 python-versions = "~3.10"
@@ -1341,7 +1341,7 @@ testing = ["coverage", "pytest (>=3.1.0)", "pytest-cov", "pytest-xdist"]
 
 [[package]]
 name = "workspaces"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "SSA Workspaces shared library"
 optional = false
 python-versions = "~3.10"
diff --git a/services/capability/pyproject.toml b/services/capability/pyproject.toml
index da4feb3e5..71a58ce33 100644
--- a/services/capability/pyproject.toml
+++ b/services/capability/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
 
 [tool.poetry]
 name = "capability"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Capability: the Workspaces Capability Service"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/services/notification/notification/__init__.py b/services/notification/notification/__init__.py
index 0fca385a8..13b7c3b04 100644
--- a/services/notification/notification/__init__.py
+++ b/services/notification/notification/__init__.py
@@ -18,4 +18,4 @@
 """
 The Workspaces notification service
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/services/notification/poetry.lock b/services/notification/poetry.lock
index 29249d241..6ae9cf773 100644
--- a/services/notification/poetry.lock
+++ b/services/notification/poetry.lock
@@ -1154,7 +1154,7 @@ testing = ["coverage", "pytest (>=3.1.0)", "pytest-cov", "pytest-xdist"]
 
 [[package]]
 name = "workspaces"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "SSA Workspaces shared library"
 optional = false
 python-versions = "~3.10"
diff --git a/services/notification/pyproject.toml b/services/notification/pyproject.toml
index a0140bf9c..4abd4fd80 100644
--- a/services/notification/pyproject.toml
+++ b/services/notification/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "notification"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "The SSA notification service"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/services/workflow/gitlab-requirements.txt b/services/workflow/gitlab-requirements.txt
index 77fb4812e..79dd0e9fc 100644
--- a/services/workflow/gitlab-requirements.txt
+++ b/services/workflow/gitlab-requirements.txt
@@ -1,14 +1,14 @@
 # Pex requirements pulled from gitlab
-carta-envoy==2.8.2.2rc1
-casa-envoy==2.8.2.2rc1
-conveyor==2.8.2.2rc1
-ssa-deliver==2.8.2.2rc1
-ingest-envoy==2.8.2.2rc1
-ssa-mediator==2.8.2.2rc1
-ssa-null==2.8.2.2rc1
-productfetcher==2.8.2.2rc1
-ssa-update-stage==2.8.2.2rc1
-ssa-vela==2.8.2.2rc1
-wf-inspector==2.8.2.2rc1
-ws-annihilator==2.8.2.2rc1
-ws-metrics==2.8.2.2rc1
+carta-envoy==2.8.2.3rc1
+casa-envoy==2.8.2.3rc1
+conveyor==2.8.2.3rc1
+ssa-deliver==2.8.2.3rc1
+ingest-envoy==2.8.2.3rc1
+ssa-mediator==2.8.2.3rc1
+ssa-null==2.8.2.3rc1
+productfetcher==2.8.2.3rc1
+ssa-update-stage==2.8.2.3rc1
+ssa-vela==2.8.2.3rc1
+wf-inspector==2.8.2.3rc1
+ws-annihilator==2.8.2.3rc1
+ws-metrics==2.8.2.3rc1
diff --git a/services/workflow/poetry.lock b/services/workflow/poetry.lock
index eb31286be..66499981c 100644
--- a/services/workflow/poetry.lock
+++ b/services/workflow/poetry.lock
@@ -503,7 +503,7 @@ tests = ["pytest", "pytz", "simplejson"]
 
 [[package]]
 name = "messaging"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "SSA Messaging is an AMQP-based asynchronous messaging system based on passing simple Python objects as JSON."
 optional = false
 python-versions = "~3.10"
@@ -1104,7 +1104,7 @@ testing = ["coverage", "pytest (>=3.1.0)", "pytest-cov", "pytest-xdist"]
 
 [[package]]
 name = "workspaces"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "SSA Workspaces shared library"
 optional = false
 python-versions = "~3.10"
diff --git a/services/workflow/pyproject.toml b/services/workflow/pyproject.toml
index c4dd8e27f..9f595569d 100644
--- a/services/workflow/pyproject.toml
+++ b/services/workflow/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "workflow"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "Workflow: the Workspaces Workflow Service"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/services/workflow/workflow/__init__.py b/services/workflow/workflow/__init__.py
index 6a1d98b8c..ba83a4e4e 100644
--- a/services/workflow/workflow/__init__.py
+++ b/services/workflow/workflow/__init__.py
@@ -18,4 +18,4 @@
 """
 Workflow: the Workspaces Workflow Service
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
diff --git a/shared/messaging/pyproject.toml b/shared/messaging/pyproject.toml
index 01009cc7e..a48329512 100644
--- a/shared/messaging/pyproject.toml
+++ b/shared/messaging/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "messaging"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "SSA Messaging is an AMQP-based asynchronous messaging system based on passing simple Python objects as JSON."
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/shared/workspaces/pyproject.toml b/shared/workspaces/pyproject.toml
index ee38fb97e..111f50179 100644
--- a/shared/workspaces/pyproject.toml
+++ b/shared/workspaces/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "workspaces"
-version = "2.8.2.2rc1"
+version = "2.8.2.3rc1"
 description = "SSA Workspaces shared library"
 authors = ["DMS SSA <dms-ssa@nrao.edu>"]
 license = "GPL3+"
diff --git a/shared/workspaces/workspaces/__init__.py b/shared/workspaces/workspaces/__init__.py
index 28c0a50f9..78186a00c 100644
--- a/shared/workspaces/workspaces/__init__.py
+++ b/shared/workspaces/workspaces/__init__.py
@@ -18,4 +18,4 @@
 """
 SSA Workspaces shared library
 """
-__version__ = "2.8.2.2rc1"
+__version__ = "2.8.2.3rc1"
-- 
GitLab