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
4 changes: 4 additions & 0 deletions goldens/public-api/angular_devkit/schematics/index.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,8 @@ export interface CreateFileAction extends ActionBase {
export class DelegateTree implements Tree_2 {
constructor(_other: Tree_2);
// (undocumented)
[x: symbol]: () => this;
// (undocumented)
get actions(): Action[];
// (undocumented)
apply(action: Action, strategy?: MergeStrategy): void;
Expand Down Expand Up @@ -518,6 +520,8 @@ export class HostSink extends SimpleSinkBase {
export class HostTree implements Tree_2 {
constructor(_backend?: virtualFs.ReadonlyHost<{}>);
// (undocumented)
[x: symbol]: () => this;
// (undocumented)
get actions(): Action[];
// (undocumented)
apply(action: Action, strategy?: MergeStrategy): void;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
"tree-kill": "1.2.2",
"ts-node": "^10.9.1",
"tslib": "2.8.1",
"typescript": "5.6.3",
"typescript": "5.7.2",
"undici": "7.0.0",
"unenv": "^1.10.0",
"verdaccio": "6.0.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/angular_devkit/core/node/host.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class NodeJsAsyncHost implements virtualFs.Host<Stats> {

read(path: Path): Observable<virtualFs.FileBuffer> {
return observableFrom(fsPromises.readFile(getSystemPath(path))).pipe(
map((buffer) => new Uint8Array(buffer).buffer as virtualFs.FileBuffer),
map((buffer) => new Uint8Array(buffer).buffer),
);
}

Expand Down Expand Up @@ -169,7 +169,7 @@ export class NodeJsSyncHost implements virtualFs.Host<Stats> {
return new Observable((obs) => {
const buffer = readFileSync(getSystemPath(path));

obs.next(new Uint8Array(buffer).buffer as virtualFs.FileBuffer);
obs.next(new Uint8Array(buffer).buffer);
obs.complete();
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"dependencies": {
"@angular-devkit/core": "^<%= coreVersion %>",
"@angular-devkit/schematics": "^<%= schematicsVersion %>",
"typescript": "~5.6.2"
"typescript": "~5.7.2"
},
"devDependencies": {
"@types/node": "^18.18.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"dependencies": {
"@angular-devkit/core": "^<%= coreVersion %>",
"@angular-devkit/schematics": "^<%= schematicsVersion %>",
"typescript": "~5.6.2"
"typescript": "~5.7.2"
},
"devDependencies": {
"@types/node": "^18.18.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/ngtools/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@angular-devkit/core": "0.0.0-PLACEHOLDER",
"@angular/compiler": "19.1.0-next.0",
"@angular/compiler-cli": "19.1.0-next.0",
"typescript": "5.6.3",
"typescript": "5.7.2",
"webpack": "5.96.1"
}
}
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
load("//tools:defaults.bzl", "ts_library")

# files fetched on 2024-09-10 from
# https://github.com/microsoft/TypeScript/releases/tag/v5.6.2
# files fetched on 2024-11-28 from
# https://github.com/microsoft/TypeScript/releases/tag/v5.7.2

# Commands to download:
# curl https://raw.githubusercontent.com/microsoft/TypeScript/v5.6.2/lib/typescript.d.ts -o packages/schematics/angular/third_party/github.com/Microsoft/TypeScript/lib/typescript.d.ts
# curl https://raw.githubusercontent.com/microsoft/TypeScript/v5.6.2/lib/typescript.js -o packages/schematics/angular/third_party/github.com/Microsoft/TypeScript/lib/typescript.js
# curl https://raw.githubusercontent.com/microsoft/TypeScript/v5.7.2/lib/typescript.d.ts -o packages/schematics/angular/third_party/github.com/Microsoft/TypeScript/lib/typescript.d.ts
# curl https://raw.githubusercontent.com/microsoft/TypeScript/v5.7.2/lib/typescript.js -o packages/schematics/angular/third_party/github.com/Microsoft/TypeScript/lib/typescript.js

licenses(["notice"]) # Apache 2.0

Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"ts-node": "~10.9.0",
"typescript": "~5.6.2",
"typescript": "~5.7.2",
"zone.js": "~0.15.0"
}
}
26 changes: 13 additions & 13 deletions tests/legacy-cli/e2e/assets/19-ssr-project-webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,25 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^19.0.0-next.0",
"@angular/common": "^19.0.0-next.0",
"@angular/compiler": "^19.0.0-next.0",
"@angular/core": "^19.0.0-next.0",
"@angular/forms": "^19.0.0-next.0",
"@angular/platform-browser": "^19.0.0-next.0",
"@angular/platform-browser-dynamic": "^19.0.0-next.0",
"@angular/platform-server": "^19.0.0-next.0",
"@angular/router": "^19.0.0-next.0",
"@angular/ssr": "^19.0.0-next.0",
"@angular/animations": "^19.1.0-next.0",
"@angular/common": "^19.1.0-next.0",
"@angular/compiler": "^19.1.0-next.0",
"@angular/core": "^19.1.0-next.0",
"@angular/forms": "^19.1.0-next.0",
"@angular/platform-browser": "^19.1.0-next.0",
"@angular/platform-browser-dynamic": "^19.1.0-next.0",
"@angular/platform-server": "^19.1.0-next.0",
"@angular/router": "^19.1.0-next.0",
"@angular/ssr": "^19.1.0-next.0",
"express": "^4.18.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.0-next.0",
"@angular/cli": "^19.0.0-next.0",
"@angular/compiler-cli": "^19.0.0-next.0",
"@angular-devkit/build-angular": "^19.1.0-next.0",
"@angular/cli": "^19.1.0-next.0",
"@angular/compiler-cli": "^19.1.0-next.0",
"@types/express": "^4.17.17",
"@types/jasmine": "~4.3.0",
"@types/mime": "^3.0.0",
Expand Down
24 changes: 22 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ __metadata:
tree-kill: "npm:1.2.2"
ts-node: "npm:^10.9.1"
tslib: "npm:2.8.1"
typescript: "npm:5.6.3"
typescript: "npm:5.7.2"
undici: "npm:7.0.0"
unenv: "npm:^1.10.0"
verdaccio: "npm:6.0.2"
Expand Down Expand Up @@ -3633,7 +3633,7 @@ __metadata:
"@angular-devkit/core": "npm:0.0.0-PLACEHOLDER"
"@angular/compiler": "npm:19.1.0-next.0"
"@angular/compiler-cli": "npm:19.1.0-next.0"
typescript: "npm:5.6.3"
typescript: "npm:5.7.2"
webpack: "npm:5.96.1"
peerDependencies:
"@angular/compiler-cli": ^19.0.0 || ^19.1.0-next.0
Expand Down Expand Up @@ -18418,6 +18418,16 @@ __metadata:
languageName: node
linkType: hard

"typescript@npm:5.7.2":
version: 5.7.2
resolution: "typescript@npm:5.7.2"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 10c0/a873118b5201b2ef332127ef5c63fb9d9c155e6fdbe211cbd9d8e65877283797cca76546bad742eea36ed7efbe3424a30376818f79c7318512064e8625d61622
languageName: node
linkType: hard

"typescript@npm:~4.9.0":
version: 4.9.5
resolution: "typescript@npm:4.9.5"
Expand All @@ -18438,6 +18448,16 @@ __metadata:
languageName: node
linkType: hard

"typescript@patch:typescript@npm%3A5.7.2#optional!builtin<compat/typescript>":
version: 5.7.2
resolution: "typescript@patch:typescript@npm%3A5.7.2#optional!builtin<compat/typescript>::version=5.7.2&hash=8c6c40"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 10c0/c891ccf04008bc1305ba34053db951f8a4584b4a1bf2f68fd972c4a354df3dc5e62c8bfed4f6ac2d12e5b3b1c49af312c83a651048f818cd5b4949d17baacd79
languageName: node
linkType: hard

"typescript@patch:typescript@npm%3A~4.9.0#optional!builtin<compat/typescript>":
version: 4.9.5
resolution: "typescript@patch:typescript@npm%3A4.9.5#optional!builtin<compat/typescript>::version=4.9.5&hash=289587"
Expand Down