Skip to content

Commit 5679131

Browse files
committed
98bf4d5 build: disable remote upload of local action results to RBE cache (#60568)
1 parent d868612 commit 5679131

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Tue Mar 25 18:05:32 UTC 2025
2-
6d3849ffc85cc52b0eba3836b24f10895621acbe
1+
Thu Mar 27 03:57:19 UTC 2025
2+
98bf4d5afd820cdbc2d8e177e6d3292c6d6ee9bc

fesm2022/platform-browser-dynamic.mjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.3+sha-6d3849f
2+
* @license Angular v20.0.0-next.4+sha-98bf4d5
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -17,7 +17,7 @@ import { platformBrowser } from '@angular/platform-browser';
1717
/**
1818
* @publicApi
1919
*/
20-
const VERSION = new Version('20.0.0-next.3+sha-6d3849f');
20+
const VERSION = new Version('20.0.0-next.4+sha-98bf4d5');
2121

2222
const COMPILER_PROVIDERS = [
2323
{ provide: Compiler, useFactory: () => new Compiler() },
@@ -112,10 +112,10 @@ class ResourceLoaderImpl extends ResourceLoader {
112112
xhr.send();
113113
return promise;
114114
}
115-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-6d3849f", ngImport: i0, type: ResourceLoaderImpl, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
116-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-6d3849f", ngImport: i0, type: ResourceLoaderImpl });
115+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.4+sha-98bf4d5", ngImport: i0, type: ResourceLoaderImpl, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
116+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.4+sha-98bf4d5", ngImport: i0, type: ResourceLoaderImpl });
117117
}
118-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-6d3849f", ngImport: i0, type: ResourceLoaderImpl, decorators: [{
118+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4+sha-98bf4d5", ngImport: i0, type: ResourceLoaderImpl, decorators: [{
119119
type: Injectable
120120
}] });
121121

fesm2022/platform-browser-dynamic.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.

fesm2022/testing.mjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.3+sha-6d3849f
2+
* @license Angular v20.0.0-next.4+sha-98bf4d5
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -19,11 +19,11 @@ const platformBrowserDynamicTesting = createPlatformFactory(platformBrowserDynam
1919
* @publicApi
2020
*/
2121
class BrowserDynamicTestingModule {
22-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-6d3849f", ngImport: i0, type: BrowserDynamicTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
23-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.3+sha-6d3849f", ngImport: i0, type: BrowserDynamicTestingModule, exports: [BrowserTestingModule] });
24-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-6d3849f", ngImport: i0, type: BrowserDynamicTestingModule, imports: [BrowserTestingModule] });
22+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.4+sha-98bf4d5", ngImport: i0, type: BrowserDynamicTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
23+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.4+sha-98bf4d5", ngImport: i0, type: BrowserDynamicTestingModule, exports: [BrowserTestingModule] });
24+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.4+sha-98bf4d5", ngImport: i0, type: BrowserDynamicTestingModule, imports: [BrowserTestingModule] });
2525
}
26-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.3+sha-6d3849f", ngImport: i0, type: BrowserDynamicTestingModule, decorators: [{
26+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.4+sha-98bf4d5", ngImport: i0, type: BrowserDynamicTestingModule, decorators: [{
2727
type: NgModule,
2828
args: [{
2929
exports: [BrowserTestingModule],

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 v20.0.0-next.3+sha-6d3849f
2+
* @license Angular v20.0.0-next.4+sha-98bf4d5
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
22
"name": "@angular/platform-browser-dynamic",
3-
"version": "20.0.0-next.3+sha-6d3849f",
3+
"version": "20.0.0-next.4+sha-98bf4d5",
44
"description": "Angular - library for using Angular in a web browser with JIT compilation",
55
"author": "angular",
66
"license": "MIT",
77
"engines": {
8-
"node": "^18.19.1 || ^20.11.1 || >=22.0.0"
8+
"node": "^20.11.1 || >=22.11.0"
99
},
1010
"dependencies": {
1111
"tslib": "^2.3.0"
1212
},
1313
"peerDependencies": {
14-
"@angular/core": "20.0.0-next.3+sha-6d3849f",
15-
"@angular/common": "20.0.0-next.3+sha-6d3849f",
16-
"@angular/compiler": "20.0.0-next.3+sha-6d3849f",
17-
"@angular/platform-browser": "20.0.0-next.3+sha-6d3849f"
14+
"@angular/core": "20.0.0-next.4+sha-98bf4d5",
15+
"@angular/common": "20.0.0-next.4+sha-98bf4d5",
16+
"@angular/compiler": "20.0.0-next.4+sha-98bf4d5",
17+
"@angular/platform-browser": "20.0.0-next.4+sha-98bf4d5"
1818
},
1919
"repository": {
2020
"type": "git",

testing/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 v20.0.0-next.3+sha-6d3849f
2+
* @license Angular v20.0.0-next.4+sha-98bf4d5
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/

0 commit comments

Comments
 (0)