Skip to content

Commit 8b95cf1

Browse files
9d2704c docs: release notes for the v17.3.5 release
1 parent bb450ad commit 8b95cf1

13 files changed

+25
-25
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Wed Apr 17 09:33:54 UTC 2024
2-
a34267b72e8994d22d47c73d45f22173304939a0
1+
Wed Apr 17 15:54:05 UTC 2024
2+
9d2704c2586ff0855de6d6181fcf285fa4c3bbdb

esm2022/src/render3/partial/class_metadata.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
2424
export function compileDeclareClassMetadata(metadata) {
2525
const definitionMap = new DefinitionMap();
2626
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
27-
definitionMap.set('version', o.literal('18.0.0-next.4+sha-a34267b'));
27+
definitionMap.set('version', o.literal('18.0.0-next.4+sha-9d2704c'));
2828
definitionMap.set('ngImport', o.importExpr(R3.core));
2929
definitionMap.set('type', metadata.type);
3030
definitionMap.set('decorators', metadata.decorators);
@@ -42,7 +42,7 @@ export function compileComponentDeclareClassMetadata(metadata, dependencies) {
4242
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? o.literal(null));
4343
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? o.literal(null));
4444
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
45-
definitionMap.set('version', o.literal('18.0.0-next.4+sha-a34267b'));
45+
definitionMap.set('version', o.literal('18.0.0-next.4+sha-9d2704c'));
4646
definitionMap.set('ngImport', o.importExpr(R3.core));
4747
definitionMap.set('type', metadata.type);
4848
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));

