Angular 21 support and the new API for managing listen connection filters:
// new getter/setter
peer.connectionFilters; // get current filters
peer.connectionFilters = [
/* filters */
]; // set new filters
// listen changes
peer.listen(); // will use existing filters and start listening
peer.listen(newFilters); // will replace filters and start listeningFeatures
- add API to change listen connection filters (91e266c)