Commit Graph

51 Commits

Author SHA1 Message Date
Gijs Kruitbosch
646e8d9669 Bug 1810707 - add Firefox View submodule to Desktop Firefox, r=mossop,zeid DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D167005
2023-01-17 14:30:07 +00:00
Aki Sasaki
d9c2476649 Bug 1805268 - update Mozharness and Core::Build and Release Rools module owners. r=releng-reviewers,zeid,ahal DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D164479
2022-12-19 21:21:02 +00:00
Greg Mierzwinski
1ae77cb9a3 Bug 1805189 - Update performance testing mots entry. r=davehunt,zeid
This patch updates the mots document with Performance Testing component changes. There are some other changes which were pulled from Bugzilla during this update. The peers are updated to include other Mozilla employees from the #perftest review group (ordered alphabetically by their nickname). Furthermore, the paths are updated to include extra components that are covered by us, and the description is updated to point to our PerfDocs for a more detailed list of component owners and peers (in the future we may move this to the page this patch modifies).

Differential Revision: https://phabricator.services.mozilla.com/D164497
2022-12-15 18:22:30 +00:00
Andrew Halberstadt
12fb695a30 Bug 1803850 - Replace inactive module owner / peers in Core :: Build Config - Taskgraph module, r=zeid
Differential Revision: https://phabricator.services.mozilla.com/D163752
2022-12-09 19:08:38 +00:00
Marco Castelluccio
5ff8e768cb Bug 1801754 - Update Tryselect module's Bugzilla components to point to Developer Infrastructure::Try. r=zeid DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D162673
2022-12-02 16:11:43 +00:00
Marco Castelluccio
841d586045 No bug - Update Perry McManis nick in the Governance page. r=zeid DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D163722
2022-12-02 16:11:42 +00:00
Markus Stange
1dba4577f8 Bug 1803398 - Add Florian as a peer to the Gecko Profiler module, move a few inactive peers, update URL and paths. r=canaltinova,zeid
Differential Revision: https://phabricator.services.mozilla.com/D163499
2022-11-30 18:29:14 +00:00
Gijs Kruitbosch
b0e84f1da8 Bug 1800954 - update mots and moz.build metadata for uriloader folder, r=nika,mak,valentin,zeid
Differential Revision: https://phabricator.services.mozilla.com/D163114
2022-11-30 01:22:01 +00:00
Butkovits Atila
80588bf3b3 Backed out changeset 8742903f6f19 (bug 1800954) for causing linting failures. CLOSED TREE 2022-11-28 22:17:16 +02:00
Gijs Kruitbosch
a8725d77c0 Bug 1800954 - update mots and moz.build metadata for uriloader folder, r=nika,mak,valentin,zeid
Differential Revision: https://phabricator.services.mozilla.com/D163114
2022-11-28 19:48:17 +00:00
Peter Van der Beken
f13c98d3dd Bug 1802174 - Add Kagami Rosylight as a DOM peer. r=mccr8,zeid DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D162866
2022-11-24 10:02:17 +00:00
Chris H-C
e7c4f21085 Bug 1801967 - Update Telemetry Peers, paths r=janerik,zeid
Differential Revision: https://phabricator.services.mozilla.com/D162762
2022-11-23 15:38:37 +00:00
Zeid
351434a9ae Bug 1801651: update sorting of mots module r=glob
Differential Revision: https://phabricator.services.mozilla.com/D162339
2022-11-22 16:21:50 +00:00
Sylvestre Ledru
7e8c70e39a no bug - mots: remove some useless info r=zeid DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D162416
2022-11-18 16:20:10 +00:00
Sylvestre Ledru
e54bb90191 Bug 1800107 - Proposed New Module: Python usage, tools, and style r=zeid DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D161811
2022-11-18 09:26:25 +00:00
alwu
4526ffab6a Bug 1800525 - Update owner and peers for 'Core: Media Playback'. r=zeid
Differential Revision: https://phabricator.services.mozilla.com/D162030
2022-11-15 19:51:23 +00:00
byron jones
00f3d7fe0a Bug 1800083 - Move Mitchell Hentges from "Peer" to "Peer Emeritus" r=glandium,zeid DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D161796
2022-11-15 07:18:35 +00:00
Sylvestre Ledru
fea45ca024 Bug 1799526 - mots: some polish r=zeid DONTBUILD
Depends on D161575

Differential Revision: https://phabricator.services.mozilla.com/D161578
2022-11-08 15:00:07 +00:00
Sylvestre Ledru
ce02f7af5a Bug 1799526 - mots: remove dom/html as it does not belong to layout r=mccr8,zeid DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D161575
2022-11-08 15:00:07 +00:00
Sylvestre Ledru
c0b6621e1d Bug 1799526 - mots: Remove jsat (not a thing anymore) r=eeejay,zeid DONTBUILD
Depends on D161513

