Skip to content

Commit

Permalink
Merge pull request #2513 from zowe/fix/bundle-secrets-apis
Browse files Browse the repository at this point in the history
2.11.2 release that will copy and package secrets with API package
  • Loading branch information
JillieBeanSim authored Oct 16, 2023
2 parents 95dc52f + 6028473 commit f5ca542
Show file tree
Hide file tree
Showing 6 changed files with 1,646 additions and 1,666 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.11.2-SNAPSHOT",
"version": "2.11.2",
"command": {
"version": {
"forcePublish": true,
Expand Down
4 changes: 2 additions & 2 deletions packages/zowe-explorer-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ All notable changes to the "zowe-explorer-api" extension will be documented in t

## TBD Release

### New features and enhancements

### Bug fixes

- Bundle Zowe Secrets for issues seen by extenders that use the ProfilesCache for profile management. [#2512](https://github.com/zowe/vscode-extension-for-zowe/issues/2512)

## `2.11.1`

### New features and enhancements
Expand Down
8 changes: 5 additions & 3 deletions packages/zowe-explorer-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"lib"
],
"devDependencies": {
"@types/semver": "^7.5.0"
"@types/semver": "^7.5.0",
"copyfiles": "^2.4.1"
},
"dependencies": {
"@types/vscode": "^1.53.2",
Expand All @@ -23,7 +24,7 @@
"semver": "^7.5.3"
},
"scripts": {
"build": "yarn check-cli && yarn clean && tsc -p ./ && yarn license",
"build": "yarn check-cli && yarn copy-secrets && yarn clean && tsc -p ./ && yarn license",
"test:unit": "jest \".*__tests__.*\\.unit\\.test\\.ts\" --coverage",
"test": "yarn test:unit",
"lint": "concurrently -n \"_eslint_,prettier\" \"eslint .\" \"prettier --check .\"",
Expand All @@ -33,7 +34,8 @@
"clean": "rimraf lib",
"fresh-clone": "yarn clean && rimraf node_modules",
"license": "node ../../scripts/updateLicenses.js",
"package": "yarn build && npm pack && node ../../scripts/mv-pack.js zowe-zowe-explorer-api tgz"
"package": "yarn build && npm pack && node ../../scripts/mv-pack.js zowe-zowe-explorer-api tgz",
"copy-secrets": "copyfiles -f ../../node_modules/@zowe/secrets-for-zowe-sdk/prebuilds/*.node ./prebuilds"
},
"jest": {
"moduleFileExtensions": [
Expand Down
4 changes: 2 additions & 2 deletions packages/zowe-explorer-ftp-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ All notable changes to the "zowe-explorer-ftp-extension" extension will be docum

## TBD Release

### New features and enhancements

### Bug fixes

- Update Zowe Explorer API dependency to pick up latest fixes for Zowe Secrets. [#2512](https://github.com/zowe/vscode-extension-for-zowe/issues/2512)

## `2.11.1`

### New features and enhancements
Expand Down
4 changes: 2 additions & 2 deletions packages/zowe-explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ All notable changes to the "vscode-extension-for-zowe" extension will be documen

## TBD Release

### New features and enhancements

### Bug fixes

- Update Zowe Explorer API dependency to pick up latest fixes for Zowe Secrets. [#2512](https://github.com/zowe/vscode-extension-for-zowe/issues/2512)

## `2.11.1`

### Bug fixes
Expand Down
Loading

0 comments on commit f5ca542

Please sign in to comment.