Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<mat-table [dataSource]="blockService.blockedUsers | async">
<mat-table [dataSource]="(blockService.blockedUsers | async) ?? []">
<ng-container matColumnDef="username">
<mat-header-cell *matHeaderCellDef> Username </mat-header-cell>
<mat-cell class="username-cell" *matCellDef="let user">
Expand Down
18 changes: 9 additions & 9 deletions apps/code-of-conduct/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"dependencies": {
"@angular/animations": "22.0.0-next.4",
"@angular/cdk": "22.0.0-next.1",
"@angular/common": "22.0.0-next.4",
"@angular/compiler": "22.0.0-next.4",
"@angular/core": "22.0.0-next.4",
"@angular/animations": "22.0.0-next.5",
"@angular/cdk": "22.0.0-next.2",
"@angular/common": "22.0.0-next.5",
"@angular/compiler": "22.0.0-next.5",
"@angular/core": "22.0.0-next.5",
"@angular/fire": "21.0.0-rc.0",
"@angular/forms": "22.0.0-next.4",
"@angular/material": "22.0.0-next.1",
"@angular/platform-browser": "22.0.0-next.4",
"@angular/router": "22.0.0-next.4",
"@angular/forms": "22.0.0-next.5",
"@angular/material": "22.0.0-next.2",
"@angular/platform-browser": "22.0.0-next.5",
"@angular/router": "22.0.0-next.5",
Comment on lines +3 to +12

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The dependency @octokit/rest on line 13 has an empty version string (""), which is invalid for a package.json file. This will likely cause package installation to fail. Please specify a valid version for this package or remove it if it's no longer needed.

"@octokit/rest": "",
"rxjs": "7.8.2",
"zone.js": "0.16.1"
Expand Down
20 changes: 10 additions & 10 deletions bazel/integration/tests/angular-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@
"private": true,
"packageManager": "pnpm@10.32.1",
"dependencies": {
"@angular/animations": "22.0.0-next.4",
"@angular/common": "22.0.0-next.4",
"@angular/compiler": "22.0.0-next.4",
"@angular/core": "22.0.0-next.4",
"@angular/forms": "22.0.0-next.4",
"@angular/platform-browser": "22.0.0-next.4",
"@angular/router": "22.0.0-next.4",
"@angular/animations": "22.0.0-next.5",
"@angular/common": "22.0.0-next.5",
"@angular/compiler": "22.0.0-next.5",
"@angular/core": "22.0.0-next.5",
"@angular/forms": "22.0.0-next.5",
"@angular/platform-browser": "22.0.0-next.5",
"@angular/router": "22.0.0-next.5",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "22.0.0-next.2",
"@angular/cli": "22.0.0-next.2",
"@angular/compiler-cli": "22.0.0-next.4",
"@angular/build": "22.0.0-next.3",
"@angular/cli": "22.0.0-next.3",
"@angular/compiler-cli": "22.0.0-next.5",
"@types/jasmine": "~6.0.0",
"@types/node": "24.12.0",
"chromedriver": "^146.0.0",
Expand Down
356 changes: 178 additions & 178 deletions bazel/integration/tests/angular-cli/pnpm-lock.yaml

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions bazel/rules/rules_angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@
"pnpm": "10.32.1"
},
"dependencies": {
"@angular/compiler-cli": "22.0.0-next.4",
"@angular/compiler-cli": "22.0.0-next.5",
"typescript": "5.9.3"
},
"devDependencies": {
"@angular/build": "22.0.0-next.2",
"@angular/cli": "22.0.0-next.2",
"@angular/common": "22.0.0-next.4",
"@angular/compiler": "22.0.0-next.4",
"@angular/core": "22.0.0-next.4",
"@angular/platform-browser": "22.0.0-next.4",
"@angular/build": "22.0.0-next.3",
"@angular/cli": "22.0.0-next.3",
"@angular/common": "22.0.0-next.5",
"@angular/compiler": "22.0.0-next.5",
"@angular/core": "22.0.0-next.5",
"@angular/platform-browser": "22.0.0-next.5",
"@babel/core": "^7.28.5",
"@bazel/bazelisk": "1.28.1",
"@rollup/plugin-commonjs": "^29.0.0",
Expand Down
296 changes: 148 additions & 148 deletions bazel/rules/rules_angular/pnpm-lock.yaml

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion bazel/spec-bundling/test/async-await.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'zone.js';
import 'zone.js/testing';

import {JSDOM} from 'jsdom';
import {Component, provideZoneChangeDetection} from '@angular/core';
import {ChangeDetectionStrategy, Component, provideZoneChangeDetection} from '@angular/core';
import {fakeAsync, flush, TestBed} from '@angular/core/testing';
import {BrowserTestingModule, platformBrowserTesting} from '@angular/platform-browser/testing';

Expand Down Expand Up @@ -46,6 +46,7 @@ describe('native async/await downleveled', () => {
'(click)': 'click()',
},
standalone: false,
changeDetection: ChangeDetectionStrategy.Eager,
})
class AppComponent {
triggered = false;
Expand Down
6 changes: 3 additions & 3 deletions bazel/spec-bundling/test/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"dependencies": {
"@angular/compiler": "22.0.0-next.4",
"@angular/core": "22.0.0-next.4",
"@angular/platform-browser": "22.0.0-next.4",
"@angular/compiler": "22.0.0-next.5",
"@angular/core": "22.0.0-next.5",
"@angular/platform-browser": "22.0.0-next.5",
"@types/jasmine": "6.0.0",
"@types/jsdom": "28.0.0",
"@types/node": "24.12.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
}
},
"devDependencies": {
"@angular/compiler-cli": "22.0.0-next.4",
"@angular/compiler-cli": "22.0.0-next.5",
"@bazel/bazelisk": "1.28.1",
"@bazel/buildifier": "8.2.1",
"firebase-tools": "15.10.1",
Expand Down
192 changes: 96 additions & 96 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading