Skip to content

Commit 4fa3b83

Browse files
committed
Update branch alias and require PHP 7.3+
1 parent 04e04b4 commit 4fa3b83

3 files changed

Lines changed: 14 additions & 11 deletions

File tree

RELEASE-NOTES.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ These are the release notes for the [Semantic Result Formats](https://www.semant
22

33
## SRF 4.0.0
44

5-
not yet released
5+
Released on January 25, 2022.
66

7+
* Minimum requirement for
8+
* PHP changed to version 7.3 and later
9+
* MediaWiki changed to version 1.35 and later
710
* [Filtered] added "list view userparam" (by [gesinn.it](https://gesinn.it))
811
* [Gallery] added "captiontemplate" parameter to allow wrapping of image captions with a template
912
* [GraphViz] fields of data type other than 'page' are now displayed not as separate nodes connected by edges but as parts of labels of nodes of the type 'record' and similar
@@ -35,7 +38,7 @@ Released on August 18, 2019.
3538
* Added `template` parameter to the `outline` format (by James Hong Kong)
3639
* Added css `class` parameter to the `tree` format (by Stephan Gambke)
3740
* Improved `timeseries` format (by Christian Zagrodnick)
38-
* Fixed `uncaught exception: Invalid dimensions for plot`
41+
* Fixed `uncaught exception: Invalid dimensions for plot`
3942
* Only correct plot height when there are tabs
4043
* Other bug fixes and code improvements
4144
* Made the extension installable without the `php-gd` PHP extension
@@ -59,7 +62,7 @@ Released on October 12, 2018.
5962
* PHP changed to version 5.6 and later
6063
* MediaWiki changed to version 1.27 and later
6164
* Semantic MediaWiki changed to version 3.0 and later
62-
* #438 Added support for extension registration via "extension.json" (by James Hong Kong)
65+
* #438 Added support for extension registration via "extension.json" (by James Hong Kong)
6366
→ Now you have to use `wfLoadExtension( 'SemanticResultFormats' );` in the "LocalSettings.php" file to invoke the extension
6467
* Improved filtered format: More options, better test coverage, re-enabled by default (by Stephan Gambke)
6568
* Refactored vcard format: Mostly code improvements (by James Hong Kong)
@@ -115,13 +118,13 @@ Released on October 25, 2017.
115118
- #286: Brings a reworked number filter
116119
- #291: Fixes `list view template` to actually show the template instead of defaulting to a table
117120
* #300: Brings improvements and fixes to the "filtered" format: (by Stephan Gambke)
118-
- Brings back checkboxes for value filter with only few values
119-
- Brings new query parameter ` |+value filter max checkboxes`
121+
- Brings back checkboxes for value filter with only few values
122+
- Brings new query parameter ` |+value filter max checkboxes`
120123
- Allows for easier installation of "data-values/geo"
121124
* #302: Fixes error messages shown in the instance language instead of the user language for the "filtered" format (by Stephan Gambke)
122125
* #305: Fixes "SRF\Filtered\Filtered::setParser() must be an instance of Parser..." for the "filtered" format (by Stephan Gambke)
123126
* Fixes issues with HTML-encoded values sent by JavaScript for the "filtered" format (by Stephan Gambke)
124-
* #324: Brings improvements to the "filtered" format as authored with the following pull requests: (by Stephan Gambke)
127+
* #324: Brings improvements to the "filtered" format as authored with the following pull requests: (by Stephan Gambke)
125128
- #318: Wrap input elements of the Value filter (checkboxes and radioboxes) in label elements. This way they will also be triggered when only the label text is clicked.
126129
- #322: Show a spinner while filtering. This will block users from triggering further filter events while filtering is still ongoing.
127130
- #323: Adds printout parameter`|+show if undefined`. Setting it makes filters show a result item even if the printout does not contain a value.
@@ -157,7 +160,7 @@ Released on June 13, 2017.
157160
* Dropped compatibility with MediaWiki 1.19 to 1.22
158161
* Updated installation instructions in [INSTALL.md](INSTALL.md)
159162
* Changed bootstrapping of SRF to make it work with SMW 3.0+ (by James Hong Kong)
160-
* Re-organized file layout unit testing and added JSONScript integration testing facility from SMW (by Stephan Gambke)
163+
* Re-organized file layout unit testing and added JSONScript integration testing facility from SMW (by Stephan Gambke)
161164
* Improved math format to recognize output format "-" (by Sebastian Schmid (gesinn.it))
162165
* Improved eventcalendar format: Added parameter 'clicktarget' to allow users to define a target URL that get's called when clicking on a calendar date. (by Felix Aba)
163166
* Reworked tree format (by Stephan Gambke)

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
"source": "https://github.com/SemanticMediaWiki/SemanticResultFormats"
4545
},
4646
"require": {
47-
"php": ">=7.1",
48-
"composer/installers": "1.*,>=1.0.1",
47+
"php": ">=7.3",
48+
"composer/installers": ">=1.0.1",
4949
"mediawiki/semantic-media-wiki": "~3.0|~4.0",
5050
"nicmart/tree": "^0.2.7",
5151
"data-values/geo": "~4.0|~3.0|~2.0",
@@ -73,7 +73,7 @@
7373
},
7474
"extra": {
7575
"branch-alias": {
76-
"dev-master": "3.2.x-dev"
76+
"dev-master": "4.0.x-dev"
7777
}
7878
},
7979
"config": {

extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@
6060
"ext.srf.filtered.value-filter.select"
6161
]
6262
},
63-
"load_composer_autoloader":true,
63+
"load_composer_autoloader": true,
6464
"manifest_version": 2
6565
}

0 commit comments

Comments
 (0)