You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: rename getSingleSpaExtraProviders to provideSingleSpaPlatform & add provideSingleSpa() (#567)
BREAKING CHANGE: getSingleSpaExtraProviders has been renamed to provideSingleSpaPlatform
to better align with Angular's naming conventions for provider functions.
Before:
const platformRef = platformBrowser(getSingleSpaExtraProviders());
After:
const platformRef = platformBrowser(provideSingleSpaPlatform());
Also added provideSingleSpa, a new environment provider to be used at the
application level (e.g. in bootstrapApplication or an NgModule).
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,3 +27,5 @@ The package has been republished under the `@single-spa-community` scope due to
27
27
|`21.x`|`21.x`|
28
28
|`20.x`|`20.x`|
29
29
|`19.x`|`19.x`|
30
+
31
+
> **Note:** This package follows a lock-step versioning strategy — the major version is aligned with Angular's major version to make compatibility obvious at a glance. This means a major bump does not necessarily indicate a breaking change in this package's own API.
0 commit comments