[Wikidata-bugs] [Maniphest] T268820: Re-enable 'can edit a single string mainsnak value' browser test
Pablo-WMDE created this task. Pablo-WMDE added projects: User-Pablo-WMDE, Wikidata-Bridge. Restricted Application added a subscriber: Aklapper. Restricted Application added a project: Wikidata. TASK DESCRIPTION The canEditSingleStringMainSnak <https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/extensions/Wikibase/+/409785e/client/data-bridge/tests/selenium/specs/canEditSingleStringMainSnak.js#8> browser test is currently disabled. We decided to disable it in https://gerrit.wikimedia.org/r/533533 due to flakiness but concluded that > once T226999 <https://phabricator.wikimedia.org/T226999> is completed we must assert the backend value anyways and we'll be back in the game **AC** - the test is not skipped anymore TASK DETAIL https://phabricator.wikimedia.org/T268820 WORKBOARD https://phabricator.wikimedia.org/project/board/5083/ EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Michael, Aklapper, Pablo-WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T268817: Upgrade http-status-codes (unlock tree shaking)
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T268817 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Tonina_Zhelyazkova_WMDE, Lucas_Werkmeister_WMDE, Pablo-WMDE, Akuckartz, Michael, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T268817: Upgrade http-status-codes (unlock tree shaking)
Pablo-WMDE created this task. Pablo-WMDE added a project: Wikidata-Bridge. Restricted Application added a subscriber: Aklapper. Restricted Application added a project: Wikidata. TASK DESCRIPTION http-status-codes <https://www.npmjs.com/package/http-status-codes> was released as v2 with an explicit commit to "Optimize module for tree shaking" <https://github.com/prettymuchbryce/http-status-codes/pull/62>. This may resolve a discussion <https://gerrit.wikimedia.org/r/c/mediawiki/extensions/Wikibase/+/551542/> which has been blocked for a while. Info: may not be pressing because the only current user (`SpecialPageReadingEntityRepository`) of the lib is itself not actively used by bridge. TASK DETAIL https://phabricator.wikimedia.org/T268817 WORKBOARD https://phabricator.wikimedia.org/project/board/4074/ EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Tonina_Zhelyazkova_WMDE, Lucas_Werkmeister_WMDE, Pablo-WMDE, Akuckartz, Michael, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T266936: Language and lexical category fields turn red on unfocus when no changes are made
Pablo-WMDE added a comment. If we continue assuming that this once worked it would be awesome to document a theory why/when this broke - maybe there are other implementations with the same problem. TASK DETAIL https://phabricator.wikimedia.org/T266936 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Silvan_WMDE, Pablo-WMDE Cc: Pablo-WMDE, noarave, Nikki, Akuckartz, Iflorez, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T268760: Enable tree-shaking
Pablo-WMDE updated the task description. TASK DETAIL https://phabricator.wikimedia.org/T268760 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Volker_E, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T268760: Enable tree-shaking
Pablo-WMDE created this task. Pablo-WMDE added projects: User-Pablo-WMDE, Wikidata Design System. Restricted Application added a subscriber: Aklapper. Restricted Application added a project: Wikidata. TASK DESCRIPTION Tree shaking <https://webpack.js.org/guides/tree-shaking/> describes webpack's ability to remove unused dependencies when creating build results (partially) based on other packages. This makes for a smaller bundle to ship to clients and thus improves performance and user satisfaction. In order for tree shaking to work in our applications, the libraries used need to follow a few rules. Namely, they should not have side effects they don't declare so that that the build tool can optimize them with confidence. Wikit's vue components library is such a library. **AC** - webpack's definition of sideeffects is understood <https://webpack.js.org/guides/tree-shaking/#mark-the-file-as-side-effect-free> (incl. the topic of CSS) - wikit's vue components has its `sideEffects` property (in the `package.json`) configured to allow using applications to apply tree shaking **Info** - We already played with this in https://gerrit.wikimedia.org/r/598781 & https://gerrit.wikimedia.org/r/598808 (for the then-trending vuejs-components lib) but ran into challenges TASK DETAIL https://phabricator.wikimedia.org/T268760 WORKBOARD https://phabricator.wikimedia.org/project/board/5083/ EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Volker_E, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T244001: Investigate reminding people to update `npm audit`
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T244001 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Tonina_Zhelyazkova_WMDE, Pablo-WMDE, Ladsgroup, Addshore, WMDE-leszek, Aklapper, Tarrow, Alter-paule, Beast1978, Un1tY, Akuckartz, Sarai-WMDE, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T267741: Switch test for wikit-class on root html tag to eslint based solution
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T267741 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Aklapper, Michael, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Volker_E, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T268640: Log termbox SSR errors with MediaWiki request ID
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T268640 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Aklapper, Lucas_Werkmeister_WMDE, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, GWicke, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T268600: Implement services through MediaWikiServices
Pablo-WMDE created this task. Pablo-WMDE added projects: User-Pablo-WMDE, Wikibase, wdwb-tech-focus. Restricted Application added a subscriber: Aklapper. Restricted Application added a project: Wikidata. TASK DESCRIPTION Along the lines of ADR#15 <https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/extensions/Wikibase/+/5b2ab39/docs/adr/0015-use-psr-11-mediawiki-service-container.md> and T265984 <https://phabricator.wikimedia.org/T265984>, convert the services described in the current "top level factories" `WikibaseRepo` and `WikibaseClient` into service wiring <https://www.mediawiki.org/wiki/Dependency_Injection#Service_Wiring>. As a result, a lot of boilerplate code can be avoided and - through `extension.json` - dependencies can be cleanly injected into MediaWiki pages (e.g. <https://gerrit.wikimedia.org/r/c/mediawiki/extensions/Wikibase/+/642040/5/extension-repo.json#17>) without reaching into global scope. TASK DETAIL https://phabricator.wikimedia.org/T268600 WORKBOARD https://phabricator.wikimedia.org/project/board/5083/ EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T267631: Add debounce to PropertyLookup
Pablo-WMDE added a comment. cf. ResizingTextField implementation <https://gerrit.wikimedia.org/r/c/wikibase/vuejs-components/+/576322> TASK DETAIL https://phabricator.wikimedia.org/T267631 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Aklapper, Michael, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T218291: Model ULS dependency
Pablo-WMDE added a comment. This here is talking about the "if" (and the "what if not") while T261851#6461737 <https://phabricator.wikimedia.org/T261851#6461737> recently talked about the "how". TASK DETAIL https://phabricator.wikimedia.org/T218291 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: WMDE-leszek, Matthias_Geisler_WMDE, Tarrow, Jakob_WMDE, Aklapper, Pablo-WMDE, 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 https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T200767: Investigate way forward for entity selectors
Pablo-WMDE added a project: User-Pablo-WMDE. Pablo-WMDE updated the task description. TASK DETAIL https://phabricator.wikimedia.org/T200767 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Nikki, Jan_Dittrich, Mbch331, Greta_Doci_WMDE, Jakob_WMDE, WMDE-leszek, KaMan, Lea_Lacroix_WMDE, abian, Aklapper, reosarevok, Lydia_Pintscher, Pablo-WMDE, cristiana023, Akuckartz, JanJaquemot, Demian, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, JGirault, Scott_WUaS, Wikidata-bugs, aude ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T197228: Ensure JS templates and code in sync
Pablo-WMDE closed this task as "Resolved". Pablo-WMDE added a comment. This was resolved in T198455: Unify WikibaseLexeme vue templates <https://phabricator.wikimedia.org/T198455> TASK DETAIL https://phabricator.wikimedia.org/T197228 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Addshore, Pablo-WMDE Cc: Lydia_Pintscher, Tarrow, Addshore, Jakob_WMDE, Pablo-WMDE, 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 https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T218204: selenium flakiness: Edit multiple aliases
Pablo-WMDE closed this task as "Declined". Pablo-WMDE added a comment. Seems we are good for a while and there are no plans to actively develop rb-based browser tests any more so closing this makes sense in my eyes. TASK DETAIL https://phabricator.wikimedia.org/T218204 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: gerritbot, WMDE-leszek, Jakob_WMDE, Aklapper, Pablo-WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T218291: Model ULS dependency
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T218291 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: WMDE-leszek, Matthias_Geisler_WMDE, Tarrow, Jakob_WMDE, Aklapper, Pablo-WMDE, 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 https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T218780: Diffusion: wikibase-termbox gerrit mirror connection time out
Pablo-WMDE closed this task as "Resolved". Pablo-WMDE claimed this task. Pablo-WMDE added a comment. This should have been closed a long time ago. Thanks! TASK DETAIL https://phabricator.wikimedia.org/T218780 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Mainframe98, Matthias_Geisler_WMDE, Jakob_WMDE, Tarrow, WMDE-leszek, Pablo-WMDE, hashar, Aklapper, Udoka_Ugo, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, Gentlejack35, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, MGChecker, Luke081515, Wikidata-bugs, aude, Mbch331, Jay8g, Krenair ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T220363: Reuse wikimedia-ui-base styles
Pablo-WMDE closed this task as "Resolved". Pablo-WMDE claimed this task. Pablo-WMDE added a comment. Use of wikimedia-ui-base in termbox is a fact. The next step should be T268110: stop consuming wikimedia-ui-base directly in termbox <https://phabricator.wikimedia.org/T268110>, i.e. using wikit instead. TASK DETAIL https://phabricator.wikimedia.org/T220363 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Matthias_Geisler_WMDE, Tarrow, Jakob_WMDE, Aklapper, Pablo-WMDE, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, darthmon_wmde, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T225814: m.wikidata: login status not detected
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T225814 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: ovasileva, darthmon_wmde, Jdlrobson, aude, WDoranWMF, Stryn, Addshore, Reedy, Jakob_WMDE, Legoktm, hoo, csteipp, vvv, Lydia_Pintscher, WMDE-leszek, Aklapper, Pablo-WMDE, Akuckartz, Demian, CptViraj, DannyS712, wildly_boy, Nandana, Lahi, Gq86, mojoaxel, GoranSMilovanovic, QZanden, LawExplorer, Winter, JJMC89, _jensen, rosalieper, Agabi10, Scott_WUaS, Wong128hk, Wikidata-bugs, Snowolf, Mbch331, Rxy, Jay8g ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T231420: "Last edited" info bleeding through termbox modal
Pablo-WMDE closed this task as "Resolved". Pablo-WMDE claimed this task. Pablo-WMDE added a comment. This seems to have gone away - unclear based on which change. TASK DETAIL https://phabricator.wikimedia.org/T231420 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Lydia_Pintscher, Aklapper, Pablo-WMDE, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T246984: Logged out on client: "Data Bridge should never have been opened on this protected page!"
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T246984 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Lydia_Pintscher, Charlie_WMDE, Tonina_Zhelyazkova_WMDE, Michael, Lucas_Werkmeister_WMDE, Aklapper, Pablo-WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T247822: Bridge enabled links: multi-click opens bridge repeatedly
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T247822 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Michael, Lucas_Werkmeister_WMDE, Lydia_Pintscher, Aklapper, Pablo-WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T252516: lexemeformview: form index not unique across RepresentationWidgets
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T252516 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Jakob_WMDE, toan, Pablo-WMDE, 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 https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T253966: sonar cloud + .vue files: 'import' and 'export' may appear only with 'sourceType: module'
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T253966 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, Michael, Nandana, kostajh, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T254563: mwext-node10-rundoc-docker: Cannot find module '@storybook/addon-knobs'
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T254563 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, Sarai-WMDE, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T254733: ErrorUnknow message running wider than modal
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T254733 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, Michael, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T258482: Remove base/reset CSS which has not effect in our components
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T258482 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Jakob_WMDE, Aklapper, Pablo-WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Volker_E, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T259468: Version compare apps' externalized modules and core modules
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T259468 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265149: Upgrade WebdriverIO in Wikidata Bridge
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T265149 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, zeljkofilipin, Pablo-WMDE, Akuckartz, Michael, Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T266638: language/spelling variant selector on Special:NewItem and Special:NewLexeme stays open when tabbing out of it, covering other input fields
Pablo-WMDE added subscribers: rosalieper, Pablo-WMDE. Pablo-WMDE added a comment. @rosalieper and I looked at this and filed T268139: ComboBoxInputWidget: does not close when tabbing out with selected value <https://phabricator.wikimedia.org/T268139> as it seems this is a problem in upstream #ooui <https://phabricator.wikimedia.org/tag/ooui/> as well and probably should be fixed there. We //may// not be the best candidates to try and fix this in the upstream ourself, because there are probably people who can do this quicker than us. TASK DETAIL https://phabricator.wikimedia.org/T266638 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Rosalie_WMDE, Pablo-WMDE Cc: Pablo-WMDE, rosalieper, noarave, Lea_Lacroix_WMDE, Nikki, Aklapper, Lydia_Pintscher, Akuckartz, Iflorez, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, Scott_WUaS, Jonas, Wikidata-bugs, aude, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T249493: Storybook not usable in IE 11 (tainted refs)
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T249493 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, Sarai-WMDE, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T249492: Storybook not usable in IE 11 (termbox)
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T249492 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T250266: Termbox: Use "vuex" ResourceLoader module from core
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T250266 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Lucas_Werkmeister_WMDE, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T250267: Tainted Ref: Use "vuex" ResourceLoader module from core
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T250267 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Michael, Aklapper, Lucas_Werkmeister_WMDE, Akuckartz, Sarai-WMDE, Nandana, Lahi, Gq86, Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T268112: stop consuming wikimedia-ui-base directly in bridge
Pablo-WMDE added a project: Wikidata-Bridge. Restricted Application added a project: Wikidata. TASK DETAIL https://phabricator.wikimedia.org/T268112 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: #wikidata-bridge, Aklapper, Pablo-WMDE, Akuckartz, Michael, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T268111: stop consuming wikimedia-ui-base directly in tainted ref
Pablo-WMDE added a project: Wikidata Tainted References. Restricted Application added a project: Wikidata. TASK DETAIL https://phabricator.wikimedia.org/T268111 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, Sarai-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 https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T264168: Drop PHP 7.2 support from wikibase master branch, once Wikimedia production is on 7.3
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T264168 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Michael, WMDE-leszek, Addshore, Aklapper, Pablo-WMDE, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, jijiki, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Tommy_Kronkvist, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Nikerabbit, Jdforrester-WMF, MaxSem, Mbch331, Krenair ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T248840: Don’t polyfill Promise in Bridge modules
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T248840 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, WMDE-leszek, Michael, Lucas_Werkmeister_WMDE, Aklapper, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T260425: List/visualize component-level tokens in Storybook
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T260425 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Michael, Aklapper, Sarai-WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Volker_E, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T263722: Base tokens on latest wikimedia-ui-base (v0.17.0)
Pablo-WMDE added a project: User-Pablo-WMDE. TASK DETAIL https://phabricator.wikimedia.org/T263722 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Sarai-WMDE, Pablo-WMDE Cc: Jakob_WMDE, Sarai-WMDE, Aklapper, Pablo-WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Volker_E, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T263722: Base tokens on latest wikimedia-ui-base (v0.17.0)
Pablo-WMDE renamed this task from "Base tokens on latest wikimedia-ui-base" to "Base tokens on latest wikimedia-ui-base (v0.17.0)". TASK DETAIL https://phabricator.wikimedia.org/T263722 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Sarai-WMDE, Pablo-WMDE Cc: Jakob_WMDE, Sarai-WMDE, Aklapper, Pablo-WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Volker_E, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T248840: Don’t polyfill Promise in Bridge modules
Pablo-WMDE added a comment. Would be great to give this another boost (both for bridge as well as as a standard for all products matching our pattern vue+TypeScript+MediaWiki). => Prioritization Session TASK DETAIL https://phabricator.wikimedia.org/T248840 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, WMDE-leszek, Michael, Lucas_Werkmeister_WMDE, Aklapper, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Kent7301, joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T263722: Base tokens on latest wikimedia-ui-base
Pablo-WMDE added a comment. https://github.com/wmde/wikit/pull/231 & https://github.com/wmde/wikit/pull/275 Cool, thanks! TASK DETAIL https://phabricator.wikimedia.org/T263722 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Sarai-WMDE, Pablo-WMDE Cc: Jakob_WMDE, Sarai-WMDE, Aklapper, Pablo-WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Volker_E, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T267904: Review WikibaseDataModelTypes volunteer contribution (PR #14)
Pablo-WMDE added a project: wdwb-tech-focus. TASK DETAIL https://phabricator.wikimedia.org/T267904 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Addshore, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T267904: Review WikibaseDataModelTypes volunteer contribution (PR #14)
Pablo-WMDE created this task. Pablo-WMDE added a project: Wikidata-Campsite. Restricted Application added a subscriber: Aklapper. Restricted Application added a project: Wikidata. TASK DESCRIPTION https://github.com/wmde/WikibaseDataModelTypes/pull/14 provides list of suggestions for how the TypeScript WikibaseDataModelTypes could be expanded. We should review this according to the ideas which we have about how this repository should develop. TASK DETAIL https://phabricator.wikimedia.org/T267904 WORKBOARD https://phabricator.wikimedia.org/project/board/3402/ EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265984: Create first exemplary services in WikibaseRepo
Pablo-WMDE renamed this task from "Inject shared service (ObjectCache) into FormatterCacheFactory from MW service" to "Create first exemplary services in WikibaseRepo". Pablo-WMDE updated the task description. TASK DETAIL https://phabricator.wikimedia.org/T265984 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Tarrow, Lucas_Werkmeister_WMDE, toan, Aklapper, Pablo-WMDE, Akuckartz, Iflorez, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T267741: Switch test for wikit-class on root html tag to eslint based solution
Pablo-WMDE added a comment. Scribbled something here: https://github.com/wmde/wikit/pull/266 TASK DETAIL https://phabricator.wikimedia.org/T267741 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Aklapper, Michael, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Volker_E, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265984: Inject shared service (ObjectCache) into FormatterCacheFactory from MW service
Pablo-WMDE claimed this task. TASK DETAIL https://phabricator.wikimedia.org/T265984 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Tarrow, Lucas_Werkmeister_WMDE, toan, Aklapper, Pablo-WMDE, Akuckartz, Iflorez, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265984: Inject shared service (ObjectCache) into FormatterCacheFactory from MW service
Pablo-WMDE added a comment. With the ADR merged, let's look into how we can get the first services actually implemented this way (in the least invasive fashion). TASK DETAIL https://phabricator.wikimedia.org/T265984 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Tarrow, Lucas_Werkmeister_WMDE, toan, Aklapper, Pablo-WMDE, Akuckartz, Iflorez, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T228527: Support nested package.json files
Pablo-WMDE added a comment. In T228527#6586172 <https://phabricator.wikimedia.org/T228527#6586172>, @Legoktm wrote: > So first, I note that ContentTranslation has seemed to gotten this working without any libup intervention, see e.g. https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/extensions/ContentTranslation/+/ec12768a718a8bccf070a70b86c9c42afe603362 The comment <https://gerrit.wikimedia.org/r/c/mediawiki/extensions/ContentTranslation/+/625967/2#message-5a98f4949222d512564316e17ddeb8be0d9f6842> > I am not sure, why the sub package-lock.json was also updated. > It seems the sub package-lock.json is not whitelisted for libup to automerge. and response <https://gerrit.wikimedia.org/r/c/mediawiki/extensions/ContentTranslation/+/625967/2#message-b65b02738e1722fd9649f2d57047e1e8a244531b> > Yeah; I think this is rare enough that it's OK to do manually. don't make it sound like that's a well know feature (if at all) and should be relied on. Would be great to see this functionality become a first class citizen (documentation et al.) before we build on top of it. It should also be noted that we did not exactly invent the idea of monorepos <https://en.wikipedia.org/wiki/Monorepo#Advantages> and that - if anything - they can be expected to become more popular <https://www.npmtrends.com/lerna> especially in a world of well-scoped micro frontends <https://www.toptal.com/front-end/guide-to-monorepos>. TASK DETAIL https://phabricator.wikimedia.org/T228527 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, darthmon_wmde, WMDE-leszek, Addshore, Daimona, Michael, Legoktm, Jdforrester-WMF, Aklapper, Lucas_Werkmeister_WMDE, Esanders, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265976: Lexeme daily browser tests (against beta) flaky
Pablo-WMDE added a comment. Flakiness is strong with this one recently. Maybe it is a coincidence, but the manually triggered (and thus differently timed) reruns seem to fail at a much lower rate than the scheduled runs. Maybe changing the schedule (getting rid of what ever maybe happens at the same time) for when those tests run could help reduce how often this goes red. F32414179: Screenshot_2020-10-26 selenium-daily-beta-WikibaseLexeme [Jenkins].png <https://phabricator.wikimedia.org/F32414179> TASK DETAIL https://phabricator.wikimedia.org/T265976 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, 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 https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T260425: List/visualize component-level tokens in Storybook
Pablo-WMDE added a comment. Drafted a step 0 in https://github.com/wmde/wikit/pull/238 TASK DETAIL https://phabricator.wikimedia.org/T260425 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Michael, Aklapper, Sarai-WMDE, Akuckartz, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Volker_E, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265984: Inject shared service (ObjectCache) into FormatterCacheFactory from MW service
Pablo-WMDE claimed this task. TASK DETAIL https://phabricator.wikimedia.org/T265984 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Tarrow, Lucas_Werkmeister_WMDE, toan, Aklapper, Pablo-WMDE, Akuckartz, Iflorez, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265984: Inject shared service (ObjectCache) into FormatterCacheFactory from MW service
Pablo-WMDE added subscribers: toan, Lucas_Werkmeister_WMDE, Tarrow. Pablo-WMDE added a comment. Had a chat with @Lucas_Werkmeister_WMDE, @Tarrow & @toan. We found out that there is no (popular, at least) scenario in which both the wikibase repo and client code would run at the same time - as such, it is not of highest priority to prevent this part of the application from instantiating the service(s) redundantly (as it does not happen in practice). However, we see the desire for a less verbose way of maintaining our service definitions, wiring & align it with the way MediaWiki does it to reduce the barrier to entry for future wikibase devs and non-team members. Steps in mind - write an ADR which commits us to using the MediaWiki service container in wikibase - implement an existing trivial wikibase service using the MediaWiki service container TASK DETAIL https://phabricator.wikimedia.org/T265984 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Tarrow, Lucas_Werkmeister_WMDE, toan, Aklapper, Pablo-WMDE, Akuckartz, Iflorez, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T266224: Don't express termbox 'dependency' on entityLoaded via ResourceLoader
Pablo-WMDE claimed this task. Pablo-WMDE added a project: Wikidata-Campsite (Wikidata-Campsite-Iteration-∞). Restricted Application added a project: Wikidata. TASK DETAIL https://phabricator.wikimedia.org/T266224 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T264893: Client: Error: invalid entity serialization
Pablo-WMDE added a comment. So the error wikibase.entityPage.entityLoaded should only be loaded in conjunction with the right JS config (e.g. ParserOutputJsConfigBuilder)! seems to be surfacing another problem (writing the ticket now) but is, indirectly, also caused by termbox inappropriately being loaded. TASK DETAIL https://phabricator.wikimedia.org/T264893 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Jdlrobson, Addshore, Michael, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Verdy_p, Wikidata-bugs, aude, Lydia_Pintscher, Jdforrester-WMF, Mbch331, Rxy, Jay8g, Krenair ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T264893: Client: Error: invalid entity serialization
Pablo-WMDE added a comment. Not only is there what appears to be an attempt to render termbox on a lexeme page (as the description states) but also an error wikibase.entityPage.entityLoaded should only be loaded in conjunction with the right JS config (e.g. ParserOutputJsConfigBuilder)! e.g. on https://m.wikidata.org/wiki/Lexeme:L136571?action=purge which indicates that `OutputPageBeforeHTMLHookHandler`, which usually deals with mapping entities to JS behavior, has lost its smarts. I'm suspecting this may have been introduced during https://gerrit.wikimedia.org/r/628047 / https://gerrit.wikimedia.org/r/628830 (for T259541 <https://phabricator.wikimedia.org/T259541>, T228147 <https://phabricator.wikimedia.org/T228147>, T261511 <https://phabricator.wikimedia.org/T261511>) and think the ticket should be expedited. TASK DETAIL https://phabricator.wikimedia.org/T264893 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Jdlrobson, Addshore, Michael, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Verdy_p, Wikidata-bugs, aude, Lydia_Pintscher, Jdforrester-WMF, Mbch331, Rxy, Jay8g, Krenair ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T266215: Implement the FormatterCache versioning
Pablo-WMDE created this task. Pablo-WMDE added projects: Wikidata, Wikidata-Campsite (Wikidata-Campsite-Iteration-∞). Restricted Application added a subscriber: Aklapper. TASK DESCRIPTION TASK DETAIL https://phabricator.wikimedia.org/T266215 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265562: [6hr.] Investigation - Wikibase Lua: addStatementUsage seems unjustifiably expensive
Pablo-WMDE added a comment. Leaving T263999: Some lua-calls with language specified does not end up in formatterCache <https://phabricator.wikimedia.org/T263999> because it has similar buzz words but I don't know if they are related. TASK DETAIL https://phabricator.wikimedia.org/T265562 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: toan, Pablo-WMDE Cc: Pablo-WMDE, Lucas_Werkmeister_WMDE, toan, hoo, Lydia_Pintscher, RolandUnger, Aklapper, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, lucamauri, Lahi, Gq86, Darkminds3113, GoranSMilovanovic, QZanden, LawExplorer, Vali.matei, SundanceRaphael, _jensen, rosalieper, Scott_WUaS, Jonas, Volker_E, alex-mashin, Wikidata-bugs, aude, GWicke, Dinoguy1000, jayvdb, MrStradivarius, Jackmcbarn, Mbch331, Rxy, Jay8g ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T252595: Consider ways to invalidate FormatterCache when things go wrong
Pablo-WMDE added a comment. We split this into subtasks *T265983: Make shared caching service (ObjectCache) injectable into FormatterCacheFactory <https://phabricator.wikimedia.org/T265983> - T265983: Make shared caching service (ObjectCache) injectable into FormatterCacheFactory <https://phabricator.wikimedia.org/T265983> to ease discussing the challenges in isolation. TASK DETAIL https://phabricator.wikimedia.org/T252595 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Lucas_Werkmeister_WMDE, Michael, Ladsgroup, Pablo-WMDE, toan, Aklapper, Addshore, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, CucyNoiD, Nandana, jijiki, Klaas_Z4us_V, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, elukey, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331, Jay8g ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265984: Inject shared service (ObjectCache) into FormatterCacheFactory from MW service
Pablo-WMDE updated the task description. TASK DETAIL https://phabricator.wikimedia.org/T265984 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265984: Inject shared service (ObjectCache) into FormatterCacheFactory from MW service
Pablo-WMDE created this task. Pablo-WMDE added projects: Wikidata, Wikidata-Campsite (Wikidata-Campsite-Iteration-∞). Restricted Application added a subscriber: Aklapper. TASK DESCRIPTION TASK DETAIL https://phabricator.wikimedia.org/T265984 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265983: Make shared caching service (ObjectCache) injectable into FormatterCacheFactory
Pablo-WMDE created this task. Pablo-WMDE added projects: Wikidata, Wikidata-Campsite (Wikidata-Campsite-Iteration-∞). Restricted Application added a subscriber: Aklapper. TASK DESCRIPTION TASK DETAIL https://phabricator.wikimedia.org/T265983 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, Pablo-WMDE, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265976: Lexeme daily browser tests (against beta) flaky
Pablo-WMDE created this task. Pablo-WMDE added projects: Wikidata Lexicographical data, wdwb-tech-focus. Restricted Application added a project: Wikidata. TASK DESCRIPTION The daily lexeme browser tests (against beta) <https://integration.wikimedia.org/ci/job/selenium-daily-beta-WikibaseLexeme/> appear to be rather flaky. One recent failure gave an interesting error message which may help to make this more stable. > Could not save due to an error. The database is currently locked to new entries and other modifications, probably for routine database maintenance, after which it will be back to normal. The System administrator who locked it offered this explanation: $1 as seen in this screenshot <https://integration.wikimedia.org/ci/job/selenium-daily-beta-WikibaseLexeme/801/artifact/log/FormId-counter-is-not-decremented-when-old-revision-is-restored.png> I created a separate ticket despite recent T222449 <https://phabricator.wikimedia.org/T222449> because we are not dealing with consistent failure any more but have a concrete error message (not consistently but it could be a hint). TASK DETAIL https://phabricator.wikimedia.org/T265976 WORKBOARD https://phabricator.wikimedia.org/project/board/2292/ EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265897: Create implicit use of description in content language
Pablo-WMDE updated the task description. TASK DETAIL https://phabricator.wikimedia.org/T265897 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: ItamarWMDE, Aklapper, Lucas_Werkmeister_WMDE, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265898: Don’t create implicit description use if description is overridden locally
Pablo-WMDE updated the task description. TASK DETAIL https://phabricator.wikimedia.org/T265898 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Lucas_Werkmeister_WMDE, Aklapper, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T239195: Wikidata.org: On mobile, sections stays expanded even it's disabled in settings
Pablo-WMDE added a comment. Fascinating. Tried it with the same page I created last Thu when messing with it and now the sections are shown as collapsed. I don't comprehend what happened but confirm Lucas' observation. F32399138: Screenshot_2020-10-19 Foo bar - docker-default.png <https://phabricator.wikimedia.org/F32399138> TASK DETAIL https://phabricator.wikimedia.org/T239195 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: ItamarWMDE, Pablo-WMDE Cc: Pablo-WMDE, Peter.ovchyn, Lucas_Werkmeister_WMDE, Ochaochaocha3, Lea_Lacroix_WMDE, Liuxinyu970226, MaxSem, Lydia_Pintscher, Jdlrobson, Addshore, Aklapper, Masumrezarock100, 1997kB, Alter-paule, Beast1978, Un1tY, Akuckartz, Demian, Hook696, CptViraj, Iflorez, darthmon_wmde, Kent7301, Dibya, alaa_wmde, joker88john, 94rain, Dinadineke, DannyS712, CucyNoiD, Nandana, Tks4Fish, Gaboe420, Giuliamocci, tabish.shaikh91, Cpaulf30, Lahi, Gq86, Af420, mojoaxel, Bsandipan, GoranSMilovanovic, Soteriaspace, Jayprakash12345, JakeTheDeveloper, QZanden, Kizule, merbst, LawExplorer, Winter, Lewizho99, Maathavan, DatGuy, Devwaker, Niklitov, _jensen, Urbanecm, rosalieper, JEumerus, Scott_WUaS, Jonas, Ananthsubray, Superzerocool, Tulsi_Bhagat, Wong128hk, Luke081515, SimmeD, Wikidata-bugs, Snowolf, aude, Dcljr, TheDJ, Matanya, Mbch331, Rxy, Jay8g, Krenair ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T255410: Termbox SSR connection terminated very often
Pablo-WMDE added a comment. Thanks for updating the documentation on wikitech! TASK DETAIL https://phabricator.wikimedia.org/T255410 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Michael, Pablo-WMDE Cc: toan, Lucas_Werkmeister_WMDE, Sakretsu, akosiaris, JMeybohm, WMDE-leszek, Pablo-WMDE, Tarrow, Jakob_WMDE, Addshore, Aklapper, Michael, wkandek, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, jijiki, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331, Dzahn ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T255410: Termbox SSR connection terminated very often
Pablo-WMDE added a comment. > We are starting to work on some preliminary/draft SLOs for mediawiki. There is some work to be done on getting numbers, but when we come up with those, it would be prudent to adjust the SLO of termbox to those as termbox is dependent on mediawiki and for it to provide more strict SLOs than mediawiki doesn't make sense. Well said. The current objectives and timeouts were... educated guesses at the time and the - to an extend - circular dependency did not help in drafting them. There is poor T220404: Calculate sensible MW->Node timeout once deployed <https://phabricator.wikimedia.org/T220404> as a last ditch effort from back then to document the need to reiterate on this once we have real world data to base decisions one but nothing ever came from it. I'm looking forward to the mediawiki SLOs. TASK DETAIL https://phabricator.wikimedia.org/T255410 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Michael, Pablo-WMDE Cc: toan, Lucas_Werkmeister_WMDE, Sakretsu, akosiaris, JMeybohm, WMDE-leszek, Pablo-WMDE, Tarrow, Jakob_WMDE, Addshore, Aklapper, Michael, wkandek, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, jijiki, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331, Dzahn ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T261488: trial new termbox on desktop on a test system
Pablo-WMDE added a comment. > Install ULS (it's not documented but termbox doesn't work without ULS) The need for this is tracked in T218291: Model ULS dependency <https://phabricator.wikimedia.org/T218291> TASK DETAIL https://phabricator.wikimedia.org/T261488 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Lydia_Pintscher, Pablo-WMDE Cc: Ladsgroup, Pablo-WMDE, WMDE-leszek, Aklapper, Lydia_Pintscher, Alter-paule, Hazizibinmahdi, Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T239195: Wikidata.org: On mobile, sections stays expanded even it's disabled in settings
Pablo-WMDE edited projects, added Wikidata-Campsite (Wikidata-Campsite-Iteration-∞), MobileFrontend, Patch-For-Review; removed Wikidata-Campsite. Pablo-WMDE added a comment. Restored tags which were probably changed by accident. TASK DETAIL https://phabricator.wikimedia.org/T239195 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: ItamarWMDE, Pablo-WMDE Cc: Pablo-WMDE, Peter.ovchyn, Lucas_Werkmeister_WMDE, Ochaochaocha3, Lea_Lacroix_WMDE, Liuxinyu970226, MaxSem, Lydia_Pintscher, Jdlrobson, Addshore, Aklapper, Masumrezarock100, 1997kB, Alter-paule, Beast1978, Un1tY, Akuckartz, Demian, Hook696, CptViraj, Iflorez, darthmon_wmde, Kent7301, Dibya, alaa_wmde, joker88john, 94rain, Dinadineke, DannyS712, CucyNoiD, Nandana, Tks4Fish, Gaboe420, Giuliamocci, tabish.shaikh91, Cpaulf30, Lahi, Gq86, Af420, mojoaxel, Bsandipan, GoranSMilovanovic, Soteriaspace, Jayprakash12345, JakeTheDeveloper, QZanden, Kizule, merbst, LawExplorer, Winter, Lewizho99, Maathavan, DatGuy, Devwaker, Niklitov, _jensen, Urbanecm, rosalieper, JEumerus, Scott_WUaS, Jonas, Ananthsubray, Superzerocool, Tulsi_Bhagat, Wong128hk, Luke081515, SimmeD, Wikidata-bugs, Snowolf, aude, Dcljr, TheDJ, Matanya, Mbch331, Rxy, Jay8g, Krenair ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T239195: Wikidata.org: On mobile, sections stays expanded even it's disabled in settings
Pablo-WMDE added a comment. > My main page includes a section, and that section was expanded - as a default, but I would expect it to be collapsed. I can confirm Itamar's observation. I have verified that `wgMFCollapseSectionsByDefault` correctly makes its way into MobileFrontend <https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/extensions/MobileFrontend/+/c25d55d/src/mobile.startup/Toggler.js#249> but despite some digging into it could not establish a scenario where its false value makes page sections shown collapsed by default. This probably has something to do with this quote by @Jdlrobson > The setting was only ever designed to expand sections by default not to do the opposite. Therefore to get it to work requires rethinking and possibly completely rewriting what is actually a very little used feature. It would be interesting what's the state about this at the moment - and if we should expect https://gerrit.wikimedia.org/r/633772/ to act as a solution (I did not see an impact; it being checked out or not). TASK DETAIL https://phabricator.wikimedia.org/T239195 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: ItamarWMDE, Pablo-WMDE Cc: Pablo-WMDE, Peter.ovchyn, Lucas_Werkmeister_WMDE, Ochaochaocha3, Lea_Lacroix_WMDE, Liuxinyu970226, MaxSem, Lydia_Pintscher, Jdlrobson, Addshore, Aklapper, Masumrezarock100, 1997kB, Alter-paule, Beast1978, Un1tY, Akuckartz, Demian, Hook696, CptViraj, Iflorez, darthmon_wmde, Kent7301, Dibya, alaa_wmde, joker88john, 94rain, Dinadineke, DannyS712, CucyNoiD, Nandana, Tks4Fish, Gaboe420, Giuliamocci, tabish.shaikh91, Cpaulf30, Lahi, Gq86, Af420, mojoaxel, Bsandipan, GoranSMilovanovic, Soteriaspace, Jayprakash12345, JakeTheDeveloper, QZanden, Kizule, merbst, LawExplorer, Winter, Lewizho99, Maathavan, DatGuy, Devwaker, Niklitov, _jensen, Urbanecm, rosalieper, JEumerus, Scott_WUaS, Jonas, Ananthsubray, Superzerocool, Tulsi_Bhagat, Wong128hk, Luke081515, SimmeD, Wikidata-bugs, Snowolf, aude, Dcljr, TheDJ, Matanya, Mbch331, Rxy, Jay8g, Krenair ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265485: Termbox SSR should only be called with valid term languages
Pablo-WMDE added a comment. In my understanding this is indeed describing the same problem as T231007 <https://phabricator.wikimedia.org/T231007>, just with different ways of discovering the issue and ideas for a solution. The main challenge, in my eyes, is not so much technical in nature but how to create a pleasant user experience around handling requested invalid languages. As such it makes sense to join forces between the tickets and try for some answers by product. TASK DETAIL https://phabricator.wikimedia.org/T265485 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Aklapper, Michael, 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 https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T264733: Include a mini sample project that shows use of component, CSS, Tokens
Pablo-WMDE added a comment. > I think it would be helpful to see how several of the components can be combined Agree. That, in my eyes, could be the job of dedicated stories. I see this happening eventually once it becomes more relevant with the advent of more components. > I am also unsure about the code shown Agree. I think the vehicle of "Show code" and its placement makes sense, but what it shows could be reduced to avoid confusion (cf. 1 <https://stackoverflow.com/questions/62880900/show-templates-code-with-storybook-addon-docs>). tl;dr only the `template` bit is relevant. I don't feel like I'm in a position to file a ticket to request changes around that but it would make sense to me. > I think also here it would be good to have an example of using tokens. What you mean is clear but any concrete example exhibits the problem that it would showcase (and thus, arguably, favor) the use of one particular technology - while the documentation so far intentionally tries to avoid that: the tokens are shipped in multiple formats (less, sass, css, json) exactly to enable users of all technologies alike. I actually once created a commit <https://github.com/wmde/wikit/commit/074571e350a1a7e27c3b2646571655aca434cc84> to be a bit more helpful without pushing a particular tech - but it never saw the light of day. Do you think it would be helpful at all/a step in the right direction? TASK DETAIL https://phabricator.wikimedia.org/T264733 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Jan_Dittrich, Tonina_Zhelyazkova_WMDE, Aklapper, Sarai-WMDE, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Volker_E, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265454: Components Storybook: Consider removing the extra nesting level below component stories
Pablo-WMDE added a comment. This ticket is suggesting an optimization of how we lay out the navigation with stories in the shape in which we currently organize them - a single story per component showing all variants of the component. An alternative to altering how storybook functions could be to use storybook the way it seems to be, at least in my interpretation, intended by its authors <https://storybook.js.org/docs/react/writing-stories/introduction#how-to-write-stories> - creating a dedicated story per component variant. This is also touched on in T264733#6541820 <https://phabricator.wikimedia.org/T264733#6541820>. TASK DETAIL https://phabricator.wikimedia.org/T265454 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Aklapper, Jakob_WMDE, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Volker_E, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T264733: Include a mini sample project that shows use of component, CSS, Tokens
Pablo-WMDE added a comment. Responding merely as someone who took part in the initial hike and, of course, had some ideas of how things would proceed... > A simple UI made of a few components I'm interpreting "how to use it in an actual project" as a best practice kind of place to copy from. It always was assumption that the "Show code" link as seen e.g. on https://wmde.github.io/wikit/?path=/docs/vue_icon--all would serve this purpose. Combined with https://wmde.github.io/wikit/?path=/docs/documentation-getting-started--page#1-install-via-npm this should get a developer started. The "Show code" links IMO unfortunately had a lot of their clarity removed when multiple stories were grouped into one (#160 <https://github.com/wmde/wikit/pull/160>). > Use of design tokens (or should 'users' of the components never need to use them?) I assume that many/most applications will not exclusively be built from ready-made wikit components but will need some additional ones (maybe to be upstreamed at some point in the future) or add some skeleton around them which should have a similar flavor no less - so I assume that most applications will have a need for tokens on top of components (even when wikit is in a much more "complete" state than now). How to get to them is documented here: https://wmde.github.io/wikit/?path=/docs/documentation-getting-started--page#using-tokens Pointers how we could make this more approachable are very welcome. TASK DETAIL https://phabricator.wikimedia.org/T264733 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Jan_Dittrich, Tonina_Zhelyazkova_WMDE, Aklapper, Sarai-WMDE, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Volker_E, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T263435: `content was: ""` (empty string) when deleting Lexemes
Pablo-WMDE added a comment. As this comment <https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/extensions/Wikibase/+/fd9769f/repo/includes/Content/EntityContent.php#356> correctly says, not all entities have a concept of what Labels are - it just so happens that all entities types in core wikibase (items, properties) have them. There are already dedicated `EntityContent` implementations for items & properties (`ItemContent` & `PropertyContent` respectively - they should use a way of de-duplicating the relevant code (e.g. traits) without making false assumptions. Lexeme's LexemeContent <https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/extensions/WikibaseLexeme/+/df62449/src/MediaWiki/Content/LexemeContent.php> should gain a correct implementation. MediaInfo's MediaInfoContent <https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/extensions/WikibaseMediaInfo/+/c50245e/src/Content/MediaInfoContent.php> has to implement the method the way it is correct for it (currently it returns empty string there, which is probably a good enough value as far as camp is concerned). TASK DETAIL https://phabricator.wikimedia.org/T263435 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Lydia_Pintscher, darthmon_wmde, abian, Akuckartz, Iflorez, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T239195: Wikidata.org: On mobile, sections stays expanded even it's disabled in settings
Pablo-WMDE added a comment. https://gerrit.wikimedia.org/r/plugins/gitiles/operations/mediawiki-config/+/90028b4/wmf-config/InitialiseSettings.php#19405 is where this will happen. TASK DETAIL https://phabricator.wikimedia.org/T239195 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Peter.ovchyn, Lucas_Werkmeister_WMDE, Ochaochaocha3, Lea_Lacroix_WMDE, Liuxinyu970226, MaxSem, Lydia_Pintscher, Jdlrobson, Addshore, Aklapper, Masumrezarock100, 1997kB, Akuckartz, Demian, CptViraj, Iflorez, darthmon_wmde, Dibya, alaa_wmde, 94rain, Dinadineke, DannyS712, Nandana, Tks4Fish, tabish.shaikh91, Lahi, Gq86, mojoaxel, GoranSMilovanovic, Soteriaspace, Jayprakash12345, JakeTheDeveloper, QZanden, Kizule, merbst, LawExplorer, Winter, DatGuy, Devwaker, Niklitov, _jensen, Urbanecm, rosalieper, JEumerus, Scott_WUaS, Jonas, Ananthsubray, Superzerocool, Tulsi_Bhagat, Wong128hk, Luke081515, SimmeD, Wikidata-bugs, Snowolf, aude, Dcljr, TheDJ, Matanya, Mbch331, Rxy, Jay8g, Krenair ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T263435: `content was: ""` (empty string) when deleting Lexemes
Pablo-WMDE added subscribers: darthmon_wmde, Lydia_Pintscher, Pablo-WMDE. Pablo-WMDE added a comment. @darthmon_wmde @Lydia_Pintscher Having looked at this together in the task inspection we re-estimated this to a more modest 8. TASK DETAIL https://phabricator.wikimedia.org/T263435 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Lydia_Pintscher, darthmon_wmde, abian, Akuckartz, Iflorez, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T264532: Add monolingual language for code crl (East Cree)
Pablo-WMDE moved this task from Peer Review to Test (Verification) on the Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board. Pablo-WMDE added a comment. Fix accidental move. TASK DETAIL https://phabricator.wikimedia.org/T264532 WORKBOARD https://phabricator.wikimedia.org/project/board/3539/ EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Mbch331, Pablo-WMDE Cc: Pablo-WMDE, Mbch331, jhsoby, Amire80, Fralambert, Aklapper, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Nikki, Wikidata-bugs, aude, Lydia_Pintscher ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T222449: Make existing daily selenium nodejs tests for WikibaseLexeme green again
Pablo-WMDE added a comment. The software engineering equivalent of a miracle happened. T255051: Upgrade WebdriverIO in the WikibaseLexeme repository <https://phabricator.wikimedia.org/T255051> seems to have made this (repeatedly) green again (#789, #790, #791 <https://integration.wikimedia.org/ci/view/Selenium/job/selenium-daily-beta-WikibaseLexeme/>). Big up to @Michael for being the squeaking wheel about this! TASK DETAIL https://phabricator.wikimedia.org/T222449 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Rosalie_WMDE, Pablo-WMDE, zeljkofilipin, noarave, WMDE-leszek, hoo, Ladsgroup, Michael, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Izno, Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T260942: Upgrade WebdriverIO in the wikibase/termbox repository
Pablo-WMDE closed this task as "Resolved". TASK DETAIL https://phabricator.wikimedia.org/T260942 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: WMDE-leszek, zeljkofilipin, Aklapper, Vidhi-Mody, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T222449: Make existing daily selenium nodejs tests for WikibaseLexeme green again
Pablo-WMDE claimed this task. Pablo-WMDE added a comment. Will now see if T255051: Upgrade WebdriverIO in the WikibaseLexeme repository <https://phabricator.wikimedia.org/T255051> did something for this task. TASK DETAIL https://phabricator.wikimedia.org/T222449 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Rosalie_WMDE, Pablo-WMDE, zeljkofilipin, noarave, WMDE-leszek, hoo, Ladsgroup, Michael, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Izno, Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T256114: Create MediaWiki-Docker/Wikibase
Pablo-WMDE closed this task as "Declined". Pablo-WMDE added a comment. Was a problem while setting wikibase up in order to do the upgrade, but not a real bug in itself. TASK DETAIL https://phabricator.wikimedia.org/T256114 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, Lucas_Werkmeister_WMDE, Addshore, Aklapper, Vidhi-Mody, zeljkofilipin, Akuckartz, darthmon_wmde, brennen, Nandana, kostajh, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T255045: Upgrade WebdriverIO in the Wikibase repository
Pablo-WMDE closed subtask T256114: Create MediaWiki-Docker/Wikibase as "Declined". TASK DETAIL https://phabricator.wikimedia.org/T255045 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: WMDE-leszek, Addshore, zeljkofilipin, Lucas_Werkmeister_WMDE, Aklapper, Vidhi-Mody, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T255045: Upgrade WebdriverIO in the Wikibase repository
Pablo-WMDE removed a subtask: T265149: Upgrade WebdriverIO in Wikidata Bridge. TASK DETAIL https://phabricator.wikimedia.org/T255045 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: WMDE-leszek, Addshore, zeljkofilipin, Lucas_Werkmeister_WMDE, Aklapper, Vidhi-Mody, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T257520: Error in setting up Wikibase locally
Pablo-WMDE closed this task as "Declined". Pablo-WMDE added a comment. Was a problem while setting wikibase up in order to do the upgrade, but not a real bug in itself. TASK DETAIL https://phabricator.wikimedia.org/T257520 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Pablo-WMDE, zeljkofilipin, jbolorinos-ctr, Aklapper, Vidhi-Mody, Akuckartz, darthmon_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T256114: Create MediaWiki-Docker/Wikibase
Pablo-WMDE closed subtask T257520: Error in setting up Wikibase locally as "Declined". TASK DETAIL https://phabricator.wikimedia.org/T256114 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Lucas_Werkmeister_WMDE, Addshore, Aklapper, Vidhi-Mody, zeljkofilipin, Akuckartz, darthmon_wmde, brennen, Nandana, kostajh, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265149: Upgrade WebdriverIO in Wikidata Bridge
Pablo-WMDE edited parent tasks, added: T247844: Upgrade WebdriverIO to the latest version for all repositories; removed: T255045: Upgrade WebdriverIO in the Wikibase repository. TASK DETAIL https://phabricator.wikimedia.org/T265149 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, zeljkofilipin, Pablo-WMDE, Akuckartz, darthmon_wmde, Michael, Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T255045: Upgrade WebdriverIO in the Wikibase repository
Pablo-WMDE added a comment. Meh - forgot that this is also a parent task. I guess T256114: Create MediaWiki-Docker/Wikibase <https://phabricator.wikimedia.org/T256114> & T257520: Error in setting up Wikibase locally <https://phabricator.wikimedia.org/T257520> can be closed - they were merely bugs on the way to setting wikibase up in order to do the upgrade. I'll move T265149: Upgrade WebdriverIO in Wikidata Bridge <https://phabricator.wikimedia.org/T265149> to become its own task under T247844: Upgrade WebdriverIO to the latest version for all repositories <https://phabricator.wikimedia.org/T247844> - it may not be its own repo, but it is its own package. TASK DETAIL https://phabricator.wikimedia.org/T255045 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: WMDE-leszek, Addshore, zeljkofilipin, Lucas_Werkmeister_WMDE, Aklapper, Vidhi-Mody, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T255045: Upgrade WebdriverIO in the Wikibase repository
Pablo-WMDE closed subtask T261218: Upgrade WebdriverIO to v6 in wdio-wikibase as "Resolved". TASK DETAIL https://phabricator.wikimedia.org/T255045 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: WMDE-leszek, Addshore, zeljkofilipin, Lucas_Werkmeister_WMDE, Aklapper, Vidhi-Mody, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T255051: Upgrade WebdriverIO in the WikibaseLexeme repository
Pablo-WMDE closed this task as "Resolved". TASK DETAIL https://phabricator.wikimedia.org/T255051 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: zeljkofilipin, Vidhi-Mody, Aklapper, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T261218: Upgrade WebdriverIO to v6 in wdio-wikibase
Pablo-WMDE closed this task as "Resolved". TASK DETAIL https://phabricator.wikimedia.org/T261218 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: toan, WMDE-leszek, Aklapper, zeljkofilipin, Vidhi-Mody, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T255051: Upgrade WebdriverIO in the WikibaseLexeme repository
Pablo-WMDE closed subtask T261218: Upgrade WebdriverIO to v6 in wdio-wikibase as "Resolved". TASK DETAIL https://phabricator.wikimedia.org/T255051 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: zeljkofilipin, Vidhi-Mody, Aklapper, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, Mahir256, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T255045: Upgrade WebdriverIO in the Wikibase repository
Pablo-WMDE closed this task as "Resolved". TASK DETAIL https://phabricator.wikimedia.org/T255045 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: WMDE-leszek, Addshore, zeljkofilipin, Lucas_Werkmeister_WMDE, Aklapper, Vidhi-Mody, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T255045: Upgrade WebdriverIO in the Wikibase repository
Pablo-WMDE added a comment. Created dedicated T265149: Upgrade WebdriverIO in Wikidata Bridge <https://phabricator.wikimedia.org/T265149> as this is its own beast. TASK DETAIL https://phabricator.wikimedia.org/T255045 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: WMDE-leszek, Addshore, zeljkofilipin, Lucas_Werkmeister_WMDE, Aklapper, Vidhi-Mody, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, CucyNoiD, Nandana, Gaboe420, lucamauri, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T261218: Upgrade WebdriverIO to v6 in wdio-wikibase
Pablo-WMDE added a comment. https://github.com/wmde/wdio-wikibase/pull/26 TASK DETAIL https://phabricator.wikimedia.org/T261218 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: WMDE-leszek, Aklapper, zeljkofilipin, Vidhi-Mody, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, Nandana, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T260942: Upgrade WebdriverIO in the wikibase/termbox repository
Pablo-WMDE claimed this task. Pablo-WMDE added a project: Wikidata-Campsite (Wikidata-Campsite-Iteration-∞). Restricted Application added a project: Wikidata. TASK DETAIL https://phabricator.wikimedia.org/T260942 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: WMDE-leszek, zeljkofilipin, Aklapper, Vidhi-Mody, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T252595: Consider ways to invalidate FormatterCache when things go wrong
Pablo-WMDE reassigned this task from Pablo-WMDE to toan. TASK DETAIL https://phabricator.wikimedia.org/T252595 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: toan, Pablo-WMDE Cc: Pablo-WMDE, toan, Aklapper, Addshore, Alter-paule, Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, CucyNoiD, Nandana, jijiki, Klaas_Z4us_V, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, Af420, Bsandipan, GoranSMilovanovic, QZanden, LawExplorer, Lewizho99, Maathavan, elukey, _jensen, rosalieper, Scott_WUaS, Jonas, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331, Jay8g ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs
[Wikidata-bugs] [Maniphest] T265149: Upgrade WebdriverIO in Wikidata Bridge
Pablo-WMDE created this task. Pablo-WMDE added projects: MediaWiki-extensions-WikibaseClient, Wikidata, Wikidata-Bridge. TASK DESCRIPTION Bridge lives inside the wikibase repository but has its dedicated setup (wdio.conf & dependency management) https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/extensions/Wikibase/+/16ffaf5/client/data-bridge/tests/selenium/ TASK DETAIL https://phabricator.wikimedia.org/T265149 EMAIL PREFERENCES https://phabricator.wikimedia.org/settings/panel/emailpreferences/ To: Pablo-WMDE Cc: Aklapper, zeljkofilipin, Pablo-WMDE, Akuckartz, darthmon_wmde, Michael, Nandana, lucamauri, Lahi, Gq86, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, abian, Wikidata-bugs, aude, Lydia_Pintscher, Mbch331 ___ Wikidata-bugs mailing list Wikidata-bugs@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs