Skip to content

Commit

Permalink
Update engine, add changelog, small lint tweaks
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew W. Harn <[email protected]>
  • Loading branch information
awharn committed Feb 28, 2024
1 parent c35e7b5 commit 0700e78
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to the IBM® MQ Plug-in for Zowe CLI will be documented in t
## Recent Changes

- BugFix: Add missing npm-shrinkwrap
- V3 Breaking: Increased minimum Node engine version to 18.12.0

## `3.0.1`

Expand Down
2 changes: 1 addition & 1 deletion __tests__/__system__/cli/cli.mqsc.system.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe("mq mqsc cli", () => {
installPlugin: true,
tempProfileTypes: ["mq"]
});
mqProperties = await testEnvironment.systemTestProperties;
mqProperties = testEnvironment.systemTestProperties;

const output = runCliScript(__dirname + "/__scripts__/query_queue_manager.sh", testEnvironment,
[mqProperties.mq.qmgr, mqProperties.test.setup.cmd]);
Expand Down
2 changes: 1 addition & 1 deletion __tests__/cli/command/Command.definition.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe("mq get resource", () => {
it ("should not have changed", () => {
const definition: ICommandDefinition = require("../../../src/cli/command/Command.definition");
expect(definition).toBeDefined();
expect(definition.children.length).toBe(DEFINE_RESOURCES);
expect(definition.children?.length).toBe(DEFINE_RESOURCES);
delete definition.children;
expect(definition).toMatchSnapshot();
});
Expand Down
3 changes: 3 additions & 0 deletions npm-shrinkwrap.json

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

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,5 +122,8 @@
]
},
"author": "Zowe",
"license": "EPL-2.0"
"license": "EPL-2.0",
"engines": {
"node": ">=18.12.0"
}
}

0 comments on commit 0700e78

Please sign in to comment.