Skip to content

Commit

Permalink
2024100100 release code
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroAps committed Oct 1, 2024
1 parent 0ccac61 commit 4b07a16
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/moodle-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

services:
postgres:
image: postgres:12
image: postgres:13
env:
POSTGRES_USER: 'postgres'
POSTGRES_HOST_AUTH_METHOD: 'trust'
Expand All @@ -38,8 +38,11 @@ jobs:
fail-fast: false
matrix:
include:
- php: '8.1'
moodle-branch: 'master'
- php: '8.3'
moodle-branch: 'main'
database: 'pgsql'
- php: '8.3'
moodle-branch: 'MOODLE_404_STABLE'
database: 'pgsql'
- php: '8.2'
moodle-branch: 'MOODLE_403_STABLE'
Expand Down
4 changes: 4 additions & 0 deletions classes/plugininfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ public static function get_plugin_configuration_for_context(
global $COURSE, $CFG, $PAGE;

$ltitool = \panoptoblock_lti_utility::get_course_tool($COURSE->id);

// Remove sensitive info from $config.
unset($ltitool->config['password'], $ltitool->config['servicesalt']);

$resourcebase = sha1(
$PAGE->url->__toString() . '&' . $PAGE->course->sortorder
. '&' . $PAGE->course->timecreated
Expand Down
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
defined('MOODLE_INTERNAL') || die();

// The current plugin version (Date: YYYYMMDDXX).
$plugin->version = 2024070900;
$plugin->version = 2024100100;

// Requires this Moodle version - 4.1.0
$plugin->requires = 2022112800;
Expand All @@ -37,8 +37,8 @@
// Support from the Moodle 4.1 series.
401,

// To the Moodle 4.3 series.
403,
// To the Moodle 4.4 series.
404,
];

// This is considered as ready for production sites.
Expand Down

0 comments on commit 4b07a16

Please sign in to comment.