Skip to content

Commit

Permalink
Merge pull request #3020 from zowe/awharn/support-updated-cli-sdks
Browse files Browse the repository at this point in the history
feat: Prevent base profile name collisions by default on new configuration files
  • Loading branch information
t1m0thyj authored Jul 26, 2024
2 parents f1efaed + 7cbcf89 commit ff01a69
Show file tree
Hide file tree
Showing 4 changed files with 101 additions and 38 deletions.
1 change: 1 addition & 0 deletions packages/zowe-explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ All notable changes to the "vscode-extension-for-zowe" extension will be documen
- **Breaking:** Zowe Explorer no longer uses a temporary directory for storing Data Sets and USS files. All settings related to the temporary downloads folder have been removed. In order to access resources stored by Zowe Explorer v3, refer to the [FileSystemProvider documentation](https://github.com/zowe/zowe-explorer-vscode/wiki/FileSystemProvider) for information on how to build and access resource URIs. Extenders can detect changes to resources using the `onResourceChanged` function in the `ZoweExplorerApiRegister` class. [#2951](https://github.com/zowe/zowe-explorer-vscode/issues/2951)
- Implemented the `onVaultUpdate` VSCode events to notify extenders when credentials are updated on the OS vault by other applications. [#2994](https://github.com/zowe/zowe-explorer-vscode/pull/2994)
- Implemented the `onCredMgrsUpdate` VSCode events to notify extenders when the local PC's credential manager has been updated by other applications. [#2994](https://github.com/zowe/zowe-explorer-vscode/pull/2994)
- Changed default base profile naming scheme in newly generated configuration files to prevent name and property conflicts between Global and Project profiles [#2682](https://github.com/zowe/zowe-explorer-vscode/issues/2682)

### Bug fixes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ export class ConfigBuilder {
},
secure: [],
},
base: {
global_base: {
type: "base",
properties: {
host: "sample.com",
Expand All @@ -379,7 +379,7 @@ export class ConfigBuilder {
},
defaults: {
zosmf: "zosmf",
base: "base",
base: "global_base",
},
autoStore: true,
};
Expand Down
Loading

0 comments on commit ff01a69

Please sign in to comment.