Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate NOTICE file for packages #3143

Closed
wants to merge 12 commits into from
Closed
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"disposablestack": "^1.1.4"
},
"devDependencies": {
"@houdiniproject/noticeme": "1.3.0",
"@types/jest": "^29.2.3",
"@types/mocha": "^10.0.1",
"@types/node": "^18.19.14",
Expand Down Expand Up @@ -76,6 +77,7 @@
"test:parallel": "pnpm -r --parallel --color test",
"package": "pnpm -r --sequential package",
"preinstall": "npx only-allow pnpm",
"update-sdks": "pnpm -r update \"@zowe/*@next\" \"!@zowe/zowe-explorer-api\" \"!@zowe/zos-ftp-for-zowe-cli\""
"update-sdks": "pnpm -r update \"@zowe/*@next\" \"!@zowe/zowe-explorer-api\" \"!@zowe/zos-ftp-for-zowe-cli\"",
"update-notices": "pnpm -r update-notices"
}
}
2 changes: 2 additions & 0 deletions packages/eslint-plugin-zowe-explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to the "eslint-plugin-zowe-explorer" package will be documen

### New features and enhancements

- Generate NOTICE file for package.

### Bug fixes

## `3.0.0-next.202409132122`
Expand Down
325 changes: 325 additions & 0 deletions packages/eslint-plugin-zowe-explorer/NOTICE

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion packages/eslint-plugin-zowe-explorer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
"lint:html": "echo \"eslint-plugin: nothing to lint.\"",
"madge": "echo \"eslint-plugin: nothing for madge.\"",
"pretty": "echo \"eslint-plugin: nothing to pretty.\"",
"package": "echo \"eslint-plugin: nothing to package.\""
"package": "echo \"eslint-plugin: nothing to package.\"",
"update-notices": "npx @houdiniproject/noticeme -u && pnpm notice",
"notice": "node ../../scripts/updateNotices.js"
},
"devDependencies": {
"requireindex": "^1.1.0",
Expand Down
1 change: 1 addition & 0 deletions packages/zowe-explorer-api/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-api" extension will be documented in t
- Deprecated the methods `ZoweVsCodeExtension.loginWithBaseProfile` and `ZoweVsCodeExtension.logoutWithBaseProfile`. Use `ZoweVsCodeExtension.ssoLogin` and `ZoweVsCodeExtension.ssoLogout` instead, which use the `BaseProfileAuthOptions` interface and allow you to choose whether the token value in the base profile should have precedence in case there are conflicts. [#3076](https://github.com/zowe/zowe-explorer-vscode/pull/3076)
- Fixed bug in `ProfilesCache` class where old profiles were still accessible after deleting a Team configuration file. [#3124](https://github.com/zowe/zowe-explorer-vscode/issues/3124)
- Added `extensionRemovedFromPath` private function to the `DsEntry` class to allow removing the extension from a data set before making API calls. [#3121](https://github.com/zowe/zowe-explorer-vscode/issues/3121)
- Generate NOTICE file for package.
- Deprecated the method `ProfilesCache.updateProfilesArrays`. Use `ProfilesCache.updateCachedProfile` instead, which handles updating credentials cached in memory when `autoStore` is false. [#3120](https://github.com/zowe/zowe-explorer-vscode/issues/3120)

### Bug fixes
Expand Down
700 changes: 700 additions & 0 deletions packages/zowe-explorer-api/NOTICE

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion packages/zowe-explorer-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@
"fresh-clone": "pnpm clean && (rimraf node_modules || true)",
"license": "node ../../scripts/updateLicenses.js",
"package": "pnpm build && pnpm 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"
"copy-secrets": "copyfiles -f ../../node_modules/@zowe/secrets-for-zowe-sdk/prebuilds/*.node ./prebuilds",
"update-notices": "npx @houdiniproject/noticeme -u && pnpm notice",
"notice": "node ../../scripts/updateNotices.js"
},
"jest": {
"moduleFileExtensions": [
Expand Down
2 changes: 2 additions & 0 deletions packages/zowe-explorer-ftp-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to the "zowe-explorer-ftp-extension" extension will be docum

### New features and enhancements

- Generate NOTICE file for package.

### Bug fixes

- Removed popup notification of successful registration with Zowe Explorer and log the success instead. [#2862](https://github.com/zowe/zowe-explorer-vscode/issues/2862)
Expand Down
618 changes: 618 additions & 0 deletions packages/zowe-explorer-ftp-extension/NOTICE

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion packages/zowe-explorer-ftp-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@
"fresh-clone": "pnpm clean && (rimraf node_modules || true)",
"vscode:prepublish": "webpack --mode production",
"license": "node ../../scripts/updateLicenses.js",
"package": "vsce package --no-dependencies && node ../../scripts/mv-pack.js zowe-explorer-ftp-extension vsix"
"package": "vsce package --no-dependencies && node ../../scripts/mv-pack.js zowe-explorer-ftp-extension vsix",
"update-notices": "npx @houdiniproject/noticeme -u && pnpm notice",
"notice": "node ../../scripts/updateNotices.js"
},
"engines": {
"vscode": "^1.79.0"
Expand Down
1 change: 1 addition & 0 deletions packages/zowe-explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ All notable changes to the "vscode-extension-for-zowe" extension will be documen

### New features and enhancements

- Generate NOTICE file for package.
- Users can now follow a prompt to create a new Zowe client configuration. The prompt displays when VS Code is opened with Zowe Explorer installed, but the user does not have any Zowe client configurations. [#3148](https://github.com/zowe/zowe-explorer-vscode/pull/3148)

### Bug fixes
Expand Down
Loading