Skip to content

Commit

Permalink
Merge pull request #100 from zowe/prep-next
Browse files Browse the repository at this point in the history
Prep next
  • Loading branch information
zFernand0 authored Feb 7, 2024
2 parents e567820 + 0745776 commit 0c85f13
Show file tree
Hide file tree
Showing 23 changed files with 190 additions and 360 deletions.
6 changes: 6 additions & 0 deletions .github/release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,19 @@ module.exports = {
$cwd: "packages/sdk",
aliasTags: {
"latest": ["zowe-v2-lts"],
"next": ["zowe-v3-lts"],
// TODO: Remove the two lines above when merging to the `main` branch
// "latest": ["zowe-v3-lts"],
},
npmPublish: true,
},
{
$cwd: "packages/cli",
aliasTags: {
"latest": ["zowe-v2-lts"],
"next": ["zowe-v3-lts"],
// TODO: Remove the two lines above when merging to the `main` branch
// "latest": ["zowe-v3-lts"],
},
npmPublish: true,
},
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// Standardize on the Prettier formatter
"editor.defaultFormatter": "esbenp.prettier-vscode",
// Enforce prettier on save
"editor.formatOnSave": true,
"editor.formatOnSave": false,
"npm.packageManager": "npm",
"eslint.packageManager": "npm"
}
13 changes: 13 additions & 0 deletions package-lock.json

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

4 changes: 4 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the IBM® CICS® Plug-in for Zowe CLI will be documented in this file.

## Recent Changes

- Major: Release v3.0.0-next pre-release

## `5.0.3`

- BugFix: Updated dependencies for technical currency
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ exports[`imperative config should match the snapshot 1`] = `
"*/*.definition!(.d).*s",
],
"name": "cics",
"pluginHealthCheck": "./lib/healthCheck.handler",
"productDisplayName": "CLI Plug-in for IBM CICS",
"profiles": [
{
Expand Down
44 changes: 22 additions & 22 deletions packages/cli/__tests__/__src__/ITestPropertiesSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,56 +16,56 @@
export interface ITestPropertiesSchema {

/**
* Properties related to connecting to CICS service
*/
* Properties related to connecting to CICS service
*/
cics: {
/**
* user ID to connect to CMCI
*/
* user ID to connect to CMCI
*/
user: string,
/**
* Password to connect to CMCI
*/
* Password to connect to CMCI
*/
password: string,
/**
* host name for CMCI
*/
* host name for CMCI
*/
host: string,
/**
* Port for CMCI
*/
* Port for CMCI
*/
port?: number,

/**
* http or https protocol for CMCI
*/
* http or https protocol for CMCI
*/
protocol?: string;

/**
* http or https protocol for CMCI
*/
* http or https protocol for CMCI
*/
rejectUnauthorized?: boolean;
};

/**
* Properties related to connecting to CMCI
*/
* Properties related to connecting to CMCI
*/
cmci: {
/**
* CSD group to define resources to
*/
* CSD group to define resources to
*/
csdGroup?: string;

/**
* Name of the CICS region e.g. "CICSCMCI"
*/
* Name of the CICS region e.g. "CICSCMCI"
*/
regionName?: string;
};

urimap: {
/**
* Name of the certificate to use for CICS Client Testing
*/
* Name of the certificate to use for CICS Client Testing
*/
certificate?: string;
};
}

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 0c85f13

Please sign in to comment.