-
-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for links migration: add JOIN on linktarget for notuses #213
Conversation
Codecov Report
@@ Coverage Diff @@
## master #213 +/- ##
============================================
+ Coverage 8.59% 10.71% +2.11%
Complexity 1568 1568
============================================
Files 23 23
Lines 3839 4257 +418
============================================
+ Hits 330 456 +126
- Misses 3509 3801 +292
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
@@ -803,3 +803,6 @@ | |||
* Replaced usage of deprecated `User::matchEditToken()` | |||
* Replaced usage of deprecated `Article::doDelete()` | |||
* Added `null` checks on `Parser::getPage()` and `ParserOutput` before using to avoid fatals | |||
|
|||
# Version 3.5.1 | |||
* Added a fix for links migration: added a `JOIN` on `linktarget` for the `notuses` parameter |
Check warning
Code scanning / Markdownlint (reported by Codacy)
Lists should be surrounded by blank lines
@@ -803,3 +803,6 @@ | |||
* Replaced usage of deprecated `User::matchEditToken()` | |||
* Replaced usage of deprecated `Article::doDelete()` | |||
* Added `null` checks on `Parser::getPage()` and `ParserOutput` before using to avoid fatals | |||
|
|||
# Version 3.5.1 | |||
* Added a fix for links migration: added a `JOIN` on `linktarget` for the `notuses` parameter |
Check warning
Code scanning / Markdownlint (reported by Codacy)
Expected: 80; Actual: 93
@@ -803,3 +803,6 @@ | |||
* Replaced usage of deprecated `User::matchEditToken()` | |||
* Replaced usage of deprecated `Article::doDelete()` | |||
* Added `null` checks on `Parser::getPage()` and `ParserOutput` before using to avoid fatals | |||
|
|||
# Version 3.5.1 |
Check warning
Code scanning / Markdownlint (reported by Codacy)
Multiple top-level headings in the same document
@@ -803,3 +803,6 @@ | |||
* Replaced usage of deprecated `User::matchEditToken()` | |||
* Replaced usage of deprecated `Article::doDelete()` | |||
* Added `null` checks on `Parser::getPage()` and `ParserOutput` before using to avoid fatals | |||
|
|||
# Version 3.5.1 |
Check warning
Code scanning / Markdownlint (reported by Codacy)
Expected: 1; Actual: 0; Below
Also adds a PHPUnit tests for the
notuses
parameter.