Skip to content

Commit

Permalink
Version 8.1.1 updates (#907)
Browse files Browse the repository at this point in the history
* Updates for 8.1.1 release
  • Loading branch information
plessbd authored May 2, 2019
1 parent ccbe63f commit 16c684a
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Open XDMoD Change Log
=====================

## 2019-05-02 v8.1.1

- Bug Fixes
- General
- Allow upgrade to finish if cloud realm schema has not been created ([\#882](https://github.com/ubccr/xdmod/pull/882))

## 2019-04-23 v8.1.0

- Documentation
Expand Down
1 change: 1 addition & 0 deletions bin/xdmod-upgrade
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ ini_set('memory_limit', -1);
*/
$supportedUpgrades = array(
'8.0.0' => '8.1.0',
'8.1.0' => '8.1.1',
);

/**
Expand Down
2 changes: 1 addition & 1 deletion configuration/portal_settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ contact_page_recipient = ""
tech_support_recipient = ""

; The version number is updated during the upgrade process.
version = "8.1.0"
version = "8.1.1"

debug_mode = "off"
debug_recipient = ""
Expand Down
9 changes: 9 additions & 0 deletions html/about/release_notes/xdmod.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ <h1>Open XDMoD Release Notes</h1>

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

<h2> Version 8.1.1 (2019-05-02) </h2>
<h3>Bug Fixes</h3>
<ul>
<li>General
<ul>
<li>Allow upgrade to finish if cloud realm schema has not been created <a href="https://github.com/ubccr/xdmod/pull/905">#905</a></li>
</ul>
</li>
</ul>
<h2> Version 8.1.0 (2019-04-23) </h2>

<h3 id="documentation">Documentation</h3>
Expand Down
2 changes: 1 addition & 1 deletion open_xdmod/modules/xdmod/build.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xdmod",
"version": "8.1.0",
"version": "8.1.1",
"release": "1.0",
"files": {
"include_paths": [
Expand Down
4 changes: 3 additions & 1 deletion open_xdmod/modules/xdmod/xdmod.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ detailed interactive charts, graphs, and tables.
%setup -q -n %{name}-%{version}__PRERELEASE__

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

%changelog
* Thu May 02 2019 XDMoD <[email protected]> 8.1.1-1.0
- Update `%pre` with steps for `node_modules` on 8.1.1 release
* Tue Apr 23 2019 XDMoD <[email protected]> 8.1.0-1.0
- Update `%pre` with steps for `node_modules` on 8.1.0 release
* Tue Oct 30 2018 XDMoD <[email protected]> 8.0.0-1.0
Expand Down

0 comments on commit 16c684a

Please sign in to comment.