Skip to content

Commit

Permalink
Merge branch 'next' into authSwitch
Browse files Browse the repository at this point in the history
Signed-off-by: Billie Simmons <[email protected]>
  • Loading branch information
JillieBeanSim authored Aug 26, 2024
2 parents d7b8fd8 + b300e86 commit 1a9c8b5
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 16 deletions.
10 changes: 8 additions & 2 deletions packages/zowe-explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ All notable changes to the "vscode-extension-for-zowe" extension will be documen
- Added remote lookup functionality for Data Sets and USS, allowing Zowe Explorer to locate and resolve mainframe resources on demand. [#3040](https://github.com/zowe/zowe-explorer-vscode/pull/3040)
- Implemented change detection in the Data Sets and USS filesystems, so that changes on the mainframe will be reflected in opened editors for Data Sets and USS files. [#3040](https://github.com/zowe/zowe-explorer-vscode/pull/3040)
- Implemented a "Show as Table" option for profile nodes in the Jobs tree, displaying lists of jobs in a tabular view. Jobs can be filtered and sorted within this view, and users can select jobs to cancel, delete or download. [#2258](https://github.com/zowe/zowe-explorer-vscode/issues/2258)
- To add the ability to switch between basic authentication and token-based authentication. [#3062](https://github.com/zowe/zowe-explorer-vscode/pull/3062)
- Replaced `lodash` dependency with `es-toolkit` to reduce webview bundle size and add technical currency. [#3060](https://github.com/zowe/zowe-explorer-vscode/pull/3060)

### Bug fixes

Expand Down Expand Up @@ -170,6 +170,12 @@ All notable changes to the "vscode-extension-for-zowe" extension will be documen
- Added `madge` script in `package.json` to track circular dependencies. [#2148](https://github.com/zowe/vscode-extension-for-zowe/issues/2148)
- Migrated to new package manager PNPM from Yarn.

## `2.17.0`

### New features and enhancements

- To add the ability to switch between basic authentication and token-based authentication. [#3062](https://github.com/zowe/zowe-explorer-vscode/pull/3062)

## `2.16.2`

### Bug fixes
Expand All @@ -178,7 +184,7 @@ All notable changes to the "vscode-extension-for-zowe" extension will be documen

## `2.16.0`

## New features and enhancements
### New features and enhancements

- Added Status bar to indicate that data is being pulled from mainframe. [#2484](https://github.com/zowe/zowe-explorer-vscode/issues/2484)
- Updated MVS view progress indicator for entering a filter search. [#2181](https://github.com/zowe/zowe-explorer-vscode/issues/2181)
Expand Down
3 changes: 1 addition & 2 deletions packages/zowe-explorer/src/webviews/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,12 @@
"@vscode/webview-ui-toolkit": "^1.2.2",
"ag-grid-community": "^32.0.2",
"ag-grid-react": "^32.0.2",
"lodash": "^4.17.21",
"es-toolkit": "^1.16.0",
"preact": "^10.16.0",
"preact-render-to-string": "^6.5.4"
},
"devDependencies": {
"@preact/preset-vite": "^2.5.0",
"@types/lodash": "^4.17.0",
"typescript": "^5.3.3",
"vite": "^4.5.3",
"vite-plugin-checker": "^0.6.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
VSCodeProgressRing,
VSCodeTextField,
} from "@vscode/webview-ui-toolkit/react";
import { isEqual } from "lodash";
import { isEqual } from "es-toolkit";

const vscodeApi = acquireVsCodeApi();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { VSCodeCheckbox, VSCodeDataGridCell, VSCodeDataGridRow } from "@vscode/w
import { JSXInternal } from "preact/src/jsx";
import { useDataPanelContext } from "../PersistentUtils";
import { useEffect, useState } from "preact/hooks";
import { isEqual } from "lodash";
import { isEqual } from "es-toolkit";

export default function PersistentTableData({ persistentProp }: Readonly<{ persistentProp: readonly string[] }>): JSXInternal.Element {
const { type, selection, selectedItems } = useDataPanelContext();
Expand Down
17 changes: 7 additions & 10 deletions pnpm-lock.yaml

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

0 comments on commit 1a9c8b5

Please sign in to comment.