Skip to content

Commit 18d6946

Browse files
Release notes 1.4.0 (#180)
* moving to WebLogic Remote Console 2.4.1 * adding release notes for 1.4.0 * edits * adding Verrazzano install bug fix to the release notes * adding another bug fixed * updating release notes
1 parent 4a5bc47 commit 18d6946

File tree

2 files changed

+57
-14
lines changed

2 files changed

+57
-14
lines changed

documentation/staging/1.4/content/release/_index.md

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,34 +5,39 @@ weight = 7
55
pre = "<b> </b>"
66
+++
77

8-
### Changes in Release 1.3.0
8+
### Changes in Release 1.4.0
99
- [Major New Features](#major-new-features)
1010
- [Other Changes](#other-changes)
1111
- [Bugs Fixes](#bug-fixes)
1212
- [Known Issues](#known-issues)
1313

1414

1515
#### Major New Features
16-
- Support for creating and deploying the Verrazzano component for the WebLogic domain, and an application that references it.
16+
- #173: Added support for WebLogic Kubernetes Operator 4.0. While it is now the default, versions 3.3+ are still supported.
1717

1818
#### Other Changes
19-
- Updated the [WebLogic Remote Console](https://github.com/oracle/weblogic-remote-console) integration to support version 2.4.0.
20-
- Added support for specifying node selectors when installing the WebLogic Kubernetes Operator and deploying the WebLogic
21-
domain, either directly or as a Verrazzano component.
22-
- Added support for the user specifying the Helm timeout value when helm is used (i.e., Installing/updating WebLogic
23-
Kubernetes Operator and installing the Ingress Controller).
24-
- Added tooltips across all icon buttons to describe what they do.
25-
- Added an anti-affinity specification to the generated WebLogic domain resource, as recommended by the WebLogic Kubernetes Operator docs.
19+
- #175: Added Zoom In, Zoom Out, and Actual Size menu options to the Window menu.
20+
- #178: Integrated the `Prepare Model` action with the changes in WebLogic Deploy Tooling 2.4.0.
21+
- #179: Updated the [WebLogic Remote Console](https://github.com/oracle/weblogic-remote-console) integration to support version 2.4.1 (2.4.0 also supported).
2622

2723
#### Bug Fixes
28-
- Fixed an issue introduced by newer WDT versions that was forcing the domain cluster size to only allow replicas to be set to 0 (WKTUI-365).
29-
- #164: Fixed the link in the Introduction dialog to open in the user's browser instead of inside the app.
30-
- #167: Improved the validation logic and error messages around having an empty model.
31-
- #170: Worked around an issue that was limiting the ability to select text from the Code View scripts (WKTUI-375).
24+
- #171: Improved workaround for the issue limiting the ability to select text from the Code View scripts (WKTUI-375).
25+
- #172: Resolved issue when using Domain-in-Image that was causing the domain to not be created.
26+
- #174: Resolved an issue where the `Install Ingress Controller` action was always passing the image pull secret--even when the user indicated not to use one.
27+
- #176: Resolved an issue where the `Update Ingress Routes` action was always passing the `SSL pass-through` argument--even when the user did not request it.
28+
- #182: Resolved Verrazzano 1.4.0+ installation issue caused by a change in the published operator file name.
29+
- #186: Resolved Verrazzano-related issue where Ingress Trait rules were not including the hosts or destination-related fields.
30+
- #187: Resolved an issue where the operator domain variable override config map was not being created properly.
31+
- #187: Resolved an issue with the `apiVersion` of the Verrazzano component- and application-related being incorrect.
3232

3333
#### Known Issues
3434
- On Linux, the open and save dialogs open behind the main application window. This is due to
3535
[Electron bug 32857](https://github.com/electron/electron/issues/32857).
3636
- When deploying a Verrazzano application, the `Check Application Status` button only checks the status of the project's
3737
Verrazzano component containing the WebLogic domain specification.
38-
- Due to the workaround for WKTUI-375, users are not able to tab to the script area of the Code View pages.
38+
- WKTUI does not currently show the Verrazzano URL needed to access the application. The URL will always be of
39+
the form `https://<gateway-hostname>/<app-path>`, where the `gateway-hostname` is the name created by Verrazzano
40+
in the `Gateway` object. To get the name of the generated gateway object, run `kubectl get gateway -n <namespace> --template
41+
'{{range .items}}{{.metadata.name}}{{"\n"}}{{end}}'`. Next, run `kubectl get gateway <gateway-name> -n <namespace> -o yaml`
42+
and review the `hosts` entry of the `.spec.servers` section to find the DNS name that corresponds to the
43+
`gateway-hostname` to use in the URL.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
+++
2+
title = "Release 1.3.0"
3+
date = 2022-01-30T12:48:00-05:00
4+
weight = 7
5+
pre = "<b> </b>"
6+
+++
7+
8+
### Changes in Release 1.3.0
9+
- [Major New Features](#major-new-features)
10+
- [Other Changes](#other-changes)
11+
- [Bugs Fixes](#bug-fixes)
12+
- [Known Issues](#known-issues)
13+
14+
15+
#### Major New Features
16+
- Support for creating and deploying the Verrazzano component for the WebLogic domain, and an application that references it.
17+
18+
#### Other Changes
19+
- Updated the [WebLogic Remote Console](https://github.com/oracle/weblogic-remote-console) integration to support version 2.4.0.
20+
- Added support for specifying node selectors when installing the WebLogic Kubernetes Operator and deploying the WebLogic
21+
domain, either directly or as a Verrazzano component.
22+
- Added support for the user specifying the Helm timeout value when helm is used (i.e., Installing/updating WebLogic
23+
Kubernetes Operator and installing the Ingress Controller).
24+
- Added tooltips across all icon buttons to describe what they do.
25+
- Added an anti-affinity specification to the generated WebLogic domain resource, as recommended by the WebLogic Kubernetes Operator docs.
26+
27+
#### Bug Fixes
28+
- Fixed an issue introduced by newer WDT versions that was forcing the domain cluster size to only allow replicas to be set to 0 (WKTUI-365).
29+
- #164: Fixed the link in the Introduction dialog to open in the user's browser instead of inside the app.
30+
- #167: Improved the validation logic and error messages around having an empty model.
31+
- #170: Worked around an issue that was limiting the ability to select text from the Code View scripts (WKTUI-375).
32+
33+
#### Known Issues
34+
- On Linux, the open and save dialogs open behind the main application window. This is due to
35+
[Electron bug 32857](https://github.com/electron/electron/issues/32857).
36+
- When deploying a Verrazzano application, the `Check Application Status` button only checks the status of the project's
37+
Verrazzano component containing the WebLogic domain specification.
38+
- Due to the workaround for WKTUI-375, users are not able to tab to the script area of the Code View pages.

0 commit comments

Comments
 (0)