Skip to content

Commit daab0a5

Browse files
committed
c1bc06c release: bump Angular DevTools version to 1.0.20 (#59454)
1 parent 4a9baad commit daab0a5

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-
Thu Jan 9 19:35:15 UTC 2025
2-
ac2dbe3eb1205ce0683c69c801c1eeb2b5adfc1b
1+
Thu Jan 9 20:47:05 UTC 2025
2+
c1bc06c337761a427eb3a54b09ec3a7e9c261818

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.0+sha-ac2dbe3
2+
* @license Angular v19.2.0-next.0+sha-c1bc06c
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -30986,7 +30986,7 @@ function publishFacade(global) {
3098630986
* @description
3098730987
* Entry point for all public APIs of the compiler package.
3098830988
*/
30989-
const VERSION = new Version('19.2.0-next.0+sha-ac2dbe3');
30989+
const VERSION = new Version('19.2.0-next.0+sha-c1bc06c');
3099030990

3099130991
class CompilerConfig {
3099230992
defaultEncapsulation;
@@ -32838,7 +32838,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3283832838
function compileDeclareClassMetadata(metadata) {
3283932839
const definitionMap = new DefinitionMap();
3284032840
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
32841-
definitionMap.set('version', literal('19.2.0-next.0+sha-ac2dbe3'));
32841+
definitionMap.set('version', literal('19.2.0-next.0+sha-c1bc06c'));
3284232842
definitionMap.set('ngImport', importExpr(Identifiers.core));
3284332843
definitionMap.set('type', metadata.type);
3284432844
definitionMap.set('decorators', metadata.decorators);
@@ -32856,7 +32856,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3285632856
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3285732857
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3285832858
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
32859-
definitionMap.set('version', literal('19.2.0-next.0+sha-ac2dbe3'));
32859+
definitionMap.set('version', literal('19.2.0-next.0+sha-c1bc06c'));
3286032860
definitionMap.set('ngImport', importExpr(Identifiers.core));
3286132861
definitionMap.set('type', metadata.type);
3286232862
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -32951,7 +32951,7 @@ function createDirectiveDefinitionMap(meta) {
3295132951
const definitionMap = new DefinitionMap();
3295232952
const minVersion = getMinimumVersionForPartialOutput(meta);
3295332953
definitionMap.set('minVersion', literal(minVersion));
32954-
definitionMap.set('version', literal('19.2.0-next.0+sha-ac2dbe3'));
32954+
definitionMap.set('version', literal('19.2.0-next.0+sha-c1bc06c'));
3295532955
// e.g. `type: MyDirective`
3295632956
definitionMap.set('type', meta.type.value);
3295732957
if (meta.isStandalone !== undefined) {
@@ -33370,7 +33370,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3337033370
function compileDeclareFactoryFunction(meta) {
3337133371
const definitionMap = new DefinitionMap();
3337233372
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33373-
definitionMap.set('version', literal('19.2.0-next.0+sha-ac2dbe3'));
33373+
definitionMap.set('version', literal('19.2.0-next.0+sha-c1bc06c'));
3337433374
definitionMap.set('ngImport', importExpr(Identifiers.core));
3337533375
definitionMap.set('type', meta.type.value);
3337633376
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33405,7 +33405,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3340533405
function createInjectableDefinitionMap(meta) {
3340633406
const definitionMap = new DefinitionMap();
3340733407
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33408-
definitionMap.set('version', literal('19.2.0-next.0+sha-ac2dbe3'));
33408+
definitionMap.set('version', literal('19.2.0-next.0+sha-c1bc06c'));
3340933409
definitionMap.set('ngImport', importExpr(Identifiers.core));
3341033410
definitionMap.set('type', meta.type.value);
3341133411
// Only generate providedIn property if it has a non-null value
@@ -33456,7 +33456,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3345633456
function createInjectorDefinitionMap(meta) {
3345733457
const definitionMap = new DefinitionMap();
3345833458
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33459-
definitionMap.set('version', literal('19.2.0-next.0+sha-ac2dbe3'));
33459+
definitionMap.set('version', literal('19.2.0-next.0+sha-c1bc06c'));
3346033460
definitionMap.set('ngImport', importExpr(Identifiers.core));
3346133461
definitionMap.set('type', meta.type.value);
3346233462
definitionMap.set('providers', meta.providers);
@@ -33489,7 +33489,7 @@ function createNgModuleDefinitionMap(meta) {
3348933489
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3349033490
}
3349133491
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33492-
definitionMap.set('version', literal('19.2.0-next.0+sha-ac2dbe3'));
33492+
definitionMap.set('version', literal('19.2.0-next.0+sha-c1bc06c'));
3349333493
definitionMap.set('ngImport', importExpr(Identifiers.core));
3349433494
definitionMap.set('type', meta.type.value);
3349533495
// We only generate the keys in the metadata if the arrays contain values.
@@ -33540,7 +33540,7 @@ function compileDeclarePipeFromMetadata(meta) {
3354033540
function createPipeDefinitionMap(meta) {
3354133541
const definitionMap = new DefinitionMap();
3354233542
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33543-
definitionMap.set('version', literal('19.2.0-next.0+sha-ac2dbe3'));
33543+
definitionMap.set('version', literal('19.2.0-next.0+sha-c1bc06c'));
3354433544
definitionMap.set('ngImport', importExpr(Identifiers.core));
3354533545
// e.g. `type: MyPipe`
3354633546
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.0+sha-ac2dbe3
2+
* @license Angular v19.2.0-next.0+sha-c1bc06c
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.0+sha-ac2dbe3",
3+
"version": "19.2.0-next.0+sha-c1bc06c",
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.0+sha-ac2dbe3"
14+
"@angular/core": "19.2.0-next.0+sha-c1bc06c"
1515
},
1616
"peerDependenciesMeta": {
1717
"@angular/core": {

0 commit comments

Comments
 (0)