summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* Fix import path for initial migration github/dev/reorder-src dev/reorder-srcRory&2026-06-121-1/+1
|
* Bundle: drop unused index.ts, avoid re-exporting all other componentsRory&2026-06-121-22/+0
|
* api/widget: dont import the entirety of the CDN serverRory&2026-06-121-1/+1
|
* CDN: unify imports layoutRory&2026-06-1222-82/+50
|
* Move more extensions to extensionsRory&2026-06-1242-90/+137
|
* Move migrations to databaseRory&2026-06-1177-731/+842
|
* Fix recursive import in databaseRory&2026-06-113-218/+216
|
* Move entities to databaseRory&2026-06-11250-537/+694
|
* Move database to toplevelRory&2026-06-1118-36/+65
|
* Remove extraneous exportRory&2026-06-111-1/+0
|
* Use subpath imports for lambert-server, fix openapi.jsRory&2026-06-1185-95/+95
|
* Allow subpath imports, move extensions to separate moduleRory&2026-06-1118-22/+53
|
* Allow subpath imports from module aliasesRory&2026-06-111-7/+7
|
* Dont send guild_add for autojoin guilds on register, disable bcrypt workers ↵Rory&2026-06-115-119/+132
| | | | as doing it in thread is slightly faster
* Deduplicate channel positions queryRory&2026-06-111-8/+7
|
* Assertions first, use exists rather than count/findRory&2026-06-111-14/+9
|
* Dont fetch entire channel for welcome message, dont fail if channel doesnt existRory&2026-06-111-7/+4
|
* Handle welcome message as insert + updateRory&2026-06-111-4/+3
|
* Bcrypt worker threadsRory&2026-06-115-3/+121
|
* Trace registrationRory&2026-06-113-13/+59
|
* Clean up tests a littleRory&2026-06-0910-132/+96
|
* Use better permissions when handling webhook mentionsRory&2026-06-053-6/+14
|
* Log silent attachment failures for webhooksRory&2026-06-051-0/+1
|
* Unit tests for webhooksRory&2026-06-0510-11/+255
|
* Return url on webhook createRory&2026-06-051-0/+1
|
* User: handle autojoin synchronouslyRory&2026-06-051-12/+4
|
* Some basic unit testsRory&2026-06-0514-0/+437
|
* More C# models, split basic client SDK from clientRory&2026-06-0517-27/+241
|
* Clean up import in Monitoring, close webrtc connection on IPC failure, add ↵Rory&2026-06-056-59/+61
| | | | LOG_API_ERRORS env var
* HTTP: reblanace buckets to prefer smaller response timesRory&2026-05-291-1/+1
|
* Nix: prometheus supportRory&2026-05-282-0/+48
|
* Add grafana dashboardRory&2026-05-281-0/+1734
|
* Merge branch 'dev/monitoring'Rory&2026-05-2816-9/+251
|\
| * IPC: shutdown hooks github/dev/monitoring dev/monitoringRory&2026-05-281-1/+1
| |
| * IPC metricsRory&2026-05-283-4/+9
| |
| * monitoring: add helper to register a metric without duplicatingRory&2026-05-281-3/+11
| |
| * monitoring: ignore OPTIONS requests that dont have a route handlerRory&2026-05-281-6/+8
| |
| * nixos tests: check metrics endpoints on TS servicesRory&2026-05-281-1/+9
| |
| * Monitoring: tag HTTP response rate histogram by route rather than request urlRory&2026-05-282-5/+44
| |
| * */Server.ts: Handle metrics requestsRory&2026-05-283-0/+8
| |
| * */Server.ts: Add monitoring init hookRory&2026-05-285-2/+77
| |
| * CodeOwners: claim /nix dirRory&2026-05-281-1/+2
| |
| * Move why-is-node-running to dependenciesRory&2026-05-282-3/+3
| |
| * Process lifecycle scriptsRory&2026-05-2815-98/+294
| |
* | CodeOwners: claim /nix dir github/dev/backport/from-monitoring/ProcessLifecycle dev/backport/from-monitoring/ProcessLifecycleRory&2026-05-281-1/+2
| |
* | Move why-is-node-running to dependenciesRory&2026-05-282-5/+4
| |
* | Process lifecycle scriptsRory&2026-05-2816-95/+195
|/ | | | | | | | | | | | | #Conflicts: # src/api/Server.ts # src/bundle/Server.ts # src/cdn/Server.ts # src/gateway/Server.ts # src/gateway/events/Connection.ts # src/util/util/ipc/listener/RabbitMqSingleListener.ts # src/util/util/ipc/listener/UnixSocketListener.ts # src/util/util/ipc/writer/UnixSocketWriter.ts # src/webrtc/Server.ts
* Concurrent identify stress scriptRory&2026-05-282-2/+90
|
* IPC: shutdown hooksRory&2026-05-284-7/+15
| | | | | #Conflicts: # src/util/util/ipc/listener/UnixSocketListener.ts
* Gateway: send reconnect on shutdownRory&2026-05-281-0/+11
|
* Fix some copyright headersRory&2026-05-261-1/+1
|
* Break up bulk inserts for read states to avoid postgres parameter exhaustionRory&2026-05-264-10/+68
|
* Trace fillInMissingIDsRory&2026-05-262-29/+51
|
* Bulk insert missing ReadStatesRory&2026-05-261-14/+24
|
* No longer handle mention_count == null since its no longer nullableRory&2026-05-261-22/+20
|
* Use forEach rather than .map.forEachRory&2026-05-261-1/+1
|
* Add full traceRory&2026-05-261-5/+25
|
* Use sets for mention roles/usersRory&2026-05-264-23/+57
|
* Simplify some queries for handling mentionsRory&2026-05-261-11/+14
|
* User mentions: use `user_id IN (...)` rather than `user_id = ... OR user_id ↵Rory&2026-05-261-1/+1
| | | | = ...`
* Move message mention handling to separate functionRory&2026-05-261-132/+144
|
* Better error handling in rabbitmqsinglelistener/writerRory&2026-05-262-14/+49
|
* Add startup test for legacy rabbitmq setupRory&2026-05-261-2/+9
|
* Add NixOS test for starting with rabbitmq-single ipcRory&2026-05-265-20/+54
|
* Nix: expose EVENT_TRANSMISSION as an optionRory&2026-05-261-3/+17
|
* Demote default rabbitmq behavior, implement init for all ↵Rory&2026-05-261-34/+44
| | | | BaseEventWriter/Listener abstracted implementations
* Move publishEvent to RabbitMQ.tsRory&2026-05-262-29/+28
|
* Move rabbitListen to RabbitMQ.tsRory&2026-05-262-53/+55
|
* Clean up unused imports in IPC codeRory&2026-05-263-4/+2
|
* Add untested rabbitmq single-channel IPCRory&2026-05-267-37/+228
|
* Split unix socket IPC to separate files, add interfacesRory&2026-05-267-530/+627
|
* channelOrdering: fix null refRory&2026-05-251-0/+2
|
* Fix db models buildRory&2026-05-251-2/+1
|
* side tangent: update C# DB model, fix admin api authRory&2026-05-2517-77/+307
|
* fix migrations scriptRory&2026-05-251-1/+1
|
* Fix some copyright headers github/dev/cherry dev/cherryRory&2026-05-241-0/+18
|
* */start.ts: unify import order for module-alias and dotenvRory&2026-05-246-19/+49
|
* Clean up erlpack typesRory&2026-05-246-48/+3
|
* Side tangent: fix prettier complaintsRory&2026-05-243-3/+10
|
* Clean up unused binding in cdn-cs nix moduleRory&2026-05-241-1/+0
|
* Fix github workflowsRory&2026-05-242-29/+1
|
* Update npm packages, patchesRory&2026-05-244-93/+95
|
* Fix patchesRory&2026-05-242-2/+2
|
* test VM: expose pion portRory&2026-05-241-0/+6
|
* Add internal status order enumRory&2026-05-195-9/+16
|
* Bundle tests: dont use gateway offloadRory&2026-05-191-7/+0
|
* Rework status enum schemaRory&2026-05-197-59/+115
|
* cs: bump microsoft/system.*Rory&2026-05-1924-217/+218
|
* cs: bump Magick.NETRory&2026-05-1920-50/+50
|
* npm: update node-zstd to 2.0.0Rory&2026-05-192-58/+41
|
* npm: update amqplib to 2.0.1Rory&2026-05-192-14/+5
|
* npm minor package updatesRory&2026-05-192-544/+958
|
* LazyRequest: dont pseudo-force users to be onlineRory&2026-05-191-7/+1
|
* Update nix inputsRory&2026-05-171-3/+3
|
* Side tangent: fix bug in cdn-cs nix moduleRory&2026-05-171-1/+1
|
* client: basic message parsing, gateway listeningRory&2026-05-1718-29/+664
|
* Add WIP clientRory&2026-05-0849-33/+1369
|
* Offload compile fixRory&2026-05-081-7/+26
|
* Update CS modelsRory&2026-05-0813-2/+690
|
* Compliance: add user_id and user_settings to login responseRory&2026-05-051-1/+1
|
* CDN-CS workRory&2026-05-048-47/+80
|
* switch to harmony-erlpackRory&2026-05-034-428/+34
|
* handle constraints on webhook deleteRory&2026-05-031-1/+32
|
* Clarify STORAGE_FORCE_PATH_STYLE env behaviorohmwraith2026-04-291-1/+1
|
* Implement S3 force path-style supportohmwraith2026-04-292-2/+10
|
* Register: cache blocked IPsRory&2026-04-284-325/+402
|
* Document why ImageProxy.ts existsRory&2026-04-261-0/+1
|
* Add deprecation warning for database configRory&2026-04-251-0/+9
|
* Constrain role name lengthsRory&2026-04-242-0/+6
|
* Move email domain lists to assetsRory&2026-04-242-0/+0
|
* Refactor update-deps.cs, update dotnet depsRory&2026-04-2451-1727/+479
|
* Fix CDN s3 importRory&2026-04-241-1/+1
|
* Hexdump CDN hashesRory&2026-04-214-0/+145
|
* Update genIndex to add ane xtra newlineRory&2026-04-201-0/+1
|
* Clean up schemas a bitRory&2026-04-202-0/+19
|
* Clean up schemas/uncategorised a bitRory&2026-04-207-1/+58
|
* Clean up schemas/responses a bitRory&2026-04-2016-34/+35
|
* Clean up schemas/gateway a bitRory&2026-04-207-18/+57
|
* Clean up schemas/api a bitRory&2026-04-2016-14/+137
|
* Clean up imports in schemas/api/botsRory&2026-04-2018-194/+177
|
* Merge AckBulkSchema into MessageAcknowledgeSchema.tsRory&2026-04-204-27/+9
|
* Clean some unused importsRory&2026-04-192-3/+2
|
* Fix guild discoveryRory&2026-04-192-4/+4
|
* Update readmeRory&2026-04-191-6/+9
|
* eslint: reapply after rebasing on #1631Rory&2026-04-191-1/+1
|
* eslint: yodaRory&2026-04-194-5/+7
|
* eslint: default-caseRory&2026-04-193-0/+17
|
* eslint: arrow-body-style=as-neededRory&2026-04-1920-203/+147
|
* eslint: no-promise-executor-returnRory&2026-04-1910-15/+16
|
* eslint: more rules, no-duplicate-importsRory&2026-04-1911-29/+19
|
* eslint: array callback return, no restricted importsRory&2026-04-1972-141/+175
|
* Minor package updatesRory&2026-04-192-39/+39
|
* CDN: clean up unused importsRory&2026-04-1916-133/+16
|
* Merge pull request #1631 from CyberL1/fix/account-connections-visibilityCyber2026-04-193-2/+61
|\
| * fix comment typoCyberL12026-04-191-1/+1
| |
| * remove oversightCyberL12026-04-191-4/+0
| |
| * fix: expose metadata if should be visibleCyberL12026-04-191-1/+2
| |
| * fix: expose only public propertiesCyberL12026-04-193-2/+53
| |
| * fix: select `visibility` on `connected_accounts`CyberL12026-04-191-0/+11
|/
* Make connections more verbose and include some setup instructionsRory&2026-04-1924-247/+122
|
* NPM updates: typescript 6.0Rory&2026-04-182-5/+5
|
* NPM updates: amqplibRory&2026-04-182-30/+7
|
* NPM updates 2Rory&2026-04-187-77/+121
|
* NPM updateRory&2026-04-184-551/+408
|
* Run prettier, remove accidental importsRory&2026-04-183-12/+10
|
* Attachment -> PublicAttachment in schemasRory&2026-04-186-102/+328
|
* Remove irrelevant TODORory&2026-04-181-1/+0
|
* Fix TOTPRory&2026-04-182-2/+2
|
* Fix error logging, dont use simple-arrayRory&2026-04-1813-20/+76
|
* Split out attachment handling from message handlerRory&2026-04-185-268/+278
|
* Attempt to set channel/message id for attachments in more placesRory&2026-04-182-1/+3
|
* handleMessage: set message id for cloud attachmentsRory&2026-04-181-0/+4
|
* Gateway: get around some typeorm weirdnessRory&2026-04-181-0/+4
|
* Update CS models, depsRory&2026-04-18121-857/+1007
|
* Fix up some straggler columnsRory&2026-04-181-1/+1
|
* Fix missed relationsRory&2026-04-181-0/+39
|
* Fix attachments 2Rory&2026-04-183-15/+26
|
* Fix attachmentsRory&2026-04-1816-135/+159
|
* No attachment URLsRory&2026-04-182-14/+47
|
* jsonbRory&2026-04-1818-52/+137
|
* re-reconcile migrationsRory&2026-04-182-0/+16
|
* int8 primary keysRory&2026-04-1816-3/+677
|
* Add media1.tenor.com explicitly as image handlerRory&2026-04-141-0/+1
|
* Explicitly specify status for temp sessions, since that suddenly broke...?Rory&2026-04-131-0/+1
|
* Fix op19 property not found errorRory&2026-04-131-1/+1
|
* Make presence clear async, clean up temp session codeRory&2026-04-134-22/+23
|
* Presence disconnect works!Rory&2026-04-133-5/+10
|
* Time out presenceRory&2026-04-133-4/+5
| | | | | | Sourced from #1541 Co-authored-by: Davide <137603413+LW-Davide@users.noreply.github.com>
* Mark users as offline when gateway connection is closedRory&2026-04-131-1/+30
| | | | | | Part of #1541 Co-authored-by: Davide <137603413+LW-Davide@users.noreply.github.com>
* prep for presenceRory&2026-04-133-24/+83
|
* testvm: unwrap vmVariant settingsRory&2026-04-131-22/+20
|
* Emit presence on identify, support deduped gw eventsRory&2026-04-138-4/+85
|
* Update nixRory&2026-04-133-7/+7
|
* Align Message object with API specwhinis2026-04-131-7/+6
|
* Fix Typing event so that it returns undefined rather than nullwhinis2026-04-134-22/+11
| | | | Added clean data to message entity so it respects json tags.
* Maybe fix an issue elisa had with discord.pywhinis2026-04-131-0/+6
|
* Added the @JsonRemoveEmpty decrorator to most of the fields in the message ↵whinis2026-04-131-0/+24
| | | | class. Hopefully shouldn't break anything.
* nix: dont set __nugetDeps if nugetDeps isnt setRory&2026-04-121-1/+1
|
* CDN-CS: support passing a bin path as cdn worker -> forks a new procRory&2026-04-126-17/+63
|
* CDN-CS: it works!!!Rory&2026-04-1218-480/+570
|
* Cdn cs worker cleanupRory&2026-04-1119-253/+220
|
* Functioning CDN-CS workersRory&2026-04-1110-47/+283
|
* C# outputs.nix: factor out a let..in to outer levelRory&2026-04-101-181/+178
|
* Switch over all c# stuff to use buildSpacebarDotnetModuleRory&2026-04-101-284/+246
|
* Fix buildSpacebarDotentModuleRory&2026-04-101-1/+1
|
* Fix cdn worker docker iamgesRory&2026-04-101-11/+13
|
* Clean up update scriptRory&2026-04-102-35/+49
|
* Add nix packages for all worker variantsRory&2026-04-1013-0/+302
|
* Honor passed packNupkg valueRory&2026-04-061-1/+1
|
* Update deps.json for cdn-csRory&2026-04-061-2/+2
|
* Fix tests, maybe fix VM configRory&2026-04-062-2/+11
|
* Fix indentation slightly in cs outputs.nixRory&2026-04-061-10/+10
|
* Factor out some lib stuff from nixRory&2026-04-0614-421/+373
|
* revert the change on ElapsedTime read-only classOh642026-04-062-10/+6
|
* indexes on instance_bans lookup columnsOh642026-04-061-1/+4
|
* use arrayGroupBy, include group time in query tracesOh642026-04-062-47/+28
|
* Refactor Identify : batch guild queries and parallelise relation fetchesOh642026-04-063-56/+92
|
* CS-CDN changes from worker stuffRory&2026-04-065-60/+60
|
* Introduce CDN worker skeletonRory&2026-04-0618-39/+512
|
* Minor test vm fixesRory&2026-04-061-2/+2
|
* Merge pull request #1622 from CyberL1/fix/github-embedsCyber2026-03-311-1/+20
|\
| * fix: make github webhooks embeds have `rich` typeCyberL12026-03-311-1/+20
|/
* Update dotnet depsRory&2026-03-2812-137/+1332
|
* Re-scaffold C# dbRory&2026-03-288-33/+230
|
* Update schemasRory&2026-03-282-0/+8
|
* Update node packagesRory&2026-03-282-191/+194
|
* Update nix inputsRory&2026-03-281-6/+6
|
* Add indexes to instance bans tableRory&2026-03-271-0/+23
|
* EmbedHandlers: more configuration for embeds, switch to storing all returned ↵Rory&2026-03-267-40/+117
| | | | embeds
* EmbedHandlers: use youtube handler for youtube music, use OrmUtils.mergeDeep ↵Rory&2026-03-261-5/+3
| | | | for request options
* User: use single query to determine taken discriminatorsRory&2026-03-261-6/+5
|
* Embeds: factor out from postMessageRory&2026-03-266-134/+202
|
* Fix voice state query trying to include memberRory&2026-03-213-11/+28
|
* add channel status migrationRory&2026-03-211-0/+13
|
* lambert-server: Remove unused errorHandler optionRory&2026-03-211-1/+1
|
* lambert-server: Remove unused jsonBody optionRory&2026-03-212-3/+1
|
* lambert-server: dont overwrite express Router classRory&2026-03-211-9/+0
|
* Fix schemas scriptRory&2026-03-215-9344/+10193
|
* lambert-server: remove global namespace pollution for serverRory&2026-03-211-9/+0
|
* make spacebar compile again github/dev/emma/as-to-satisfies-gw dev/emma/as-to-satisfies-gwOh642026-03-2112-50/+91
|
* Add WIP PublicMessage schemaRory&2026-03-211-1/+79
|
* More schema stuffRory&2026-03-212-15/+4
|
* Message toJSON -> null vs undefinedRory&2026-03-211-9/+5
|
* Message*Event: as->satisfies (WIP)Rory&2026-03-2110-18/+21
|
* MessageCreate/UpdateEvent: use PublicMessageRory&2026-03-201-2/+3
|
* MessageActivity: add type enumRory&2026-03-201-1/+11
|
* Migrate MessageReaction*Event to satisfies, part of #1577Rory&2026-03-201-7/+9
|
* Migrate TypingStartEvent to satisfies, part of #1577Rory&2026-03-201-1/+1
|
* Migrate Thread*Event to satisfies, part of #1577Rory&2026-03-208-29/+93
|
* Migrate MessageDelete*Event to satisfies, part of #1577Rory&2026-03-203-3/+3
|
* Migrate ReadyEventData to satisfies, part of #1577Rory&2026-03-201-1/+1
|
* Migrate UserDeleteEvent to satisfies, part of #1577Rory&2026-03-201-1/+1
|
* Migrate MessageAckEvent to satisfies, part of #1577Rory&2026-03-201-2/+2
|
* Migrate Stream*Event to satisfies, part of #1577Rory&2026-03-203-6/+6
|
* Migrate PresenceUpdateEvent to satisfies, part of #1577Rory&2026-03-204-21/+17
|
* Migrate UserUpdateEvent to satisfies, part of #1577Rory&2026-03-202-2/+2
|
* Migrate VoiceS*Event to satisfies, part of #1577Rory&2026-03-205-9/+22
|
* Migrate Invite*Event to satisfies, part of #1577Rory&2026-03-202-2/+2
|
* Migrate Channel*Event to satisfies, part of #1577Rory&2026-03-205-11/+11
|
* Migrate WebhooksUpdateEvent to satisfies, part of #1577Rory&2026-03-202-8/+8
|
* Migrate Relationship*Event to satisfies, part of #1577Rory&2026-03-201-8/+8
|
* Migrate Member#addToGuild GuildCreateEvent to satisfies, part of #1577Rory&2026-03-202-2/+4
|
* Migrate GuildStickersUpdateEvent to satisfies, part of #1577Rory&2026-03-201-1/+1
|
* Migrate GuildRole*Event to satisfies, part of #1577Rory&2026-03-202-4/+4
|
* Migrate GuildEmoji*Event to satisfies, part of #1577Rory&2026-03-201-3/+3
|
* Migrate GuildMember*Event to satisfies, part of #1577Rory&2026-03-202-28/+30
|
* Migrate GuildDeleteEvent to satisfies, part of #1577Rory&2026-03-202-2/+2
|
* Migrate GuildBan*Event to satisfies, part of #1577Rory&2026-03-203-5/+5
|
* Migrate ChannelRecipient*Event to satisfies, part of #1577Rory&2026-03-204-9/+11
|
* Migrate ChannelPinsUpdateEvent to satisfies, part of #1577Rory&2026-03-202-4/+4
|