Skip to content

Commit

Permalink
Merge branch 'v3.x/staging' into dependabot/npm_and_yarn/virtual-desk…
Browse files Browse the repository at this point in the history
…top/express-4.21.0
  • Loading branch information
1000TurquoisePogs authored Oct 18, 2024
2 parents 2bbbd1c + 774a51f commit b7cfbe7
Show file tree
Hide file tree
Showing 7 changed files with 183 additions and 204 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ All notable changes to the Zlux App Manager will be documented in this file.

## `3.0.0`

- Enhancement: Updated all webpack configurations across supported zlux-app-manager apps (virtual-desktop, bootstrap, app-prop-viewer,
web-browser-app, system-settings-preferences) from 4 --> 5. This includes all associated loaders, modules, and dependencies with removal of deprecated ones. Old Webpack 4 base configuration has been left for app's backwards compatibility. For more information, visit https://www.zowe.org/vnext (#550)
- Enhancement: Updated the Desktop Angular version from 12 to 18. This makes V2 Angular apps incompatible with V3. Iframe and React is unaffected.
- Enhancement: Added ability for the Desktop load the compatibility Desktop mode (V2 Desktop) via the ?use-v2-desktop=true parameter
- Enhancement: Updated all webpack configurations across supported zlux-app-manager apps (virtual-desktop, bootstrap, app-prop-viewer, web-browser-app, system-settings-preferences) from 4 --> 5. This includes all associated loaders, modules, and dependencies with removal of deprecated ones. Old Webpack 4 base configuration has been left for app's backwards compatibility. For more information, visit https://www.zowe.org/vnext (#550)

## `2.10.0`

Expand Down
227 changes: 103 additions & 124 deletions bootstrap/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bootstrap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"ts-loader": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.2.0",
"webpack": "~5.76.0",
"webpack": "~5.94.0",
"webpack-cli": "~4.9.1"
},
"dependencies": {
Expand Down
142 changes: 71 additions & 71 deletions system-apps/web-browser-app/webClient/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@

.login-form .password {
font-family: 'Roboto', sans-serif;
text-transform: uppercase;
}

.login-form label {
Expand Down Expand Up @@ -221,4 +220,4 @@
SPDX-License-Identifier: EPL-2.0
Copyright Contributors to the Zowe Project.
*/
*/
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ export class Angular2PluginFactory extends PluginFactory {
let pluginDefBase = pluginDefinition.getBasePlugin();
let pluginDefAny:any = (pluginDefBase as any);
let entryPoint = 'main.js';
if (pluginDefAny.getWebEntryPoint) {
entryPoint = pluginDefAny.getWebEntryPoint() || 'main.js';
if (pluginDefAny.getWebEntrypoint) {
entryPoint = pluginDefAny.getWebEntrypoint() || 'main.js';
}
return ZoweZLUX.uriBroker.pluginResourceUri(pluginDefBase, entryPoint);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export class ReactPluginFactory extends PluginFactory {
let pluginDefBase = pluginDefinition.getBasePlugin();
let pluginDefAny:any = (pluginDefBase as any);
let entryPoint = 'main.js';
if (pluginDefAny.getWebEntryPoint) {
entryPoint = pluginDefAny.getWebEntryPoint() || 'main.js';
if (pluginDefAny.getWebEntrypoint) {
entryPoint = pluginDefAny.getWebEntrypoint() || 'main.js';
}
return ZoweZLUX.uriBroker.pluginResourceUri(pluginDefBase, entryPoint);
}
Expand Down

0 comments on commit b7cfbe7

Please sign in to comment.