Skip to content

Commit

Permalink
Merge pull request #3034 from zowe/zfernand0/ze-2990-next
Browse files Browse the repository at this point in the history
V3: Rename the zFTP extension
  • Loading branch information
zFernand0 authored Aug 1, 2024
2 parents 49951e8 + c610849 commit 266a9a5
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = {
{
displayNames: {
"zowe-explorer": "Zowe Explorer",
"zowe-explorer-ftp-extension": "Zowe Explorer Extension for FTP",
"zowe-explorer-ftp-extension": "IBM z/OS FTP for Zowe Explorer",
"zowe-explorer-api": "Zowe Explorer APIs",
},
headerLine: "## TBD Release",
Expand Down
2 changes: 1 addition & 1 deletion packages/zowe-explorer-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ All notable changes to the "zowe-explorer-api" extension will be documented in t
- **Next Breaking:** Changed `ProfilesCache.convertV1ProfToConfig` method to be a static method that requires `ProfileInfo` instance as a parameter.
- Added the `onVaultUpdate` VSCode event to notify extenders when credentials are updated on the OS vault by other applications. [#2994](https://github.com/zowe/zowe-explorer-vscode/pull/2994)
- Added the `onCredMgrsUpdate` VSCode event 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)
- Updated most function signatures for exported programmatic interfaces. Changes make developing with the Zowe Explorer API more efficient for extenders by showing which properties they can expect when calling our APIs. [#2952](https://github.com/zowe/zowe-explorer-vscode/issues/2952)
- **Breaking:** Updated most function signatures for exported programmatic interfaces. Changes make developing with the Zowe Explorer API more efficient for extenders by showing which properties they can expect when calling our APIs. [#2952](https://github.com/zowe/zowe-explorer-vscode/issues/2952)

### Bug fixes

Expand Down
5 changes: 4 additions & 1 deletion packages/zowe-explorer-ftp-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ All notable changes to the "zowe-explorer-ftp-extension" extension will be docum

- Changed the hashing algorithm for e-tag generation from `sha1` to `sha256` to avoid collisions. [#2890](https://github.com/zowe/zowe-explorer-vscode/pull/2890)
- Updated the FTP plugin dependency to `3.0.0-next.202403191358` for technical currency [#2783](https://github.com/zowe/vscode-extension-for-zowe/pull/2783).
- Renamed extension to `IBM z/OS FTP for Zowe Explorer`. [#2990](https://github.com/zowe/zowe-explorer-vscode/issues/2990)
- Update Zowe SDKs to `8.0.0-next.202407232256` for technical currency. [#2994](https://github.com/zowe/zowe-explorer-vscode/pull/2994)

## `3.0.0-next.202404242037`
Expand Down Expand Up @@ -83,7 +84,9 @@ All notable changes to the "zowe-explorer-ftp-extension" extension will be docum
- Fixed ECONNRESET error when trying to upload or create an empty data set member. [#2350](https://github.com/zowe/vscode-extension-for-zowe/issues/2350)
- Update Zowe SDKs to `8.0.0-next.202407051717` for technical currency. [#2918](https://github.com/zowe/zowe-explorer-vscode/issues/2918)

## 2.16.0
## `2.17.0`

## `2.16.0`

### Bug fixes

Expand Down
4 changes: 2 additions & 2 deletions packages/zowe-explorer-ftp-extension/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Zowe Explorer Extension for FTP
# IBM z/OS FTP for Zowe Explorer

[![version](https://img.shields.io/visual-studio-marketplace/v/Zowe.zowe-explorer-ftp-extension.svg)](https://img.shields.io/visual-studio-marketplace/v/Zowe.zowe-explorer-ftp-extension.svg)
[![downloads](https://img.shields.io/visual-studio-marketplace/d/Zowe.zowe-explorer-ftp-extension.svg)](https://img.shields.io/visual-studio-marketplace/d/Zowe.zowe-explorer-ftp-extension.svg)

Zowe Explorer's FTP extension adds the FTP protocol to the [Zowe Explorer](https://github.com/zowe/zowe-explorer-vscode) VS Code extension, allowing you to use [z/OS FTP Plug-in for Zowe CLI](https://github.com/zowe/zowe-cli-ftp-plugin) profiles to connect and interact with z/OS USS.
The IBM z/OS FTP for Zowe Explorer adds the FTP protocol to the [Zowe Explorer](https://github.com/zowe/zowe-explorer-vscode) VS Code extension, allowing you to use [z/OS FTP Plug-in for Zowe CLI](https://github.com/zowe/zowe-cli-ftp-plugin) profiles to connect and interact with z/OS USS.

This VS Code extension also serves as a [source code example](https://github.com/zowe/zowe-explorer-vscode/tree/main/packages/zowe-explorer-ftp-extension) demonstrating how to use the [Zowe Explorer Extensibility API](https://github.com/zowe/zowe-explorer-vscode/tree/main/packages/zowe-explorer-api) to create VS Code extensions that extend the Zowe Explorer VS Code extensions with new capabilities.

Expand Down
2 changes: 1 addition & 1 deletion packages/zowe-explorer-ftp-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zowe-explorer-ftp-extension",
"displayName": "Zowe Explorer Extension for FTP",
"displayName": "IBM z/OS FTP for Zowe Explorer",
"publisher": "Zowe",
"author": "Zowe",
"license": "EPL-2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,7 @@ describe("Dataset Actions Unit Tests - Function createMember", () => {
parentNode: blockMocks.datasetSessionNode,
session: blockMocks.session,
});
const nonFavoriteLabel = parent.label;
parent.label = parent.label?.toString();
const nonFavoriteLabel = parent.label?.toString();
parent.contextValue = Constants.DS_PDS_CONTEXT + Constants.FAV_SUFFIX;

const mySpy = mocked(vscode.window.showInputBox).mockResolvedValue("testMember");
Expand All @@ -262,7 +261,7 @@ describe("Dataset Actions Unit Tests - Function createMember", () => {
expect(mocked(zosfiles.Upload.bufferToDataSet)).toHaveBeenCalledWith(
blockMocks.zosmfSession,
Buffer.from(""),
(nonFavoriteLabel as string) + "(TESTMEMBER)",
nonFavoriteLabel + "(TESTMEMBER)",
{
responseTimeout: blockMocks.imperativeProfile.profile?.responseTimeout,
}
Expand Down

0 comments on commit 266a9a5

Please sign in to comment.