-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
CODEOWNERS
Validating CODEOWNERS rules...
439 lines (403 loc) · 12.6 KB
/
CODEOWNERS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
# The list in this file serves two purposes:
# 1. It keeps track of Functional Area Owners, allowing all participants
# to find which people to ping depending on the functional area involved.
# 2. It tells GitHub which maintainers to automatically assign for code reviews
# of incoming pull requests.
#
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners,
# the last matching pattern has the most precedence.
#
# See https://help.github.com/articles/about-codeowners/
#
# IMPORTANT:
# Because the last matching pattern takes the most precedence, we need to list
# the functional areas from most generic (e.g. Models & Repositories) to most
# narrow (e.g. MongoDB).
###############################################################################
# Functional areas covered by external repositories only:
#
# loopback4-example-shopping
# - Primary owner(s): @hacksparrow
# - Standby owner(s): @jannyHou @mrmodise @dougal83
#
# Connector core
# - Primary owner(s): n/a
# - Standby owner(s): @jannyHou
# - Repositories
# - loopback-connector
# - memory & kv-memory connectors in juggler
#
# OpenAPI connector
# - Primary owner(s): @raymondfeng
# - Standby owner(s): n/a
# - Repositories:
# - loopback-connector-openapi
#
# JSON-RPC connector:
# - Primary owner(s): n/a
# - Standby owner(s): n/a
# - Repositories:
# - loopback-connector-jsonrpc
#
# SOAP connector
# - Primary owner(s): @jannyHou
# - Standby owner(s): @raymondfeng
# - Repositories:
# - loopback-connector-soap
# - strong-soap
#
# Cassandra
# - Primary owner(s): @jannyHou
# - Standby owners(s): n/a
# - Repositories:
# - loopback-connector-cassandra
#
# IBM Databases
# - Primary owner(s): @emonddr
# - Secondary owner(s): @jannyHou
# - Repositories:
# - loopback-connector-db2
# - loopback-connector-dashdb
# - loopback-connector-db2iseries
# - loopback-connector-informix
# - loopback-connector-mqlight
# - loopback-connector-ibmi
# - loopback-connector-db2z
# - loopback-connector-zosconnectee
#
# Microsoft SQL
# - Issue label: db:MSSQL
# - Primary owner(s): @jannyHou
# - Standby owner(s): @agnes512
# - Repositories:
# - loopback-connector-mssql
#
# Oracle
# - Issue label: db:Oracle
# - Primary owner(s): @emonddr
# - Standby owner(s): n/a
# - Repositories:
# - loopback-connector-oracle
# Fall-back entry for files not assigned to any Functional Areas
* @raymondfeng
# To keep things simple, we don't assign any owners for the documentation.
# When some doc pages are changed as part of a pull request changing the
# implementation, then GitHub will assign the reviewers based on who is
# owning the code being modified.
# There will be no code owners assigned for pull requests changing
# the documentation only. We can improve this situation in the future,
# e.g. by re-organizing doc pages to align the file structure with functional
# areas.
/docs
#
# CLI (`lb4` infrastructure, commands not covered by functional areas below)
#
# - Issue label: CLI
# - Primary owner(s): @agnes512
# - Standby owner(s): @emonddr
/packages/cli @agnes512 @emonddr
#
# Dependency Injection, Inversion of Control and related areas
#
# - Issue label: IoC/Context
# - Primary owner(s): @raymondfeng
# - Standby owner(s): @emonddr @jannyHou
/packages/metadata @raymondfeng @emonddr @jannyHou
/packages/context @raymondfeng @emonddr @jannyHou
/examples/context @raymondfeng @emonddr @jannyHou
/packages/cli/generators/interceptor @raymondfeng @emonddr @jannyHou
/extensions/context-explorer @raymondfeng @emonddr
#
# Framework core
#
# - Issue label: Core
# - Primary owner(s): @raymondfeng
# - Standby owner(s): n/a
/packages/core @raymondfeng
/examples/rpc-server @raymondfeng
/examples/webpack @raymondfeng
/packages/cli/generators/observer @raymondfeng
#
# Infrastructure for extensions
#
# - Issue label: Extensions
# - Primary owner(s): @raymondfeng @jannyHou
# - Standby owner(s): @emonddr
/packages/core/src/component.ts @emonddr @jannyHou @raymondfeng
/extensions/cron @raymondfeng
/extensions/pooling @raymondfeng
/examples/greeting-app @emonddr @jannyHou @raymondfeng
/examples/log-extension @emonddr @jannyHou @raymondfeng
/examples/greeter-extension @emonddr @jannyHou @raymondfeng
/examples/multi-tenancy @raymondfeng
/docs/site/tutorials/core @emonddr @jannyHou @raymondfeng
#
# REST API (server-side)
#
# - Issue label: REST
# - Primary owner(s): @hacksparrow
# - Standby owner(s): @emonddr
/packages/rest @emonddr @hacksparrow
/packages/http-server @emonddr @hacksparrow
/packages/express @raymondfeng
/packages/cli/generators/controller @emonddr @hacksparrow
/examples/hello-world @emonddr @hacksparrow
/examples/express-composition @emonddr @hacksparrow
/examples/file-transfer @emonddr @hacksparrow @raymondfeng
/examples/binding-resolution @raymondfeng
#
# OpenAPI (server-side)
#
# - Issue label: OpenAPI
# - Primary owner(s): @jannyHou
# - Standby owner(s): @emonddr @mschnee
/packages/openapi-spec-builder @emonddr @jannyHou
/packages/openapi-v3 @emonddr @jannyHou @mschnee
/packages/rest/src/router/openapi-path.ts @emonddr @jannyHou
/packages/rest/src/__tests__/unit/router/rebase-openapi-spec.unit.ts @emonddr @jannyHou
/packages/rest/src/__tests__/unit/rest.server/rest.server.open-api-spec.unit.ts @emonddr @jannyHou
# REST API Explorer
#
# - Issue label: API Explorer
# - Primary owner(s): @hacksparrow
# - Standby owner(s): n/a
/packages/rest-explorer @hacksparrow
#
# Models & Repository
#
# - Issue label: Repository
# - Primary owner(s): @agnes512
# - Standby owner(s): @hacksparrow @dougal83
# Includes the following repos: loopback-datasource-juggler
/packages/filter @agnes512 @hacksparrow
/packages/repository @agnes512 @hacksparrow @dougal83
/packages/repository-json-schema @agnes512 @hacksparrow @dougal83
/packages/repository-tests @agnes512 @hacksparrow
/packages/cli/generators/repository @agnes512 @hacksparrow
/packages/cli/generators/datasource @agnes512 @hacksparrow
/packages/cli/generators/discover @agnes512 @hacksparrow
/packages/cli/generators/model @agnes512 @hacksparrow
#
# Model relations & repositories
#
# - Issue label: Relations
# - Primary owner(s): @agnes512
# - Standby owner(s): @hacksparrow @nabdelgadir
/packages/repository/src/relations @agnes512 @hacksparrow @nabdelgadir
/packages/repository-tests/src/crud/relations @agnes512 @hacksparrow @nabdelgadir
/packages/repository/src/__tests__/acceptance/has-many-without-di.relation.acceptance.ts @agnes512 @hacksparrow @nabdelgadir
/packages/repository/src/__tests__/integration/repositories/relation.factory.integration.ts @agnes512 @hacksparrow @nabdelgadir
/packages/cli/generators/relation @agnes512 @hacksparrow @nabdelgadir
/examples/todo-list @agnes512 @hacksparrow @nabdelgadir
/examples/references-many @agnes512 @hacksparrow @nabdelgadir
/docs/site/tutorials/todo-list/ @agnes512 @hacksparrow @nabdelgadir
#
# Services (infrastructure for SOAP/REST clients)
#
# - Issue label: Service Proxy
# - Primary owner(s): @raymondfeng
# - Standby owner(s): n/a
# Includes the following repos: loopback-connector-rest
/packages/service-proxy @raymondfeng
/packages/cli/generators/service @raymondfeng
# The SOAP Calculator examples is a bit special, we want to preserve
# Mario as the code owner of this specific subarea only
/examples/soap-calculator @raymondfeng @marioestradarosa
/docs/site/tutorials/soap-calculator @raymondfeng @marioestradarosa
#
# `lb4 openapi` (scaffold an LB4 app from the given OpenAPI spec)
#
# - Issue label: n/a
# - Primary owner(s): @raymondfeng
# - Standby owner(s): @jannyHou
/packages/cli/generators/openapi @jannyHou @raymondfeng
#
# LB4 project conventions
#
# - Issue label: n/a
# - Primary owner(s): @agnes512
# - Standby owner(s): n/a
/packages/cli/generators/project @agnes512
/packages/cli/generators/app @agnes512
/packages/cli/generators/extension @agnes512
/examples/todo @agnes512 @nabdelgadir
/examples/validation-app @dhmlau
/docs/site/tutorials/todo @agnes512 @nabdelgadir
#
# Bootstrapper (core)
#
# - Issue label: Boot
# - Primary owner(s): @jannyHou
# - Standby owner(s): n/a
/packages/boot @jannyHou
#
# Migration from LB3
#
# - Issue label: Migration
# - Primary owner(s): @hacksparrow
# - Standby owner(s): @nabdelgadir
/packages/booter-lb3app @hacksparrow @nabdelgadir
/packages/cli/generators/import-lb3-models @hacksparrow @nabdelgadir
/examples/lb3-application @hacksparrow @nabdelgadir
/docs/site/migration @hacksparrow @nabdelgadir
#
# REST CRUD conventional API
#
# - Issue label: n/a
# - Primary owner(s): n/a
# - Standby owner(s): @hacksparrow @nabdelgadir
/packages/model-api-builder @hacksparrow
/packages/rest-crud @nabdelgadir
/examples/rest-crud @nabdelgadir
#
# Cloud Native tooling
#
# - Issue label: CloudNative
# - Primary owner(s): @jannyHou @raymondfeng
# - Standby owner(s): @emonddr @nflaig
/extensions/metrics @emonddr @jannyHou @raymondfeng @nflaig
/extensions/health @emonddr @jannyHou @raymondfeng @nflaig
/extensions/logging @emonddr @jannyHou @raymondfeng
/examples/metrics-prometheus @emonddr @jannyHou @raymondfeng
/acceptance/extension-logging-fluentd @emonddr @jannyHou @raymondfeng
#
# Authentication
#
# - Issue label: Authentication
# - Primary owner(s): @hacksparrow
# - Standby owner(s): @emonddr @jannyHou @Madaky @nflaig
/packages/authentication @emonddr @hacksparrow @jannyHou @nflaig
/packages/security @emonddr @hacksparrow @jannyHou
/extensions/authentication-passport @emonddr @hacksparrow @jannyHou
/extensions/authentication-jwt @emonddr @hacksparrow @jannyHou @Madaky
/docs/site/tutorials/authentication @emonddr @hacksparrow @jannyHou
/examples/passport-login @emonddr
/examples/todo-jwt @dhmlau @jannyHou
#
# Authorization
#
# - Issue label: Authorization
# - Primary owner(s): @hacksparrow
# - Standby owner(s): @jannyHou
/packages/authorization @hacksparrow @jannyHou
/examples/access-control-migration @hacksparrow @jannyHou
#
# APIConnect
#
# - Issue label: APIConnect
# - Primary owner(s): @raymondfeng
# - Standby owner(s): @dhmlau
/extensions/apiconnect @raymondfeng @dhmlau
#
# TypeORM
#
# - Issue label: TypeORM
# - Primary owner(s): @hacksparrow
# - Standby owner(s): n/a
/extensions/typeorm @hacksparrow
# GraphQL
#
# - Issue label: GraphQL
# - Primary owner(s): @raymondfeng
/extensions/graphql @raymondfeng
/examples/graphql @raymondfeng
#
# Sequelize
#
# - Issue label: Sequelize
# - Primary owner(s): @shubhamp-sf
# - Standby owner(s): @samarpanB
/extensions/sequelize @shubhamp-sf @samarpanB
#
# MessagePack body parser
#
# - Issue label: n/a
# - Primary owner(s): @achrinza
# - Standby owner(s): n/a
/bodyparsers/rest-msgpack @achrinza
# WebSocket/SockIO
#
# - Issue label: WebSocket
# - Primary owner(s): @raymondfeng
# - Standby owner(s): n/a
/extensions/socketio @raymondfeng
/examples/socketio @raymondfeng
#
# Build & internal tooling
#
# - Issue label: Internal Tooling
# - Primary owner(s): @raymondfeng
# - Standby owner(s): @emonddr
/bin @emonddr @raymondfeng
/packages/build @emonddr @raymondfeng @achrinza
/packages/eslint-config @emonddr @raymondfeng
/packages/tsdocs @emonddr @raymondfeng
/fixtures/tsdocs-monorepo @emonddr @raymondfeng
/packages/cli/generators/update @emonddr @raymondfeng
/packages/cli/generators/copyright @emonddr @raymondfeng
#
# Test helpers
#
# - Issue label: Testlab
# - Primary owner(s): n/a
# - Standby owner(s): @agnes512
/packages/testlab @agnes512
/packages/http-caching-proxy @agnes512
#
# Benchmarks
#
# - Issue label: n/a
# - Primary owner(s): n/a
# - Standby owner(s): n/a
# /benchmark
#
# PostgreSQL
#
# - Issue label: db:PostgreSQL
# - Primary owner(s): @jannyHou
# - Standby owner(s): @agnes512
# Includes the following repos: loopback-connector-postgresql
/acceptance/repository-postgresql @agnes512 @jannyHou
#
# MySQL
#
# - Issue label: db:MySQL
# - Primary owner(s): @jannyHou
# - Standby owner(s): @agnes512
# Includes the following repos: loopback-connector-mysql
/acceptance/repository-mysql @agnes512 @jannyHou
#
# MongoDB
#
# - Issue label: db:MongoDB
# - Primary owner(s): n/a
# - Standby owner(s): @agnes512 @hacksparrow
# Includes the following repos: loopback-connector-mongodb
/acceptance/repository-mongodb @agnes512 @hacksparrow
#
# Cloudant & CouchDB2
#
# - Issue label: db:Cloudant
# - Primary owner(s): @jannyHou
# - Standby owner(s): @agnes512
# Includes the following repos
# - loopback-connector-cloudant
# - loopback-connector-couchdb2
# - (and other related/base connectors)
/acceptance/repository-cloudant @agnes512 @jannyHou
# Redis (KeyValue)
#
# - Issue label: n/a
# - Primary owner(s): n/a
# - Standby owner(s): n/a
# Includes the following repos
# - loopback-connector-kv-redis
# (there is no acceptance/repository-kv-redis yet)
#
# Fixtures (test apps)
#
# - Issue label: fixtures
# - Primary owner(s): @jannyHou @emonddr
# - Standby owner(s): n/a
fixtures/mock-oauth2-provider @jannyHou @emonddr