Differential Revision: https://phabricator.services.mozilla.com/D161514
2022-11-07 19:59:01 +00:00
Sylvestre Ledru
da05318f43 Bug 1799526 - mots: remove or update old paths r=zeid DONTBUILD
Script to detect this
```
import yaml
import glob

yaml_file = open("mots.yaml", 'r')
yaml_content = yaml.load(yaml_file)
yaml_content = yaml_content['modules']
dirs = []

for key in yaml_content:
    if "includes" in key:
        if key['includes'] is not None:
            dirs = dirs + key['includes']
    if "submodules" in key:
        for key2 in key["submodules"]:
            if "includes" in key2:
                dirs = dirs + key2['includes']


print(dirs)
for d in dirs:
    d=d.replace("/**/*", "")
    if not glob.glob(d):
        print(d + " doesn't exist")
```

Differential Revision: https://phabricator.services.mozilla.com/D161513
2022-11-07 19:59:00 +00:00
Sylvestre Ledru
6c74a40085 Bug 1799452 - Update URLs and old content mots.yaml r=zeid DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D161455
2022-11-07 14:01:46 +00:00
Chris Martin
87046f7977 Bug 1797536 - Update Widget Ownership DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D160378
2022-10-28 15:04:29 +00:00
Mark Banner
8ebf70df90 Bug 1797969 - Add mcheang to the list of Search & Address bar reviewers. r=Gijs,zeid
Differential Revision: https://phabricator.services.mozilla.com/D160644
2022-10-28 13:06:21 +00:00
Valentin Gosu
81ac2dbeac Bug 1797771 - Update necko and jar peers r=jesup,zeid
Differential Revision: https://phabricator.services.mozilla.com/D160533
2022-10-27 20:17:02 +00:00
Gabriele Svelto
bd1bfa8082 Bug 1797499 - Make gankra a peer emeritus of the Crash Reporting component r=zeid DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D160366
2022-10-27 15:14:41 +00:00
Gijs Kruitbosch
105295825d Bug 1797466 - rename prefs module and add more peers, r=mossop,zeid
Differential Revision: https://phabricator.services.mozilla.com/D160340
2022-10-26 15:15:01 +00:00
Dragana Damjanovic
cc9c5f0dd4 Bug 1796316 - Change the necko owner, update the peers' list, and update the list of the relevant necko team’s directories r=zeid,necko-reviewers,kershaw
Differential Revision: https://phabricator.services.mozilla.com/D159784
2022-10-26 11:17:51 +00:00
Mark Banner
7f3cba09e8 Bug 1795322 - Update toolkit modules references in remaining places. r=mossop,zeid,geckoview-reviewers,calu
Differential Revision: https://phabricator.services.mozilla.com/D160036
2022-10-26 08:06:37 +00:00
Csoregi Natalia
5f9da7b301 Backed out 12 changesets (bug 1795322) for causing multiple failures e.g. test_deletion_request_ping.py. CLOSED TREE
Backed out changeset aba25cbcda51 (bug 1795322)
Backed out changeset a4a35005ada9 (bug 1795322)
Backed out changeset 8e8d790eb0f4 (bug 1795322)
Backed out changeset db8903454bd3 (bug 1795322)
Backed out changeset 60cc71c61cad (bug 1795322)
Backed out changeset bc6a674994ad (bug 1795322)
Backed out changeset 6ac8a611f8c7 (bug 1795322)
Backed out changeset 9fb873ecfb31 (bug 1795322)
Backed out changeset c8a7a40c2a2f (bug 1795322)
Backed out changeset f2c118b6c6ce (bug 1795322)
Backed out changeset 38df43b4a70f (bug 1795322)
Backed out changeset 89aea8373411 (bug 1795322)
2022-10-25 23:47:58 +03:00
Mark Banner
fc7befc08d Bug 1795322 - Update toolkit modules references in remaining places. r=mossop,zeid,geckoview-reviewers,calu
Differential Revision: https://phabricator.services.mozilla.com/D160036
2022-10-25 19:49:28 +00:00
Gijs Kruitbosch
b7d8bb78b8 Bug 1796156 - mots export + clean output, r=zeid
Differential Revision: https://phabricator.services.mozilla.com/D159736
2022-10-25 10:49:21 +00:00
Gijs Kruitbosch
583b67b101 Bug 1796156 - fix up inconsistencies in desktop Firefox modules with the old wiki, r=mossop,zeid,mconley,dmose,dao,mixedpuppy
Differential Revision: https://phabricator.services.mozilla.com/D159735
2022-10-25 10:49:20 +00:00
Jan de Mooij
ede44216f8 Bug 1797118 - Add missing peers to JS module. r=tcampbell,zeid
Differential Revision: https://phabricator.services.mozilla.com/D160075
2022-10-25 09:45:27 +00:00
Stephen A Pohl
a4e92ed3e3 Bug 1794039: mots clean to fix data for users spohl and dlee in mots.yaml. r=zeid
Differential Revision: https://phabricator.services.mozilla.com/D160087
2022-10-24 17:53:37 +00:00
Sebastian Hengst
f01697ca5b Bug 1796510 - fix Bugzilla component for onboarding module. r=zeid
Differential Revision: https://phabricator.services.mozilla.com/D159830
2022-10-20 13:24:44 +00:00
Andrew McCreight
26b95558c1 Bug 1794030, part 3 - Fix XPCOM peers in mots file. r=nika,zeid DONTBUILD
It looks like I got dropped in the import process or something,
so I added myself in. Emilio has also been added since this was
last updated.

