Skip to content

Commit 16846a8

Browse files
committed
1f4ff2f fix(core): avoid triggering on timer and on idle on the server (#59177)
1 parent 94371d0 commit 16846a8

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 Dec 13 01:33:50 UTC 2024
2-
4c2cdd270cba8f2e4c54d42122152ae23719993a
1+
Fri Dec 13 18:15:42 UTC 2024
2+
1f4ff2fa36f5d6240cbc4a40839d3d89501519d8

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.3+sha-4c2cdd2
2+
* @license Angular v19.1.0-next.3+sha-1f4ff2f
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -30978,7 +30978,7 @@ function publishFacade(global) {
3097830978
* @description
3097930979
* Entry point for all public APIs of the compiler package.
3098030980
*/
30981-
const VERSION = new Version('19.1.0-next.3+sha-4c2cdd2');
30981+
const VERSION = new Version('19.1.0-next.3+sha-1f4ff2f');
3098230982

3098330983
class CompilerConfig {
3098430984
defaultEncapsulation;
@@ -32830,7 +32830,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3283032830
function compileDeclareClassMetadata(metadata) {
3283132831
const definitionMap = new DefinitionMap();
3283232832
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
32833-
definitionMap.set('version', literal('19.1.0-next.3+sha-4c2cdd2'));
32833+
definitionMap.set('version', literal('19.1.0-next.3+sha-1f4ff2f'));
3283432834
definitionMap.set('ngImport', importExpr(Identifiers.core));
3283532835
definitionMap.set('type', metadata.type);
3283632836
definitionMap.set('decorators', metadata.decorators);
@@ -32848,7 +32848,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3284832848
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3284932849
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3285032850
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
32851-
definitionMap.set('version', literal('19.1.0-next.3+sha-4c2cdd2'));
32851+
definitionMap.set('version', literal('19.1.0-next.3+sha-1f4ff2f'));
3285232852
definitionMap.set('ngImport', importExpr(Identifiers.core));
3285332853
definitionMap.set('type', metadata.type);
3285432854
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -32943,7 +32943,7 @@ function createDirectiveDefinitionMap(meta) {
3294332943
const definitionMap = new DefinitionMap();
3294432944
const minVersion = getMinimumVersionForPartialOutput(meta);
3294532945
definitionMap.set('minVersion', literal(minVersion));
32946-
definitionMap.set('version', literal('19.1.0-next.3+sha-4c2cdd2'));
32946+
definitionMap.set('version', literal('19.1.0-next.3+sha-1f4ff2f'));
3294732947
// e.g. `type: MyDirective`
3294832948
definitionMap.set('type', meta.type.value);
3294932949
if (meta.isStandalone !== undefined) {
@@ -33362,7 +33362,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3336233362
function compileDeclareFactoryFunction(meta) {
3336333363
const definitionMap = new DefinitionMap();
3336433364
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33365-
definitionMap.set('version', literal('19.1.0-next.3+sha-4c2cdd2'));
33365+
definitionMap.set('version', literal('19.1.0-next.3+sha-1f4ff2f'));
3336633366
definitionMap.set('ngImport', importExpr(Identifiers.core));
3336733367
definitionMap.set('type', meta.type.value);
3336833368
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33397,7 +33397,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3339733397
function createInjectableDefinitionMap(meta) {
3339833398
const definitionMap = new DefinitionMap();
3339933399
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33400-
definitionMap.set('version', literal('19.1.0-next.3+sha-4c2cdd2'));
33400+
definitionMap.set('version', literal('19.1.0-next.3+sha-1f4ff2f'));
3340133401
definitionMap.set('ngImport', importExpr(Identifiers.core));
3340233402
definitionMap.set('type', meta.type.value);
3340333403
// Only generate providedIn property if it has a non-null value
@@ -33448,7 +33448,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3344833448
function createInjectorDefinitionMap(meta) {
3344933449
const definitionMap = new DefinitionMap();
3345033450
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33451-
definitionMap.set('version', literal('19.1.0-next.3+sha-4c2cdd2'));
33451+
definitionMap.set('version', literal('19.1.0-next.3+sha-1f4ff2f'));
3345233452
definitionMap.set('ngImport', importExpr(Identifiers.core));
3345333453
definitionMap.set('type', meta.type.value);
3345433454
definitionMap.set('providers', meta.providers);
@@ -33481,7 +33481,7 @@ function createNgModuleDefinitionMap(meta) {
3348133481
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3348233482
}
3348333483
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33484-
definitionMap.set('version', literal('19.1.0-next.3+sha-4c2cdd2'));
33484+
definitionMap.set('version', literal('19.1.0-next.3+sha-1f4ff2f'));
3348533485
definitionMap.set('ngImport', importExpr(Identifiers.core));
3348633486
definitionMap.set('type', meta.type.value);
3348733487
// We only generate the keys in the metadata if the arrays contain values.
@@ -33532,7 +33532,7 @@ function compileDeclarePipeFromMetadata(meta) {
3353233532
function createPipeDefinitionMap(meta) {
3353333533
const definitionMap = new DefinitionMap();
3353433534
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33535-
definitionMap.set('version', literal('19.1.0-next.3+sha-4c2cdd2'));
33535+
definitionMap.set('version', literal('19.1.0-next.3+sha-1f4ff2f'));
3353633536
definitionMap.set('ngImport', importExpr(Identifiers.core));
3353733537
// e.g. `type: MyPipe`
3353833538
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.3+sha-4c2cdd2
2+
* @license Angular v19.1.0-next.3+sha-1f4ff2f
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.3+sha-4c2cdd2",
3+
"version": "19.1.0-next.3+sha-1f4ff2f",
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.3+sha-4c2cdd2"
14+
"@angular/core": "19.1.0-next.3+sha-1f4ff2f"
1515
},
1616
"peerDependenciesMeta": {
1717
"@angular/core": {

0 commit comments

Comments
 (0)