You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,13 +3,16 @@
3
3
All notable changes to the Zowe Launcher package will be documented in this file.
4
4
This repo is part of the app-server Zowe Component, and the change logs here may appear on Zowe.org in that section.
5
5
6
-
## 3.3
7
-
- Bugfix: `zowe.sysMessages` feature was ignoring messages where the matching string was after the position of 126 ([#157]https://github.com/zowe/launcher/pull/157)
6
+
## 3.4.0
7
+
- Enhancement: Message `ZWEL0021I` includes the version of launcher ([#167](https://github.com/zowe/launcher/pull/167))
8
+
9
+
## 3.3.0
10
+
- Bugfix: `zowe.sysMessages` feature was ignoring messages where the matching string was after the position of 126 ([#157](https://github.com/zowe/launcher/pull/157))
8
11
- Enhancement: Launcher can now accept PARMLIB CONFIG entries that have more than one member name ([#146](https://github.com/zowe/launcher/pull/146))
9
12
- Enhancement: Trimming the sys messages to print from the sys-message-id as optional based on the zowe.sysMessageTrim=true/false. (#147)
10
13
- Enhancement: Avoid starting individual apiml components when apiml modulith is enabled ([#160](https://github.com/zowe/launcher/pull/160))
11
14
12
-
## 3.1
15
+
## 3.1.0
13
16
- Bugfix: HEAPPOOLS and HEAPPOOLS64 no longer need to be set to OFF for launcher (#133)
Copy file name to clipboardExpand all lines: README.md
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Copyright Contributors to the Zowe Project.
9
9
<h1align="center">Zowe Launcher</h1>
10
10
11
11
The Zowe launcher is a part of the Zowe server architecture that was added as an optional program for HA/FT usage in v1.
12
-
In v2, the Zowe laucher became the sole way to start the Zowe servers.
12
+
In v2, the Zowe launcher became the sole way to start the Zowe servers.
13
13
The launcher's purpose is to start, restart, and stop each Zowe server component which has a `start` command,
14
14
and in doing so it watches over such components for health (restarting them if they crash) and log management.
15
15
@@ -25,12 +25,20 @@ and in doing so it watches over such components for health (restarting them if t
25
25
26
26
## Building
27
27
28
-
```
28
+
The Zowe launcher is build with a version defined in [manifest.yaml](./manifest.yaml). This version is used in `ZWEL0021I` message.
29
+
30
+
```shell
29
31
cd zowe-launcher/build
30
32
./build.sh
31
33
```
32
34
33
-
The launcher binary will be saved into the bin directory.
35
+
For development purposes, it is possible to specify custom defined version, which must be compound from three numeric values and dots: for example `1.2.3`. Invalid version will be used as `0.0.0`.
36
+
```shell
37
+
cd zowe-launcher/build
38
+
export LAUNCHER_VERSION=1.2.3 && ./build.sh
39
+
```
40
+
41
+
The launcher binary will be saved into the `bin` directory.
0 commit comments