Skip to content

Commit

Permalink
Zowe Suite v1.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zowe-robot authored May 11, 2022
2 parents 9913b09 + f64143e commit 00f8db4
Show file tree
Hide file tree
Showing 23 changed files with 2,908 additions and 284 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Build and Test Workflow
on:
push:
branches:
- staging, master, rc
- staging
- master
- rc
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to the ZSS package will be documented in this file.

## Recent Changes

## v1.28.0

- Bugfix: ZSS had a jobname prefix regression for several releases when it recieved an incorrect value for ZOWE_PREFIX when LAUNCH_COMPONENT_GROUPS included GATEWAY


## `1.27.0`

- Enhancement: Get public key for JWT signature verification using APIML
Expand Down
4 changes: 3 additions & 1 deletion apiml-static-reg.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ services:
gatewayUrl: api/v1
swaggerUrl: https://${ZOWE_EXPLORER_HOST}:${ZOWE_ZLUX_SERVER_HTTPS_PORT:-8544}/api-docs/agent
# documentationUrl: TODO
authentication:
scheme: zoweJwt
catalogUiTiles:
zss:
title: Zowe System Services (ZSS)
description: Zowe System Services is an HTTPS and Websocket server that makes it easy to have secure, powerful web APIs backed by low-level z/OS constructs.
description: Zowe System Services is an HTTPS and Websocket server that makes it easy to have secure, powerful web APIs backed by low-level z/OS constructs.
66 changes: 0 additions & 66 deletions bin/zss-import-jwt-key.sh

This file was deleted.

10 changes: 10 additions & 0 deletions bin/zssServer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,16 @@ fi
#Determined log file. Run zssServer.
export dir=`dirname "$0"`
cd $ZSS_SCRIPT_DIR

# Weird bug in recent releases has app-server not having the same jobname prefix as other services.
# This only happens when LAUNCH_COMPONENT_GROUPS includes GATEWAY.
# Possibly due to hacks elsewhere that we weren't notified of https://github.com/zowe/zowe-install-packaging/commit/0ccb77afca8f6dd8e2782c25490283739ab2791c
if [ -n "${ZOWE_INSTANCE}" ]; then
if [[ "${ZOWE_PREFIX}" != *"${ZOWE_INSTANCE}" ]]; then
export ZOWE_PREFIX=${ZOWE_PREFIX}${ZOWE_INSTANCE}
fi
fi

_BPX_SHAREAS=NO _BPX_JOBNAME=${ZOWE_PREFIX}SZ1 ./zssServer "${CONFIG_FILE}" 2>&1 | tee $ZSS_LOG_FILE
# This program and the accompanying materials are
# made available under the terms of the Eclipse Public License v2.0 which accompanies
Expand Down
2 changes: 1 addition & 1 deletion build/build_zss.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ if c89 \
${COMMON}/c/crossmemory.c \
${COMMON}/c/crypto.c \
${COMMON}/c/dataservice.c \
${COMMON}/c/datasetjson.c \
${COMMON}/c/discovery.c \
${COMMON}/c/dynalloc.c \
${COMMON}/c/fdpoll.c \
Expand Down Expand Up @@ -138,6 +137,7 @@ if c89 \
${ZSS}/c/certificateService.c \
${ZSS}/c/unixFileService.c \
${ZSS}/c/datasetService.c \
${ZSS}/c/datasetjson.c \
${ZSS}/c/envService.c \
${ZSS}/c/zosDiscovery.c \
${ZSS}/c/securityService.c \
Expand Down
2 changes: 1 addition & 1 deletion build/build_zss64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ if ! c89 \
${COMMON}/c/crossmemory.c \
${COMMON}/c/crypto.c \
${COMMON}/c/dataservice.c \
${COMMON}/c/datasetjson.c \
${COMMON}/c/discovery.c \
${COMMON}/c/dynalloc.c \
${COMMON}/c/fdpoll.c \
Expand Down Expand Up @@ -113,6 +112,7 @@ if ! c89 \
${ZSS}/c/certificateService.c \
${ZSS}/c/unixFileService.c \
${ZSS}/c/datasetService.c \
${ZSS}/c/datasetjson.c \
${ZSS}/c/envService.c \
${ZSS}/c/zosDiscovery.c \
${ZSS}/c/securityService.c \
Expand Down
Loading

0 comments on commit 00f8db4

Please sign in to comment.