I also fixed up some directories for the XPCOM and XPIDL modules,
deleting ones that no longer exist and adding new ones. A few
subdirectories like io/ still aren't covered but this at least
makes the situation better.

Differential Revision: https://phabricator.services.mozilla.com/D158804
2022-10-18 18:00:08 +00:00
Andrew McCreight
e9f0788463 Bug 1794030, part 2 - Fix cycle collector module in mots. r=zeid,peterv DONTBUILD
Peterv has always been a peer and anba hasn't been, so I guess this is some kind
of import error.

Differential Revision: https://phabricator.services.mozilla.com/D158803
2022-10-18 18:00:07 +00:00
Andrew McCreight
f900e6a61f Bug 1794030, part 1 - Run mots clean. r=zeid DONTBUILD
It wanted to make this fix, so I figured I'd split it into a separate commit.

The new name nick is confusing, but I'm not sure how to override it.

Differential Revision: https://phabricator.services.mozilla.com/D158802
2022-10-18 18:00:07 +00:00
Ted Campbell
95740f9c4c Bug 1791056 - Cleanup peer_emeritus list for JavaScript module. r=jandem,zeid
With great appreciation for their contributions, we move JavaScript peers who
are no longer active on the project to the emeritus list, including: caroline,
luke, sunfish, fitzgen, djvj, waldo. Also sort the peer lists alphabetically
since we never were very consistent about the order we added people.

Differential Revision: https://phabricator.services.mozilla.com/D157504
2022-09-19 12:49:02 +00:00
Ted Campbell
17065996c5 Bug 1791056 - Update module owner metadata for sfink. r=sfink,zeid
Use the correct Bugzilla ID that is tied to phabricator.

Depends on D157502

Differential Revision: https://phabricator.services.mozilla.com/D157503
2022-09-19 12:49:02 +00:00
Ted Campbell
985c168a7d Bug 1791056 - Add owners emeritus data to JavaScript module. r=jandem,zeid
Recognize the previous stewards of SpiderMonkey in the module owners data.

Depends on D157501

Differential Revision: https://phabricator.services.mozilla.com/D157502
2022-09-19 12:49:01 +00:00
Ted Campbell
f8f2557524 Bug 1791056 - Update JavaScript module owner metadata. r=jandem,zeid
Update URL and remove mailing list. Also add missing Bugzilla components
associated with the module.

Differential Revision: https://phabricator.services.mozilla.com/D157501
2022-09-19 12:49:01 +00:00
Andrew Halberstadt
8cc7cd659e Bug 1788120 - Add new 'Core: Firefox Source Documentation' module, r=zeid
Differential Revision: https://phabricator.services.mozilla.com/D156008
2022-08-30 20:45:00 +00:00
Zeid
e76495fa20 Bug 1780356: list toplevel at the top of the list r=mossop
Differential Revision: https://phabricator.services.mozilla.com/D154545
2022-08-23 14:16:58 +00:00
Zeid
6775468e9f Bug 1780354: update mots.yaml with better template r=mossop
Differential Revision: https://phabricator.services.mozilla.com/D154544
2022-08-23 14:16:58 +00:00
Sylvestre Ledru
6b782ad093 no bug - mots doc: update to use https by default r=zeid DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D154295
2022-08-12 07:28:24 +00:00
Dan Robertson
6d3555163e Bug 1782274 - mots: add hiro and dlrobertson to APZ peers. r=zeid
Differential Revision: https://phabricator.services.mozilla.com/D153234
2022-07-29 19:13:57 +00:00
Zeid Zabaneh
c800d1fef3 Bug 1737634: mots config file r=sheehan
This revision migrates all the content of the following modules:
- Desktop_Firefox
- Toolkit
- Core
- Testing

Up to the their state on Monday June 20th, 2022 in the old system.

The rst file was automatically generated by running `mots export`.

Differential Revision: https://phabricator.services.mozilla.com/D130508
2022-07-14 15:45:44 +00:00
Csoregi Natalia
52987dd4a5 Backed out changeset 85a7711e0e47 (bug 1737634) for causing bugzilla mapping failures. CLOSED TREE 2022-06-28 00:03:41 +03:00