Skip to content

Commit 96a6df4

Browse files
committed
866cea9 feat(core): Stabilize PendingTasks Injectable (#60716)
1 parent b3e3d45 commit 96a6df4

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

BUILD_INFO

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Wed Apr 2 20:47:17 UTC 2025
2-
4e88e18a8ef0f19aed85316e80627ad6d2ec80a7
1+
Thu Apr 3 17:17:02 UTC 2025
2+
866cea9a057ac67fa3f679f1f3da18700926c15a

fesm2022/compiler.mjs

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.5+sha-4e88e18
2+
* @license Angular v20.0.0-next.5+sha-866cea9
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -33068,7 +33068,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3306833068
function compileDeclareClassMetadata(metadata) {
3306933069
const definitionMap = new DefinitionMap();
3307033070
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
33071-
definitionMap.set('version', literal('20.0.0-next.5+sha-4e88e18'));
33071+
definitionMap.set('version', literal('20.0.0-next.5+sha-866cea9'));
3307233072
definitionMap.set('ngImport', importExpr(Identifiers.core));
3307333073
definitionMap.set('type', metadata.type);
3307433074
definitionMap.set('decorators', metadata.decorators);
@@ -33086,7 +33086,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3308633086
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3308733087
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3308833088
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
33089-
definitionMap.set('version', literal('20.0.0-next.5+sha-4e88e18'));
33089+
definitionMap.set('version', literal('20.0.0-next.5+sha-866cea9'));
3309033090
definitionMap.set('ngImport', importExpr(Identifiers.core));
3309133091
definitionMap.set('type', metadata.type);
3309233092
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -33181,7 +33181,7 @@ function createDirectiveDefinitionMap(meta) {
3318133181
const definitionMap = new DefinitionMap();
3318233182
const minVersion = getMinimumVersionForPartialOutput(meta);
3318333183
definitionMap.set('minVersion', literal(minVersion));
33184-
definitionMap.set('version', literal('20.0.0-next.5+sha-4e88e18'));
33184+
definitionMap.set('version', literal('20.0.0-next.5+sha-866cea9'));
3318533185
// e.g. `type: MyDirective`
3318633186
definitionMap.set('type', meta.type.value);
3318733187
if (meta.isStandalone !== undefined) {
@@ -33597,7 +33597,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3359733597
function compileDeclareFactoryFunction(meta) {
3359833598
const definitionMap = new DefinitionMap();
3359933599
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33600-
definitionMap.set('version', literal('20.0.0-next.5+sha-4e88e18'));
33600+
definitionMap.set('version', literal('20.0.0-next.5+sha-866cea9'));
3360133601
definitionMap.set('ngImport', importExpr(Identifiers.core));
3360233602
definitionMap.set('type', meta.type.value);
3360333603
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33632,7 +33632,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3363233632
function createInjectableDefinitionMap(meta) {
3363333633
const definitionMap = new DefinitionMap();
3363433634
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33635-
definitionMap.set('version', literal('20.0.0-next.5+sha-4e88e18'));
33635+
definitionMap.set('version', literal('20.0.0-next.5+sha-866cea9'));
3363633636
definitionMap.set('ngImport', importExpr(Identifiers.core));
3363733637
definitionMap.set('type', meta.type.value);
3363833638
// Only generate providedIn property if it has a non-null value
@@ -33683,7 +33683,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3368333683
function createInjectorDefinitionMap(meta) {
3368433684
const definitionMap = new DefinitionMap();
3368533685
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33686-
definitionMap.set('version', literal('20.0.0-next.5+sha-4e88e18'));
33686+
definitionMap.set('version', literal('20.0.0-next.5+sha-866cea9'));
3368733687
definitionMap.set('ngImport', importExpr(Identifiers.core));
3368833688
definitionMap.set('type', meta.type.value);
3368933689
definitionMap.set('providers', meta.providers);
@@ -33716,7 +33716,7 @@ function createNgModuleDefinitionMap(meta) {
3371633716
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3371733717
}
3371833718
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33719-
definitionMap.set('version', literal('20.0.0-next.5+sha-4e88e18'));
33719+
definitionMap.set('version', literal('20.0.0-next.5+sha-866cea9'));
3372033720
definitionMap.set('ngImport', importExpr(Identifiers.core));
3372133721
definitionMap.set('type', meta.type.value);
3372233722
// We only generate the keys in the metadata if the arrays contain values.
@@ -33767,7 +33767,7 @@ function compileDeclarePipeFromMetadata(meta) {
3376733767
function createPipeDefinitionMap(meta) {
3376833768
const definitionMap = new DefinitionMap();
3376933769
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33770-
definitionMap.set('version', literal('20.0.0-next.5+sha-4e88e18'));
33770+
definitionMap.set('version', literal('20.0.0-next.5+sha-866cea9'));
3377133771
definitionMap.set('ngImport', importExpr(Identifiers.core));
3377233772
// e.g. `type: MyPipe`
3377333773
definitionMap.set('type', meta.type.value);
@@ -33925,7 +33925,7 @@ function compileHmrUpdateCallback(definitions, constantStatements, meta) {
3392533925
* @description
3392633926
* Entry point for all public APIs of the compiler package.
3392733927
*/
33928-
const VERSION = new Version('20.0.0-next.5+sha-4e88e18');
33928+
const VERSION = new Version('20.0.0-next.5+sha-866cea9');
3392933929

3393033930
//////////////////////////////////////
3393133931
// THIS FILE HAS GLOBAL SIDE EFFECT //

fesm2022/compiler.mjs.map

+1-1
Large diffs are not rendered by default.

index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.5+sha-4e88e18
2+
* @license Angular v20.0.0-next.5+sha-866cea9
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/compiler",
3-
"version": "20.0.0-next.5+sha-4e88e18",
3+
"version": "20.0.0-next.5+sha-866cea9",
44
"description": "Angular - the compiler library",
55
"author": "angular",
66
"license": "MIT",

0 commit comments

Comments
 (0)