Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

# [17.0.0-next.1](https://github.com/worktile/ngx-planet/compare/17.0.0-next.0...17.0.0-next.1) (2024-03-13)


### Bug Fixes

* sync portal router navigate in ngZone ([20259f9](https://github.com/worktile/ngx-planet/commit/20259f9945313aee7904d42274d7dd94a5a2afa0))


### Features

* support index.html as assets manifest and add entry instead of manifest, scripts, styles and resourcePathPrefix ([#308](https://github.com/worktile/ngx-planet/issues/308)) ([0670411](https://github.com/worktile/ngx-planet/commit/067041162ff7908f6cd950338e197847fa562308))



# [17.0.0-next.0](https://github.com/worktile/ngx-planet/compare/16.0.0...17.0.0-next.0) (2024-03-08)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@worktile/planet",
"version": "17.0.0-next.0",
"version": "17.0.0-next.1",
"description": "A powerful, reliable, fully-featured and production ready Micro Frontend library for Angular.",
"keywords": [
"micro front-end",
Expand Down
2 changes: 1 addition & 1 deletion packages/planet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@worktile/planet",
"version": "17.0.0-next.0",
"version": "17.0.0-next.1",
"private": false,
"peerDependencies": {
"@angular/common": "^17.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,7 @@ describe('PlanetApplicationRef', () => {

it(`should sync portal route change when sub app(app1) route navigate`, fakeAsync(() => {
const portalApplication = new PlanetPortalApplication();
portalApplication.ngZone = TestBed.inject(NgZone);
portalApplication.router = { navigateByUrl: () => {} } as any;
const navigateByUrlSpy = spyOn(portalApplication.router, 'navigateByUrl');
const ngModuleFactory = compiler.compileModuleSync(AppModule);
Expand Down