You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The canonical repository https://github.com/moodlehq/moodle-plugin-ci
has moved its "master" branch to "main".
So, here, we are adjusting all the places where the, now old, "master"
branch was being used. Usually that includes:
- CI Integrations (GHA, Travis...).
- Docs: READMEs, change logs, comments, any link pointing to "master" in general.
- Cases in code base that may depend of git branch name (unlikely, but...)
Copy file name to clipboardExpand all lines: docs/CHANGELOG.md
+18-18Lines changed: 18 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
21
21
php: error while loading shared libraries: libonig.so.5
22
22
```
23
23
24
-
To avoid that problem it's recommended to to add the `libonig5` package to the `travis.yml` file. For a working example, please reference the updated `.travis.dist.yml`file.
24
+
To avoid that problem, it's recommended to to add the `libonig5` package to the `travis.yml` file. For a working example, please reference the updated `.travis.dist.yml`file.
25
25
26
26
## [4.1.8] - 2023-10-20
27
27
### Changed
@@ -164,18 +164,18 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
164
164
165
165
### Fixed
166
166
- Updated to `php-coveralls/php-coveralls` v2 for uploading coverage results to [Coveralls](https://coveralls.io) with the `coveralls-upload` command.
167
-
- ACTION REQUIRED: Review any use of the `coveralls-upload` command in GHA and ensure that `COVERALLS_REPO_TOKEN` is set in the environment. See [Coveralls integration](https://github.com/moodlehq/moodle-plugin-ci/blob/master/docs/CodeCoverage.md#coveralls-integration) for more information.
167
+
- ACTION REQUIRED: Review any use of the `coveralls-upload` command in GHA and ensure that `COVERALLS_REPO_TOKEN` is set in the environment. See [Coveralls integration](https://github.com/moodlehq/moodle-plugin-ci/blob/main/docs/CodeCoverage.md#coveralls-integration) for more information.
168
168
169
169
## [3.4.4] - 2023-01-20
170
170
### Changed
171
171
- Updated to `php-compatibility` dev version. This was needed because the last release is from 2019 and, until a new release is available, it was the only way to get it working with PHP 8.1 and above and some good new Sniffs incorporated.
172
172
173
173
## [3.4.3] - 2022-12-24
174
174
### Changed
175
-
- Updated [gha.dist.yml](https://github.com/moodlehq/moodle-plugin-ci/blob/master/gha.dist.yml) and
(and documentation) to fulfil [Moodle 4.1 new requirements](https://tracker.moodle.org/browse/MDL-71747).
204
-
- ACTION REQUIRED: Review existing integrations running tests against master (4.1dev). There are a few Moodle 4.1 new requirements:
204
+
- ACTION REQUIRED: Review existing integrations running tests against main (4.1dev). There are a few Moodle 4.1 new requirements:
205
205
- PHP 7.4 is required (instead of 7.3).
206
206
- PostgreSQL 12 is required (instead of 10). Pay special attention to the changes needed for this and Travis!
207
207
- MariaDB 10.4 is required (instead of 10.2.29).
@@ -229,7 +229,7 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
229
229
## [3.2.5] - 2022-03-31
230
230
### Changed
231
231
- ACTION SUGGESTED: Now, it's safe to 'unpin' the MariaDB version in all integrations. With MariaDB 10.6.7 and 10.7.3 already released, the existing problems are gone, so it's possible to move away from the older 10.5 version. To achieve that, just look for any use of `image: mariadb:10.5` and change it to `image: mariadb:10`. For more information, see [MDL-72131](https://tracker.moodle.org/browse/MDL-72131).
232
-
- Updated version of [moodle-local_codechecker](https://github.com/moodlehq/moodle-local_codechecker) to v3.1.0. For list of changes see [changelog](https://github.com/moodlehq/moodle-local_codechecker/blob/master/CHANGES.md#changes-in-version-310-20220225---fondant-chocolate), you should expect numerous `@covers` annotation warnings in particular.
232
+
- Updated version of [moodle-local_codechecker](https://github.com/moodlehq/moodle-local_codechecker) to v3.1.0. For list of changes see [changelog](https://github.com/moodlehq/moodle-local_codechecker/blob/main/CHANGES.md#changes-in-version-310-20220225---fondant-chocolate), you should expect numerous `@covers` annotation warnings in particular.
233
233
234
234
### Added
235
235
- Use utf8mb4 for MySQL and MariaDB setup.
@@ -267,8 +267,8 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
267
267
- New tool-agnostic `CI_BUILD_DIR` env. variable that can be used instead of the old `TRAVIS_BUILD_DIR` one. Note that support for the later [will be removed](https://github.com/moodlehq/moodle-plugin-ci/issues/118) at some point in the future.
268
268
269
269
### Changed
270
-
- Updated [gha.dist.yml](https://github.com/moodlehq/moodle-plugin-ci/blob/master/gha.dist.yml) and
to use PostgreSQL 10 (Moodle 4.0 new requirement).
273
273
- ACTION REQUIRED: Existing integrations running tests with PostgreSQL now need to use version 10 or newer.
274
274
- ACTION REQUIRED: Existing integrations running tests with MariaDB must avoid using the 10.6 version and use 10.5 instead. It comes with some changes making it incompatible with Moodle default installation. To achieve that, just look for any use of `image: mariadb:10` and change it to `image: mariadb:10.5`. This is being tracked @ [MDL-72131](https://tracker.moodle.org/browse/MDL-72131) and, once fixed, it will be possible to go back to the original image.
@@ -283,8 +283,8 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
283
283
only if adding PHP 8 jobs. These changes include 1) Setting up the `max_input_vars=5000`
284
284
PHP configuration setting, for all runs, and 2) Enabling the `xmlrpc-beta` extension
285
285
if the plugin requires xmlrpc services, only for PHP 8 runs. See
286
-
[gha.dist.yml](https://github.com/moodlehq/moodle-plugin-ci/blob/master/gha.dist.yml) and
287
-
[.travis.dist.yml](https://github.com/moodlehq/moodle-plugin-ci/blob/master/.travis.dist.yml) for more information.
286
+
[gha.dist.yml](https://github.com/moodlehq/moodle-plugin-ci/blob/main/gha.dist.yml) and
287
+
[.travis.dist.yml](https://github.com/moodlehq/moodle-plugin-ci/blob/main/.travis.dist.yml) for more information.
288
288
289
289
### Changed
290
290
- Updated various internal dependencies and tools.
@@ -311,12 +311,12 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
311
311
- ACTION REQUIRED: If you are using GitHub Actions, add `NVM_DIR` definition
312
312
in "Initialise moodle-plugin-ci" step. Without it `nvm` can't be used for
313
313
node version switching, see the step definition at
and add missing `NVM_DIR` line your plugin's GHA workflow file.
316
316
317
317
### Changed
318
318
-`moodle-plugin-ci add-plugin` command now uses default banch to checkout
319
-
instead of `master` if `--branch` param is not specified..
319
+
instead of `main` if `--branch` param is not specified..
320
320
321
321
## [3.0.4] - 2021-01-29
322
322
### Fixed
@@ -333,7 +333,7 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
333
333
334
334
### Added
335
335
- Detect existence of legacy php-webdriver, and use a different Firefox image when it is in use.
336
-
- Add [manual](https://github.com/moodlehq/moodle-plugin-ci/blob/master/docs/index.md) and [example](https://github.com/moodlehq/moodle-plugin-ci/blob/master/docs/GHAFileExplained.md) on using GitHub Actions as CI tool.
336
+
- Add [manual](https://github.com/moodlehq/moodle-plugin-ci/blob/main/docs/index.md) and [example](https://github.com/moodlehq/moodle-plugin-ci/blob/main/docs/GHAFileExplained.md) on using GitHub Actions as CI tool.
337
337
338
338
## [3.0.3] - 2020-10-16
339
339
### Changed
@@ -616,7 +616,7 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
616
616
-`moodle-plugin-ci shifter` command. Run YUI Shifter on plugin YUI modules.
617
617
-`moodle-plugin-ci csslint` command. Lints the CSS files in the plugin.
0 commit comments