Releases: zowe/zowe-explorer-vscode
Releases · zowe/zowe-explorer-vscode
v2.14.1
Zowe Explorer
Bug fixes
- Update transitive dependencies for technical currency.
Zowe Explorer Extension for FTP
Bug fixes
- Fix Windows-specific hangs when saving members that contain JCL via the FTP extension. Thanks @tiantn & @std4lqi. #2533
- Update transitive dependencies for technical currency.
Zowe Explorer APIs
Bug fixes
- Update transitive dependencies for technical currency.
v3.0.0-next.202402071248
Zowe Explorer
New features and enhancements
- Adapted to new API changes from grouping of common methods into singleton classes #2109 Thanks @rudyflores
- Migrated to webpack v5 #2214 Thanks @rudyflores
Zowe Explorer APIs
New features and enhancements
- Grouped common methods into singleton classes #2109 Thanks @rudyflores
v2.14.0
Zowe Explorer
New features and enhancements
- Added new data set creation template for partitioned data set extended. #2600 Thanks @patricktiu
- Added "Open with Encoding" feature to open data sets and USS files in a non-standard codepage. #2435 Thanks @t1m0thyj
- Adopted new common methods for
loginWithBaseProfile
andlogoutWithBaseProfile
. #2493 Thanks @zFernand0 - Added APIML dynamic token support. #2665 Thanks @zFernand0
- Implemented profile determination without triggering quick pick for
Submit JCL
if the file is part of Zowe Explorer's temp files. #2628 Thanks @likhithanimma1
Bug fixes
- Fixed the allocate-like functionality by removing the inclusion of DS item in the filter history. #2620 Thanks @likhithanimma1
- Fixed issue with
Submit JCL
losing focus on JCL being submitted, causing the wrong job submission. #2616 Thanks @rudyflores - Fixed issue where USS file tag could get overwritten when changes to file are uploaded. #2576 Thanks @t1m0thyj
- Fixed failure to refresh token value after user logs in to authentication. #2638 Thanks @adam-wolfe
- Fixed order of spool files reverses when the Job is expanded and collapsed. #2644 Thanks @SanthoshiBoyina
- Fixed local filtering of jobs to work with SMFID (exec-member field). #2651 Thanks @SanthoshiBoyina
- Fixed tree item labels failing to update after renaming an MVS or USS file or folder. #2656 Thanks @JillieBeanSim
- Updated the
@zowe/cli
dependency to address the "blksz to 0 after an Allocate Like" issue. #2610. Thanks @KevinLoesch1 - Fixed unintended behavior in
ProfileUtils.isProfileUsingBasicAuth
. #2664 Thanks @zFernand0 - Fixed the recent search job id filter. #2562 Thanks @jellypuno
Zowe Explorer APIs
New features and enhancements
- Added optional
openDs
function toIZoweDatasetTreeNode
to open a data set or member in the editor. - Added optional
setEncoding
function toIZoweDatasetTreeNode
andIZoweUSSTreeNode
to set the encoding of a node to binary, text, or a custom codepage. - Added optional properties
binary
,encoding
, andencodingMap
to tree node interfaces for storing the codepage of a data set or USS file. - Deprecated
IZoweUSSTreeNode.binaryFiles
andIZoweUSSTreeNode.setBinary
in favor ofIZoweUSSTreeNode.encodingMap
andIZoweUSSTreeNode.setEncoding
. - Deprecated
ZoweTreeNode.binary
,ZoweTreeNode.binaryFiles
, andZoweTreeNode.shortLabel
. These properties are not applicable for all tree nodes and should be defined in subclasses ofZoweTreeNode
if necessary. - Added new functions
loginWithBaseProfile
andlogoutWithBaseProfile
to provide extenders with the ability to automatically login to their respective services. #2493 Thanks @zFernand0 - Added APIML dynamic token support. #2665 Thanks @zFernand0
- Added new optional method
getCommonApi
toZoweExplorerApi.IApiRegisterClient
for enhanced typings in other Zowe Explorer APIs. #2493 Thanks @zFernand0
Bug fixes
- Added a return type of void for
IZoweUSSTreeNode.openUSS
. - Fixed use of
this
in static methods inZoweVsCodeExtension
. #2606 Thanks @zFernand0 - Fixed
ZoweVsCodeExtension.promptUserPass
to not use hardcoded values for user and password. #2666 Thanks @zFernand0
v3.0.0-next.202401241448
Zowe Explorer
New features and enhancements
- Removed Gulp dependency and migrated from
i18n
standard tol10n
. #2253 Thanks @rudyflores
Bug fixes
- Changed ZoweExplorerExtender.initForZowe
profileTypeConfigurations: imperative.ICommandProfileTypeConfiguration[]
to a required argument to address issues seen after registration of profile type when not passed. #2575 Thanks @JillieBeanSim
Zowe Explorer Extension for FTP
New features and enhancements
Bug fixes
- Removed outdated vscode-nls webpack plugin #2253 Thanks @rudyflores
Zowe Explorer APIs
New features and enhancements
Bug fixes
- Changed IApiExplorerExtenders.initForZowe
profileTypeConfigurations: imperative.ICommandProfileTypeConfiguration[]
to a required argument to address issues seen after registration of profile type when not passed. #2575 Thanks @JillieBeanSim
v3.0.0-next.202401121747
Zowe Explorer
New features and enhancements
- Added the Issue UNIX Commands feature. #1326 thanks @likhithanimma1
- Minimized activation function for Zowe Explorer to load only necessary items on activation. #1985 Thanks @rudyflores
- Added back local storage for Zowe Explorer persistent items Thanks @rudyflores
Bug fixes
- Update dependencies for technical currency purposes.
Zowe Explorer Extension for FTP
Bug fixes
- Update dependencies for technical currency purposes.
Zowe Explorer APIs
New features and enhancements
- Added new APIs for Issue UNIX Command. #1326 Thanks @likhithanimma1
Bug fixes
- Update dependencies for technical currency purposes.
v1.22.6
Zowe Explorer
Bug fixes
- Update dependencies for technical currency purposes.
Zowe Explorer Extension for FTP
Bug fixes
- Update dependencies for technical currency purposes.
Zowe Explorer APIs
Bug fixes
- Update dependencies for technical currency purposes.
v2.13.1
Zowe Explorer
Bug fixes
- Update dependencies for technical currency purposes.
Zowe Explorer Extension for FTP
Bug fixes
- Update dependencies for technical currency purposes.
Zowe Explorer APIs
Bug fixes
- Update dependencies for technical currency purposes.
v2.13.0
Zowe Explorer
New features and enhancements
- Added support for hiding a Zowe profile across all trees #2567 Thanks @rudyflores
- Added support for enabling/disabling validation for a Zowe profile across all trees #2570 Thanks @rudyflores
- Added Display confirmation dialog when submitting local JCL. #2061 Thanks @JasonIBM
- Added support for adding a Zowe profile across all trees #2603 Thanks @rudyflores
- Added "Filter Jobs" feature in Jobs tree view: accessible via filter icon or right-clicking on session node. #2599 Thanks @SanthoshiBoyina
Bug fixes
- Fixed dataset allocation issue when secondary space (or other numeric values that did not exists in the dataset-template) where specified #2591 Thanks @zFernand0
- Fixed issue where an opened USS file or data set could not be saved once a user changes their search pattern in the Side Bar. #2597 Thanks @traeok
Zowe Explorer APIs
New features and enhancements
- Added new optional boolean parameter
hideFromAllTrees
toIZoweTree.deleteSession
for specifying whether to hide from all trees or current tree. #2567 Thanks @rudyflores - Added new optional parameter
provider
of typeIZoweTree<IZoweTreeNode>
forIZoweTree.addSession
to specify a tree to add the profile to. Thanks @rudyflores - Added optional
filter
andactualJobs
variables toIZoweJobTreeNode
to track local filter search. Thanks @SanthoshiBoyina - Added new optional record
openFiles
toIZoweTree
to track opened files under a specific tree view. #2597 Thanks @traeok
v3.0.0-next.202311171754
v3.0.0-next.202311171523
Zowe Explorer
New features and enhancements
- Migrate from Yarn to PNPM. Thanks @rudyflores
Bug fixes
- Update dependencies for technical currency purposes
- Support VS Code engine 1.79.0 and higher.
- Ability to compare 2 files from MVS and/or UNIX System Services views via right click actions, with option to compare in Read-Only mode too. Thanks @JillieBeanSim
Zowe Explorer Extension for FTP
New features and enhancements
- Support VS Code engine 1.79.0 and higher.