Skip to content

Commit af2a4f3

Browse files
committed
Merge branch 'prepare-for-release-4.3.4' into 'main'
preparing for Release 4.3.4 See merge request weblogic-cloud/weblogic-deploy-tooling!1800
2 parents 7abf03a + 68bed6b commit af2a4f3

File tree

3 files changed

+65
-9
lines changed

3 files changed

+65
-9
lines changed

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

+21-5
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 = 65
4+
weight = 64
55
pre = "<b> </b>"
66
+++
77

88

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

1919
#### Other Changes
20-
#1780 - Added new `-discover_rcu_datasources` option to the Discover Domain Tool to help with migration use cases.
20+
- #1792 - Segregated ServerTemplate keystores in the archive file.
21+
- #1798 - Added `ClusterAddress`, `ListenAddress`, `InterfaceAddress`, and `MulticastAddress` to the WKO filter
22+
when using Discover Domain and Prepare Model tools with the `-target` argument.
23+
- #1799 - Added the `oracle_database_admin_role` field to the `RCUDbInfo` section for users that need to
24+
use a role that is not `SYSDBA`.
2125

2226
#### Bug Fixes
23-
#1781 - Fixed an issue with application and library targeting with the Compare Model Tool.
24-
#1782 - Fixed an issue with reading Kubernetes secret file data that was mangling non-ASCII characters.
27+
- #1784 - Prevent Discover Domain tool from trying to discover passwords unless the user specified to do so.
28+
- #1785 - Change logging level from `INFO` to `FINE` for unrecognized attributes when using online operations.
29+
- #1786 - Fixed RCU discovery issue to properly handle passwords.
30+
- #1787 - Fixed issue with WKO filter to eliminate errors when traversing the model.
31+
- #1788 - Restored internal method call to compare WLS versions in the Discover Domain tool.
32+
- #1789 - Fixing issues with the `-target wko` filter.
33+
- #1790 - Add missing 14.1.2 JDK version information to the installation documentation.
34+
- #1794 - Fixing an issue with the RCU password not being properly decrypted while trying to validate the
35+
RCU data when running the Create Domain tool.
36+
- #1795 - Fixing a bug introduced by change #1792 that was causing an error when discovering `Server` and
37+
`ServerTemplate` keystores.
38+
- #1796 - Fixed an issue where the datasource password was not being decrypted properly when using the
39+
Discover Domain tool with the `-discover_passwords` argument.
40+
2541

2642
#### Known Issues
2743
- SSH support requires a reasonably recent version of Bouncy Castle. WDT picks up Bouncy Castle from WLST so, for example,
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
+++
2+
title = "Release 4.3.3"
3+
date = 2024-01-09T18:27:38-05:00
4+
weight = 65
5+
pre = "<b> </b>"
6+
+++
7+
8+
9+
### Changes in Release 4.3.3
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+
#1780 - Added new `-discover_rcu_datasources` option to the Discover Domain Tool to help with migration use cases.
21+
22+
#### Bug Fixes
23+
#1781 - Fixed an issue with application and library targeting with the Compare Model Tool.
24+
#1782 - Fixed an issue with reading Kubernetes secret file data that was mangling non-ASCII characters.
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.

pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@
3939
<skipTests>false</skipTests>
4040
<antlr.version>4.9.3</antlr.version>
4141
<snakeyaml.version>2.4</snakeyaml.version>
42-
<picocli.version>4.7.6</picocli.version>
42+
<picocli.version>4.7.7</picocli.version>
4343
<sshj.version>0.39.0</sshj.version>
4444
<eddsa.version>0.3.0</eddsa.version>
4545
<slf4j.version>2.0.17</slf4j.version>
4646
<jzlib.version>1.1.3</jzlib.version>
4747
<asn.one.version>0.6.0</asn.one.version>
4848
<jline.version>3.29.0</jline.version>
49-
<junit.version>5.12.1</junit.version>
49+
<junit.version>5.12.2</junit.version>
5050
<wdt.scm.repo.url>${env.WDT_SCM_REPO_URL}</wdt.scm.repo.url>
5151
<wdt.scm.repo.conn>${env.WDT_SCM_REPO_CONN}</wdt.scm.repo.conn>
5252

@@ -140,7 +140,7 @@
140140
<dependency>
141141
<groupId>com.google.guava</groupId>
142142
<artifactId>guava</artifactId>
143-
<version>33.4.0-jre</version>
143+
<version>33.4.8-jre</version>
144144
</dependency>
145145
<dependency>
146146
<groupId>javax.xml.bind</groupId>
@@ -196,7 +196,7 @@
196196
<plugin>
197197
<groupId>org.apache.maven.plugins</groupId>
198198
<artifactId>maven-failsafe-plugin</artifactId>
199-
<version>3.5.2</version>
199+
<version>3.5.3</version>
200200
<configuration>
201201
<groups>${test.groups}</groups>
202202
</configuration>

0 commit comments

Comments
 (0)