Skip to content

Commit

Permalink
Merge pull request #552 from zowe/users/jstruga/merge-staging-into-rc
Browse files Browse the repository at this point in the history
Merge staging into RC
  • Loading branch information
1000TurquoisePogs authored May 2, 2024
2 parents e1fd845 + 5e6323b commit d1460e0
Show file tree
Hide file tree
Showing 5 changed files with 151 additions and 135 deletions.
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

0 comments on commit d1460e0

Please sign in to comment.