Skip to content

Commit e62ded7

Browse files
committed
chore: release 0.0.10
1 parent 91e266c commit e62ded7

4 files changed

Lines changed: 29 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# [0.0.10](https://github.com/AmadeusITGroup/microfrontends/compare/0.0.9...0.0.10) (2025-11-26)
2+
3+
Angular 21 support and new API for managing listen connection filters at runtime.
4+
5+
```ts
6+
// new getter/setter
7+
peer.connectionFilters; // get current filters
8+
peer.connectionFilters = [
9+
/* filters */
10+
]; // set new filters
11+
12+
// listen changes
13+
peer.listen(); // will use existing filters and start listening
14+
peer.listen(newFilters); // will replace filters and start listening
15+
```
16+
17+
### Features
18+
19+
- add API to change listen connection filters ([91e266c](https://github.com/AmadeusITGroup/microfrontends/commit/91e266c78e00c65f2c3fb0527ac75b73a9908335))
20+
21+
### Fixes
22+
23+
- clean up `.listen()` API types ([d363169](https://github.com/AmadeusITGroup/microfrontends/commit/d3631696f528013a9520cb9925259838468fa9ff))
24+
- don't crash when trying to listen/connect in SSR environment ([1aca6cc](https://github.com/AmadeusITGroup/microfrontends/commit/1aca6ccbefcc1d40408ed07ef57efaed12217250))
25+
126
# [0.0.9](https://github.com/AmadeusITGroup/microfrontends/compare/0.0.8...0.0.9) (2025-09-02)
227

328
### Features

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/angular/lib/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@amadeus-it-group/microfrontends-angular",
33
"description": "Amadeus Micro Frontend Toolkit for Angular",
4-
"version": "0.0.9",
4+
"version": "0.0.10",
55
"license": "MIT",
66
"homepage": "https://github.com/AmadeusITGroup/microfrontends",
77
"repository": {
@@ -17,7 +17,7 @@
1717
],
1818
"peerDependencies": {
1919
"@angular/core": "^19.0.0 || ^20.0.0 || ^21.0.0",
20-
"@amadeus-it-group/microfrontends": "0.0.9",
20+
"@amadeus-it-group/microfrontends": "0.0.10",
2121
"rxjs": "^7.8.0"
2222
},
2323
"dependencies": {

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@amadeus-it-group/microfrontends",
33
"description": "Amadeus Micro Frontend Toolkit",
4-
"version": "0.0.9",
4+
"version": "0.0.10",
55
"license": "MIT",
66
"homepage": "https://github.com/AmadeusITGroup/microfrontends",
77
"repository": {

0 commit comments

Comments
 (0)