Skip to content

Commit

Permalink
Zowe Suite v2.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zowe-robot authored Aug 14, 2024
2 parents 88b0742 + f58ed6d commit bfef848
Show file tree
Hide file tree
Showing 5 changed files with 7 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 @@
- Bugfix: fix an incorrect check in the recovery router code which might lead to
the state cell-pool being released prematurely (#446)
- Allocating SLH for http server with configurable value 'httpRequestHeapMaxBlocks' in yaml (#447).
- Return error when last config file is non existent or has some error (#460).

## `2.16.0`
- No yaml value converted to null (#442)
Expand Down
2 changes: 1 addition & 1 deletion build/configmgr.proj.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJECT="configmgr"
VERSION=2.17.0
VERSION=2.18.0
DEPS="QUICKJS LIBYAML"

QUICKJS="quickjs"
Expand Down
2 changes: 1 addition & 1 deletion build/getesm.proj.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
PROJECT="getesm"
VERSION=2.17.0
VERSION=2.18.0
DEPS=""
3 changes: 3 additions & 0 deletions c/configmgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -827,6 +827,9 @@ static int overloadConfiguration(ConfigManager *mgr,
trace(mgr, DEBUG2, "at end of config path\n");
bool dontCare = false;
config->configData = readJson(mgr,config,pathElement,&dontCare);
if ((config->configData == NULL) && !dontCare){
return ZCFG_MISSING_CONFIG_SOURCE;
}
trace(mgr, DEBUG2, "mgr->config = 0x%p\n", config);
return 0; /* success */
} else {
Expand Down
2 changes: 1 addition & 1 deletion manifest.template.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: zowe-common-c

version: 2.17.0
version: 2.18.0

homepage: https://zowe.org
keywords:
Expand Down

0 comments on commit bfef848

Please sign in to comment.