Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
67c1093
initial commit of appservice
sampaiodiego Apr 23, 2026
6f043ad
remove unused methods
sampaiodiego Apr 23, 2026
8913a0e
add missing features
sampaiodiego Apr 23, 2026
c8b92d7
improve initialization
sampaiodiego Apr 27, 2026
0932ef3
refactor: standardize batch window configuration and remove unused pa…
sampaiodiego Apr 27, 2026
b1084df
refactor: enhance event routing by using typed event names and improv…
sampaiodiego Apr 27, 2026
6a9934f
feat: add source field to AppServiceRegistration and implement source…
sampaiodiego Apr 27, 2026
8d4d117
use setRoomStateResolver to match rooms by canonical aliases
sampaiodiego May 6, 2026
a417ec6
match user id with with server name
sampaiodiego May 7, 2026
4974087
save public room's aliases
sampaiodiego May 7, 2026
93c05d3
route persistent events to bridges
sampaiodiego May 7, 2026
4018abc
fix appservices state being reset
sampaiodiego May 7, 2026
54bb2c1
expose joinUser
sampaiodiego May 8, 2026
e6f8225
send complete events
sampaiodiego May 18, 2026
4ab5329
fix query local users
sampaiodiego May 18, 2026
e396c82
route more events to appservices (so file upload works)
sampaiodiego May 25, 2026
a50a662
add support to ephemeral events
sampaiodiego May 27, 2026
06ccac4
create appservice bot user on startup
sampaiodiego May 28, 2026
de4e3bb
read xmpp config to initialize bridge
sampaiodiego Jun 1, 2026
fa5e486
add HTTP support for fetch()
sampaiodiego Jun 1, 2026
490c62d
create appservice user as a rocketchat bot
sampaiodiego Jun 1, 2026
e51ed10
add joinXMPPChatRoom method to sdk
sampaiodiego Jun 1, 2026
1fcc338
rename collections
sampaiodiego Jun 2, 2026
dcbcd37
code style
sampaiodiego Jun 2, 2026
60f4178
update architecture guide
sampaiodiego Jun 2, 2026
82b6c7c
fix regex
sampaiodiego Jun 2, 2026
df13885
fix query room alias request
sampaiodiego Jun 2, 2026
e65db5e
fix out-of-order transactions
sampaiodiego Jun 2, 2026
5bfea59
bump federation-sdk to 0.7.0-beta.0
sampaiodiego Jun 2, 2026
6c450fa
chore: add repository field to package.json for federation-sdk
sampaiodiego Jun 2, 2026
d16a425
add missing appservice package to bundle
sampaiodiego Jun 2, 2026
342f51f
bump federation-sdk to 0.7.0-beta.1
sampaiodiego Jun 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 24 additions & 10 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const filterWorkspace = (deps: Record<string, unknown>) =>
Object.fromEntries(Object.entries(deps || {}).filter(([, value]) => typeof value === 'string' && !value.startsWith('workspace:')));

// TODO get list of packages programmatically
const packages = ['core', 'crypto', 'federation-sdk', 'room'];
const packages = ['core', 'crypto', 'federation-sdk', 'room', 'appservice'];

const localPackagesNames = getLocalPackages(packages);

Expand Down
Loading
Loading