Skip to content

Commit 4e8a0b1

Browse files
eb867c3 build: upload grpc remote logs for debugging (#60393)
1 parent 36a68cb commit 4e8a0b1

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 Mar 14 16:07:13 UTC 2025
2-
b8daf472d83b41b3d97d4014737d31c7cfc0ace0
1+
Fri Mar 14 18:57:07 UTC 2025
2+
eb867c3d231279e32ff390f8ea9ca0c01b10c492

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 v20.0.0-next.2+sha-b8daf47
2+
* @license Angular v20.0.0-next.2+sha-eb867c3
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -32881,7 +32881,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3288132881
function compileDeclareClassMetadata(metadata) {
3288232882
const definitionMap = new DefinitionMap();
3288332883
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
32884-
definitionMap.set('version', literal('20.0.0-next.2+sha-b8daf47'));
32884+
definitionMap.set('version', literal('20.0.0-next.2+sha-eb867c3'));
3288532885
definitionMap.set('ngImport', importExpr(Identifiers.core));
3288632886
definitionMap.set('type', metadata.type);
3288732887
definitionMap.set('decorators', metadata.decorators);
@@ -32899,7 +32899,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3289932899
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3290032900
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3290132901
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
32902-
definitionMap.set('version', literal('20.0.0-next.2+sha-b8daf47'));
32902+
definitionMap.set('version', literal('20.0.0-next.2+sha-eb867c3'));
3290332903
definitionMap.set('ngImport', importExpr(Identifiers.core));
3290432904
definitionMap.set('type', metadata.type);
3290532905
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -32994,7 +32994,7 @@ function createDirectiveDefinitionMap(meta) {
3299432994
const definitionMap = new DefinitionMap();
3299532995
const minVersion = getMinimumVersionForPartialOutput(meta);
3299632996
definitionMap.set('minVersion', literal(minVersion));
32997-
definitionMap.set('version', literal('20.0.0-next.2+sha-b8daf47'));
32997+
definitionMap.set('version', literal('20.0.0-next.2+sha-eb867c3'));
3299832998
// e.g. `type: MyDirective`
3299932999
definitionMap.set('type', meta.type.value);
3300033000
if (meta.isStandalone !== undefined) {
@@ -33410,7 +33410,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3341033410
function compileDeclareFactoryFunction(meta) {
3341133411
const definitionMap = new DefinitionMap();
3341233412
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33413-
definitionMap.set('version', literal('20.0.0-next.2+sha-b8daf47'));
33413+
definitionMap.set('version', literal('20.0.0-next.2+sha-eb867c3'));
3341433414
definitionMap.set('ngImport', importExpr(Identifiers.core));
3341533415
definitionMap.set('type', meta.type.value);
3341633416
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33445,7 +33445,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3344533445
function createInjectableDefinitionMap(meta) {
3344633446
const definitionMap = new DefinitionMap();
3344733447
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33448-
definitionMap.set('version', literal('20.0.0-next.2+sha-b8daf47'));
33448+
definitionMap.set('version', literal('20.0.0-next.2+sha-eb867c3'));
3344933449
definitionMap.set('ngImport', importExpr(Identifiers.core));
3345033450
definitionMap.set('type', meta.type.value);
3345133451
// Only generate providedIn property if it has a non-null value
@@ -33496,7 +33496,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3349633496
function createInjectorDefinitionMap(meta) {
3349733497
const definitionMap = new DefinitionMap();
3349833498
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33499-
definitionMap.set('version', literal('20.0.0-next.2+sha-b8daf47'));
33499+
definitionMap.set('version', literal('20.0.0-next.2+sha-eb867c3'));
3350033500
definitionMap.set('ngImport', importExpr(Identifiers.core));
3350133501
definitionMap.set('type', meta.type.value);
3350233502
definitionMap.set('providers', meta.providers);
@@ -33529,7 +33529,7 @@ function createNgModuleDefinitionMap(meta) {
3352933529
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3353033530
}
3353133531
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33532-
definitionMap.set('version', literal('20.0.0-next.2+sha-b8daf47'));
33532+
definitionMap.set('version', literal('20.0.0-next.2+sha-eb867c3'));
3353333533
definitionMap.set('ngImport', importExpr(Identifiers.core));
3353433534
definitionMap.set('type', meta.type.value);
3353533535
// We only generate the keys in the metadata if the arrays contain values.
@@ -33580,7 +33580,7 @@ function compileDeclarePipeFromMetadata(meta) {
3358033580
function createPipeDefinitionMap(meta) {
3358133581
const definitionMap = new DefinitionMap();
3358233582
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33583-
definitionMap.set('version', literal('20.0.0-next.2+sha-b8daf47'));
33583+
definitionMap.set('version', literal('20.0.0-next.2+sha-eb867c3'));
3358433584
definitionMap.set('ngImport', importExpr(Identifiers.core));
3358533585
// e.g. `type: MyPipe`
3358633586
definitionMap.set('type', meta.type.value);
@@ -33738,7 +33738,7 @@ function compileHmrUpdateCallback(definitions, constantStatements, meta) {
3373833738
* @description
3373933739
* Entry point for all public APIs of the compiler package.
3374033740
*/
33741-
const VERSION = new Version('20.0.0-next.2+sha-b8daf47');
33741+
const VERSION = new Version('20.0.0-next.2+sha-eb867c3');
3374233742

3374333743
//////////////////////////////////////
3374433744
// THIS FILE HAS GLOBAL SIDE EFFECT //

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 v20.0.0-next.2+sha-b8daf47
2+
* @license Angular v20.0.0-next.2+sha-eb867c3
33
* (c) 2010-2025 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": "20.0.0-next.2+sha-b8daf47",
3+
"version": "20.0.0-next.2+sha-eb867c3",
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": "20.0.0-next.2+sha-b8daf47"
14+
"@angular/core": "20.0.0-next.2+sha-eb867c3"
1515
},
1616
"peerDependenciesMeta": {
1717
"@angular/core": {

0 commit comments

Comments
 (0)