Skip to content

Commit f048546

Browse files
committed
4b9accd feat(http): promote withRequestsMadeViaParent to stable. (#58221)
1 parent c487461 commit f048546

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 Oct 16 18:22:59 UTC 2024
2-
13c13067bc3ed50cb80b0a86e62655448adb3051
1+
Thu Oct 17 10:19:48 UTC 2024
2+
4b9accdf166f3990b3706de83ada15937fe786e2

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.0.0-next.10+sha-13c1306
2+
* @license Angular v19.0.0-next.10+sha-4b9accd
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -30216,7 +30216,7 @@ function publishFacade(global) {
3021630216
* @description
3021730217
* Entry point for all public APIs of the compiler package.
3021830218
*/
30219-
const VERSION = new Version('19.0.0-next.10+sha-13c1306');
30219+
const VERSION = new Version('19.0.0-next.10+sha-4b9accd');
3022030220

3022130221
class CompilerConfig {
3022230222
constructor({ defaultEncapsulation = ViewEncapsulation.Emulated, preserveWhitespaces, strictInjectionParameters, } = {}) {
@@ -31977,7 +31977,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3197731977
function compileDeclareClassMetadata(metadata) {
3197831978
const definitionMap = new DefinitionMap();
3197931979
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
31980-
definitionMap.set('version', literal('19.0.0-next.10+sha-13c1306'));
31980+
definitionMap.set('version', literal('19.0.0-next.10+sha-4b9accd'));
3198131981
definitionMap.set('ngImport', importExpr(Identifiers.core));
3198231982
definitionMap.set('type', metadata.type);
3198331983
definitionMap.set('decorators', metadata.decorators);
@@ -31995,7 +31995,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3199531995
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3199631996
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3199731997
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
31998-
definitionMap.set('version', literal('19.0.0-next.10+sha-13c1306'));
31998+
definitionMap.set('version', literal('19.0.0-next.10+sha-4b9accd'));
3199931999
definitionMap.set('ngImport', importExpr(Identifiers.core));
3200032000
definitionMap.set('type', metadata.type);
3200132001
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -32090,7 +32090,7 @@ function createDirectiveDefinitionMap(meta) {
3209032090
const definitionMap = new DefinitionMap();
3209132091
const minVersion = getMinimumVersionForPartialOutput(meta);
3209232092
definitionMap.set('minVersion', literal(minVersion));
32093-
definitionMap.set('version', literal('19.0.0-next.10+sha-13c1306'));
32093+
definitionMap.set('version', literal('19.0.0-next.10+sha-4b9accd'));
3209432094
// e.g. `type: MyDirective`
3209532095
definitionMap.set('type', meta.type.value);
3209632096
if (meta.isStandalone !== undefined) {
@@ -32512,7 +32512,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3251232512
function compileDeclareFactoryFunction(meta) {
3251332513
const definitionMap = new DefinitionMap();
3251432514
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
32515-
definitionMap.set('version', literal('19.0.0-next.10+sha-13c1306'));
32515+
definitionMap.set('version', literal('19.0.0-next.10+sha-4b9accd'));
3251632516
definitionMap.set('ngImport', importExpr(Identifiers.core));
3251732517
definitionMap.set('type', meta.type.value);
3251832518
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -32547,7 +32547,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3254732547
function createInjectableDefinitionMap(meta) {
3254832548
const definitionMap = new DefinitionMap();
3254932549
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
32550-
definitionMap.set('version', literal('19.0.0-next.10+sha-13c1306'));
32550+
definitionMap.set('version', literal('19.0.0-next.10+sha-4b9accd'));
3255132551
definitionMap.set('ngImport', importExpr(Identifiers.core));
3255232552
definitionMap.set('type', meta.type.value);
3255332553
// Only generate providedIn property if it has a non-null value
@@ -32598,7 +32598,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3259832598
function createInjectorDefinitionMap(meta) {
3259932599
const definitionMap = new DefinitionMap();
3260032600
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
32601-
definitionMap.set('version', literal('19.0.0-next.10+sha-13c1306'));
32601+
definitionMap.set('version', literal('19.0.0-next.10+sha-4b9accd'));
3260232602
definitionMap.set('ngImport', importExpr(Identifiers.core));
3260332603
definitionMap.set('type', meta.type.value);
3260432604
definitionMap.set('providers', meta.providers);
@@ -32631,7 +32631,7 @@ function createNgModuleDefinitionMap(meta) {
3263132631
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3263232632
}
3263332633
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
32634-
definitionMap.set('version', literal('19.0.0-next.10+sha-13c1306'));
32634+
definitionMap.set('version', literal('19.0.0-next.10+sha-4b9accd'));
3263532635
definitionMap.set('ngImport', importExpr(Identifiers.core));
3263632636
definitionMap.set('type', meta.type.value);
3263732637
// We only generate the keys in the metadata if the arrays contain values.
@@ -32682,7 +32682,7 @@ function compileDeclarePipeFromMetadata(meta) {
3268232682
function createPipeDefinitionMap(meta) {
3268332683
const definitionMap = new DefinitionMap();
3268432684
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
32685-
definitionMap.set('version', literal('19.0.0-next.10+sha-13c1306'));
32685+
definitionMap.set('version', literal('19.0.0-next.10+sha-4b9accd'));
3268632686
definitionMap.set('ngImport', importExpr(Identifiers.core));
3268732687
// e.g. `type: MyPipe`
3268832688
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.0.0-next.10+sha-13c1306
2+
* @license Angular v19.0.0-next.10+sha-4b9accd
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.0.0-next.10+sha-13c1306",
3+
"version": "19.0.0-next.10+sha-4b9accd",
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.0.0-next.10+sha-13c1306"
14+
"@angular/core": "19.0.0-next.10+sha-4b9accd"
1515
},
1616
"peerDependenciesMeta": {
1717
"@angular/core": {

0 commit comments

Comments
 (0)