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
refactor(core): fix deprecation version for APP_INITIALIZER and PLATF…
…ORM_INITIALIZER

this commit changes deprecation version mentioned in JSDocs for APP_INITIALIZER and PLATFORM_INITIALIZER from 18.1.0 to 19.0.0
  • Loading branch information
pawelfras committed Oct 23, 2024
commit 96d758539cb46f0dbb58068e13e714dab3493d2d
3 changes: 1 addition & 2 deletions packages/core/src/application/application_init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import {
InjectionToken,
Injector,
makeEnvironmentProviders,
Provider,
runInInjectionContext,
} from '../di';
import {RuntimeError, RuntimeErrorCode} from '../errors';
Expand All @@ -36,7 +35,7 @@ import {isPromise, isSubscribable} from '../util/lang';
*
* Note that the provided initializer is run in the injection context.
*
* @deprecated from v18.1.0, use provideAppInitializer instead
* @deprecated from v19.0.0, use provideAppInitializer instead
*
* @see {@link ApplicationInitStatus}
* @see {@link provideAppInitializer}
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/application/application_tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const DEFAULT_APP_ID = 'ng';
/**
* A function that is executed when a platform is initialized.
*
* @deprecated from v18.1.0, use providePlatformInitializer instead
* @deprecated from v19.0.0, use providePlatformInitializer instead
*
* @see {@link providePlatformInitializer}
*
Expand Down