-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prepare for xdmod10.5.1 release #1971
base: xdmod10.5
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,25 @@ | ||||||
<?php | ||||||
/** | ||||||
* Update config files from version 10.0.3 to 10.5.0. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
*/ | ||||||
|
||||||
namespace OpenXdmod\Migration\Version1050To1051; | ||||||
|
||||||
use OpenXdmod\Migration\ConfigFilesMigration as AbstractConfigFilesMigration; | ||||||
use OpenXdmod\Setup\Console; | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Appears to be unused. |
||||||
|
||||||
class ConfigFilesMigration extends AbstractConfigFilesMigration | ||||||
{ | ||||||
|
||||||
/** | ||||||
* Update portal_settings.ini with the new version number. | ||||||
*/ | ||||||
public function execute() | ||||||
{ | ||||||
$this->assertPortalSettingsIsWritable(); | ||||||
$this->assertModulePortalSettingsAreWritable(); | ||||||
|
||||||
$this->writePortalSettingsFile(); | ||||||
$this->writeModulePortalSettingsFiles(); | ||||||
} | ||||||
} |
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,22 @@ | ||||||||
<?php | ||||||||
/** | ||||||||
* Update database from version 10.0.3 to 10.5.0. | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
*/ | ||||||||
|
||||||||
namespace OpenXdmod\Migration\Version1050To1051; | ||||||||
|
||||||||
use OpenXdmod\Migration\DatabasesMigration as AbstractDatabasesMigration; | ||||||||
use OpenXdmod\Setup\Console; | ||||||||
use CCR\DB; | ||||||||
use ETL\Utilities; | ||||||||
Comment on lines
+9
to
+11
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Appear to be unused. |
||||||||
|
||||||||
/** | ||||||||
* Migrate databases from version 10.5.0 to 10.5.1. | ||||||||
*/ | ||||||||
class DatabasesMigration extends AbstractDatabasesMigration | ||||||||
{ | ||||||||
public function execute() | ||||||||
{ | ||||||||
parent::execute(); | ||||||||
} | ||||||||
} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,7 +1,17 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<h1>Open XDMoD Release Notes</h1> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<p>Below is a list of Open XDMoD releases with major features and bug fixes listed.</p> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<h2 id="2025-02-04-v10-5-1">2025-02-04 v10.5.1</h2> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<ul> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<li><p>Bug Fixes</p> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<ul> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<li>Security<ul> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<li>Update jQuery to version 3.7.1 to address CVE-2020-11023</li> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</ul> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</li> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</ul> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</li> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+6
to
+13
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</ul> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<h2 id="2023-09-11-v10-5-0">2023-09-11 v10.5.0</h2> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<ul> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<li><p>Bug Fixes</p> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "xdmod", | ||
"version": "10.5.0", | ||
"version": "10.5.1", | ||
"release": "1.0", | ||
"files": { | ||
"include_paths": [ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.