[Wikidata-bugs] [Maniphest] T288396: Re-start Wikibase test coverage reporting

2023-07-04 Thread tstarling
tstarling added a comment.


  In T288396#8987843 , 
@hashar wrote:
  
  > MediaWiki core has `composer run  phpunit:coverage-edit` which invokes 
`includes/composer/ComposerPhpunitXmlCoverageEdit.php` which looks similar to 
the CI script `phpunit-suite-edit.py` uses the same wrong assumption. Looks 
like it can be replaced by the MediaWiki core equivalent code. I have found 
T235031: phpunit:coverage-edit - Add configuration flag so it can replace 
phpunit-suite-edit.py .
  
  It's all very unsatisfying. I don't want to touch it because I don't like any 
part of it. I'd end up patching MediaWiki, PHPUnit, Quibble and 
integration/config/dockerfiles. A month later, my PHPUnit PRs would be rejected 
and we'd be back to square one. Maybe you can slip something like `if 
args.cover_extension == 'Wikibase':` into phpunit-suite-edit.py and I can 
pretend not to see it.

TASK DETAIL
  https://phabricator.wikimedia.org/T288396

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: tstarling
Cc: tstarling, WMDE-leszek, hashar, Lucas_Werkmeister_WMDE, Jdforrester-WMF, 
Aklapper, Reedy, Isabelladantes1983, Themindcoder, Adamm71, Jersione, 
Hellket777, LisafBia6531, Astuthiodit_1, 786, Biggs657, karapayneWMDE, 
Invadibot, maantietaja, Juan90264, Peteosx1x, Alter-paule, Beast1978, 
ItamarWMDE, Un1tY, Mgagat, Akuckartz, Totolinototo3, Hook696, Kent7301, 
Zanziii, Sadisticturd, joker88john, CucyNoiD, Nandana, Gaboe420, lucamauri, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Neuronton, 
Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T65015: [Bug] SpamBlacklist hook causes Wikibase LinkTitle api phpunit tests to fail

2023-07-04 Thread tstarling
tstarling closed this task as "Resolved".
tstarling claimed this task.

TASK DETAIL
  https://phabricator.wikimedia.org/T65015

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: tstarling
Cc: tstarling, Aklapper, Wikidata-bugs, aude, Lydia_Pintscher, daniel, hoo, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
darthmon_wmde, Rosalie_WMDE, Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, 
QZanden, LawExplorer, TerraCodes, _jensen, rosalieper, Scott_WUaS, Verdy_p, 
Jdforrester-WMF, Jackmcbarn, Mbch331, Jay8g
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T336352: Update maxlag calculation maintenance script to reflect new prometheus queries

2023-07-04 Thread hoo
hoo added a comment.


  I found that I can re-write the query to use `topk` (with k=1) instead of 
`max`, which should do the very same as max, except that it also returns all 
original fields (please correct me if I'm wrong @dcausse):
  
bottomk(1, time() - label_replace(blazegraph_lastupdated, "host", "$1", 
"instance", "^([^:]+):.*") and on(host) 
label_replace(rate(org_wikidata_query_rdf_blazegraph_filters_QueryEventSenderFilter_event_sender_filter_StartedQueries{}[5m])
 > 1, "host", "$1", "instance", "^([^:]+):.*"))
  
  
  
hoo@mwmaint1002:~$ curl '…topk…'; echo; echo; curl '…max…';

{"status":"success","data":{"resultType":"vector","result":[{"metric":{"cluster":"wdqs","host":"wdqs1015","instance":"wdqs1015:9193","job":"blazegraph","site":"eqiad"},"value":[1688505009.894,"87.8945340576"]}]}}


{"status":"success","data":{"resultType":"vector","result":[{"metric":{},"value":[1688505009.908,"85.907923706"]}]}}
  
  (I guess that some deviation is to be expected here, as those don't hit the 
same instance at the very same time)

TASK DETAIL
  https://phabricator.wikimedia.org/T336352

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: hoo
Cc: Lucas_Werkmeister_WMDE, Aklapper, ItamarWMDE, dcausse, Astuthiodit_1, 
AWesterinen, karapayneWMDE, Invadibot, maantietaja, Akuckartz, Nandana, 
Namenlos314, Lahi, Gq86, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T339346: Clean up retry logic in SqlIdGenerator and UpsertSqlIdGenerator

2023-07-04 Thread Bugreporter
Bugreporter added a comment.


  In T339346#8939153 , 
@Umherirrender wrote:
  
  > Note: There is a same named class SqlIdGenerator in EntitySchema with the 
same code.
  
  which is forked from an older version of SqlIdGenerator in Wikibase - see 
T215405: Extract Wikibase IdGenerator(s) into a library and use it in 
WikibaseSchema . Wikibase later did 
T213817: Use separate DB connection for (Sql/UpsertSql)IdGenerator in Wikibase 
 but EntitySchema does not

TASK DETAIL
  https://phabricator.wikimedia.org/T339346

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Bugreporter
Cc: Bugreporter, Umherirrender, Aklapper, Lucas_Werkmeister_WMDE, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Izno, Wikidata-bugs, aude, Dinoguy1000, 
Mbch331, Jay8g
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341085: Verify @wikidata@wikis.world

2023-07-04 Thread LucasWerkmeister
LucasWerkmeister added a subscriber: Nikki.
LucasWerkmeister added a comment.


  Any administrator or Wikidata staff, I guess. @Nikki did the initial edit for 
govdirectory.

TASK DETAIL
  https://phabricator.wikimedia.org/T341085

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: LucasWerkmeister
Cc: Nikki, Lydia_Pintscher, Mohammed_Sadat_WMDE, Aklapper, LucasWerkmeister, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341085: Verify @wikidata@wikis.world

2023-07-04 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  Sounds fine. Who should/can do the necessary change?

TASK DETAIL
  https://phabricator.wikimedia.org/T341085

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lydia_Pintscher
Cc: Lydia_Pintscher, Mohammed_Sadat_WMDE, Aklapper, LucasWerkmeister, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T332899: [EPIC] Migrate selected R-based Wikidata products

2023-07-04 Thread JeanFred
JeanFred added a comment.


  Hey @AndrewTavis_WMDE & @Manuel , I only used the dashboard to get a nice 
visualization of the external ID galaxy − see this slide (the red bubble is the 
video-game related IDs) F37128223: ExternalIds.png 


TASK DETAIL
  https://phabricator.wikimedia.org/T332899

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel, JeanFred
Cc: Lydia_Pintscher, JeanFred, AndrewTavis_WMDE, Pamputt, Aklapper, Manuel, 
Astuthiodit_1, BeautifulBold, Suran38, karapayneWMDE, Invadibot, maantietaja, 
Peteosx1x, NavinRizwi, ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T150939: Replace https://tools.wmflabs.org/wikidata-externalid-url by providing improved handling for external id formatter urls

2023-07-04 Thread Eloquence
Eloquence added a comment.


  I'm curious if there are any plans to consider this on the Wikidata roadmap. 
Not only are many external links currently passed through a Toolforge tool, 
that dependency is passed along to infoboxes or other re-users who want to rely 
on Wikidata for formatting URLs. See for an example the infobox 
https://no.wikipedia.org/wiki/12_Monkeys, where the IMDB link is formatted 
using Toolforge. This seems like it should be a first-class feature and the use 
of a toolforge script deprecated.

TASK DETAIL
  https://phabricator.wikimedia.org/T150939

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Eloquence
Cc: Eloquence, Eihel, Ayack, Salgo60, Lewis_Hulbert, Liuxinyu970226, 
ArthurPSmith, hoo, Lydia_Pintscher, Nikki, Stigmj, Aklapper, Esc3300, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341085: Verify @wikidata@wikis.world

2023-07-04 Thread LucasWerkmeister
LucasWerkmeister added subscribers: Mohammed_Sadat_WMDE, Lydia_Pintscher.
LucasWerkmeister added a comment.


  @Mohammed_Sadat_WMDE or @Lydia_Pintscher – any objections? Otherwise I think 
this can just be done by editing the `Realme-config.json` page on-wiki (I don’t 
think any changes in the Mastodon account would be necessary).

TASK DETAIL
  https://phabricator.wikimedia.org/T341085

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: LucasWerkmeister
Cc: Lydia_Pintscher, Mohammed_Sadat_WMDE, Aklapper, LucasWerkmeister, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341085: Verify @wikidata@wikis.world

2023-07-04 Thread LucasWerkmeister
LucasWerkmeister created this task.
LucasWerkmeister added a project: Wikidata.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  It would be nice to make the link in the profile of 
https://wikis.world/@wikidata verified. This should be possible since T324937: 
Support rel=me on non-user pages  
via MediaWiki:Realme-config.json 


TASK DETAIL
  https://phabricator.wikimedia.org/T341085

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: LucasWerkmeister
Cc: Aklapper, LucasWerkmeister, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, 
QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T337021: [Analytics] Find out size of term subgraph

2023-07-04 Thread AndrewTavis_WMDE
AndrewTavis_WMDE updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T337021

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE
Cc: Aklapper, Lydia_Pintscher, Astuthiodit_1, AWesterinen, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Namenlos314, Lahi, 
Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T337021: [Analytics] Find out size of term subgraph

2023-07-04 Thread AndrewTavis_WMDE
AndrewTavis_WMDE updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T337021

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE
Cc: Aklapper, Lydia_Pintscher, Astuthiodit_1, AWesterinen, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Namenlos314, Lahi, 
Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T337021: [Analytics] Find out size of term subgraph

2023-07-04 Thread AndrewTavis_WMDE
AndrewTavis_WMDE updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T337021

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE
Cc: Aklapper, Lydia_Pintscher, Astuthiodit_1, AWesterinen, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Namenlos314, Lahi, 
Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T337021: [Analytics] Find out size of term subgraph

2023-07-04 Thread AndrewTavis_WMDE
AndrewTavis_WMDE updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T337021

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE
Cc: Aklapper, Lydia_Pintscher, Astuthiodit_1, AWesterinen, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Namenlos314, Lahi, 
Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T337021: [Analytics] Find out size of term subgraph

2023-07-04 Thread AndrewTavis_WMDE
AndrewTavis_WMDE updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T337021

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE
Cc: Aklapper, Lydia_Pintscher, Astuthiodit_1, AWesterinen, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Namenlos314, Lahi, 
Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340832: MUL - Represent the language fallback chain in the placeholders (only desktop termbox, only for testing)

2023-07-04 Thread Manuel
Manuel updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T340832

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Michael, Lucas_Werkmeister_WMDE, Sarai-WMDE, Manuel, Aklapper, Bugreporter, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340832: MUL - Represent the language fallback chain in the placeholders (only desktop termbox, only for testing)

2023-07-04 Thread Manuel
Manuel renamed this task from "MUL - Represent the language fallback chain in 
the placeholders (desktop termbox) " to "MUL - Represent the language fallback 
chain in the placeholders (only desktop termbox, only for testing) ".
Manuel updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T340832

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Michael, Lucas_Werkmeister_WMDE, Sarai-WMDE, Manuel, Aklapper, Bugreporter, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T336352: Update maxlag calculation maintenance script to reflect new prometheus queries

2023-07-04 Thread hoo
hoo added a comment.


  One problem encountered while migrating the maintenance script to the new 
format is, that we can no longer report which server is the most lagged.

TASK DETAIL
  https://phabricator.wikimedia.org/T336352

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: hoo
Cc: Lucas_Werkmeister_WMDE, Aklapper, ItamarWMDE, dcausse, Astuthiodit_1, 
AWesterinen, karapayneWMDE, Invadibot, maantietaja, Akuckartz, Nandana, 
Namenlos314, Lahi, Gq86, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340832: MUL - Represent the language fallback chain in the placeholders (desktop termbox)

2023-07-04 Thread Manuel
Manuel updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T340832

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Michael, Lucas_Werkmeister_WMDE, Sarai-WMDE, Manuel, Aklapper, Bugreporter, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340832: MUL - Represent the language fallback chain in the placeholders (desktop termbox)

2023-07-04 Thread Manuel
Manuel updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T340832

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Sarai-WMDE, Manuel, Aklapper, Bugreporter, Astuthiodit_1, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T91067: Port wikibase templates to Mustache

2023-07-04 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.41-notes (1.41.0-wmf.17; 2023-07-11).

TASK DETAIL
  https://phabricator.wikimedia.org/T91067

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: ReleaseTaggerBot
Cc: Michael, Lucas_Werkmeister_WMDE, WMDE-leszek, Aleksey_WMDE, Ricordisamoa, 
thiemowmde, adrianheine, Jdouglas, Aklapper, daniel, Astuthiodit_1, 
karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, PatsagornY, 
Nandana, jijiki, Klaas_Z4us_V, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, elukey, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Mbch331, Jay8g, ori
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T312097: [EPIC] MUL - Introduce intentional language fallback in Wikidata via the `mul` language code

2023-07-04 Thread Manuel
Manuel updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T312097

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Huntster, M2k_dewiki, William_Avery, mrephabricator, Aklapper, Manuel, 
Astuthiodit_1, BeautifulBold, Suran38, karapayneWMDE, Invadibot, maantietaja, 
Peteosx1x, NavinRizwi, ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T321967: Enable Wikibase client on Wikimedia Foundation Governance Wiki

2023-07-04 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  The attached Gerrit change adds foundationwiki to 
`wmgWikibaseAllowDataAccessInUserLanguage`; I’m guessing this is acceptable 
because the `{{int:lang}}` hack (known from e.g. Commons) also seems to be set 
up there (MediaWiki:Lang 
, MediaWiki:Lang/de 
 etc.), so I hope the 
parser cache is also being split by user language (I actually have no idea 
which config setting controls that).
  
  (outreachwiki also seems to have that set up, so maybe it should be in 
`wmgWikibaseAllowDataAccessInUserLanguage` too. We didn’t do it in T171140 
 because nobody asked for it, I 
suppose.)

TASK DETAIL
  https://phabricator.wikimedia.org/T321967

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, RamzyM-WMF, karapayneWMDE, ItamarWMDE, Zppix, 
JAnstee_WMF, Heather, aude, PokestarFan, Krinkle, Lydia_Pintscher, Reedy, Base, 
Jdforrester-WMF, Varnent, Aklapper, Isabelladantes1983, Themindcoder, Adamm71, 
Jersione, Hellket777, LisafBia6531, Astuthiodit_1, Yodas_henchman, 786, 
NguoiDungKhongDinhDanh, Biggs657, Invadibot, Zabe, maantietaja, Juan90264, 
Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, CptViraj, AKA_MBG, Kent7301, 
Dibya, joker88john, 94rain, CucyNoiD, Nandana, Tks4Fish, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, QZanden, Kizule, 
LawExplorer, Lewizho99, Maathavan, Devwaker, Niklitov, _jensen, Urbanecm, 
rosalieper, Neuronton, JEumerus, Scott_WUaS, Ananthsubray, Superzerocool, 
Stanglavine, Tulsi_Bhagat, Wong128hk, Luke081515, SimmeD, Wikidata-bugs, 
Snowolf, Dcljr, Matanya, Mbch331, Jay8g, Krenair
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340233: Query Builder: Page scroll stops working on mobile after modifying UI language

2023-07-04 Thread Sarai-WMDE
Sarai-WMDE added a comment.


  Should be tackled as part of the "Add Language Selector to the Mismatch 
Finder" package.

TASK DETAIL
  https://phabricator.wikimedia.org/T340233

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Sarai-WMDE
Cc: Lydia_Pintscher, Aklapper, Sarai-WMDE, Astuthiodit_1, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Michael, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340233: Query Builder: Page scroll stops working on mobile after modifying UI language

2023-07-04 Thread Lydia_Pintscher
Lydia_Pintscher added a comment.


  I now tested this on mobile on android and I can reproduce the issue there as 
well.

TASK DETAIL
  https://phabricator.wikimedia.org/T340233

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lydia_Pintscher
Cc: Lydia_Pintscher, Aklapper, Sarai-WMDE, Astuthiodit_1, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Michael, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T332899: [EPIC] Migrate selected R-based Wikidata products

2023-07-04 Thread Manuel
Manuel added a project: Epic.

TASK DETAIL
  https://phabricator.wikimedia.org/T332899

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Lydia_Pintscher, JeanFred, AndrewTavis_WMDE, Pamputt, Aklapper, Manuel, 
Astuthiodit_1, BeautifulBold, Suran38, karapayneWMDE, Invadibot, maantietaja, 
Peteosx1x, NavinRizwi, ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T91067: Port wikibase templates to Mustache

2023-07-04 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T91067

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Maintenance_bot
Cc: Michael, Lucas_Werkmeister_WMDE, WMDE-leszek, Aleksey_WMDE, Ricordisamoa, 
thiemowmde, adrianheine, Jdouglas, Aklapper, daniel, Astuthiodit_1, 
karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, PatsagornY, 
Nandana, jijiki, Klaas_Z4us_V, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, elukey, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Mbch331, Jay8g, ori, Isabelladantes1983, Themindcoder, Adamm71, Jersione, 
Hellket777, LisafBia6531, 786, Biggs657, Juan90264, Alter-paule, Beast1978, 
Un1tY, Hook696, Kent7301, joker88john, CucyNoiD, Gaboe420, Giuliamocci, 
Cpaulf30, Af420, Bsandipan, Lewizho99, Maathavan, Neuronton
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T332899: [EPIC] Migrate selected R-based Wikidata products

2023-07-04 Thread Manuel
Manuel updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T332899

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Lydia_Pintscher, JeanFred, AndrewTavis_WMDE, Pamputt, Aklapper, Manuel, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T91067: Port wikibase templates to Mustache

2023-07-04 Thread gerritbot
gerritbot added a comment.


  Change 935001 **merged** by jenkins-bot:
  
  [mediawiki/extensions/Wikibase@master] Decouple Template from Message
  
  https://gerrit.wikimedia.org/r/935001

TASK DETAIL
  https://phabricator.wikimedia.org/T91067

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: gerritbot
Cc: Michael, Lucas_Werkmeister_WMDE, WMDE-leszek, Aleksey_WMDE, Ricordisamoa, 
thiemowmde, adrianheine, Jdouglas, Aklapper, daniel, Isabelladantes1983, 
Themindcoder, Adamm71, Jersione, Hellket777, LisafBia6531, Astuthiodit_1, 786, 
Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, PatsagornY, Kent7301, 
joker88john, CucyNoiD, Nandana, jijiki, Klaas_Z4us_V, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, elukey, _jensen, rosalieper, Neuronton, 
Scott_WUaS, Wikidata-bugs, aude, Mbch331, Jay8g, ori
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T332899: [EPIC] Migrate selected R-based Wikidata products

2023-07-04 Thread Manuel
Manuel moved this task from Epics to Kanban on the Wikidata Analytics board.
Manuel edited projects, added Wikidata Analytics (Kanban); removed Wikidata 
Analytics.

TASK DETAIL
  https://phabricator.wikimedia.org/T332899

WORKBOARD
  https://phabricator.wikimedia.org/project/board/5408/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Lydia_Pintscher, JeanFred, AndrewTavis_WMDE, Pamputt, Aklapper, Manuel, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T332899: [EPIC] Migrate selected R-based Wikidata products

2023-07-04 Thread Manuel
Manuel renamed this task from "[EPIC] Migrate our selected R-based Wikidata 
products " to "[EPIC] Migrate selected R-based Wikidata products ".

TASK DETAIL
  https://phabricator.wikimedia.org/T332899

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Lydia_Pintscher, JeanFred, AndrewTavis_WMDE, Pamputt, Aklapper, Manuel, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T332899: [EPIC] Migrate our selected R-based Wikidata products

2023-07-04 Thread Manuel
Manuel removed a subtask: T332898: Wikidata Concepts Monitor ETL migration to 
Spark3.

TASK DETAIL
  https://phabricator.wikimedia.org/T332899

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Lydia_Pintscher, JeanFred, AndrewTavis_WMDE, Pamputt, Aklapper, Manuel, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T332898: Wikidata Concepts Monitor ETL migration to Spark3

2023-07-04 Thread Manuel
Manuel removed a parent task: T332899: [EPIC] Migrate our selected R-based 
Wikidata products .

TASK DETAIL
  https://phabricator.wikimedia.org/T332898

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Aklapper, Manuel, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T332898: Wikidata Concepts Monitor ETL migration to Spark3

2023-07-04 Thread Manuel
Manuel closed this task as a duplicate of T334951: Wikidata Concepts Monitor 
ETL Migration to Spark3.

TASK DETAIL
  https://phabricator.wikimedia.org/T332898

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Aklapper, Manuel, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T334951: Wikidata Concepts Monitor ETL Migration to Spark3

2023-07-04 Thread Manuel
Manuel merged a task: T332898: Wikidata Concepts Monitor ETL migration to 
Spark3.

TASK DETAIL
  https://phabricator.wikimedia.org/T334951

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE, Manuel
Cc: ItamarWMDE, BTullis, GoranSMilovanovic, AndrewTavis_WMDE, Aklapper, Manuel, 
JAllemandou, lbowmaker, xcollazo, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, Akuckartz, Nandana, Lahi, Gq86, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T334951: Wikidata Concepts Monitor ETL Migration to Spark3

2023-07-04 Thread Manuel
Manuel added a parent task: T332899: [EPIC] Migrate our selected R-based 
Wikidata products .

TASK DETAIL
  https://phabricator.wikimedia.org/T334951

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE, Manuel
Cc: ItamarWMDE, BTullis, GoranSMilovanovic, AndrewTavis_WMDE, Aklapper, Manuel, 
JAllemandou, lbowmaker, xcollazo, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, Akuckartz, Nandana, Lahi, Gq86, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T332899: [EPIC] Migrate our selected R-based Wikidata products

2023-07-04 Thread Manuel
Manuel added a subtask: T334951: Wikidata Concepts Monitor ETL Migration to 
Spark3.

TASK DETAIL
  https://phabricator.wikimedia.org/T332899

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Lydia_Pintscher, JeanFred, AndrewTavis_WMDE, Pamputt, Aklapper, Manuel, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340718: Investigate prior WMDE analytics tables / assets

2023-07-04 Thread Manuel
Manuel added a parent task: T332899: [EPIC] Migrate our selected R-based 
Wikidata products .

TASK DETAIL
  https://phabricator.wikimedia.org/T340718

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE, Manuel
Cc: JAllemandou, Aklapper, Manuel, AndrewTavis_WMDE, Astuthiodit_1, 
karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T332899: [EPIC] Migrate our selected R-based Wikidata products

2023-07-04 Thread Manuel
Manuel added a subtask: T340718: Investigate prior WMDE analytics tables / 
assets.

TASK DETAIL
  https://phabricator.wikimedia.org/T332899

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Lydia_Pintscher, JeanFred, AndrewTavis_WMDE, Pamputt, Aklapper, Manuel, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T332899: [EPIC] Migrate our selected R-based Wikidata products

2023-07-04 Thread Manuel
Manuel renamed this task from "[EPIC] Save our R-based Wikidata products " to 
"[EPIC] Migrate our selected R-based Wikidata products ".
Manuel updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T332899

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Lydia_Pintscher, JeanFred, AndrewTavis_WMDE, Pamputt, Aklapper, Manuel, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341054: Wikibase DispatchChanges job potentially broken

2023-07-04 Thread Clement_Goubert
Clement_Goubert closed this task as "Resolved".
Clement_Goubert claimed this task.
Clement_Goubert added a comment.


  I fixed your alert too, which will now alert if p50 on 15 minutes goes over 
10 minutes. We can resolve since you don't appear to have any other alerts on 
cp-jobqueue metrics.

TASK DETAIL
  https://phabricator.wikimedia.org/T341054

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Clement_Goubert
Cc: akosiaris, Michael, Clement_Goubert, Aklapper, Lucas_Werkmeister_WMDE, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, Rishacha, ItamarWMDE, 
Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Pchelolo, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T335596: Query Builder: Language button should move below logo on mobile devices

2023-07-04 Thread gerritbot
gerritbot added a comment.


  Change 934540 **merged** by jenkins-bot:
  
  [wikidata/query-builder@master] Move language button below logo on mobile 
devices
  
  https://gerrit.wikimedia.org/r/934540

TASK DETAIL
  https://phabricator.wikimedia.org/T335596

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: noarave, gerritbot
Cc: guergana.tzatchkova, Arian_Bozorg, Aklapper, karapayneWMDE, Michael, 
Lydia_Pintscher, ItamarWMDE, Lucas_Werkmeister_WMDE, Sarai-WMDE, 
Isabelladantes1983, Themindcoder, Adamm71, Jersione, Hellket777, LisafBia6531, 
Astuthiodit_1, 786, Biggs657, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, 
Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Neuronton, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340643: Add pulsating dot with help popup to `mul` in desktop termbox

2023-07-04 Thread gerritbot
gerritbot added a comment.


  Change 935133 had a related patch set uploaded (by Guergana Tzatchkova; 
author: Guergana Tzatchkova):
  
  [wikibase/termbox@master] Add messages for popup for multiple languages
  
  https://gerrit.wikimedia.org/r/935133

TASK DETAIL
  https://phabricator.wikimedia.org/T340643

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: guergana.tzatchkova, gerritbot
Cc: Manuel, Aklapper, Sarai-WMDE, ItamarWMDE, Lucas_Werkmeister_WMDE, 
Isabelladantes1983, Themindcoder, Adamm71, Jersione, Hellket777, LisafBia6531, 
Astuthiodit_1, 786, Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, 
Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, 
CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, 
Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, 
_jensen, rosalieper, Neuronton, Scott_WUaS, Wikidata-bugs, aude, 
Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T337021: [Analytics] Find out size of term subgraph

2023-07-04 Thread Manuel
Manuel reassigned this task from Andrew-WMDE to AndrewTavis_WMDE.
Manuel added a subscriber: Andrew-WMDE.

TASK DETAIL
  https://phabricator.wikimedia.org/T337021

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE, Manuel
Cc: Andrew-WMDE, Aklapper, Lydia_Pintscher, Astuthiodit_1, AWesterinen, 
karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, 
Namenlos314, Lahi, Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, 
EBjune, merbst, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, 
jkroll, Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T337021: [Analytics] Find out size of term subgraph

2023-07-04 Thread Manuel
Manuel assigned this task to Andrew-WMDE.

TASK DETAIL
  https://phabricator.wikimedia.org/T337021

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Andrew-WMDE, Manuel
Cc: Aklapper, Lydia_Pintscher, Astuthiodit_1, AWesterinen, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Namenlos314, Lahi, 
Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T91067: Port wikibase templates to Mustache

2023-07-04 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  The current Wikibase code also has a regex in JS which eslint now detects as 
being unsafe (see discussion 
).
 We’re not 100% sure if it’s actually exploitable in practice or not, but 
migrating to mustache would also resolve that issue.

TASK DETAIL
  https://phabricator.wikimedia.org/T91067

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE
Cc: Michael, Lucas_Werkmeister_WMDE, WMDE-leszek, Aleksey_WMDE, Ricordisamoa, 
thiemowmde, adrianheine, Jdouglas, Aklapper, daniel, Isabelladantes1983, 
Themindcoder, Adamm71, Jersione, Hellket777, LisafBia6531, Astuthiodit_1, 786, 
Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, PatsagornY, Kent7301, 
joker88john, CucyNoiD, Nandana, jijiki, Klaas_Z4us_V, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, elukey, _jensen, rosalieper, Neuronton, 
Scott_WUaS, Wikidata-bugs, aude, Mbch331, Jay8g, ori
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T334558: [Analytics] Unique user-agents accessing Wikidata's REST API

2023-07-04 Thread Manuel
Manuel added a comment.


  Yes, this makes sense to me as well. Let's go with only 'wmde' and we can add 
a `wikidata` subdirectory ourselves (see also task about setting up our Airflow 
instance T340648 ).

TASK DETAIL
  https://phabricator.wikimedia.org/T334558

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE, Manuel
Cc: mforns, xcollazo, Ottomata, lbowmaker, WMDE-leszek, AndrewTavis_WMDE, 
Michael, Manuel, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340181: [ES-M3] EntitySchema search endpoint

2023-07-04 Thread Arian_Bozorg
Arian_Bozorg updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T340181

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Arian_Bozorg
Cc: Aklapper, Arian_Bozorg, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, Akuckartz, pdehaye, Nandana, Lahi, Gq86, Andrawaag, 
GoranSMilovanovic, QZanden, YULdigitalpreservation, LawExplorer, Salgo60, 
_jensen, rosalieper, Scott_WUaS, MisterSynergy, abian, Wikidata-bugs, aude, 
Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340928: UsageTrackingIntegrationTest::testUpdateUsage fails locally, and in CI when not using phpunit.php

2023-07-04 Thread Daimona
Daimona closed this task as "Resolved".
Daimona added a comment.


  Local failure is resolved, hence closing this task.

TASK DETAIL
  https://phabricator.wikimedia.org/T340928

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Daimona
Cc: Lucas_Werkmeister_WMDE, Aklapper, Daimona, Astuthiodit_1, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, lucamauri, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T231084: Assert.php: Bad value for parameter $oldContent: must be a TextContent|null [Story Points 5]

2023-07-04 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE closed this task as a duplicate of T214217: Improve 
handling of diffs between different content types.

TASK DETAIL
  https://phabricator.wikimedia.org/T231084

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE
Cc: Zabe, marcella, LClightcat, SunAfterRain, Xiplus, thcipriani, Krinkle, 
WMDE-leszek, Ladsgroup, Tgr, Michael, Lucas_Werkmeister_WMDE, Aklapper, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
darthmon_wmde, Rosalie_WMDE, Nandana, Amorymeltzer, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Verdy_p, Wikidata-bugs, aude, Gryllida, Jdforrester-WMF, Mbch331, Jay8g
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T231084: Assert.php: Bad value for parameter $oldContent: must be a TextContent|null [Story Points 5]

2023-07-04 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  Seems like this got fixed in core – the request URL 

 now produces:
  
  F37127973: image.png 

TASK DETAIL
  https://phabricator.wikimedia.org/T231084

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE
Cc: Zabe, marcella, LClightcat, SunAfterRain, Xiplus, thcipriani, Krinkle, 
WMDE-leszek, Ladsgroup, Tgr, Michael, Lucas_Werkmeister_WMDE, Aklapper, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
darthmon_wmde, Rosalie_WMDE, Nandana, Amorymeltzer, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Verdy_p, Wikidata-bugs, aude, Gryllida, Jdforrester-WMF, Mbch331, Jay8g
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T288396: Re-start Wikibase test coverage reporting

2023-07-04 Thread gerritbot
gerritbot added a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T288396

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: gerritbot
Cc: tstarling, WMDE-leszek, hashar, Lucas_Werkmeister_WMDE, Jdforrester-WMF, 
Aklapper, Reedy, Isabelladantes1983, Themindcoder, Adamm71, Jersione, 
Hellket777, LisafBia6531, Astuthiodit_1, 786, Biggs657, karapayneWMDE, 
Invadibot, maantietaja, Juan90264, Peteosx1x, Alter-paule, Beast1978, 
ItamarWMDE, Un1tY, Mgagat, Akuckartz, Totolinototo3, Hook696, Kent7301, 
Zanziii, Sadisticturd, joker88john, CucyNoiD, Nandana, Gaboe420, lucamauri, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Neuronton, 
Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T288396: Re-start Wikibase test coverage reporting

2023-07-04 Thread gerritbot
gerritbot added a comment.


  Change 935410 had a related patch set uploaded (by Hashar; author: Tim 
Starling):
  
  [integration/config@master] dockerfiles: use extension base path for coverage 
report
  
  https://gerrit.wikimedia.org/r/935410

TASK DETAIL
  https://phabricator.wikimedia.org/T288396

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: gerritbot
Cc: tstarling, WMDE-leszek, hashar, Lucas_Werkmeister_WMDE, Jdforrester-WMF, 
Aklapper, Reedy, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
Peteosx1x, ItamarWMDE, Mgagat, Akuckartz, Totolinototo3, Zanziii, Sadisticturd, 
Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T336542: Explore potential solutions for analytics notebooks

2023-07-04 Thread Manuel
Manuel closed this task as "Resolved".
Manuel added a comment.


  \o/

TASK DETAIL
  https://phabricator.wikimedia.org/T336542

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE, Manuel
Cc: Manuel, Aklapper, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T336426: [EPIC] Automate quarterly reporting of defined Wikidata metrics [up to milestone 3]

2023-07-04 Thread Manuel
Manuel closed subtask T336542: Explore potential solutions for analytics 
notebooks  as Resolved.

TASK DETAIL
  https://phabricator.wikimedia.org/T336426

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Lydia_Pintscher, AndrewTavis_WMDE, Manuel, Aklapper, Astuthiodit_1, 
BeautifulBold, Suran38, karapayneWMDE, Invadibot, maantietaja, Peteosx1x, 
NavinRizwi, ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, 
QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Dinoguy1000, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341054: Wikibase DispatchChanges job potentially broken

2023-07-04 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  Alright, thanks for making it make sense! Does that mean we can close this?

TASK DETAIL
  https://phabricator.wikimedia.org/T341054

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE
Cc: akosiaris, Michael, Clement_Goubert, Aklapper, Lucas_Werkmeister_WMDE, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, Rishacha, ItamarWMDE, 
Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Pchelolo, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T288396: Re-start Wikibase test coverage reporting

2023-07-04 Thread hashar
hashar added a comment.


  T288396#8979619  is a very 
nice dig :)
  
  > If you omit the `$ext/tests/phpunit argument`, it runs 36438 tests 
(presumably all tests from all installed extensions).
  >
  > Actually it's unclear to me how CI can ever run only the tests from a 
specific extension. It looks as if non-coverage test jobs will always run tests 
from extension dependencies.
  
  When a patch is triggered for a MediaWiki extension, Quibble invokes 
`composer run phpunit:entrypoint -- --testsuite extensions`. The suite is 
defined in `mediawiki/core` `tests/phpunit/suite.xml` and finds tests 
extensions registered via the `onUnitTestsList` hook.
  
  As a result, Quibble triggers PHPUnit tests for every single extensions that 
are dependencies. It is a brute force approach to run the cross extensions 
integration tests. There are a lot of issues: we run way too many tests and 
given the dependencies are not bi directional, some integration tests are not 
run when an extension is not defined as a dependency. But I digress.
  
  The coverage is rendered with solely for tests of the triggering extension 
(and thus the coverage reports lacks any tests exercised by other 
repositories). It is probably not a big issue.
  
  
  
  > Alternatively, you can just specify extensions/Wikibase as the path. It 
seems to work.
  
  That is the root cause I guess, congratulation. `tests/phpunit` suffix 
probably rely on the convention used for most extension but clashes with 
Wikibase (and possibly other extensions). The path suffix comes from 2018 patch 
//Only run that extension's tests in coverage job// 
https://gerrit.wikimedia.org/r/c/integration/config/+/405393
  
  The scripts can be altered:
  
  name=dockerfiles/quibble-buster-php74-coverage/mwext-phpunit-coverage.sh
- "$MW_INSTALL_PATH/extensions/$EXT_NAME/tests/phpunit" &
+ "$MW_INSTALL_PATH/extensions/$EXT_NAME" &
  
  name=dockerfiles/quibble-buster-php74-coverage/mwskin-phpunit-coverage.sh
- "$MW_INSTALL_PATH/extensions/$SKIN_NAME/tests/phpunit" &
+ "$MW_INSTALL_PATH/extensions/$SKIN_NAME" &
  
  
  
  
  
  > If I fix the test path, I still get "Warning: Incorrect filter 
configuration, code coverage will not be processed". This is probably because 
src/, includes/ and maintenance/ are all non-existent, and so no files are 
included in the coverage filter. Perhaps CI could get the list of directories 
to cover from some configuration file in the extension, instead of guessing.
  
  MediaWiki core has `composer run  phpunit:coverage-edit` which invokes 
`includes/composer/ComposerPhpunitXmlCoverageEdit.php` which looks similar to 
the CI script `phpunit-suite-edit.py` uses the same wrong assumption. Looks 
like it can be replaced by the MediaWiki core equivalent code. I have found 
T235031: phpunit:coverage-edit - Add configuration flag so it can replace 
phpunit-suite-edit.py .

TASK DETAIL
  https://phabricator.wikimedia.org/T288396

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: hashar
Cc: tstarling, WMDE-leszek, hashar, Lucas_Werkmeister_WMDE, Jdforrester-WMF, 
Aklapper, Reedy, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
Peteosx1x, ItamarWMDE, Mgagat, Akuckartz, Totolinototo3, Zanziii, Sadisticturd, 
Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T337021: [Analytics] Find out size of term subgraph

2023-07-04 Thread Manuel
Manuel moved this task from Needs PM work to Kanban on the Wikidata Analytics 
board.
Manuel edited projects, added Wikidata Analytics (Kanban); removed Wikidata 
Analytics.

TASK DETAIL
  https://phabricator.wikimedia.org/T337021

WORKBOARD
  https://phabricator.wikimedia.org/project/board/5408/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Aklapper, Lydia_Pintscher, Astuthiodit_1, AWesterinen, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Namenlos314, Lahi, 
Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T337799: [EPIC] Analytics in support of WDQS

2023-07-04 Thread Manuel
Manuel moved this task from Epics to Kanban on the Wikidata Analytics board.
Manuel edited projects, added Wikidata Analytics (Kanban); removed Wikidata 
Analytics.

TASK DETAIL
  https://phabricator.wikimedia.org/T337799

WORKBOARD
  https://phabricator.wikimedia.org/project/board/5408/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Manuel, Aklapper, Astuthiodit_1, BeautifulBold, Suran38, karapayneWMDE, 
Invadibot, maantietaja, Peteosx1x, NavinRizwi, ItamarWMDE, Akuckartz, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Dinoguy1000, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340928: UsageTrackingIntegrationTest::testUpdateUsage fails locally, and in CI when not using phpunit.php

2023-07-04 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T340928

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Daimona, Maintenance_bot
Cc: Lucas_Werkmeister_WMDE, Aklapper, Daimona, Astuthiodit_1, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, lucamauri, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Mbch331, Isabelladantes1983, Themindcoder, Adamm71, 
Jersione, Hellket777, LisafBia6531, 786, Biggs657, Juan90264, Alter-paule, 
Beast1978, Un1tY, Hook696, Kent7301, joker88john, CucyNoiD, Gaboe420, 
Giuliamocci, Cpaulf30, Af420, Bsandipan, Lewizho99, Maathavan, Neuronton
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T337021: [Analytics] Find out size of term subgraph

2023-07-04 Thread Manuel
Manuel updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T337021

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Aklapper, Lydia_Pintscher, Astuthiodit_1, AWesterinen, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Namenlos314, Lahi, 
Gq86, Lucas_Werkmeister_WMDE, GoranSMilovanovic, QZanden, EBjune, merbst, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Xmlizer, jkroll, 
Wikidata-bugs, Jdouglas, aude, Tobias1984, Manybubbles, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341054: Wikibase DispatchChanges job potentially broken

2023-07-04 Thread akosiaris
akosiaris added a comment.


  Fixed the alert too. Took me a bit to figure out how to find it, thanks for 
posting the link in the task.

TASK DETAIL
  https://phabricator.wikimedia.org/T341054

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: akosiaris
Cc: akosiaris, Michael, Clement_Goubert, Aklapper, Lucas_Werkmeister_WMDE, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, Rishacha, ItamarWMDE, 
Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Pchelolo, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T337799: [EPIC] Analytics in support of WDQS

2023-07-04 Thread Manuel
Manuel updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T337799

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Manuel, Aklapper, Astuthiodit_1, BeautifulBold, Suran38, karapayneWMDE, 
Invadibot, maantietaja, Peteosx1x, NavinRizwi, ItamarWMDE, Akuckartz, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Dinoguy1000, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340928: UsageTrackingIntegrationTest::testUpdateUsage fails locally, and in CI when not using phpunit.php

2023-07-04 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.41-notes (1.41.0-wmf.17; 2023-07-11).

TASK DETAIL
  https://phabricator.wikimedia.org/T340928

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Daimona, ReleaseTaggerBot
Cc: Lucas_Werkmeister_WMDE, Aklapper, Daimona, Isabelladantes1983, 
Themindcoder, Adamm71, Jersione, Hellket777, LisafBia6531, Astuthiodit_1, 786, 
Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, 
CucyNoiD, Nandana, Gaboe420, lucamauri, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Neuronton, Scott_WUaS, Wikidata-bugs, aude, 
Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T337799: [EPIC] Analytics in support of WDQS

2023-07-04 Thread Manuel
Manuel updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T337799

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Manuel, Aklapper, Astuthiodit_1, BeautifulBold, Suran38, karapayneWMDE, 
Invadibot, maantietaja, Peteosx1x, NavinRizwi, ItamarWMDE, Akuckartz, Nandana, 
Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Wikidata-bugs, aude, Dinoguy1000, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341054: Wikibase DispatchChanges job potentially broken

2023-07-04 Thread akosiaris
akosiaris added a comment.


  I think I have fixed the graphs now to be correct. They will definitely be 
more correct than previously where they were doing statistically wrong things 
(aggregating aggregates)

TASK DETAIL
  https://phabricator.wikimedia.org/T341054

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: akosiaris
Cc: akosiaris, Michael, Clement_Goubert, Aklapper, Lucas_Werkmeister_WMDE, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, Rishacha, ItamarWMDE, 
Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Pchelolo, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340928: UsageTrackingIntegrationTest::testUpdateUsage fails locally, and in CI when not using phpunit.php

2023-07-04 Thread gerritbot
gerritbot added a comment.


  Change 935390 **merged** by jenkins-bot:
  
  [mediawiki/extensions/Wikibase@master] Set allowDataAccessInUserLanguage in 
UsageTrackingIntegrationTest
  
  https://gerrit.wikimedia.org/r/935390

TASK DETAIL
  https://phabricator.wikimedia.org/T340928

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Daimona, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, Daimona, Isabelladantes1983, 
Themindcoder, Adamm71, Jersione, Hellket777, LisafBia6531, Astuthiodit_1, 786, 
Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, 
CucyNoiD, Nandana, Gaboe420, lucamauri, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Neuronton, Scott_WUaS, Wikidata-bugs, aude, 
Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340832: MUL - Represent the language fallback chain in the placeholders (desktop termbox)

2023-07-04 Thread Manuel
Manuel updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T340832

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Sarai-WMDE, Manuel, Aklapper, Bugreporter, Astuthiodit_1, karapayneWMDE, 
Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T329661: [Milestone] v0.4 of the `mul` language code (test.wikidata.org)

2023-07-04 Thread Manuel
Manuel changed the status of subtask T329655: MUL - Use `mul` Labels as 
placeholders for missing values in the desktop termbox [part 1 of 2: when 
viewing] from Stalled to Open.

TASK DETAIL
  https://phabricator.wikimedia.org/T329661

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Aklapper, Manuel, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T329655: MUL - Use `mul` Labels as placeholders for missing values in the desktop termbox [part 1 of 2: when viewing]

2023-07-04 Thread Manuel
Manuel changed the task status from "Stalled" to "Open".

TASK DETAIL
  https://phabricator.wikimedia.org/T329655

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: guergana.tzatchkova, Lucas_Werkmeister_WMDE, Sarai-WMDE, noarave, 
ItamarWMDE, Michael, Manuel, Aklapper, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, 
QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T329661: [Milestone] v0.4 of the `mul` language code (test.wikidata.org)

2023-07-04 Thread Manuel
Manuel changed the status of subtask T338330: MUL - Use `mul` Labels and 
Aliases as placeholders for missing values in the desktop termbox [part 2 of 2: 
when editing] from Stalled to Open.

TASK DETAIL
  https://phabricator.wikimedia.org/T329661

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Aklapper, Manuel, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T338330: MUL - Use `mul` Labels and Aliases as placeholders for missing values in the desktop termbox [part 2 of 2: when editing]

2023-07-04 Thread Manuel
Manuel changed the task status from "Stalled" to "Open".

TASK DETAIL
  https://phabricator.wikimedia.org/T338330

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Manuel
Cc: Bugreporter, Lucas_Werkmeister_WMDE, Michael, ItamarWMDE, Sarai-WMDE, 
Manuel, Aklapper, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340928: UsageTrackingIntegrationTest::testUpdateUsage fails locally, and in CI when not using phpunit.php

2023-07-04 Thread Daimona
Daimona added a comment.


  In T340928#8987551 , 
@Lucas_Werkmeister_WMDE wrote:
  
  > In T340928#8984321 , 
@Daimona wrote:
  >
  >> Right, I didn't realize that since Wikibase doesn't have a single 
extension.json file, LocalSettingsGenerator will use the old style 
`require_once`, which includes `Wikibase.php`, which provides some overrides 
for CI.
  >>
  >> I'm going to skip the test if the needed setting isn't enabled, and this 
will fix this task.
  >
  > I uploaded an alternative way to improve the test, but I disagree that this 
fixes the task. It sounds like the issue here is that your changes cause our 
CI-only settings to not be loaded in CI. That’s a problem even if all the 
remaining tests are green.
  
  Yeah, sorry for the confusion. What I meant is that the patch above will fix 
the test failure when the setting's not enabled, which is what I was getting on 
my local. The config fix for switching to composer PHPUnit is r935034 
, 
which ensures that the test will be executed after the switch. That's in scope 
for T90875  though, not this task.

TASK DETAIL
  https://phabricator.wikimedia.org/T340928

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Daimona
Cc: Lucas_Werkmeister_WMDE, Aklapper, Daimona, Isabelladantes1983, 
Themindcoder, Adamm71, Jersione, Hellket777, LisafBia6531, Astuthiodit_1, 786, 
Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, 
CucyNoiD, Nandana, Gaboe420, lucamauri, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Neuronton, Scott_WUaS, Wikidata-bugs, aude, 
Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340928: UsageTrackingIntegrationTest::testUpdateUsage fails locally, and in CI when not using phpunit.php

2023-07-04 Thread gerritbot
gerritbot added a comment.


  Change 934716 **abandoned** by Daimona Eaytoy:
  
  [mediawiki/extensions/Wikibase@master] Disable UsageTrackingIntegrationTest 
if allowDataAccessInUserLanguage is false
  
  Reason:
  
  See Ie084c56b5e
  
  https://gerrit.wikimedia.org/r/934716

TASK DETAIL
  https://phabricator.wikimedia.org/T340928

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Daimona, gerritbot
Cc: Lucas_Werkmeister_WMDE, Aklapper, Daimona, Isabelladantes1983, 
Themindcoder, Adamm71, Jersione, Hellket777, LisafBia6531, Astuthiodit_1, 786, 
Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, 
CucyNoiD, Nandana, Gaboe420, lucamauri, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Neuronton, Scott_WUaS, Wikidata-bugs, aude, 
Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341054: Wikibase DispatchChanges job potentially broken

2023-07-04 Thread akosiaris
akosiaris added a comment.


  Sorry about that. For what is worth, we are approaching this piecemeal and 
this is the first instance. There are more changeprop related metrics that are 
wrongly summaries and not histograms, we will ping you before changing the next 
few ones.

TASK DETAIL
  https://phabricator.wikimedia.org/T341054

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: akosiaris
Cc: akosiaris, Michael, Clement_Goubert, Aklapper, Lucas_Werkmeister_WMDE, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, Rishacha, ItamarWMDE, 
Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Pchelolo, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T334064: Migrate termbox to mw-api-int

2023-07-04 Thread gerritbot
gerritbot added a comment.


  Change 935397 had a related patch set uploaded (by Clément Goubert; author: 
Clément Goubert):
  
  [operations/deployment-charts@master] termbox: Switch to mw-api-int-async on 
k8s
  
  https://gerrit.wikimedia.org/r/935397

TASK DETAIL
  https://phabricator.wikimedia.org/T334064

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Clement_Goubert, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Joe, akosiaris, wkandek, Aklapper, 
jijiki, Clement_Goubert, fbalicchia, Isabelladantes1983, Themindcoder, 
Kappakayala, Adamm71, Jersione, Hellket777, LisafBia6531, Astuthiodit_1, 
lesongvi, 786, Arnoldokoth, Biggs657, karapayneWMDE, Invadibot, maantietaja, 
Juan90264, JMeybohm, Alter-paule, Beast1978, ItamarWMDE, Un1tY, Akuckartz, 
Hook696, darthmon_wmde, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, TK-999, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Neuronton, 
Scott_WUaS, thcipriani, Wikidata-bugs, Prod, aude, Lydia_Pintscher, dduvall, 
Jdforrester-WMF, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341054: Wikibase DispatchChanges job potentially broken

2023-07-04 Thread Clement_Goubert
Clement_Goubert added a comment.


  In T341054#8987701 , 
@Lucas_Werkmeister_WMDE wrote:
  
  > In T341054#8987695 , 
@Clement_Goubert wrote:
  >
  >> Ah you have an alert on that metric, sorry :(
  >> We switched the metric to an histogram because aggregation was wrong, the 
job itself is ok.
  >> @akosiaris is fixing the charts.
  >
  > Ah, is that why it changed after a reload? :D
  
  Yep, that was my (bad) attempt at fixing the graph. For what it's worth, 
these graphs aggregated prometheus summaries, which are non-aggregatable, so 
they were wrong anyways.

TASK DETAIL
  https://phabricator.wikimedia.org/T341054

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Clement_Goubert
Cc: akosiaris, Michael, Clement_Goubert, Aklapper, Lucas_Werkmeister_WMDE, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, Rishacha, ItamarWMDE, 
Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Pchelolo, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341054: Wikibase DispatchChanges job potentially broken

2023-07-04 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  In T341054#8987695 , 
@Clement_Goubert wrote:
  
  > Ah you have an alert on that metric, sorry :(
  > We switched the metric to an histogram because aggregation was wrong, the 
job itself is ok.
  > @akosiaris is fixing the charts.
  
  Ah, is that why it changed after a reload? :D

TASK DETAIL
  https://phabricator.wikimedia.org/T341054

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE
Cc: akosiaris, Michael, Clement_Goubert, Aklapper, Lucas_Werkmeister_WMDE, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, Rishacha, ItamarWMDE, 
Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Pchelolo, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341054: Wikibase DispatchChanges job potentially broken

2023-07-04 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  From an end-user perspective, Wikidata edits on English Wikipedia recent 
changes 

 still seem to arrive as usual, so I don’t think anything’s immediately on fire.

TASK DETAIL
  https://phabricator.wikimedia.org/T341054

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE
Cc: akosiaris, Michael, Clement_Goubert, Aklapper, Lucas_Werkmeister_WMDE, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, Rishacha, ItamarWMDE, 
Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Pchelolo, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341054: Wikibase DispatchChanges job potentially broken

2023-07-04 Thread Clement_Goubert
Clement_Goubert added a subscriber: akosiaris.
Clement_Goubert added a comment.


  Ah you have an alert on that metric, sorry :(
  We switched the metric to an histogram because aggregation was wrong, the job 
itself is ok.
  @akosiaris is fixing the charts.

TASK DETAIL
  https://phabricator.wikimedia.org/T341054

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Clement_Goubert
Cc: akosiaris, Michael, Clement_Goubert, Aklapper, Lucas_Werkmeister_WMDE, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, Rishacha, ItamarWMDE, 
Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, 
_jensen, rosalieper, Scott_WUaS, Pchelolo, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341054: Wikibase DispatchChanges job potentially broken

2023-07-04 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  Also, if I reload the Grafana tab, the graph starts to look quite different, 
which is very confusing:
  
  F37127916: image.png 

TASK DETAIL
  https://phabricator.wikimedia.org/T341054

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE
Cc: Clement_Goubert, Aklapper, Lucas_Werkmeister_WMDE, Astuthiodit_1, 
karapayneWMDE, Invadibot, maantietaja, Rishacha, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Pchelolo, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341054: Wikibase DispatchChanges job potentially broken

2023-07-04 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a subscriber: Clement_Goubert.
Lucas_Werkmeister_WMDE added a comment.


  The cutoff in the 1h graph seems to be 45 minutes after the cutoff in the 
15min graph, so if we speculate that the cause was 15 minutes before the cutoff 
in the 15min graph, then that would give us 9:42 or so, which would line up 
pretty well with some SAL message about “changeprop-jobqueue” by 
@Clement_Goubert… do you have any idea?

TASK DETAIL
  https://phabricator.wikimedia.org/T341054

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE
Cc: Clement_Goubert, Aklapper, Lucas_Werkmeister_WMDE, Astuthiodit_1, 
karapayneWMDE, Invadibot, maantietaja, Rishacha, ItamarWMDE, Akuckartz, 
Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Pchelolo, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T341054: Wikibase DispatchChanges job potentially broken

2023-07-04 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE created this task.
Lucas_Werkmeister_WMDE added projects: Wikidata, wdwb-tech, WMF-JobQueue.
Restricted Application added a subscriber: Aklapper.

TASK DESCRIPTION
  At 10:04 UTC, the wikidata-monitoring email received an alert about 
“DispatchChanges Normal job backlog time (mean avg, 15min)”:
  
  > [1] Firing
  > Labels
  > alertname = DispatchChanges Normal job backlog time (mean avg, 15min) alert
  > __alert_rule_uid__ = MF0FSjJ4z
  > __contacts__ = "AlertManager","cxserver"
  > datasource_uid = 00026
  > grafana_folder = Wikidata
  > ref_id = A
  > rule_uid = MF0FSjJ4z
  > severity = critical
  > team = wikidata
  > Annotations
  > __alertId__ = 309
  > __dashboardUid__ = TUJ0V-0Zk
  > __orgId__ = 1
  > __panelId__ = 28
  > grafana_state_reason = NoData
  > message = DispatchChanges job backlog is over 10 minutes! Normal values are 
between 0.5s and 1s
  > Source 
  
  According to another email received at 10:24 UTC, the alert was resolved, but 
the job in Grafana 

 still doesn’t look good – the backlog time just cut off:
  
  F37127912: image.png 
  
  We should figure out what’s going on here, and if anything is still broken.

TASK DETAIL
  https://phabricator.wikimedia.org/T341054

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Lucas_Werkmeister_WMDE
Cc: Aklapper, Lucas_Werkmeister_WMDE, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, Rishacha, ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Pchelolo, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T334064: Migrate termbox to mw-api-int

2023-07-04 Thread gerritbot
gerritbot added a comment.


  Change 914275 **abandoned** by Clément Goubert:
  
  [operations/deployment-charts@master] termbox: Migrate from staging-test to 
staging
  
  Reason:
  
  Keep current deployments.
  
  https://gerrit.wikimedia.org/r/914275

TASK DETAIL
  https://phabricator.wikimedia.org/T334064

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Clement_Goubert, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Joe, akosiaris, wkandek, Aklapper, 
jijiki, Clement_Goubert, fbalicchia, Isabelladantes1983, Themindcoder, 
Kappakayala, Adamm71, Jersione, Hellket777, LisafBia6531, Astuthiodit_1, 
lesongvi, 786, Arnoldokoth, Biggs657, karapayneWMDE, Invadibot, maantietaja, 
Juan90264, JMeybohm, Alter-paule, Beast1978, ItamarWMDE, Un1tY, Akuckartz, 
Hook696, darthmon_wmde, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, TK-999, 
QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Neuronton, 
Scott_WUaS, thcipriani, Wikidata-bugs, Prod, aude, Lydia_Pintscher, dduvall, 
Jdforrester-WMF, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340928: UsageTrackingIntegrationTest::testUpdateUsage fails locally, and in CI when not using phpunit.php

2023-07-04 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  In T340928#8984321 , 
@Daimona wrote:
  
  > Right, I didn't realize that since Wikibase doesn't have a single 
extension.json file, LocalSettingsGenerator will use the old style 
`require_once`, which includes `Wikibase.php`, which provides some overrides 
for CI.
  >
  > I'm going to skip the test if the needed setting isn't enabled, and this 
will fix this task.
  
  I uploaded an alternative way to improve the test, but I disagree that this 
fixes the task. It sounds like the issue here is that your changes cause our 
CI-only settings to not be loaded in CI. That’s a problem even if all the 
remaining tests are green.

TASK DETAIL
  https://phabricator.wikimedia.org/T340928

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Daimona, Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Aklapper, Daimona, Isabelladantes1983, 
Themindcoder, Adamm71, Jersione, Hellket777, LisafBia6531, Astuthiodit_1, 786, 
Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, Alter-paule, 
Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, 
CucyNoiD, Nandana, Gaboe420, lucamauri, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, 
Maathavan, _jensen, rosalieper, Neuronton, Scott_WUaS, Wikidata-bugs, aude, 
Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340718: Investigate prior WMDE analytics tables / assets

2023-07-04 Thread AndrewTavis_WMDE
AndrewTavis_WMDE updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T340718

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE
Cc: JAllemandou, Aklapper, Manuel, AndrewTavis_WMDE, Astuthiodit_1, 
karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340718: Investigate prior WMDE analytics tables / assets

2023-07-04 Thread AndrewTavis_WMDE
AndrewTavis_WMDE updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T340718

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE
Cc: JAllemandou, Aklapper, Manuel, AndrewTavis_WMDE, Astuthiodit_1, 
karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340928: UsageTrackingIntegrationTest::testUpdateUsage fails locally, and in CI when not using phpunit.php

2023-07-04 Thread gerritbot
gerritbot added a comment.


  Change 935390 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
author: Lucas Werkmeister (WMDE)):
  
  [mediawiki/extensions/Wikibase@master] Set allowDataAccessInUserLanguage in 
UsageTrackingIntegrationTest
  
  https://gerrit.wikimedia.org/r/935390

TASK DETAIL
  https://phabricator.wikimedia.org/T340928

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Daimona, gerritbot
Cc: Aklapper, Daimona, Isabelladantes1983, Themindcoder, Adamm71, Jersione, 
Hellket777, LisafBia6531, Astuthiodit_1, 786, Biggs657, karapayneWMDE, 
Invadibot, maantietaja, Juan90264, Alter-paule, Beast1978, ItamarWMDE, Un1tY, 
Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, 
lucamauri, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, 
GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, 
rosalieper, Neuronton, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340718: Investigate prior WMDE analytics tables / assets

2023-07-04 Thread AndrewTavis_WMDE
AndrewTavis_WMDE updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T340718

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE
Cc: JAllemandou, Aklapper, Manuel, AndrewTavis_WMDE, Astuthiodit_1, 
karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340718: Investigate prior WMDE analytics tables / assets

2023-07-04 Thread AndrewTavis_WMDE
AndrewTavis_WMDE updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T340718

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE
Cc: JAllemandou, Aklapper, Manuel, AndrewTavis_WMDE, Astuthiodit_1, 
karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340718: Investigate prior WMDE analytics tables / assets

2023-07-04 Thread AndrewTavis_WMDE
AndrewTavis_WMDE updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T340718

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE
Cc: JAllemandou, Aklapper, Manuel, AndrewTavis_WMDE, Astuthiodit_1, 
karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, 
Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T65015: [Bug] SpamBlacklist hook causes Wikibase LinkTitle api phpunit tests to fail

2023-07-04 Thread Maintenance_bot
Maintenance_bot removed a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T65015

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Maintenance_bot
Cc: tstarling, Aklapper, Wikidata-bugs, aude, Lydia_Pintscher, daniel, hoo, 
Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, ItamarWMDE, Akuckartz, 
darthmon_wmde, Rosalie_WMDE, Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, 
QZanden, LawExplorer, TerraCodes, _jensen, rosalieper, Scott_WUaS, Verdy_p, 
Jdforrester-WMF, Jackmcbarn, Mbch331, Jay8g, Isabelladantes1983, Themindcoder, 
Adamm71, Jersione, Hellket777, LisafBia6531, 786, Biggs657, Juan90264, 
Alter-paule, Beast1978, Un1tY, Hook696, Kent7301, joker88john, CucyNoiD, 
Gaboe420, Giuliamocci, Cpaulf30, Af420, Bsandipan, Lewizho99, Maathavan, 
Neuronton
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T338483: Implement ScopedTypeaheadSearch component

2023-07-04 Thread Arian_Bozorg
Arian_Bozorg updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T338483

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Arian_Bozorg
Cc: Michael, Lydia_Pintscher, Aklapper, Lectrician1, Epidosis, Arian_Bozorg, 
Masumrezarock100, Sarai-WMDE, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, 
Mahir256, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, 
aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T321543: [EPIC] Making other entity types more accessible through the search box

2023-07-04 Thread Arian_Bozorg
Arian_Bozorg updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T321543

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Arian_Bozorg
Cc: Michael, Arian_Bozorg, Sarai-WMDE, Epidosis, Lectrician1, Aklapper, 
Lydia_Pintscher, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, 
QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T65015: [Bug] SpamBlacklist hook causes Wikibase LinkTitle api phpunit tests to fail

2023-07-04 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.41-notes (1.41.0-wmf.17; 2023-07-11).

TASK DETAIL
  https://phabricator.wikimedia.org/T65015

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: ReleaseTaggerBot
Cc: tstarling, Aklapper, Wikidata-bugs, aude, Lydia_Pintscher, daniel, hoo, 
Isabelladantes1983, Themindcoder, Adamm71, Jersione, Hellket777, LisafBia6531, 
Astuthiodit_1, 786, Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, 
Alter-paule, Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, darthmon_wmde, 
Rosalie_WMDE, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, lucamauri, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, TerraCodes, _jensen, rosalieper, 
Neuronton, Scott_WUaS, Verdy_p, Jdforrester-WMF, Jackmcbarn, Mbch331, Jay8g
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T338483: Implement ScopedTypeaheadSearch component

2023-07-04 Thread Sarai-WMDE
Sarai-WMDE updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T338483

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Sarai-WMDE
Cc: Michael, Lydia_Pintscher, Aklapper, Lectrician1, Epidosis, Arian_Bozorg, 
Masumrezarock100, Sarai-WMDE, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, 
Mahir256, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, 
aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T334951: Wikidata Concepts Monitor ETL Migration to Spark3

2023-07-04 Thread Manuel
Manuel added a comment.


  > With those changes there is no more blocker in migrating to the 
spark3-shuffler from this task :)
  
  \o/
  
  Thank you again for your super helpful support on this, @JAllemandou!

TASK DETAIL
  https://phabricator.wikimedia.org/T334951

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: AndrewTavis_WMDE, Manuel
Cc: ItamarWMDE, BTullis, GoranSMilovanovic, AndrewTavis_WMDE, Aklapper, Manuel, 
JAllemandou, lbowmaker, xcollazo, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, Akuckartz, Nandana, Lahi, Gq86, QZanden, LawExplorer, _jensen, 
rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T321543: [EPIC] Making other entity types more accessible through the search box

2023-07-04 Thread Arian_Bozorg
Arian_Bozorg updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T321543

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Arian_Bozorg
Cc: Michael, Arian_Bozorg, Sarai-WMDE, Epidosis, Lectrician1, Aklapper, 
Lydia_Pintscher, Astuthiodit_1, karapayneWMDE, Invadibot, maantietaja, 
ItamarWMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, 
QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T65015: [Bug] SpamBlacklist hook causes Wikibase LinkTitle api phpunit tests to fail

2023-07-04 Thread gerritbot
gerritbot added a comment.


  Change 935173 **merged** by jenkins-bot:
  
  [mediawiki/extensions/SpamBlacklist@master] Disable remote loading during 
PHPUnit tests
  
  https://gerrit.wikimedia.org/r/935173

TASK DETAIL
  https://phabricator.wikimedia.org/T65015

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: gerritbot
Cc: tstarling, Aklapper, Wikidata-bugs, aude, Lydia_Pintscher, daniel, hoo, 
Isabelladantes1983, Themindcoder, Adamm71, Jersione, Hellket777, LisafBia6531, 
Astuthiodit_1, 786, Biggs657, karapayneWMDE, Invadibot, maantietaja, Juan90264, 
Alter-paule, Beast1978, ItamarWMDE, Un1tY, Akuckartz, Hook696, darthmon_wmde, 
Rosalie_WMDE, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, lucamauri, 
Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, 
QZanden, LawExplorer, Lewizho99, Maathavan, TerraCodes, _jensen, rosalieper, 
Neuronton, Scott_WUaS, Verdy_p, Jdforrester-WMF, Jackmcbarn, Mbch331, Jay8g
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


[Wikidata-bugs] [Maniphest] T340181: [ES-M3] EntitySchema search endpoint

2023-07-04 Thread Arian_Bozorg
Arian_Bozorg updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T340181

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Arian_Bozorg
Cc: Aklapper, Arian_Bozorg, Astuthiodit_1, karapayneWMDE, Invadibot, 
maantietaja, ItamarWMDE, Akuckartz, pdehaye, Nandana, Lahi, Gq86, Andrawaag, 
GoranSMilovanovic, QZanden, YULdigitalpreservation, LawExplorer, Salgo60, 
_jensen, rosalieper, Scott_WUaS, MisterSynergy, abian, Wikidata-bugs, aude, 
Lydia_Pintscher, Mbch331
___
Wikidata-bugs mailing list -- wikidata-bugs@lists.wikimedia.org
To unsubscribe send an email to wikidata-bugs-le...@lists.wikimedia.org


  1   2   >