File tree Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 13
13
strategy :
14
14
matrix :
15
15
include :
16
+ - mw : ' REL1_39'
17
+ php : 7.4
18
+ type : normal
19
+ experimental : false
16
20
- mw : ' REL1_39'
17
21
php : 8.0
18
22
type : coverage
Original file line number Diff line number Diff line change 1
1
This file contains the RELEASE-NOTES of the ** Semantic Scribunto** (a.k.a. SSC) extension.
2
2
3
+ ## 2.3.2
4
+
5
+ Released on July 23, 2024
6
+
7
+ * Fixes PHP 7.3 issue
8
+
9
+ ## 2.3.1
10
+
11
+ Released on July 16, 2024
12
+
13
+ * Fixes message registration
14
+
15
+ ## 2.3.0
16
+
17
+ Released on July 16, 2024
18
+
19
+ * Raising minimum requirement to MW 1.39 and SMW 4.1
20
+ * Switch unit tests from tavis to github
21
+ * Add new ci sets for MW > 1.39
22
+ * Switch hook registration to default MW schema
23
+ * Switch to MW autoloader, abandoning composer autoloader
24
+ * Fix unit tests
25
+
26
+
3
27
## 2.2.0
4
28
5
29
Released on January 19, 2022.
Original file line number Diff line number Diff line change @@ -336,7 +336,7 @@ private function getLibraryFactory(): LibraryFactory {
336
336
*
337
337
* @return bool
338
338
*/
339
- private function isAQueryResult ( mixed $ queryResult ): bool {
339
+ private function isAQueryResult ( $ queryResult ): bool {
340
340
return is_a ( $ queryResult , QueryResult::class );
341
341
}
342
342
@@ -350,7 +350,7 @@ private function isAQueryResult( mixed $queryResult ): bool {
350
350
*
351
351
* @return array
352
352
*/
353
- private function processLuaArguments ( mixed $ arguments ) {
353
+ private function processLuaArguments ( $ arguments ) {
354
354
355
355
if ( empty ( $ arguments ) ) {
356
356
return [];
You can’t perform that action at this time.
0 commit comments