Skip to content

Commit 72c5161

Browse files
authored
8.1.2 release (#913)
* 8.1.2 release
1 parent 7dc3b54 commit 72c5161

File tree

7 files changed

+35
-4
lines changed

7 files changed

+35
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Open XDMoD Change Log
22
=====================
33

4+
## 2019-05-06 v8.1.2
5+
6+
- Bug Fixes
7+
- General
8+
- Update `isRealmEnabled` sql ([\#912](https://github.com/ubccr/xdmod/pull/912))
9+
- Add storage bootstrap to setup ([\#914](https://github.com/ubccr/xdmod/pull/914))
10+
- Add jobs cloud common pipeline to cloud ingestion ([\#916](https://github.com/ubccr/xdmod/pull/916))
11+
412
## 2019-05-02 v8.1.1
513

614
- Bug Fixes

bin/xdmod-upgrade

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ ini_set('memory_limit', -1);
2828
$supportedUpgrades = array(
2929
'8.0.0' => '8.1.0',
3030
'8.1.0' => '8.1.1',
31+
'8.1.1' => '8.1.2'
3132
);
3233

3334
/**

configuration/portal_settings.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ contact_page_recipient = ""
66
tech_support_recipient = ""
77

88
; The version number is updated during the upgrade process.
9-
version = "8.1.1"
9+
version = "8.1.2"
1010

1111
debug_mode = "off"
1212
debug_recipient = ""

docs/upgrade.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,14 @@ the recommended values listed on the [software requirements page][mysql-config].
102102

103103
# /opt/xdmod-{{ page.sw_version }}/bin/xdmod-upgrade
104104

105+
8.1.1 to 8.1.2 Upgrade Notes
106+
----------------------------
107+
108+
Open XDMoD 8.1.2 is a bug fix release that fixes an issue with detecting enabled
109+
realms and the ingestion / aggregation of data.
110+
111+
You may upgrade directly from 8.0.0 to 8.1.2.
112+
105113
8.1.0 to 8.1.1 Upgrade Notes
106114
----------------------------
107115

html/about/release_notes/xdmod.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@ <h1>Open XDMoD Release Notes</h1>
22

33
<p>Below is a list of Open XDMoD releases with major features and bug fixes listed.</p>
44

5+
<h2> Version 8.1.2 (2019-05-06) </h2>
6+
<h3>Bug Fixes</h3>
7+
<ul>
8+
<li>General
9+
<ul>
10+
<li>Update `isRealmEnabled` sql <a href="https://github.com/ubccr/xdmod/pull/912">#912</a></li>
11+
<li>Add storage bootstrap to setup <a href="https://github.com/ubccr/xdmod/pull/914">#914</a></li>
12+
<li>Add jobs cloud common pipeline to cloud ingestion <a href="https://github.com/ubccr/xdmod/pull/916">#916</a></li>
13+
</ul>
14+
</li>
15+
</ul>
16+
517
<h2> Version 8.1.1 (2019-05-02) </h2>
618
<h3>Bug Fixes</h3>
719
<ul>

open_xdmod/modules/xdmod/build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "xdmod",
3-
"version": "8.1.1",
3+
"version": "8.1.2",
44
"release": "1.0",
55
"files": {
66
"include_paths": [

open_xdmod/modules/xdmod/xdmod.spec.in

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ detailed interactive charts, graphs, and tables.
3131
%setup -q -n %{name}-%{version}__PRERELEASE__
3232

3333
%pre
34-
if [ "%{version}" = "8.1.0" ] || [ "%{version}" = "8.1.1" ]; then
35-
# This script is only needed for the 8.1.0 install/upgrade. After this time
34+
if [ "%{version}" = "8.1.0" ] || [ "%{version}" = "8.1.1" ] || [ "%{version}" = "8.1.2" ]; then
35+
# This script is only needed for the 8.1.* install/upgrade. After this time
3636
# the node_modules directory is managed by RPM.
3737
if [ -e "%{_datadir}/%{name}/etl/js/node_modules" ];
3838
then
@@ -96,6 +96,8 @@ rm -rf $RPM_BUILD_ROOT
9696
%config(noreplace) %{_datadir}/%{name}/html/robots.txt
9797

9898
%changelog
99+
* Mon May 06 2019 XDMoD <[email protected]> 8.1.2-1.0
100+
- Update `%pre` with steps for `node_modules` on 8.1.2 release
99101
* Thu May 02 2019 XDMoD <[email protected]> 8.1.1-1.0
100102
- Update `%pre` with steps for `node_modules` on 8.1.1 release
101103
* Tue Apr 23 2019 XDMoD <[email protected]> 8.1.0-1.0

0 commit comments

Comments
 (0)