Skip to content

Commit 744b8c6

Browse files
committed
ee8ecfa ci: begin checking licenses of upstream dependencies to ensure they are approved (#56460)
1 parent 35ab2af commit 744b8c6

File tree

13 files changed

+25
-25
lines changed

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-
Fri Jun 14 17:10:11 UTC 2024
2-
d64ee6cc9decc83c58ba8e90780e9afe69326b86
1+
Fri Jun 14 20:54:46 UTC 2024
2+
ee8ecfaef06c9acafa17c69884c15921419b9684

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.1.0-next.2+sha-d64ee6c'));
27+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-ee8ecfa'));
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.1.0-next.2+sha-d64ee6c'));
45+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-ee8ecfa'));
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.1.0-next.2+sha-d64ee6c'));
31+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-ee8ecfa'));
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.1.0-next.2+sha-d64ee6c'));
24+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-ee8ecfa'));
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.1.0-next.2+sha-d64ee6c'));
37+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-ee8ecfa'));
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.1.0-next.2+sha-d64ee6c'));
32+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-ee8ecfa'));
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.1.0-next.2+sha-d64ee6c'));
36+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-ee8ecfa'));
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.1.0-next.2+sha-d64ee6c'));
35+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-ee8ecfa'));
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.1.0-next.2+sha-d64ee6c');
14+
export const VERSION = new Version('18.1.0-next.2+sha-ee8ecfa');
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.1.0-next.2+sha-d64ee6c
2+
* @license Angular v18.1.0-next.2+sha-ee8ecfa
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -29263,7 +29263,7 @@ function publishFacade(global) {
2926329263
* @description
2926429264
* Entry point for all public APIs of the compiler package.
2926529265
*/
29266-
const VERSION = new Version('18.1.0-next.2+sha-d64ee6c');
29266+
const VERSION = new Version('18.1.0-next.2+sha-ee8ecfa');
2926729267

2926829268
class CompilerConfig {
2926929269
constructor({ defaultEncapsulation = ViewEncapsulation.Emulated, preserveWhitespaces, strictInjectionParameters, } = {}) {
@@ -30901,7 +30901,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3090130901
function compileDeclareClassMetadata(metadata) {
3090230902
const definitionMap = new DefinitionMap();
3090330903
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
30904-
definitionMap.set('version', literal('18.1.0-next.2+sha-d64ee6c'));
30904+
definitionMap.set('version', literal('18.1.0-next.2+sha-ee8ecfa'));
3090530905
definitionMap.set('ngImport', importExpr(Identifiers.core));
3090630906
definitionMap.set('type', metadata.type);
3090730907
definitionMap.set('decorators', metadata.decorators);
@@ -30919,7 +30919,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3091930919
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3092030920
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3092130921
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
30922-
definitionMap.set('version', literal('18.1.0-next.2+sha-d64ee6c'));
30922+
definitionMap.set('version', literal('18.1.0-next.2+sha-ee8ecfa'));
3092330923
definitionMap.set('ngImport', importExpr(Identifiers.core));
3092430924
definitionMap.set('type', metadata.type);
3092530925
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -31014,7 +31014,7 @@ function createDirectiveDefinitionMap(meta) {
3101431014
const definitionMap = new DefinitionMap();
3101531015
const minVersion = getMinimumVersionForPartialOutput(meta);
3101631016
definitionMap.set('minVersion', literal(minVersion));
31017-
definitionMap.set('version', literal('18.1.0-next.2+sha-d64ee6c'));
31017+
definitionMap.set('version', literal('18.1.0-next.2+sha-ee8ecfa'));
3101831018
// e.g. `type: MyDirective`
3101931019
definitionMap.set('type', meta.type.value);
3102031020
if (meta.isStandalone) {
@@ -31436,7 +31436,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3143631436
function compileDeclareFactoryFunction(meta) {
3143731437
const definitionMap = new DefinitionMap();
3143831438
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
31439-
definitionMap.set('version', literal('18.1.0-next.2+sha-d64ee6c'));
31439+
definitionMap.set('version', literal('18.1.0-next.2+sha-ee8ecfa'));
3144031440
definitionMap.set('ngImport', importExpr(Identifiers.core));
3144131441
definitionMap.set('type', meta.type.value);
3144231442
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -31471,7 +31471,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3147131471
function createInjectableDefinitionMap(meta) {
3147231472
const definitionMap = new DefinitionMap();
3147331473
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
31474-
definitionMap.set('version', literal('18.1.0-next.2+sha-d64ee6c'));
31474+
definitionMap.set('version', literal('18.1.0-next.2+sha-ee8ecfa'));
3147531475
definitionMap.set('ngImport', importExpr(Identifiers.core));
3147631476
definitionMap.set('type', meta.type.value);
3147731477
// Only generate providedIn property if it has a non-null value
@@ -31522,7 +31522,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3152231522
function createInjectorDefinitionMap(meta) {
3152331523
const definitionMap = new DefinitionMap();
3152431524
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
31525-
definitionMap.set('version', literal('18.1.0-next.2+sha-d64ee6c'));
31525+
definitionMap.set('version', literal('18.1.0-next.2+sha-ee8ecfa'));
3152631526
definitionMap.set('ngImport', importExpr(Identifiers.core));
3152731527
definitionMap.set('type', meta.type.value);
3152831528
definitionMap.set('providers', meta.providers);
@@ -31555,7 +31555,7 @@ function createNgModuleDefinitionMap(meta) {
3155531555
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3155631556
}
3155731557
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
31558-
definitionMap.set('version', literal('18.1.0-next.2+sha-d64ee6c'));
31558+
definitionMap.set('version', literal('18.1.0-next.2+sha-ee8ecfa'));
3155931559
definitionMap.set('ngImport', importExpr(Identifiers.core));
3156031560
definitionMap.set('type', meta.type.value);
3156131561
// We only generate the keys in the metadata if the arrays contain values.
@@ -31606,7 +31606,7 @@ function compileDeclarePipeFromMetadata(meta) {
3160631606
function createPipeDefinitionMap(meta) {
3160731607
const definitionMap = new DefinitionMap();
3160831608
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
31609-
definitionMap.set('version', literal('18.1.0-next.2+sha-d64ee6c'));
31609+
definitionMap.set('version', literal('18.1.0-next.2+sha-ee8ecfa'));
3161031610
definitionMap.set('ngImport', importExpr(Identifiers.core));
3161131611
// e.g. `type: MyPipe`
3161231612
definitionMap.set('type', meta.type.value);

0 commit comments

Comments
 (0)