Compare commits

...
Sign in to create a new pull request.

5 commits

Author SHA1 Message Date
libraryupgrader
836871b041 build: Updating npm dependencies
* i: 0.3.6 → 0.3.7
  * https://npmjs.com/advisories/1002379 (CVE-2021-3820)
* ansi-regex: 2.1.1 → 5.0.1
  * https://npmjs.com/advisories/1002401 (CVE-2021-3807)

Additional changes:
* composer.json: Updated phpcs command in composer test (T280592).
* composer.json: Added phpcs command to scripts (T280592).

Change-Id: Ie0d55562573ddfd839c010a4c620e79b25994df9
2021-10-07 11:56:43 +00:00
libraryupgrader
7c11156848 build: Updating path-parse to 1.0.7
* https://npmjs.com/advisories/1773 (CVE-2021-23343)

Change-Id: I3dfa881e6d3a9d14a419d34b59431c2dba8a8e4a
2021-09-02 16:31:02 +00:00
libraryupgrader
c1b20d560d build: Updating dependencies
composer:
* mediawiki/mediawiki-codesniffer: 19.1.0 → 19.4.0

npm:
* grunt: 1.3.0 → 1.4.0

Change-Id: I0b75f416bf27cfc4ff2361cb8e128dc99c5b6a36
2021-05-09 10:15:05 +00:00
libraryupgrader
790ef209bc build: Updating y18n to 3.2.2
* https://npmjs.com/advisories/1654 (CVE-2020-7774)

Change-Id: Ia923fae56073cc2e3bf2c77fc34258ff689a4006
2021-03-30 00:00:47 +00:00
libraryupgrader
0fecfab673 build: Updating dependencies
composer:
* mediawiki/mediawiki-codesniffer: 18.0.0 → 19.1.0

npm:
* grunt: 1.0.1 → 1.3.0
  * https://npmjs.com/advisories/577 (CVE-2018-3721)
  * https://npmjs.com/advisories/745
  * https://npmjs.com/advisories/782 (CVE-2018-16487)
  * https://npmjs.com/advisories/788
  * https://npmjs.com/advisories/813
  * https://npmjs.com/advisories/1065 (CVE-2019-10744)
  * https://npmjs.com/advisories/1523 (CVE-2019-10744)

Additional changes:
* Replaced "jakub-onderka" packages with "php-parallel-lint".
* Committed package-lock.json (T179229) too.
* And updating CoC link to use Special:MyLanguage (T202047).
* Dropped .php5 and .inc files from .phpcs.xml (T200956).
* Also sorted "composer fix" command to run phpcbf last.

Change-Id: I5bc68d9d819496e5ce7c6384615b15ef2e8515f9
2021-01-01 05:00:22 +00:00
5 changed files with 3315 additions and 21 deletions

View file

@ -8,6 +8,6 @@
<exclude name="Squiz.Scope.MethodScope.Missing" />
</rule>
<file>.</file>
<arg name="extensions" value="php,php5,inc" />
<arg name="extensions" value="php" />
<arg name="encoding" value="UTF-8" />
</ruleset>

View file

@ -1 +1 @@
The development of this software is covered by a [Code of Conduct](https://www.mediawiki.org/wiki/Code_of_Conduct).
The development of this software is covered by a [Code of Conduct](https://www.mediawiki.org/wiki/Special:MyLanguage/Code_of_Conduct).

View file

@ -1,19 +1,20 @@
{
"require-dev": {
"jakub-onderka/php-parallel-lint": "1.0.0",
"mediawiki/mediawiki-codesniffer": "18.0.0",
"jakub-onderka/php-console-highlighter": "0.3.2",
"mediawiki/minus-x": "0.3.1"
"mediawiki/mediawiki-codesniffer": "19.4.0",
"mediawiki/minus-x": "0.3.1",
"php-parallel-lint/php-console-highlighter": "0.3.2",
"php-parallel-lint/php-parallel-lint": "1.0.0"
},
"scripts": {
"fix": [
"phpcbf",
"minus-x fix ."
"minus-x fix .",
"phpcbf"
],
"test": [
"parallel-lint . --exclude vendor --exclude node_modules",
"phpcs -p -s",
"@phpcs",
"minus-x check ."
]
],
"phpcs": "phpcs -sp --cache"
}
}

3293
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,13 +1,13 @@
{
"private": true,
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "1.0.1",
"grunt-banana-checker": "0.4.0",
"grunt-contrib-jshint": "0.11.3",
"grunt-jscs": "2.5.0",
"grunt-jsonlint": "1.0.7"
}
"private": true,
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "1.4.0",
"grunt-banana-checker": "0.4.0",
"grunt-contrib-jshint": "0.11.3",
"grunt-jscs": "2.5.0",
"grunt-jsonlint": "1.0.7"
}
}