refactor(core): add ApplicationRef.prototype.bootstrapImpl with injector parameter#60622
refactor(core): add ApplicationRef.prototype.bootstrapImpl with injector parameter#60622dgp1130 wants to merge 1 commit intoangular:mainfrom
ApplicationRef.prototype.bootstrapImpl with injector parameter#60622Conversation
f3bd739 to
54baf5a
Compare
injector parameter to ApplicationRef.prototype.bootstrapApplicationRef.prototype.ɵbootstrap with injector parameter
54baf5a to
a520ef6
Compare
ApplicationRef.prototype.ɵbootstrap with injector parameterApplicationRef.prototype.bootstrapImpl with injector parameter
a520ef6 to
bd0e458
Compare
…`injector` parameter (#60622) This allows any components individually bootstrapped to inherit from a unique `Injector`. This is useful when bootstrapping multiple root components with different providers. For now, the function is private while we explore potential designs to consolidate it with the existing `ApplicationRef.prototype.bootstrap` method. PR Close #60622
|
This PR was merged into the repository by commit 7cb8639. The changes were merged into the following branches: main, 19.2.x |
…with an `injector` parameter (angular#60622)" This reverts commit 7cb8639.
|
@dgp1130 We unfortunately had to revert this. The test is broken post merge. The failure was that the |
|
@jessicajaniuk can you link me to the test failure? Not sure what would be going on here post-merge that would cause a failure. |
|
@dgp1130 I think you'll see it if you rebase first. Can you give that a try? |
bd0e458 to
5c2248f
Compare
5c2248f to
d49590d
Compare
…`injector` parameter This is a roll forward of commit d5a8a1c. Nothing is meaningfully different, as we're trying again to see if the CI failure is reproducible.
d49590d to
da970d1
Compare
|
This PR was merged into the repository by commit 2348f26. The changes were merged into the following branches: main, 19.2.x |
|
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
This allows any components individually bootstrapped to inherit from a unique
Injector. This is useful when bootstrapping multiple root components with different providers.Blocking cl/741690539.