Skip to content

Commit 03d1479

Browse files
497028c docs: release notes for the v19.1.7 release
1 parent 22a1b57 commit 03d1479

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-
Wed Feb 19 15:30:28 UTC 2025
2-
40dc99da9c609a3ae3dc70d2f278354f577a0c75
1+
Wed Feb 19 18:50:25 UTC 2025
2+
497028cc52c59e5ae8dd4066c35b14a28002f2e2

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-40dc99d
2+
* @license Angular v19.2.0-next.3+sha-497028c
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -31034,7 +31034,7 @@ function publishFacade(global) {
3103431034
* @description
3103531035
* Entry point for all public APIs of the compiler package.
3103631036
*/
31037-
const VERSION = new Version('19.2.0-next.3+sha-40dc99d');
31037+
const VERSION = new Version('19.2.0-next.3+sha-497028c');
3103831038

3103931039
class CompilerConfig {
3104031040
defaultEncapsulation;
@@ -32902,7 +32902,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3290232902
function compileDeclareClassMetadata(metadata) {
3290332903
const definitionMap = new DefinitionMap();
3290432904
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
32905-
definitionMap.set('version', literal('19.2.0-next.3+sha-40dc99d'));
32905+
definitionMap.set('version', literal('19.2.0-next.3+sha-497028c'));
3290632906
definitionMap.set('ngImport', importExpr(Identifiers.core));
3290732907
definitionMap.set('type', metadata.type);
3290832908
definitionMap.set('decorators', metadata.decorators);
@@ -32920,7 +32920,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3292032920
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3292132921
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3292232922
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
32923-
definitionMap.set('version', literal('19.2.0-next.3+sha-40dc99d'));
32923+
definitionMap.set('version', literal('19.2.0-next.3+sha-497028c'));
3292432924
definitionMap.set('ngImport', importExpr(Identifiers.core));
3292532925
definitionMap.set('type', metadata.type);
3292632926
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -33015,7 +33015,7 @@ function createDirectiveDefinitionMap(meta) {
3301533015
const definitionMap = new DefinitionMap();
3301633016
const minVersion = getMinimumVersionForPartialOutput(meta);
3301733017
definitionMap.set('minVersion', literal(minVersion));
33018-
definitionMap.set('version', literal('19.2.0-next.3+sha-40dc99d'));
33018+
definitionMap.set('version', literal('19.2.0-next.3+sha-497028c'));
3301933019
// e.g. `type: MyDirective`
3302033020
definitionMap.set('type', meta.type.value);
3302133021
if (meta.isStandalone !== undefined) {
@@ -33434,7 +33434,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3343433434
function compileDeclareFactoryFunction(meta) {
3343533435
const definitionMap = new DefinitionMap();
3343633436
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33437-
definitionMap.set('version', literal('19.2.0-next.3+sha-40dc99d'));
33437+
definitionMap.set('version', literal('19.2.0-next.3+sha-497028c'));
3343833438
definitionMap.set('ngImport', importExpr(Identifiers.core));
3343933439
definitionMap.set('type', meta.type.value);
3344033440
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33469,7 +33469,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3346933469
function createInjectableDefinitionMap(meta) {
3347033470
const definitionMap = new DefinitionMap();
3347133471
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33472-
definitionMap.set('version', literal('19.2.0-next.3+sha-40dc99d'));
33472+
definitionMap.set('version', literal('19.2.0-next.3+sha-497028c'));
3347333473
definitionMap.set('ngImport', importExpr(Identifiers.core));
3347433474
definitionMap.set('type', meta.type.value);
3347533475
// Only generate providedIn property if it has a non-null value
@@ -33520,7 +33520,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3352033520
function createInjectorDefinitionMap(meta) {
3352133521
const definitionMap = new DefinitionMap();
3352233522
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33523-
definitionMap.set('version', literal('19.2.0-next.3+sha-40dc99d'));
33523+
definitionMap.set('version', literal('19.2.0-next.3+sha-497028c'));
3352433524
definitionMap.set('ngImport', importExpr(Identifiers.core));
3352533525
definitionMap.set('type', meta.type.value);
3352633526
definitionMap.set('providers', meta.providers);
@@ -33553,7 +33553,7 @@ function createNgModuleDefinitionMap(meta) {
3355333553
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3355433554
}
3355533555
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33556-
definitionMap.set('version', literal('19.2.0-next.3+sha-40dc99d'));
33556+
definitionMap.set('version', literal('19.2.0-next.3+sha-497028c'));
3355733557
definitionMap.set('ngImport', importExpr(Identifiers.core));
3355833558
definitionMap.set('type', meta.type.value);
3355933559
// We only generate the keys in the metadata if the arrays contain values.
@@ -33604,7 +33604,7 @@ function compileDeclarePipeFromMetadata(meta) {
3360433604
function createPipeDefinitionMap(meta) {
3360533605
const definitionMap = new DefinitionMap();
3360633606
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33607-
definitionMap.set('version', literal('19.2.0-next.3+sha-40dc99d'));
33607+
definitionMap.set('version', literal('19.2.0-next.3+sha-497028c'));
3360833608
definitionMap.set('ngImport', importExpr(Identifiers.core));
3360933609
// e.g. `type: MyPipe`
3361033610
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-40dc99d
2+
* @license Angular v19.2.0-next.3+sha-497028c
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-40dc99d",
3+
"version": "19.2.0-next.3+sha-497028c",
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-40dc99d"
14+
"@angular/core": "19.2.0-next.3+sha-497028c"
1515
},
1616
"peerDependenciesMeta": {
1717
"@angular/core": {

0 commit comments

Comments
 (0)