Skip to content

Commit 898c777

Browse files
authored
Updating changelog and makefile for Release/8232 (#525)
* Updating changelog and makefile for Release/8232 * Separate SE and UF versions * Security patch
1 parent d2cffd5 commit 898c777

File tree

3 files changed

+55
-7
lines changed

3 files changed

+55
-7
lines changed

Makefile

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@ SPLUNK_ANSIBLE_BRANCH ?= develop
77
SPLUNK_COMPOSE ?= cluster_absolute_unit.yaml
88
# Set Splunk version/build parameters here to define downstream URLs and file names
99
SPLUNK_PRODUCT := splunk
10-
SPLUNK_VERSION := 8.2.3
11-
SPLUNK_BUILD := cd0848707637
10+
SPLUNK_VERSION := 8.2.3.2
11+
SPLUNK_BUILD := 5281ae34c90c
12+
# Temporarily setting different versions for SE and UF for security patch
13+
SPLUNK_UF_VERSION := 8.2.3
14+
SPLUNK_UF_BUILD := cd0848707637
1215
ifeq ($(shell arch), s390x)
1316
SPLUNK_ARCH = s390x
1417
else
@@ -18,13 +21,13 @@ endif
1821
# Linux Splunk arguments
1922
SPLUNK_LINUX_FILENAME ?= splunk-${SPLUNK_VERSION}-${SPLUNK_BUILD}-Linux-${SPLUNK_ARCH}.tgz
2023
SPLUNK_LINUX_BUILD_URL ?= https://download.splunk.com/products/${SPLUNK_PRODUCT}/releases/${SPLUNK_VERSION}/linux/${SPLUNK_LINUX_FILENAME}
21-
UF_LINUX_FILENAME ?= splunkforwarder-${SPLUNK_VERSION}-${SPLUNK_BUILD}-Linux-${SPLUNK_ARCH}.tgz
22-
UF_LINUX_BUILD_URL ?= https://download.splunk.com/products/universalforwarder/releases/${SPLUNK_VERSION}/linux/${UF_LINUX_FILENAME}
24+
UF_LINUX_FILENAME ?= splunkforwarder-${SPLUNK_UF_VERSION}-${SPLUNK_UF_BUILD}-Linux-${SPLUNK_ARCH}.tgz
25+
UF_LINUX_BUILD_URL ?= https://download.splunk.com/products/universalforwarder/releases/${SPLUNK_UF_VERSION}/linux/${UF_LINUX_FILENAME}
2326
# Windows Splunk arguments
2427
SPLUNK_WIN_FILENAME ?= splunk-${SPLUNK_VERSION}-${SPLUNK_BUILD}-x64-release.msi
2528
SPLUNK_WIN_BUILD_URL ?= https://download.splunk.com/products/${SPLUNK_PRODUCT}/releases/${SPLUNK_VERSION}/windows/${SPLUNK_WIN_FILENAME}
26-
UF_WIN_FILENAME ?= splunkforwarder-${SPLUNK_VERSION}-${SPLUNK_BUILD}-x64-release.msi
27-
UF_WIN_BUILD_URL ?= https://download.splunk.com/products/universalforwarder/releases/${SPLUNK_VERSION}/windows/${UF_WIN_FILENAME}
29+
UF_WIN_FILENAME ?= splunkforwarder-${SPLUNK_UF_VERSION}-${SPLUNK_UF_BUILD}-x64-release.msi
30+
UF_WIN_BUILD_URL ?= https://download.splunk.com/products/universalforwarder/releases/${SPLUNK_UF_VERSION}/windows/${UF_WIN_FILENAME}
2831
# Splunk Cloud SDK binary
2932
SCLOUD_URL ?= https://github.com/splunk/splunk-cloud-sdk-go/releases/download/v1.11.1/scloud_v7.1.0_linux_amd64.tar.gz
3033

base/redhat-8/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ microdnf -y --nodocs install wget sudo shadow-utils procps tar make gcc \
3131
# Patch security updates
3232
microdnf -y --nodocs update gnutls kernel-headers librepo libnghttp2 nettle \
3333
libpwquality libxml2 systemd-libs glib2 lz4-libs \
34-
rpm rpm-libs
34+
rpm rpm-libs sqlite-libs
3535

3636
# Reinstall tzdata (originally stripped from minimal image): https://bugzilla.redhat.com/show_bug.cgi?id=1903219
3737
microdnf -y --nodocs reinstall tzdata || microdnf -y --nodocs update tzdata

docs/CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,14 @@ Red Hat images will continue to be published.
1010

1111
## Navigation
1212

13+
* [8.2.3.2](#8232)
14+
* [8.2.3](#823)
1315
* [8.2.2](#822)
1416
* [8.2.1](#821)
1517
* [8.2.0](#820)
18+
* [8.1.7](#817)
19+
* [8.1.7.1](#8171)
20+
* [8.1.6](#816)
1621
* [8.1.5](#815)
1722
* [8.1.4](#814)
1823
* [8.1.3](#813)
@@ -62,6 +67,13 @@ Red Hat images will continue to be published.
6267

6368
---
6469

70+
## 8.2.3.2
71+
72+
#### What's New?
73+
* New Splunk Enterprise security patch. For details, see [Fixed issues for 8.2.3.2](https://docs.splunk.com/Documentation/Splunk/8.2.3/ReleaseNotes/Fixedissues)
74+
75+
---
76+
6577
## 8.2.3
6678

6779
#### What's New?
@@ -121,6 +133,39 @@ Red Hat images will continue to be published.
121133

122134
---
123135

136+
## 8.1.7.1
137+
138+
#### What's New?
139+
* New Splunk Enterprise security patch. For details, see [Fixed issues for 8.1.7](https://docs.splunk.com/Documentation/Splunk/8.1.7/ReleaseNotes/Fixedissues)
140+
* Bundling in changes to be consistent with the release of [8.2.3.2](#8232)
141+
142+
#### Changes
143+
* See [8.2.3.2](#8232) changes
144+
145+
---
146+
147+
## 8.1.7
148+
149+
#### What's New?
150+
* New Splunk Enterprise maintenance patch. For details, see [Fixed issues for 8.1.7](https://docs.splunk.com/Documentation/Splunk/8.1.7/ReleaseNotes/Fixedissues)
151+
* Bundling in changes to be consistent with the release of [8.2.3](#823)
152+
153+
#### Changes
154+
* See [8.2.3](#823) changes
155+
156+
---
157+
158+
## 8.1.6
159+
160+
#### What's New?
161+
* New Splunk Enterprise maintenance patch. For details, see [Fixed issues for 8.1.6](https://docs.splunk.com/Documentation/Splunk/8.1.6/ReleaseNotes/Fixedissues)
162+
* Bundling in changes to be consistent with the release of [8.2.2](#822)
163+
164+
#### Changes
165+
* See [8.2.2](#822) changes
166+
167+
---
168+
124169
## 8.1.5
125170

126171
#### What's New?

0 commit comments

Comments
 (0)