Skip to content
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

Moodle 401 stable 853 historyfix #854

Merged
merged 2 commits into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
codechecker_max_warnings: 0 # CI should now fail on phpcs / code checker warnings.
disable_behat: true
disable_grunt: true
min_php: 7.4
extra_plugin_runners: |
moodle-plugin-ci add-plugin catalyst/moodle-local_aws --branch ci-for-tool_dataflows;
sudo sed -i 's/azure\.//' /etc/apt/sources.list
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ Dataflows is a generic workflow and processing engine which can be configured to

| Moodle version | Branch | PHP |
|----------------|------------------|-----------|
| Moodle 4.1+ | MOODLE_41_STABLE | 7.4 |
| Moodle 4.1+ | MOODLE_41_STABLE | 7.4 | 8.0 |
| Totara 10+ | MOODLE_35_STABLE | 7.1 - 7.4 |

Note: Moodle 402 is supported with PHP 8.0 maximum at the moment

## Alternatives

### tool_etl
Expand Down
1 change: 1 addition & 0 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
$plugin->version = 2023122200;
$plugin->release = 2023122200;
$plugin->requires = 2022112800; // Our lowest supported Moodle (3.3.0).
$plugin->supported = [400, 401];
// TODO $plugin->incompatible = ; // Available as of Moodle 3.9.0 or later.
$plugin->component = 'tool_dataflows';
$plugin->maturity = MATURITY_ALPHA;
Expand Down
Loading