Skip to content

Commit b009515

Browse files
committed
70bdb88 fix(platform-browser): ensure platformBrowserTesting includes platformBrowser providers (#60480)
1 parent 5c2b287 commit b009515

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Thu Mar 20 19:03:16 UTC 2025
2-
911ad40067a044a4d55a3305b1555ea1e2414ce7
1+
Thu Mar 20 19:39:24 UTC 2025
2+
70bdb88b0c9937ecb6d1adce5f02da32681782b3

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.3+sha-911ad40
2+
* @license Angular v20.0.0-next.3+sha-70bdb88
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -32911,7 +32911,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3291132911
function compileDeclareClassMetadata(metadata) {
3291232912
const definitionMap = new DefinitionMap();
3291332913
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
32914-
definitionMap.set('version', literal('20.0.0-next.3+sha-911ad40'));
32914+
definitionMap.set('version', literal('20.0.0-next.3+sha-70bdb88'));
3291532915
definitionMap.set('ngImport', importExpr(Identifiers.core));
3291632916
definitionMap.set('type', metadata.type);
3291732917
definitionMap.set('decorators', metadata.decorators);
@@ -32929,7 +32929,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3292932929
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3293032930
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3293132931
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
32932-
definitionMap.set('version', literal('20.0.0-next.3+sha-911ad40'));
32932+
definitionMap.set('version', literal('20.0.0-next.3+sha-70bdb88'));
3293332933
definitionMap.set('ngImport', importExpr(Identifiers.core));
3293432934
definitionMap.set('type', metadata.type);
3293532935
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -33024,7 +33024,7 @@ function createDirectiveDefinitionMap(meta) {
3302433024
const definitionMap = new DefinitionMap();
3302533025
const minVersion = getMinimumVersionForPartialOutput(meta);
3302633026
definitionMap.set('minVersion', literal(minVersion));
33027-
definitionMap.set('version', literal('20.0.0-next.3+sha-911ad40'));
33027+
definitionMap.set('version', literal('20.0.0-next.3+sha-70bdb88'));
3302833028
// e.g. `type: MyDirective`
3302933029
definitionMap.set('type', meta.type.value);
3303033030
if (meta.isStandalone !== undefined) {
@@ -33440,7 +33440,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3344033440
function compileDeclareFactoryFunction(meta) {
3344133441
const definitionMap = new DefinitionMap();
3344233442
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33443-
definitionMap.set('version', literal('20.0.0-next.3+sha-911ad40'));
33443+
definitionMap.set('version', literal('20.0.0-next.3+sha-70bdb88'));
3344433444
definitionMap.set('ngImport', importExpr(Identifiers.core));
3344533445
definitionMap.set('type', meta.type.value);
3344633446
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33475,7 +33475,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3347533475
function createInjectableDefinitionMap(meta) {
3347633476
const definitionMap = new DefinitionMap();
3347733477
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33478-
definitionMap.set('version', literal('20.0.0-next.3+sha-911ad40'));
33478+
definitionMap.set('version', literal('20.0.0-next.3+sha-70bdb88'));
3347933479
definitionMap.set('ngImport', importExpr(Identifiers.core));
3348033480
definitionMap.set('type', meta.type.value);
3348133481
// Only generate providedIn property if it has a non-null value
@@ -33526,7 +33526,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3352633526
function createInjectorDefinitionMap(meta) {
3352733527
const definitionMap = new DefinitionMap();
3352833528
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33529-
definitionMap.set('version', literal('20.0.0-next.3+sha-911ad40'));
33529+
definitionMap.set('version', literal('20.0.0-next.3+sha-70bdb88'));
3353033530
definitionMap.set('ngImport', importExpr(Identifiers.core));
3353133531
definitionMap.set('type', meta.type.value);
3353233532
definitionMap.set('providers', meta.providers);
@@ -33559,7 +33559,7 @@ function createNgModuleDefinitionMap(meta) {
3355933559
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3356033560
}
3356133561
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33562-
definitionMap.set('version', literal('20.0.0-next.3+sha-911ad40'));
33562+
definitionMap.set('version', literal('20.0.0-next.3+sha-70bdb88'));
3356333563
definitionMap.set('ngImport', importExpr(Identifiers.core));
3356433564
definitionMap.set('type', meta.type.value);
3356533565
// We only generate the keys in the metadata if the arrays contain values.
@@ -33610,7 +33610,7 @@ function compileDeclarePipeFromMetadata(meta) {
3361033610
function createPipeDefinitionMap(meta) {
3361133611
const definitionMap = new DefinitionMap();
3361233612
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33613-
definitionMap.set('version', literal('20.0.0-next.3+sha-911ad40'));
33613+
definitionMap.set('version', literal('20.0.0-next.3+sha-70bdb88'));
3361433614
definitionMap.set('ngImport', importExpr(Identifiers.core));
3361533615
// e.g. `type: MyPipe`
3361633616
definitionMap.set('type', meta.type.value);
@@ -33768,7 +33768,7 @@ function compileHmrUpdateCallback(definitions, constantStatements, meta) {
3376833768
* @description
3376933769
* Entry point for all public APIs of the compiler package.
3377033770
*/
33771-
const VERSION = new Version('20.0.0-next.3+sha-911ad40');
33771+
const VERSION = new Version('20.0.0-next.3+sha-70bdb88');
3377233772

3377333773
//////////////////////////////////////
3377433774
// 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.3+sha-911ad40
2+
* @license Angular v20.0.0-next.3+sha-70bdb88
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/compiler",
3-
"version": "20.0.0-next.3+sha-911ad40",
3+
"version": "20.0.0-next.3+sha-70bdb88",
44
"description": "Angular - the compiler library",
55
"author": "angular",
66
"license": "MIT",

0 commit comments

Comments
 (0)