Skip to content

Commit 60cc7dc

Browse files
committed
Release 2.4.14
1 parent c5db790 commit 60cc7dc

File tree

18 files changed

+43
-32
lines changed

18 files changed

+43
-32
lines changed

assembly/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<artifactId>console-backend</artifactId>
1111
<groupId>com.oracle.weblogic</groupId>
12-
<version>2.4.13</version>
12+
<version>2.4.14</version>
1313
</parent>
1414

1515
<packaging>pom</packaging>

build-tools/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66

77
<groupId>com.oracle.weblogic.console-backend</groupId>
88
<artifactId>build-tools</artifactId>
9-
<version>2.4.13</version>
9+
<version>2.4.14</version>
1010
<name>Build Tools</name>
1111

1212
<parent>
1313
<groupId>com.oracle.weblogic</groupId>
1414
<artifactId>console-backend</artifactId>
15-
<version>2.4.13</version>
15+
<version>2.4.14</version>
1616
</parent>
1717

1818
<properties>

electron/app/js/settings-editor.js

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ const SettingsEditor = (() => {
2323
let beforeEditingPreferences;
2424
const scratchPath = `${app.getPath('userData')}/scratch-settings.json`;
2525

26-
let dontNeedStore = (preferences) => {
26+
const dontNeedStoreFile = (preferences) => {
2727
if (!preferences.networking.trustStoreType)
2828
return true;
29-
if (!preferences.networking.trustStoreType === '')
29+
if (preferences.networking.trustStoreType === '')
3030
return true;
3131
if (/^Windows-[A-Z]+$/.test(preferences.networking.trustStoreType))
3232
return true;
@@ -35,6 +35,13 @@ const SettingsEditor = (() => {
3535
return false;
3636
};
3737

38+
function trustStoreTypeRequiresStore() {
39+
// This looks a little weird, but this is how the "hide function" is
40+
// invoked in electron-preferences and this is a quick way of sharing
41+
// the code.
42+
return !dontNeedStoreFile(preferences._preferences);
43+
}
44+
3845
function load() {
3946
const path = ConfigJSON.getPath();
4047
let data = {};
@@ -58,8 +65,8 @@ const SettingsEditor = (() => {
5865
else if (key === 'javax.net.ssl.trustStore') {
5966
preferences.value('networking.trustStore', data[key]);
6067
}
61-
else if (key === 'javax.net.ssl.trustStoreKey') {
62-
preferences.value('networking.trustStoreKey', data[key]);
68+
else if (key === 'javax.net.ssl.trustStorePassword') {
69+
preferences.value('networking.trustStorePassword', data[key]);
6370
}
6471
else if (key === 'console.connectTimeoutMillis') {
6572
preferences.value('networking.connectTimeoutMillis', data[key]);
@@ -90,10 +97,10 @@ const SettingsEditor = (() => {
9097
const path = ConfigJSON.getPath();
9198
let data = {};
9299
addValue(data, 'proxy', preferences.value('networking.proxy'));
93-
if (!dontNeedStore) {
94-
addValue(data, 'javax.net.ssl.trustStoreType', preferences.value('networking.trustStoreType'));
100+
addValue(data, 'javax.net.ssl.trustStoreType', preferences.value('networking.trustStoreType'));
101+
if (trustStoreTypeRequiresStore()) {
95102
addValue(data, 'javax.net.ssl.trustStore', preferences.value('networking.trustStore'));
96-
addValue(data, 'javax.net.ssl.trustStoreKey', preferences.value('networking.trustStoreKey'));
103+
addValue(data, 'javax.net.ssl.trustStorePassword', preferences.value('networking.trustStorePassword'));
97104
}
98105
addValue(data, 'console.connectTimeoutMillis', preferences.value('networking.connectTimeoutMillis'));
99106
addValue(data, 'console.readTimeoutMillis', preferences.value('networking.readTimeoutMillis'));
@@ -207,13 +214,13 @@ const SettingsEditor = (() => {
207214
key: 'trustStore',
208215
buttonLabel: `${I18NUtils.get('wrc-electron.menus.settings.trust-store.path.button.label')}`,
209216
type: 'file',
210-
hideFunction: dontNeedStore
217+
hideFunction: dontNeedStoreFile
211218
},
212219
{
213220
label: `${I18NUtils.get('wrc-electron.menus.settings.trust-store.key.label')}`,
214-
key: 'trustStoreKey',
221+
key: 'trustStorePassword',
215222
type: 'text',
216-
hideFunction: dontNeedStore
223+
hideFunction: dontNeedStoreFile
217224
},
218225
{
219226
label: `${I18NUtils.get('wrc-electron.menus.settings.connect-timeout.label')}`,

electron/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "weblogic-remote-console",
33
"productName": "WebLogic Remote Console",
44
"homepage": "https://github.com/oracle/weblogic-remote-console",
5-
"version": "2.4.13",
5+
"version": "2.4.14",
66
"main": "app/main.js",
77
"scripts": {
88
"test": "echo \"Error: no test specified\" && exit 1",

frontend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>com.oracle.weblogic</groupId>
1212
<artifactId>console-backend</artifactId>
13-
<version>2.4.13</version>
13+
<version>2.4.14</version>
1414
</parent>
1515

1616
<packaging>pom</packaging>

frontend/src/js/jet-composites/wrc-frontend/config/console-frontend-jet.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
33

44
name: WebLogic Remote Console
5-
version: '2.4.13'
5+
version: '2.4.14'
66
kind: remote
77
console-backend:
88
name: Oracle WebLogic Console Backend Microprofile Server

installer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<artifactId>console-backend</artifactId>
1111
<groupId>com.oracle.weblogic</groupId>
12-
<version>2.4.13</version>
12+
<version>2.4.14</version>
1313
</parent>
1414

1515
<packaging>pom</packaging>

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<groupId>com.oracle.weblogic</groupId>
1212
<artifactId>console-backend</artifactId>
13-
<version>2.4.13</version>
13+
<version>2.4.14</version>
1414
<description>Oracle WebLogic Console Backend Parent</description>
1515
<packaging>pom</packaging>
1616

@@ -34,7 +34,7 @@
3434
<version.jersey>2.45</version.jersey>
3535
<version.junit.jupiter>5.5.1</version.junit.jupiter>
3636
<version.snakeyaml>2.3</version.snakeyaml>
37-
<version.console.backend>2.4.13</version.console.backend>
37+
<version.console.backend>2.4.14</version.console.backend>
3838

3939
<version.plugin.dependency-check>7.0.4</version.plugin.dependency-check>
4040
<version.plugin.maven-compiler>3.7.0</version.plugin.maven-compiler>
@@ -199,7 +199,7 @@
199199
<!-- Below looks like an old version of jquery, but it is actually
200200
support for working with old versions of jquery
201201
-->
202-
<exclude>console-assembly-2.4.13.jar: jquery-1-7.js</exclude>
202+
<exclude>console-assembly-2.4.14.jar: jquery-1-7.js</exclude>
203203
</excludes>
204204
<formats>
205205
<format>ALL</format>

resource-bundles/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.oracle.weblogic</groupId>
1313
<artifactId>console-backend</artifactId>
14-
<version>2.4.13</version>
14+
<version>2.4.14</version>
1515
</parent>
1616

1717
<packaging>jar</packaging>
@@ -27,7 +27,7 @@
2727
<dependency>
2828
<groupId>com.oracle.weblogic</groupId>
2929
<artifactId>console-backend-server</artifactId>
30-
<version>2.4.13</version>
30+
<version>2.4.14</version>
3131
</dependency>
3232
</dependencies>
3333

resources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.oracle.weblogic</groupId>
1313
<artifactId>console-backend</artifactId>
14-
<version>2.4.13</version>
14+
<version>2.4.14</version>
1515
</parent>
1616

1717
<packaging>jar</packaging>
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# Copyright (c) 2020, 2021, Oracle Corporation and/or its affiliates.
1+
# Copyright (c) 2020, 2024, Oracle Corporation and/or its affiliates.
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
introductionHTML: Create a new Foreign Connection Factory
55
properties:
66
- name: Name
77
- name: LocalJNDIName
8+
- name: RemoteJNDIName
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# Copyright (c) 2020, 2021, Oracle Corporation and/or its affiliates.
1+
# Copyright (c) 2020, 2024, Oracle Corporation and/or its affiliates.
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33
properties:
44
- name: LocalJNDIName
55
required: true
66

77
- name: RemoteJNDIName
8+
required: true
89
offlineName: RemoteJndiName
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# Copyright (c) 2020, 2021, Oracle Corporation and/or its affiliates.
1+
# Copyright (c) 2020, 2024, Oracle Corporation and/or its affiliates.
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
introductionHTML: Create a new Foreign Destination
55
properties:
66
- name: Name
77
- name: LocalJNDIName
8+
- name: RemoteJNDIName
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# Copyright (c) 2020, 2021, Oracle Corporation and/or its affiliates.
1+
# Copyright (c) 2020, 2024, Oracle Corporation and/or its affiliates.
22
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33
properties:
44
- name: LocalJNDIName
55
required: true
66

77
- name: RemoteJNDIName
8+
required: true
89
offlineName: RemoteJndiName

server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>com.oracle.weblogic</groupId>
1111
<artifactId>console-backend</artifactId>
12-
<version>2.4.13</version>
12+
<version>2.4.14</version>
1313
</parent>
1414

1515
<packaging>jar</packaging>

server/src/main/java/weblogic/remoteconsole/server/ConsoleBackendRuntimeConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ public static String getSsoDomainLoginUri() {
202202
}
203203

204204
public static String getVersion() {
205-
return "2.4.13";
205+
return "2.4.14";
206206
}
207207

208208
public static String getProxy() {

weblogic-bean-types/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>com.oracle.weblogic</groupId>
1313
<artifactId>console-backend</artifactId>
14-
<version>2.4.13</version>
14+
<version>2.4.14</version>
1515
</parent>
1616

1717
<packaging>jar</packaging>

0 commit comments

Comments
 (0)