Skip to content

Commit

Permalink
Zowe Suite v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zowe-robot authored Sep 18, 2024
2 parents 7a336a0 + 77a1166 commit 7928287
Show file tree
Hide file tree
Showing 8 changed files with 330 additions and 67 deletions.
8 changes: 5 additions & 3 deletions .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:
- v2.x/master
- v3.x/master
- v3.x/staging
- v3.x/rc
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:
Expand Down Expand Up @@ -132,7 +134,7 @@ jobs:
with:
repository: zowe/zowe-common-c
path: deps/launcher/common
ref: 'v2.x/staging'
ref: 'v3.x/staging'

- name: '[Prep 2] Setup jFrog CLI'
uses: jfrog/setup-jfrog-cli@v2
Expand Down Expand Up @@ -183,7 +185,7 @@ jobs:
uses: zowe-actions/shared-actions/release@main

- name: '[Release 2] NPM bump version (if necessary)'
if: ${{ success() && github.event.inputs.PERFORM_RELEASE == 'true' && env.IS_RELEASE_BRANCH == 'true' && env.IS_FORMAL_RELEASE_BRANCH == 'true' && env.PRE_RELEASE_STRING == ''}}
if: ${{ success() && github.event.inputs.PERFORM_RELEASE == 'true' && env.IS_RELEASE_BRANCH == 'true' }}
uses: zowe-actions/shared-actions/bump-version@main
with:
version: minor
Expand Down
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
# Zowe Launcher Changelog

All notable changes to the Zowe Launcher package will be documented in this file..
All notable changes to the Zowe Launcher package will be documented in this file.
This repo is part of the app-server Zowe Component, and the change logs here may appear on Zowe.org in that section.

## 2.17.0
- Using configmgr to create the component list rather than zwe. (#117)

## 2.13.0
- Bugfix: Changed timestamp to UTC to match the server timestamps (#103)
- Bugfix: Removed server timestamps from syslog to avoid duplicate logging of time (#103)
- Bugfix: Avoided hang on components when components were logging messages longer than 1024 characters. (#103)
- Enhancement: syslog output per line is capped at 512 bytes, extra characters will be omitted (#103)
- Enhancement: Added milliseconds logging to match the server timestamps (#103)
- Enhancement: Launcher prints a message at the beginning of startup to alert users whether or not their log output has long enough lines to be readable if sent to support. (#101)
- Added a wrapper for wtoPrintf3

## 2.12.0
- Added a wrapper for wtoPrintf3
- Bugfix: Fixed a gap in WTO syslog checking
- Bugfix: Fixed a gap in WTO syslog checking
4 changes: 2 additions & 2 deletions build/launcher.proj.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJECT="launcher"
VERSION=2.12.0
VERSION=3.0.0
DEPS="QUICKJS LIBYAML COMMON"

QUICKJS="quickjs"
Expand All @@ -12,4 +12,4 @@ LIBYAML_BRANCH="0.2.5"

COMMON="common"
COMMON_SOURCE="git@github.com:zowe/zowe-common-c.git"
COMMON_BRANCH="v2.x/staging"
COMMON_BRANCH="v3.x/staging"
2 changes: 1 addition & 1 deletion manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: launcher
# Component identifier. This identifier matches artifact path in Zowe Artifactory https://zowe.jfrog.io/.
id: org.zowe.launcher
# Component version
version: 2.13.0
version: 3.0.0
# Human readable component name
title: Zowe Launcher
# Human readable component description
Expand Down
15 changes: 8 additions & 7 deletions samplib/ZWESLSTC
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//ZWESLSTC PROC RGN=0M,HAINST='{{ha_instance_id}}'
//ZWESLSTC PROC RGN=0M,HAINST='__ha_instance_id__'
//********************************************************************/
//* This program and the accompanying materials are */
//* made available under the terms of the */
Expand All @@ -22,10 +22,11 @@
//********************************************************************/
//ZWELNCH EXEC PGM=ZWELNCH,REGION=&RGN,TIME=NOLIMIT,
// PARM='ENVAR(_CEE_ENVFILE=DD:STDENV),POSIX(ON)/&HAINST.'
//STEPLIB DD DSNAME=&SYSUID..LOADLIB,DISP=SHR
//SYSIN DD DUMMY
//SYSPRINT DD SYSOUT=*,LRECL=1600
//SYSERR DD SYSOUT=*
//STEPLIB DD DSNAME={zowe.setup.dataset.authLoadlib},
// DISP=SHR
//SYSIN DD DUMMY
//SYSPRINT DD SYSOUT=*,LRECL=1600
//SYSERR DD SYSOUT=*
//********************************************************************/
//*
//* CONFIG= can be either a single path ex.
Expand Down Expand Up @@ -55,7 +56,7 @@
//********************************************************************/
//STDENV DD *
_CEE_ENVFILE_CONTINUATION=\
_CEE_RUNOPTS=HEAPPOOLS(OFF)
_CEE_RUNOPTS=HEAPPOOLS(OFF),HEAPPOOLS64(OFF)
_EDC_UMASK_DFLT=0002
CONFIG=#zowe_yaml
CONFIG={ZWE_CLI_PARAMETER_CONFIG}
/*
2 changes: 1 addition & 1 deletion schemas/trivial-schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "https://zowe.org/schemas/v2/launcher",
"$id": "https://zowe.org/schemas/v3/launcher",
"allOf": [
{ "$ref": "https://zowe.org/schemas/v2/server-base" },
{
Expand Down
Loading

0 comments on commit 7928287

Please sign in to comment.