Skip to content

Commit f2f56ed

Browse files
1cd3a7d feat(migrations): add migration to convert templates to use self-closing tags (#57342)
1 parent 4a3f517 commit f2f56ed

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-
Tue Feb 18 16:56:20 UTC 2025
2-
b6fa69f2c06f793f08ff3899421f48c8cb26bc2f
1+
Tue Feb 18 17:39:49 UTC 2025
2+
1cd3a7db83e1d05a31d23324676420b614cdabe2

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.2.0-next.3+sha-b6fa69f
2+
* @license Angular v19.2.0-next.3+sha-1cd3a7d
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -31045,7 +31045,7 @@ function publishFacade(global) {
3104531045
* @description
3104631046
* Entry point for all public APIs of the compiler package.
3104731047
*/
31048-
const VERSION = new Version('19.2.0-next.3+sha-b6fa69f');
31048+
const VERSION = new Version('19.2.0-next.3+sha-1cd3a7d');
3104931049

3105031050
class CompilerConfig {
3105131051
defaultEncapsulation;
@@ -32913,7 +32913,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3291332913
function compileDeclareClassMetadata(metadata) {
3291432914
const definitionMap = new DefinitionMap();
3291532915
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
32916-
definitionMap.set('version', literal('19.2.0-next.3+sha-b6fa69f'));
32916+
definitionMap.set('version', literal('19.2.0-next.3+sha-1cd3a7d'));
3291732917
definitionMap.set('ngImport', importExpr(Identifiers.core));
3291832918
definitionMap.set('type', metadata.type);
3291932919
definitionMap.set('decorators', metadata.decorators);
@@ -32931,7 +32931,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3293132931
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3293232932
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3293332933
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
32934-
definitionMap.set('version', literal('19.2.0-next.3+sha-b6fa69f'));
32934+
definitionMap.set('version', literal('19.2.0-next.3+sha-1cd3a7d'));
3293532935
definitionMap.set('ngImport', importExpr(Identifiers.core));
3293632936
definitionMap.set('type', metadata.type);
3293732937
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -33026,7 +33026,7 @@ function createDirectiveDefinitionMap(meta) {
3302633026
const definitionMap = new DefinitionMap();
3302733027
const minVersion = getMinimumVersionForPartialOutput(meta);
3302833028
definitionMap.set('minVersion', literal(minVersion));
33029-
definitionMap.set('version', literal('19.2.0-next.3+sha-b6fa69f'));
33029+
definitionMap.set('version', literal('19.2.0-next.3+sha-1cd3a7d'));
3303033030
// e.g. `type: MyDirective`
3303133031
definitionMap.set('type', meta.type.value);
3303233032
if (meta.isStandalone !== undefined) {
@@ -33445,7 +33445,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3344533445
function compileDeclareFactoryFunction(meta) {
3344633446
const definitionMap = new DefinitionMap();
3344733447
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33448-
definitionMap.set('version', literal('19.2.0-next.3+sha-b6fa69f'));
33448+
definitionMap.set('version', literal('19.2.0-next.3+sha-1cd3a7d'));
3344933449
definitionMap.set('ngImport', importExpr(Identifiers.core));
3345033450
definitionMap.set('type', meta.type.value);
3345133451
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33480,7 +33480,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3348033480
function createInjectableDefinitionMap(meta) {
3348133481
const definitionMap = new DefinitionMap();
3348233482
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33483-
definitionMap.set('version', literal('19.2.0-next.3+sha-b6fa69f'));
33483+
definitionMap.set('version', literal('19.2.0-next.3+sha-1cd3a7d'));
3348433484
definitionMap.set('ngImport', importExpr(Identifiers.core));
3348533485
definitionMap.set('type', meta.type.value);
3348633486
// Only generate providedIn property if it has a non-null value
@@ -33531,7 +33531,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3353133531
function createInjectorDefinitionMap(meta) {
3353233532
const definitionMap = new DefinitionMap();
3353333533
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33534-
definitionMap.set('version', literal('19.2.0-next.3+sha-b6fa69f'));
33534+
definitionMap.set('version', literal('19.2.0-next.3+sha-1cd3a7d'));
3353533535
definitionMap.set('ngImport', importExpr(Identifiers.core));
3353633536
definitionMap.set('type', meta.type.value);
3353733537
definitionMap.set('providers', meta.providers);
@@ -33564,7 +33564,7 @@ function createNgModuleDefinitionMap(meta) {
3356433564
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3356533565
}
3356633566
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33567-
definitionMap.set('version', literal('19.2.0-next.3+sha-b6fa69f'));
33567+
definitionMap.set('version', literal('19.2.0-next.3+sha-1cd3a7d'));
3356833568
definitionMap.set('ngImport', importExpr(Identifiers.core));
3356933569
definitionMap.set('type', meta.type.value);
3357033570
// We only generate the keys in the metadata if the arrays contain values.
@@ -33615,7 +33615,7 @@ function compileDeclarePipeFromMetadata(meta) {
3361533615
function createPipeDefinitionMap(meta) {
3361633616
const definitionMap = new DefinitionMap();
3361733617
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33618-
definitionMap.set('version', literal('19.2.0-next.3+sha-b6fa69f'));
33618+
definitionMap.set('version', literal('19.2.0-next.3+sha-1cd3a7d'));
3361933619
definitionMap.set('ngImport', importExpr(Identifiers.core));
3362033620
// e.g. `type: MyPipe`
3362133621
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.2.0-next.3+sha-b6fa69f
2+
* @license Angular v19.2.0-next.3+sha-1cd3a7d
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.2.0-next.3+sha-b6fa69f",
3+
"version": "19.2.0-next.3+sha-1cd3a7d",
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.2.0-next.3+sha-b6fa69f"
14+
"@angular/core": "19.2.0-next.3+sha-1cd3a7d"
1515
},
1616
"peerDependenciesMeta": {
1717
"@angular/core": {

0 commit comments

Comments
 (0)