Skip to content

Commit 8f907d5

Browse files
2e54d6d refactor(zone.js): Change the type of _taskCounts to an IndexSignature that can have keys (#51739) named as the values of the TaskType type.
1 parent 82cdfb0 commit 8f907d5

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Fri Nov 1 14:48:08 UTC 2024
2-
3e2bc693862ec5ba2f1a2219cd2941e323f571e9
1+
Fri Nov 1 15:49:33 UTC 2024
2+
2e54d6dea843203a7361d9a983d65b682d9b2797

fesm2022/compiler.mjs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v19.1.0-next.0+sha-3e2bc69
2+
* @license Angular v19.1.0-next.0+sha-2e54d6d
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -30836,7 +30836,7 @@ function publishFacade(global) {
3083630836
* @description
3083730837
* Entry point for all public APIs of the compiler package.
3083830838
*/
30839-
const VERSION = new Version('19.1.0-next.0+sha-3e2bc69');
30839+
const VERSION = new Version('19.1.0-next.0+sha-2e54d6d');
3084030840

3084130841
class CompilerConfig {
3084230842
defaultEncapsulation;
@@ -32661,7 +32661,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3266132661
function compileDeclareClassMetadata(metadata) {
3266232662
const definitionMap = new DefinitionMap();
3266332663
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
32664-
definitionMap.set('version', literal('19.1.0-next.0+sha-3e2bc69'));
32664+
definitionMap.set('version', literal('19.1.0-next.0+sha-2e54d6d'));
3266532665
definitionMap.set('ngImport', importExpr(Identifiers.core));
3266632666
definitionMap.set('type', metadata.type);
3266732667
definitionMap.set('decorators', metadata.decorators);
@@ -32679,7 +32679,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3267932679
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3268032680
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3268132681
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
32682-
definitionMap.set('version', literal('19.1.0-next.0+sha-3e2bc69'));
32682+
definitionMap.set('version', literal('19.1.0-next.0+sha-2e54d6d'));
3268332683
definitionMap.set('ngImport', importExpr(Identifiers.core));
3268432684
definitionMap.set('type', metadata.type);
3268532685
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -32774,7 +32774,7 @@ function createDirectiveDefinitionMap(meta) {
3277432774
const definitionMap = new DefinitionMap();
3277532775
const minVersion = getMinimumVersionForPartialOutput(meta);
3277632776
definitionMap.set('minVersion', literal(minVersion));
32777-
definitionMap.set('version', literal('19.1.0-next.0+sha-3e2bc69'));
32777+
definitionMap.set('version', literal('19.1.0-next.0+sha-2e54d6d'));
3277832778
// e.g. `type: MyDirective`
3277932779
definitionMap.set('type', meta.type.value);
3278032780
if (meta.isStandalone !== undefined) {
@@ -33193,7 +33193,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3319333193
function compileDeclareFactoryFunction(meta) {
3319433194
const definitionMap = new DefinitionMap();
3319533195
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33196-
definitionMap.set('version', literal('19.1.0-next.0+sha-3e2bc69'));
33196+
definitionMap.set('version', literal('19.1.0-next.0+sha-2e54d6d'));
3319733197
definitionMap.set('ngImport', importExpr(Identifiers.core));
3319833198
definitionMap.set('type', meta.type.value);
3319933199
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33228,7 +33228,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3322833228
function createInjectableDefinitionMap(meta) {
3322933229
const definitionMap = new DefinitionMap();
3323033230
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33231-
definitionMap.set('version', literal('19.1.0-next.0+sha-3e2bc69'));
33231+
definitionMap.set('version', literal('19.1.0-next.0+sha-2e54d6d'));
3323233232
definitionMap.set('ngImport', importExpr(Identifiers.core));
3323333233
definitionMap.set('type', meta.type.value);
3323433234
// Only generate providedIn property if it has a non-null value
@@ -33279,7 +33279,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3327933279
function createInjectorDefinitionMap(meta) {
3328033280
const definitionMap = new DefinitionMap();
3328133281
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33282-
definitionMap.set('version', literal('19.1.0-next.0+sha-3e2bc69'));
33282+
definitionMap.set('version', literal('19.1.0-next.0+sha-2e54d6d'));
3328333283
definitionMap.set('ngImport', importExpr(Identifiers.core));
3328433284
definitionMap.set('type', meta.type.value);
3328533285
definitionMap.set('providers', meta.providers);
@@ -33312,7 +33312,7 @@ function createNgModuleDefinitionMap(meta) {
3331233312
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3331333313
}
3331433314
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33315-
definitionMap.set('version', literal('19.1.0-next.0+sha-3e2bc69'));
33315+
definitionMap.set('version', literal('19.1.0-next.0+sha-2e54d6d'));
3331633316
definitionMap.set('ngImport', importExpr(Identifiers.core));
3331733317
definitionMap.set('type', meta.type.value);
3331833318
// We only generate the keys in the metadata if the arrays contain values.
@@ -33363,7 +33363,7 @@ function compileDeclarePipeFromMetadata(meta) {
3336333363
function createPipeDefinitionMap(meta) {
3336433364
const definitionMap = new DefinitionMap();
3336533365
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33366-
definitionMap.set('version', literal('19.1.0-next.0+sha-3e2bc69'));
33366+
definitionMap.set('version', literal('19.1.0-next.0+sha-2e54d6d'));
3336733367
definitionMap.set('ngImport', importExpr(Identifiers.core));
3336833368
// e.g. `type: MyPipe`
3336933369
definitionMap.set('type', meta.type.value);

fesm2022/compiler.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v19.1.0-next.0+sha-3e2bc69
2+
* @license Angular v19.1.0-next.0+sha-2e54d6d
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/compiler",
3-
"version": "19.1.0-next.0+sha-3e2bc69",
3+
"version": "19.1.0-next.0+sha-2e54d6d",
44
"description": "Angular - the compiler library",
55
"author": "angular",
66
"license": "MIT",
@@ -11,7 +11,7 @@
1111
"tslib": "^2.3.0"
1212
},
1313
"peerDependencies": {
14-
"@angular/core": "19.1.0-next.0+sha-3e2bc69"
14+
"@angular/core": "19.1.0-next.0+sha-2e54d6d"
1515
},
1616
"peerDependenciesMeta": {
1717
"@angular/core": {

0 commit comments

Comments
 (0)