esm2022/src/render3/partial/directive.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function createDirectiveDefinitionMap(meta) {
2828
const definitionMap = new DefinitionMap();
2929
const minVersion = getMinimumVersionForPartialOutput(meta);
3030
definitionMap.set('minVersion', o.literal(minVersion));
31-
definitionMap.set('version', o.literal('18.0.0-next.4+sha-a34267b'));
31+
definitionMap.set('version', o.literal('18.0.0-next.4+sha-9d2704c'));
3232
// e.g. `type: MyDirective`
3333
definitionMap.set('type', meta.type.value);
3434
if (meta.isStandalone) {

esm2022/src/render3/partial/factory.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION = '12.0.0';
2121
export function compileDeclareFactoryFunction(meta) {
2222
const definitionMap = new DefinitionMap();
2323
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
24-
definitionMap.set('version', o.literal('18.0.0-next.4+sha-a34267b'));
24+
definitionMap.set('version', o.literal('18.0.0-next.4+sha-9d2704c'));
2525
definitionMap.set('ngImport', o.importExpr(R3.core));
2626
definitionMap.set('type', meta.type.value);
2727
definitionMap.set('deps', compileDependencies(meta.deps));

esm2022/src/render3/partial/injectable.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function compileDeclareInjectableFromMetadata(meta) {
3434
export function createInjectableDefinitionMap(meta) {
3535
const definitionMap = new DefinitionMap();
3636
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
37-
definitionMap.set('version', o.literal('18.0.0-next.4+sha-a34267b'));
37+
definitionMap.set('version', o.literal('18.0.0-next.4+sha-9d2704c'));
3838
definitionMap.set('ngImport', o.importExpr(R3.core));
3939
definitionMap.set('type', meta.type.value);
4040
// Only generate providedIn property if it has a non-null value

esm2022/src/render3/partial/injector.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function compileDeclareInjectorFromMetadata(meta) {
2929
function createInjectorDefinitionMap(meta) {
3030
const definitionMap = new DefinitionMap();
3131
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
32-
definitionMap.set('version', o.literal('18.0.0-next.4+sha-a34267b'));
32+
definitionMap.set('version', o.literal('18.0.0-next.4+sha-9d2704c'));
3333
definitionMap.set('ngImport', o.importExpr(R3.core));
3434
definitionMap.set('type', meta.type.value);
3535
definitionMap.set('providers', meta.providers);

esm2022/src/render3/partial/ng_module.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function createNgModuleDefinitionMap(meta) {
3333
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3434
}
3535
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
36-
definitionMap.set('version', o.literal('18.0.0-next.4+sha-a34267b'));
36+
definitionMap.set('version', o.literal('18.0.0-next.4+sha-9d2704c'));
3737
definitionMap.set('ngImport', o.importExpr(R3.core));
3838
definitionMap.set('type', meta.type.value);
3939
// We only generate the keys in the metadata if the arrays contain values.

esm2022/src/render3/partial/pipe.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export function compileDeclarePipeFromMetadata(meta) {
3232
export function createPipeDefinitionMap(meta) {
3333
const definitionMap = new DefinitionMap();
3434
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
35-
definitionMap.set('version', o.literal('18.0.0-next.4+sha-a34267b'));
35+
definitionMap.set('version', o.literal('18.0.0-next.4+sha-9d2704c'));
3636
definitionMap.set('ngImport', o.importExpr(R3.core));
3737
// e.g. `type: MyPipe`
3838
definitionMap.set('type', meta.type.value);

esm2022/src/version.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
* Entry point for all public APIs of the compiler package.
1212
*/
1313
import { Version } from './util';
14-
export const VERSION = new Version('18.0.0-next.4+sha-a34267b');
14+
export const VERSION = new Version('18.0.0-next.4+sha-9d2704c');
1515
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2NvbXBpbGVyL3NyYy92ZXJzaW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7R0FNRztBQUVIOzs7O0dBSUc7QUFFSCxPQUFPLEVBQUMsT0FBTyxFQUFDLE1BQU0sUUFBUSxDQUFDO0FBRS9CLE1BQU0sQ0FBQyxNQUFNLE9BQU8sR0FBRyxJQUFJLE9BQU8sQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBAbGljZW5zZVxuICogQ29weXJpZ2h0IEdvb2dsZSBMTEMgQWxsIFJpZ2h0cyBSZXNlcnZlZC5cbiAqXG4gKiBVc2Ugb2YgdGhpcyBzb3VyY2UgY29kZSBpcyBnb3Zlcm5lZCBieSBhbiBNSVQtc3R5bGUgbGljZW5zZSB0aGF0IGNhbiBiZVxuICogZm91bmQgaW4gdGhlIExJQ0VOU0UgZmlsZSBhdCBodHRwczovL2FuZ3VsYXIuaW8vbGljZW5zZVxuICovXG5cbi8qKlxuICogQG1vZHVsZVxuICogQGRlc2NyaXB0aW9uXG4gKiBFbnRyeSBwb2ludCBmb3IgYWxsIHB1YmxpYyBBUElzIG9mIHRoZSBjb21waWxlciBwYWNrYWdlLlxuICovXG5cbmltcG9ydCB7VmVyc2lvbn0gZnJvbSAnLi91dGlsJztcblxuZXhwb3J0IGNvbnN0IFZFUlNJT04gPSBuZXcgVmVyc2lvbignMC4wLjAtUExBQ0VIT0xERVInKTtcbiJdfQ==

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 v18.0.0-next.4+sha-a34267b
2+
* @license Angular v18.0.0-next.4+sha-9d2704c
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -28557,7 +28557,7 @@ function publishFacade(global) {
2855728557
* @description
2855828558
* Entry point for all public APIs of the compiler package.
2855928559
*/
28560-
const VERSION = new Version('18.0.0-next.4+sha-a34267b');
28560+
const VERSION = new Version('18.0.0-next.4+sha-9d2704c');
2856128561

2856228562
class CompilerConfig {
2856328563
constructor({ defaultEncapsulation = ViewEncapsulation.Emulated, preserveWhitespaces, strictInjectionParameters } = {}) {
@@ -30142,7 +30142,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3014230142
function compileDeclareClassMetadata(metadata) {
3014330143
const definitionMap = new DefinitionMap();
3014430144
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
30145-
definitionMap.set('version', literal('18.0.0-next.4+sha-a34267b'));
30145+
definitionMap.set('version', literal('18.0.0-next.4+sha-9d2704c'));
3014630146
definitionMap.set('ngImport', importExpr(Identifiers.core));
3014730147
definitionMap.set('type', metadata.type);
3014830148
definitionMap.set('decorators', metadata.decorators);
@@ -30160,7 +30160,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3016030160
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3016130161
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3016230162
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
30163-
definitionMap.set('version', literal('18.0.0-next.4+sha-a34267b'));
30163+
definitionMap.set('version', literal('18.0.0-next.4+sha-9d2704c'));
3016430164
definitionMap.set('ngImport', importExpr(Identifiers.core));
3016530165
definitionMap.set('type', metadata.type);
3016630166
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -30255,7 +30255,7 @@ function createDirectiveDefinitionMap(meta) {
3025530255
const definitionMap = new DefinitionMap();
3025630256
const minVersion = getMinimumVersionForPartialOutput(meta);
3025730257
definitionMap.set('minVersion', literal(minVersion));
30258-
definitionMap.set('version', literal('18.0.0-next.4+sha-a34267b'));
30258+
definitionMap.set('version', literal('18.0.0-next.4+sha-9d2704c'));
3025930259
// e.g. `type: MyDirective`
3026030260
definitionMap.set('type', meta.type.value);
3026130261
if (meta.isStandalone) {
@@ -30670,7 +30670,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3067030670
function compileDeclareFactoryFunction(meta) {
3067130671
const definitionMap = new DefinitionMap();
3067230672
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
30673-
definitionMap.set('version', literal('18.0.0-next.4+sha-a34267b'));
30673+
definitionMap.set('version', literal('18.0.0-next.4+sha-9d2704c'));
3067430674
definitionMap.set('ngImport', importExpr(Identifiers.core));
3067530675
definitionMap.set('type', meta.type.value);
3067630676
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -30705,7 +30705,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3070530705
function createInjectableDefinitionMap(meta) {
3070630706
const definitionMap = new DefinitionMap();
3070730707
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
30708-
definitionMap.set('version', literal('18.0.0-next.4+sha-a34267b'));
30708+
definitionMap.set('version', literal('18.0.0-next.4+sha-9d2704c'));
3070930709
definitionMap.set('ngImport', importExpr(Identifiers.core));
3071030710
definitionMap.set('type', meta.type.value);
3071130711
// Only generate providedIn property if it has a non-null value
@@ -30756,7 +30756,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3075630756
function createInjectorDefinitionMap(meta) {
3075730757
const definitionMap = new DefinitionMap();
3075830758
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
30759-
definitionMap.set('version', literal('18.0.0-next.4+sha-a34267b'));
30759+
definitionMap.set('version', literal('18.0.0-next.4+sha-9d2704c'));
3076030760
definitionMap.set('ngImport', importExpr(Identifiers.core));
3076130761
definitionMap.set('type', meta.type.value);
3076230762
definitionMap.set('providers', meta.providers);
@@ -30789,7 +30789,7 @@ function createNgModuleDefinitionMap(meta) {
3078930789
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3079030790
}
3079130791
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
30792-
definitionMap.set('version', literal('18.0.0-next.4+sha-a34267b'));
30792+
definitionMap.set('version', literal('18.0.0-next.4+sha-9d2704c'));
3079330793
definitionMap.set('ngImport', importExpr(Identifiers.core));
3079430794
definitionMap.set('type', meta.type.value);
3079530795
// We only generate the keys in the metadata if the arrays contain values.
@@ -30840,7 +30840,7 @@ function compileDeclarePipeFromMetadata(meta) {
3084030840
function createPipeDefinitionMap(meta) {
3084130841
const definitionMap = new DefinitionMap();
3084230842
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
30843-
definitionMap.set('version', literal('18.0.0-next.4+sha-a34267b'));
30843+
definitionMap.set('version', literal('18.0.0-next.4+sha-9d2704c'));
3084430844
definitionMap.set('ngImport', importExpr(Identifiers.core));
3084530845
// e.g. `type: MyPipe`
3084630846
definitionMap.set('type', meta.type.value);

fesm2022/compiler.mjs.map

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

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 v18.0.0-next.4+sha-a34267b
2+
* @license Angular v18.0.0-next.4+sha-9d2704c
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": "18.0.0-next.4+sha-a34267b",
3+
"version": "18.0.0-next.4+sha-9d2704c",
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": "18.0.0-next.4+sha-a34267b"
14+
"@angular/core": "18.0.0-next.4+sha-9d2704c"
1515
},
1616
"peerDependenciesMeta": {
1717
"@angular/core": {

0 commit comments

Comments
 (0)