Skip to content

Commit

Permalink
Merge pull request #2277 from zowe/fix/secrets-sdk-requirement
Browse files Browse the repository at this point in the history
Remove Secrets SDK requirement when Imperative is a bundled dep
  • Loading branch information
t1m0thyj authored Sep 26, 2024
2 parents 606d579 + 77dda1b commit 4e14312
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions packages/imperative/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the Imperative package will be documented in this file.

## Recent Changes

- BugFix: Removed Secrets SDK requirement when Imperative is a bundled dependency. [#2276](https://github.com/zowe/zowe-cli/issues/2276)

## `8.0.0`

- MAJOR: v8.0.0 Release
Expand Down
2 changes: 1 addition & 1 deletion packages/imperative/src/config/src/ConvertV1Profiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { IConfig } from "./doc/IConfig";
import { CredentialManagerFactory } from "../../security";
import { IConvertV1ProfOpts, ConvertMsg, ConvertMsgFmt, IConvertV1ProfResult } from "./doc/IConvertV1Profiles";
import { IImperativeOverrides } from "../../imperative/src/doc/IImperativeOverrides";
import { keyring } from "@zowe/secrets-for-zowe-sdk";
import type { keyring } from "@zowe/secrets-for-zowe-sdk";
import { AppSettings } from "../../settings";
import { ISettingsFile } from "../../settings/src/doc/ISettingsFile";
import { ImperativeConfig } from "../../utilities";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { AbstractCredentialManager, SecureCredential } from "./abstract/Abstract
import { ImperativeError } from "../../error";
import { Logger } from "../../logger";

import { keyring as keytar } from "@zowe/secrets-for-zowe-sdk"; // Used for typing purposes only
import type { keyring as keytar } from "@zowe/secrets-for-zowe-sdk"; // Used for typing purposes only

/**
* Default Credential Manager is our implementation of the Imperative Credential Manager. This manager invokes methods
Expand Down

0 comments on commit 4e14312

Please sign in to comment.