diff --git a/documentation/1.5/content/release/_index.md b/documentation/1.5/content/release/_index.md
index cdf8015c6..1d7f5e936 100644
--- a/documentation/1.5/content/release/_index.md
+++ b/documentation/1.5/content/release/_index.md
@@ -5,7 +5,7 @@ weight = 92
pre = " "
+++
-### Changes in Release 1.5.1
+### Changes in Release 1.5.2
- [Major New Features](#major-new-features)
- [Other Changes](#other-changes)
- [Bugs Fixes](#bug-fixes)
@@ -19,7 +19,9 @@ None
None
#### Bug Fixes
-- #229 - Fixed issue in Domain resource generation on Windows inserting a path with Windows separators
+- #232 - Fixed an issue in the Verrazzano Application page where the component's Ingress Trait Rule destination names
+ were not properly converted to legal Kubernetes names so that they would match the generated service names when the
+ domain, cluster, or server names combinations had more than one disallowed characters in them.
#### Known Issues
- In the Model Design View, changing the `Source Path` and `Plan Path` fields for existing App Deployments and Shared Libraries
diff --git a/documentation/1.5/content/release/release-1.5.1.md b/documentation/1.5/content/release/release-1.5.1.md
new file mode 100644
index 000000000..6e6367320
--- /dev/null
+++ b/documentation/1.5/content/release/release-1.5.1.md
@@ -0,0 +1,34 @@
++++
+title = "Release 1.5.1"
+date = 2022-11-03T12:48:00-05:00
+weight = 92
+pre = " "
++++
+
+### Changes in Release 1.5.1
+- [Major New Features](#major-new-features)
+- [Other Changes](#other-changes)
+- [Bugs Fixes](#bug-fixes)
+- [Known Issues](#known-issues)
+
+
+#### Major New Features
+None
+
+#### Other Changes
+None
+
+#### Bug Fixes
+- #229 - Fixed issue in Domain resource generation on Windows inserting a path with Windows separators
+
+#### Known Issues
+- In the Model Design View, changing the `Source Path` and `Plan Path` fields for existing App Deployments and Shared Libraries
+ is broken in this release. To work around it, either remove and recreate the deployment or use the Model Code View's
+ Model Editor and Archive Editor to make the appropriate changes.
+- In Model Design View, the `Plan`/`Plan Path` fields for App Deployments mistakenly allow you to select a directory. This is
+ not valid and will result in an error. Please make sure to select a file for any deployment plan.
+- On Linux, the open and save dialogs open behind the main application window. This is due to
+ [Electron bug 32857](https://github.com/electron/electron/issues/32857).
+- When deploying a Verrazzano application, the `Get Application Status` button only checks the status of the project's
+ Verrazzano component containing the WebLogic domain specification.
+- Verrazzano installation does not support a multi-cluster installation.
diff --git a/electron/package-lock.json b/electron/package-lock.json
index 8f1689fb5..4d4bd5110 100644
--- a/electron/package-lock.json
+++ b/electron/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "wktui",
- "version": "1.5.1",
+ "version": "1.5.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "wktui",
- "version": "1.5.1",
+ "version": "1.5.2",
"license": "UPL-1.0",
"dependencies": {
"electron-updater": "^5.3.0",
diff --git a/electron/package.json b/electron/package.json
index 36c8e0a2a..f8ede699f 100644
--- a/electron/package.json
+++ b/electron/package.json
@@ -1,7 +1,7 @@
{
"name": "wktui",
"productName": "WebLogic Kubernetes Toolkit UI",
- "version": "1.5.1",
+ "version": "1.5.2",
"description": "WebLogic Kubernetes Toolkit UI",
"copyright": "Copyright (c) 2021, 2023, Oracle and/or its affiliates.",
"homepage": "https://github.com/oracle/weblogic-toolkit-ui",