Skip to content

Commit fd6a279

Browse files
jpwhite4ryanrath
andauthored
Update version number from 10.0.2 to 10.0.3 (#1750)
Co-authored-by: ryanrath <[email protected]>
1 parent 637bf58 commit fd6a279

File tree

10 files changed

+57
-5
lines changed

10 files changed

+57
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Open XDMoD Change Log
22

3+
## 2023-08-04 v10.0.3
4+
- Bug Fixes
5+
- General
6+
- Fix handling of filters where the filter string has a quote character in it ([\#1749](https://github.com/ubccr/xdmod/pull/1749))
7+
38
## 2023-04-03 v10.0.2
49
- Bug Fixes
510
- General

bin/xdmod-upgrade

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ ini_set('memory_limit', -1);
2828
$supportedUpgrades = array(
2929
'9.5.0' => '10.0.0',
3030
'10.0.0' => '10.0.1',
31-
'10.0.1' => '10.0.2'
31+
'10.0.1' => '10.0.2',
32+
'10.0.2' => '10.0.3'
3233
);
3334

3435
/**
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
/**
3+
* Update config files from version 10.0.2 To 10.0.3.
4+
*/
5+
6+
namespace OpenXdmod\Migration\Version1002To1003;
7+
8+
use OpenXdmod\Migration\ConfigFilesMigration as AbstractConfigFilesMigration;
9+
10+
class ConfigFilesMigration extends AbstractConfigFilesMigration
11+
{
12+
13+
/**
14+
* Update portal_settings.ini with the new version number.
15+
*/
16+
public function execute()
17+
{
18+
$this->assertPortalSettingsIsWritable();
19+
$this->writePortalSettingsFile();
20+
}
21+
}

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 = "10.0.2"
9+
version = "10.0.3"
1010

1111
debug_mode = "off"
1212
debug_recipient = ""

docs/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ defaults:
3737
values:
3838
layout: "page"
3939
prev_sw_version: "9.5.0"
40-
sw_version: "10.0.2"
40+
sw_version: "10.0.3"
4141
style: "effervescence"
4242
tocversion: "toc"
4343

docs/latest-releases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ Below you will find links to our latest releases by supported OS.
88
You can find the latest CentOS7 build here: [CentOS7 Latest](https://github.com/ubccr/xdmod/releases/latest)
99

1010
# Rocky 8
11-
You can find the latest Rocky 8 build here: [Rocky 8 Latest](https://github.com/ubccr/xdmod/releases/tag/v10.0.2-2-el8)
11+
You can find the latest Rocky 8 build here: [Rocky 8 Latest](https://github.com/ubccr/xdmod/releases/tag/v10.0.3-1-el8)
1212

1313
**Note: Rocky8 support is still in beta. Full support is slated for Open XDMoD 10.5**

docs/upgrade.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,5 +157,17 @@ Open XDMoD by rpm on Centos 7 then the nodejs package will be installed automati
157157
If upgrading Open XDMoD by rpm on Rocky 8 then then nodejs 16 module
158158
stream must be enabled following the directions on the [software requirements page](software-requirements.md#Rocky-8).
159159

160+
10.0.3 Upgrade Notes
161+
-------------------
162+
163+
Open XDMoD 10.0.3 is a bug fix release.
164+
165+
You may upgrade directly from 9.5.0, 10.0.0, 10.0.1 or 10.0.2
166+
167+
The 10.0.3 release has a dependency on nodejs 16. If upgrading from
168+
Open XDMoD 10.0.1 or earlier by rpm on Centos 7 then the nodejs package will be installed automatically.
169+
If upgrading from Open XDMoD 10.0.1 or earlier by rpm on Rocky 8 then then nodejs 16 module
170+
stream must be enabled following the directions on the [software requirements page](software-requirements.md#Rocky-8).
171+
160172
[github-latest-release]: https://github.com/ubccr/xdmod/releases/latest
161173
[mysql-config]: configuration.md#mysql-configuration

html/about/release_notes/xdmod.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@ <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 10.0.3 (2023-08-04)</h2>
6+
<ul>
7+
<li>Bug Fixes</li>
8+
<ul>
9+
<li>General</li>
10+
<ul>
11+
<li>Fix handling of filters where the filter string has a quote character in it</li>
12+
</ul>
13+
</ul>
14+
</ul>
15+
516
<h2>Version 10.0.2 (2022-04-03)</h2>
617
<ul>
718
<li>Bug Fixes</li>

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": "10.0.2",
3+
"version": "10.0.3",
44
"release": "1.0",
55
"files": {
66
"include_paths": [

open_xdmod/modules/xdmod/xdmod.spec.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ rm -rf $RPM_BUILD_ROOT
100100
%dir %attr(0570,apache,xdmod) %{xdmod_export_dir}
101101

102102
%changelog
103+
* Fri Aug 4 2023 XDMoD <[email protected]> 10.0.3-1.0
104+
- Release 10.0.3
103105
* Mon Apr 3 2023 XDMoD <[email protected]> 10.0.2-1.0
104106
- Release 10.0.2
105107
* Fri Mar 10 2023 XDMoD <[email protected]> 10.0.1-1.0

0 commit comments

Comments
 (0)