Skip to content

Commit 7c27b47

Browse files
authored
Zowe Suite v3.0.0
2 parents 0d7c5cf + cc70add commit 7c27b47

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to the ZSS package will be documented in this file.
44

55
## `3.0.0`
66
- Enhancement: if no `zowe.logDirectory` is defined in config, logging is disabled. (#726)
7+
- Bugfix: Support cross-memory server parameters longer than 128 characters (#684)
8+
- Enhancement: Expose new cross-memory server's functions in dynlink (#684)
79

810
## `2.18.0`
911
- Change log level for setting default value of 'httpRequestHeapMaxBlocks' to DEBUG instead of INFO.(#719)

c/zis/stubinit.c

+2
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,8 @@
229229
stubVector[ZIS_STUB_CMGETLOG] = (void*)cmsGetPCLogLevel;
230230
stubVector[ZIS_STUB_CMGETSTS] = (void*)cmsGetStatus;
231231
stubVector[ZIS_STUB_CMMKSNAM] = (void*)cmsMakeServerName;
232+
stubVector[ZIS_STUB_CMGETPRX] = (void*)cmsGetConfigParmExt;
233+
stubVector[ZIS_STUB_CMGETPUX] = (void*)cmsGetConfigParmExtUnchecked;
232234
stubVector[ZIS_STUB_DYNASTXU] = (void*)createSimpleTextUnit;
233235
stubVector[ZIS_STUB_DYNASTX2] = (void*)createSimpleTextUnit2;
234236
stubVector[ZIS_STUB_DYNACTXU] = (void*)createCharTextUnit;

h/zis/zisstubs.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
FULL BACKWARD COMPATIBILITY MUST BE MAINTAINED
2121
*/
2222

23-
#define ZIS_STUBS_VERSION 3
23+
#define ZIS_STUBS_VERSION 4
2424

2525
/*
2626
How does a user check for compatibility?
@@ -310,6 +310,8 @@
310310
/* #define ZIS_STUB_CMECSAFR 382 cmsFreeECSAStorage - not in CMS_CLIENT */
311311
/* #define ZIS_STUB_CMECSAA2 383 cmsAllocateECSAStorage2 - not in CMS_CLIENT */
312312
/* #define ZIS_STUB_CMECSAF2 384 cmsFreeECSAStorage2 - not in CMS_CLIENT */
313+
#define ZIS_STUB_CMGETPRX 385 /* cmsGetConfigParmExt */
314+
#define ZIS_STUB_CMGETPUX 386 /* cmsGetConfigParmExtUnchecked */
313315

314316
/* dynalloc, 400-429 */
315317
#define ZIS_STUB_DYNASTXU 400 /* createSimpleTextUnit mapped */

0 commit comments

Comments
 (0)