Skip to content

Commit 92818ba

Browse files
committed
Merge branch 'docs-4.3.3' into 'main'
Preparing for release 4.3.3 See merge request weblogic-cloud/weblogic-deploy-tooling!1783
2 parents 0418165 + fab2c25 commit 92818ba

File tree

4 files changed

+62
-13
lines changed

4 files changed

+62
-13
lines changed

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

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

88

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

1919
#### Other Changes
20-
- #1778 - Added preliminary support for using an enhanced offline `isSet()` method when determining whether to write
21-
computed fields to the model during offline discovery. Once the enhancement is available in a 14.1.2 PSU, we will
22-
complete the support.
20+
#1780 - Added new `-discover_rcu_datasources` option to the Discover Domain Tool to help with migration use cases.
2321

2422
#### Bug Fixes
25-
- #1773 - Reduced the logging level of a message about removing attributes from the model to reduce the
26-
amount of noise on stdout.
27-
- #1775 - Fixed Discover Domain Tool handling of server keystore files when running with `-skip_archive`.
28-
- #1776 - Fixed issues with the `ManagedExecutorServiceTemplate`, `ManagedScheduledExecutorServiceTemplate`, and
29-
`ManagedThreadFactoryTemplate` folders so that they can be used in models.
30-
- #1777 - Fixed Create Domain Tool so write the domain's mode-related attributes upfront before the initial call
31-
to `writeDomain()` so that the dynamically computed fields are properly persisted in `config.xml`.
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.
3225

3326
#### Known Issues
3427
- 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,47 @@
1+
+++
2+
title = "Release 4.3.2"
3+
date = 2024-01-09T18:27:38-05:00
4+
weight = 66
5+
pre = "<b> </b>"
6+
+++
7+
8+
9+
### Changes in Release 4.3.2
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+
- #1778 - Added preliminary support for using an enhanced offline `isSet()` method when determining whether to write
21+
computed fields to the model during offline discovery. Once the enhancement is available in a 14.1.2 PSU, we will
22+
complete the support.
23+
24+
#### Bug Fixes
25+
- #1773 - Reduced the logging level of a message about removing attributes from the model to reduce the
26+
amount of noise on stdout.
27+
- #1775 - Fixed Discover Domain Tool handling of server keystore files when running with `-skip_archive`.
28+
- #1776 - Fixed issues with the `ManagedExecutorServiceTemplate`, `ManagedScheduledExecutorServiceTemplate`, and
29+
`ManagedThreadFactoryTemplate` folders so that they can be used in models.
30+
- #1777 - Fixed Create Domain Tool so write the domain's mode-related attributes upfront before the initial call
31+
to `writeDomain()` so that the dynamically computed fields are properly persisted in `config.xml`.
32+
33+
#### Known Issues
34+
- SSH support requires a reasonably recent version of Bouncy Castle. WDT picks up Bouncy Castle from WLST so, for example,
35+
the 12.2.1.4.0 GA release fails with the following error, as mentioned at https://github.com/hierynomus/sshj/issues/895.
36+
Applying a recent PSU should resolve the issue for 12.2.1.4 and 14.1.1.
37+
38+
```shell
39+
SEVERE Messages:
40+
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
41+
```
42+
43+
- SSH support for the Update Domain Tool and Deploy Apps Tool does not work when using an archive file and the remote
44+
WebLogic Server is running on Windows using the optional, Windows-provided, OpenSSH component. This is due to an
45+
issue with the SSHJ library WDT is using. See https://github.com/hierynomus/sshj/issues/929 for more information.
46+
47+
See https://oracle.github.io/weblogic-deploy-tooling/userguide/limitations/limitations/ for the current set of known limitations.

documentation/4.0/content/userguide/limitations/limitations.md

+9
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ Ignore the following messages logged during discovery of a 12.2.1.0 domain.
3333
<Jan 14, 2019 1:14:21 PM> <SEVERE> <CommandExceptionHandler> <handleException> <> <Error: ls() failed.>
3434
```
3535

36+
#### Create Domain Tool with NMProperties KeyStores attribute
37+
38+
**ISSUE**:
39+
The Create Domain Tool does not properly set the model's `topology:/NMProperties/KeyStores` properly so the domain
40+
is created without a KeyStores entry in nodemanager.properties.
41+
42+
**ACTION**:
43+
This is due to WLST Bug 37587121. Contact Oracle Support to get the appropriate patch to apply to your environment.
44+
3645
#### Create Domain Tool with 11g JRF domains
3746

3847
**ISSUE**:

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<slf4j.version>2.0.16</slf4j.version>
4646
<jzlib.version>1.1.3</jzlib.version>
4747
<asn.one.version>0.6.0</asn.one.version>
48-
<jline.version>3.28.0</jline.version>
48+
<jline.version>3.29.0</jline.version>
4949
<junit.version>5.11.4</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>

0 commit comments

Comments
 (0)