Compare commits

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

6 commits

Author SHA1 Message Date
libraryupgrader
a35de703c0 build: Updating minimatch to 3.0.8
* https://github.com/advisories/GHSA-f8q6-p94x-37v3

Change-Id: I002d3cdf55f8634ce02a13de7ea50cc08dfb52fd
2022-10-23 07:32:57 +00:00
libraryupgrader
763278c76e build: Updating grunt to 1.5.3
Change-Id: Ie72c8e36aa39dfe82e38d53e5793f37a736c397c
2022-05-22 14:21:22 +00:00
libraryupgrader
9cf2aa9019 build: Updating dependencies
composer:
* mediawiki/mediawiki-codesniffer: 31.0.0 → 38.0.0
  The following sniffs are failing and were disabled:
  * MediaWiki.NamingConventions.PrefixedGlobalFunctions.allowedPrefix
  * MediaWiki.Usage.ExtendClassUsage.FunctionConfigUsage

npm:
* ajv: 6.11.0 → 6.12.6
  * https://github.com/advisories/GHSA-v88g-cgmw-v5xw
* ansi-regex: 5.0.0 → 5.0.1
  * https://github.com/advisories/GHSA-93q8-gq69-wqmw
  * https://github.com/advisories/GHSA-93q8-gq69-wqmw
* async: 3.2.0 → 3.2.3
  * https://github.com/advisories/GHSA-fwr7-v2mv-hh25
* minimist: 1.2.5 → 1.2.6
  * https://github.com/advisories/GHSA-xvch-5gv4-984h

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

Change-Id: Id3fadc2ea75f6bee4a1dfdfdc2f4892ec8d35a0d
2022-04-15 01:40:36 +00:00
libraryupgrader
8b144bcb65 build: Updating path-parse to 1.0.7
* https://npmjs.com/advisories/1773 (CVE-2021-23343)

Change-Id: Ieab54661a5aff68441817389f5c2a87764dbbee3
2021-09-02 16:31:03 +00:00
libraryupgrader
cf8cc9b595 build: Updating glob-parent to 5.1.2
* https://npmjs.com/advisories/1751 (CVE-2020-28469)

Change-Id: I60f6634ffcf1d6356837ecf5282098b0e7639cf1
2021-07-22 15:28:35 +00:00
libraryupgrader
de75d9f690 build: Updating npm dependencies
* grunt: 1.1.0 → 1.4.0
* lodash: 4.17.19 → 4.17.21
  * https://npmjs.com/advisories/1673 (CVE-2021-23337)

Additional changes:
* Dropped .php5 and .inc files from .phpcs.xml (T200956).

Change-Id: Iff562433ff7a4268f3eb7eb7a0c1ec1d0c43e540
2021-05-09 10:18:04 +00:00
4 changed files with 2905 additions and 406 deletions

View file

@ -2,11 +2,13 @@
<ruleset>
<rule ref="./vendor/mediawiki/mediawiki-codesniffer/MediaWiki">
<exclude name="MediaWiki.Files.ClassMatchesFilename.NotMatch" />
<exclude name="MediaWiki.NamingConventions.PrefixedGlobalFunctions.allowedPrefix" />
<exclude name="MediaWiki.Usage.ExtendClassUsage.FunctionConfigUsage" />
<exclude name="MediaWiki.Commenting.FunctionComment.MissingDocumentationProtected" />
<exclude name="MediaWiki.Commenting.FunctionComment.MissingDocumentationPublic" />
<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,6 +1,6 @@
{
"require-dev": {
"mediawiki/mediawiki-codesniffer": "31.0.0",
"mediawiki/mediawiki-codesniffer": "38.0.0",
"mediawiki/minus-x": "1.1.0",
"php-parallel-lint/php-console-highlighter": "0.5.0",
"php-parallel-lint/php-parallel-lint": "1.2.0"
@ -12,8 +12,9 @@
],
"test": [
"parallel-lint . --exclude vendor --exclude node_modules",
"phpcs -p -s",
"@phpcs",
"minus-x check ."
]
],
"phpcs": "phpcs -sp --cache"
}
}

3297
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,11 +1,12 @@
{
"name": "ContributionScores",
"private": true,
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"eslint-config-wikimedia": "0.15.3",
"grunt": "1.1.0",
"grunt": "1.5.3",
"grunt-banana-checker": "0.9.0",
"grunt-eslint": "22.0.0"
}