Skip to content

Commit

Permalink
Merge pull request #1235 from Kitware/releases/3.1
Browse files Browse the repository at this point in the history
Merge v3.1 release branch to master
  • Loading branch information
zackgalbreath authored Mar 31, 2022
2 parents 093f756 + 7eabe36 commit 4b1e749
Show file tree
Hide file tree
Showing 8 changed files with 61 additions and 26 deletions.
2 changes: 1 addition & 1 deletion app/cdash/app/Controller/Api/TestDetails.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public function getResponse()
$outputid = $testRow['outputid'];

$menu = [];
$menu['back'] = "/viewTest.php?buildid={$this->build->Id}";
$menu['back'] = "viewTest.php?buildid={$this->build->Id}";

// Did the user request a specific chart?
// If so we should make that chart appears when they click next or previous.
Expand Down
4 changes: 2 additions & 2 deletions app/cdash/app/Controller/Api/ViewNotes.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public function getResponse()
// Menu
$menu = [];
if ($this->build->GetParentId() > 0) {
$menu['back'] = '/index.php?project=' . urlencode($this->project->Name) . "&parentid={$this->build->GetParentId()}";
$menu['back'] = 'index.php?project=' . urlencode($this->project->Name) . "&parentid={$this->build->GetParentId()}";
} else {
$menu['back'] = '/index.php?project=' . urlencode($this->project->Name) . '&date=' . $this->date;
$menu['back'] = 'index.php?project=' . urlencode($this->project->Name) . '&date=' . $this->date;
}

$previous_buildid = $this->build->GetPreviousBuildId();
Expand Down
4 changes: 2 additions & 2 deletions app/cdash/include/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@

// Current version
$CDASH_VERSION_MAJOR = '3';
$CDASH_VERSION_MINOR = '0';
$CDASH_VERSION_PATCH = '3';
$CDASH_VERSION_MINOR = '1';
$CDASH_VERSION_PATCH = '0';
$CDASH_VERSION = $CDASH_VERSION_MAJOR . '.' . $CDASH_VERSION_MINOR . '.' . $CDASH_VERSION_PATCH;
4 changes: 2 additions & 2 deletions app/cdash/public/api/v1/buildSummary.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@

$menu = [];
if ($build->GetParentId() > 0) {
$menu['back'] = '/index.php?project=' . urlencode($project->Name) . "&parentid={$build->GetParentId()}";
$menu['back'] = 'index.php?project=' . urlencode($project->Name) . "&parentid={$build->GetParentId()}";
} else {
$menu['back'] = '/index.php?project=' . urlencode($project->Name) . "&date=$date";
$menu['back'] = 'index.php?project=' . urlencode($project->Name) . "&date=$date";
}

if ($previous_buildid > 0) {
Expand Down
57 changes: 46 additions & 11 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config/cdash.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
'expires' => env('PASSWORD_EXPIRATION', 0),
'unique' => env('UNIQUE_PASSWORD_COUNT', 0),
],
'version' => '3.0.1',
'version' => '3.1.0',
'registration' => [
'email' => [
'verify' => env('REGISTRATION_EMAIL_VERIFY', true),
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cdash",
"version": "3.0.3",
"version": "3.1.0",
"description": "Continuous integration dashboard.",
"repository": "https://github.com/Kitware/CDash",
"license": "BSD-3-Clause",
Expand Down

0 comments on commit 4b1e749

Please sign in to comment.