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

Merge staging into RC #552

Merged
merged 11 commits into from
May 2, 2024
3 changes: 1 addition & 2 deletions lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ if (!global.COM_RS_COMMON_LOGGER) {

const path = require('path');
const fs = require('fs');
const fsPromises = require('node:fs/promises');
const Promise = require('bluebird');
const ipaddr = require('ipaddr.js');
const dns = require('dns');
Expand Down Expand Up @@ -97,7 +96,7 @@ let zoweVersion = "0.0.0";
module.exports.setZoweVersionFromManifest = function setZoweVersionFromManifest(zoweConfig) {
if (zoweConfig.zowe.runtimeDirectory) {
try {
const contents = fsPromises.readFileSync(path.join(zoweConfig.zowe.runtimeDirectory, 'manifest.json'), {encoding: 'utf8'});
const contents = fs.readFileSync(path.join(zoweConfig.zowe.runtimeDirectory, 'manifest.json'), {encoding: 'utf8'});
if (contents) {
const asJson = JSON.parse(contents);
if (asJson.version) {
Expand Down
131 changes: 32 additions & 99 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@
"@rocketsoftware/eureka-js-client": "~4.5.6",
"@rocketsoftware/express-ws": "^5.0.0",
"accept-language-parser": "~1.5.0",
"axios": "^1.6.7",
"axios": "^1.6.8",
"bluebird": "~3.5.1",
"body-parser": "~1.20.0",
"cookie-parser": "~1.4.3",
"diffie-hellman": "^5.0.3",
"express": "~4.18.0",
"express": "~4.19.2",
"express-session": "~1.15.6",
"express-static-gzip": "~1.1.3",
"glob": "~7.1.3",
Expand Down
Loading
Loading