Skip to content

Commit 2b17835

Browse files
committed
Merge branch 'prepare-for-wdt-4.3.9-release' into 'main'
Preparing for WDT 4.3.9 release See merge request weblogic-cloud/weblogic-deploy-tooling!1846
2 parents cf47484 + dd7221c commit 2b17835

File tree

6 files changed

+61
-17
lines changed

6 files changed

+61
-17
lines changed

documentation/4.0/content/release-notes/_index.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
+++
22
title = "Release Notes"
33
date = 2024-01-09T18:27:38-05:00
4-
weight = 60
4+
weight = 59
55
pre = "<b> </b>"
66
+++
77

88

9-
### Changes in Release 4.3.8
9+
### Changes in Release 4.3.9
1010
- [Major New Features](#major-new-features)
1111
- [Other Changes](#other-changes)
1212
- [Bugs Fixes](#bug-fixes)
@@ -17,11 +17,21 @@ pre = "<b> </b>"
1717
None
1818

1919
#### Other Changes
20-
None
20+
- #1837 - Added documentation for the tool exit codes to clarify an issue brought up in GitHub issue #1663.
21+
- #1838 - Added a note to the Known Limitations page about delete ordering described in GitHub issue #1664.
22+
- #1841 - Changed the alias definition for the WLDF `ScriptAction` folder's `Properties` attribute so that
23+
it is written to the model file as a map instead of a string.
24+
- #1845 - Added support for the `RmiForwarding` folders added in WebLogic Server 15.1.1.
2125

2226
#### Bug Fixes
23-
- #1833 - Fixed an issue with CLASSPATH handling where empty elements were present that caused Discover Domain to fail.
24-
- #1834 - Fixed an issue with security provider handling that was causing Create Domain to fail.
27+
28+
- #1835 - Fixed an issue that was causing Network Access Point deletion to fail (GitHub issue #1663).
29+
- #1836 - Worked around the SSH issue for uploading files to an SSH server running Windows, removing the previously
30+
documented limitation.
31+
- #1839 - Fixed the name of the `CorsExposedHeader` attribute (which was previously `CorExposedHeader`) in the
32+
`RestfulManagementServices` folder.
33+
- #1840 - Fixed the alias file online MBean type for the LogFilter folder.
34+
- #1842,#1843 - Fixed alias type issues with several attributes in the `RestfulManagementServices` folder.
2535

2636
#### Known Issues
2737
- SSH support requires a reasonably recent version of Bouncy Castle. WDT picks up Bouncy Castle from WLST so, for example,
@@ -32,9 +42,3 @@ None
3242
SEVERE Messages:
3343
1. WLSDPLY-20008: verifySSH argument processing failed: Failed to initialize SSH context: Failed to SSH connect to host myhost.oracle.com: no such algorithm: X25519 for provider BC
3444
```
35-
36-
- SSH support for the Update Domain Tool and Deploy Apps Tool does not work when using an archive file and the remote
37-
WebLogic Server is running on Windows using the optional, Windows-provided, OpenSSH component. This is due to an
38-
issue with the SSHJ library WDT is using. See https://github.com/hierynomus/sshj/issues/929 for more information.
39-
40-
See https://oracle.github.io/weblogic-deploy-tooling/userguide/limitations/limitations/ for the current set of known limitations.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
+++
2+
title = "Release 4.3.8"
3+
date = 2024-01-09T18:27:38-05:00
4+
weight = 60
5+
pre = "<b> </b>"
6+
+++
7+
8+
9+
### Changes in Release 4.3.8
10+
- [Major New Features](#major-new-features)
11+
- [Other Changes](#other-changes)
12+
- [Bugs Fixes](#bug-fixes)
13+
- [Known Issues](#known-issues)
14+
15+
16+
#### Major New Features
17+
None
18+
19+
#### Other Changes
20+
None
21+
22+
#### Bug Fixes
23+
- #1833 - Fixed an issue with CLASSPATH handling where empty elements were present that caused Discover Domain to fail.
24+
- #1834 - Fixed an issue with security provider handling that was causing Create Domain to fail.
25+
26+
#### Known Issues
27+
- SSH support requires a reasonably recent version of Bouncy Castle. WDT picks up Bouncy Castle from WLST so, for example,
28+
the 12.2.1.4.0 GA release fails with the following error, as mentioned at https://github.com/hierynomus/sshj/issues/895.
29+
Applying a recent PSU should resolve the issue for 12.2.1.4 and 14.1.1.
30+
31+
```shell
32+
SEVERE Messages:
33+
1. WLSDPLY-20008: verifySSH argument processing failed: Failed to initialize SSH context: Failed to SSH connect to host myhost.oracle.com: no such algorithm: X25519 for provider BC
34+
```
35+
36+
- SSH support for the Update Domain Tool and Deploy Apps Tool does not work when using an archive file and the remote
37+
WebLogic Server is running on Windows using the optional, Windows-provided, OpenSSH component. This is due to an
38+
issue with the SSHJ library WDT is using. See https://github.com/hierynomus/sshj/issues/929 for more information.
39+
40+
See https://oracle.github.io/weblogic-deploy-tooling/userguide/limitations/limitations/ for the current set of known limitations.

integration-tests/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
<plugin>
3434
<groupId>org.apache.maven.plugins</groupId>
3535
<artifactId>maven-war-plugin</artifactId>
36-
<version>3.4.0</version>
36+
<version>3.5.0</version>
3737
</plugin>
3838
<plugin>
3939
<groupId>org.codehaus.mojo</groupId>
4040
<artifactId>exec-maven-plugin</artifactId>
41-
<version>3.6.0</version>
41+
<version>3.6.2</version>
4242
</plugin>
4343
<plugin>
4444
<groupId>org.codehaus.gmaven</groupId>

integration-tests/system-test/src/test/java/oracle/weblogic/deploy/integration/ITWdt.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1414,7 +1414,7 @@ void test37OnlineUpdateDomainWithStructuredApp(TestInfo testInfo) throws Excepti
14141414
}
14151415
}
14161416

1417-
@DisplayName("Test 38: Create domain with structured app and use online update the redeploy it")
1417+
@DisplayName("Test 38: Create domain with structured app and use online update to redeploy it")
14181418
@Order(38)
14191419
@Tag("gate")
14201420
@Test

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
<plugin>
186186
<groupId>org.apache.maven.plugins</groupId>
187187
<artifactId>maven-enforcer-plugin</artifactId>
188-
<version>3.6.1</version>
188+
<version>3.6.2</version>
189189
</plugin>
190190
<plugin>
191191
<groupId>org.apache.maven.plugins</groupId>
@@ -251,7 +251,7 @@
251251
<plugin>
252252
<groupId>org.jacoco</groupId>
253253
<artifactId>jacoco-maven-plugin</artifactId>
254-
<version>0.8.13</version>
254+
<version>0.8.14</version>
255255
<executions>
256256
<execution>
257257
<id>prepare-agent</id>

tools/crd-schema/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</parent>
1717

1818
<properties>
19-
<jackson-version>2.20.0</jackson-version>
19+
<jackson-version>2.20.1</jackson-version>
2020
</properties>
2121

2222
<dependencies>

0 commit comments

Comments
 (0)