Skip to content

release: cut pre-release v19.0.0-next.1 for vscode extension #2097

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 28, 2024
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
Expand Up @@ -2,7 +2,7 @@
# Input hashes for repository rule npm_translate_lock(name = "npm", pnpm_lock = "//:pnpm-lock.yaml").
# This file should be checked into version control along with the pnpm-lock.yaml file.
.npmrc=974837034
pnpm-lock.yaml=-669844848
yarn.lock=-1354378917
package.json=1362856573
pnpm-lock.yaml=1558677558
yarn.lock=1032887011
package.json=-54516055
pnpm-workspace.yaml=1711114604
19 changes: 16 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 19.0.0-next.1
This release upgrades `@angular/language-service` to v19.0.0-next.11.

* **feat**: Code refactoring action to migrate `@Input` to signal inputs.
* https://v19.angular.dev/reference/migrations/signal-inputs
* **feat**: Code refactoring action to migrate decorator queries to signal queries.
e.g. `@ViewChild` to `viewChild()`.
* https://v19.angular.dev/reference/migrations/signal-queries

To use any of the new code refactoring actions, click on an input or query, and wait for
the code refactoring lightbulb to appear. You can also click on the class header to update
inputs or queries for the full class!

# 19.0.0-next.0
This release upgrades `@angular/language-service` to v19.0.0-next.6.

Expand Down Expand Up @@ -111,7 +124,7 @@ This release upgrades `@angular/language-service` to v17.0.0-next.6.
This release upgrades the `@angular/language-service` to v16.2.8

* fix: Retain correct language service when ts.Project reloads ([#51912](https://github.com/angular/angular/commit/08482f2c7dcbcd100981dfb266a6e63f64432328))
* fix(server): support to show the tag info in the jsDoc (#1904)
* fix(server): support to show the tag info in the jsDoc (#1904)
* fix(client): fix detection of Angular context after string interpolation (#1922)

# 16.1.8
Expand Down Expand Up @@ -208,8 +221,8 @@ This release upgrades `@angular/language-service` to v14.0.0
* feat(extension): Support renaming from TypeScript files (#1589)
* feat(extension): Add option to force strict templates (#1646) (17fdb9ec6)
* feat: add command to run ngcc manually (#1621) (dd0e0009b)
* Fix detection of Angular for v14+ projects ([#45998](https://github.com/angular/angular/pull/45998))
* Prevent TSServer from removing templates from project ([#45965](https://github.com/angular/angular/pull/45965))
* Fix detection of Angular for v14+ projects ([#45998](https://github.com/angular/angular/pull/45998))
* Prevent TSServer from removing templates from project ([#45965](https://github.com/angular/angular/pull/45965))

# v13.3.4

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ng-template",
"displayName": "Angular Language Service",
"description": "Editor services for Angular templates",
"version": "19.0.0-next.0",
"version": "19.0.0-next.1",
"publisher": "Angular",
"icon": "angular.png",
"license": "MIT",
Expand Down Expand Up @@ -246,7 +246,7 @@
},
"dependencies": {
"@angular/language-service": "~19.0.0-next.11",
"typescript": "5.6.1-rc",
"typescript": "5.6.2",
"vscode-html-languageservice": "^4.2.5",
"vscode-jsonrpc": "6.0.0",
"vscode-languageclient": "7.0.0",
Expand Down
48 changes: 24 additions & 24 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7258,10 +7258,10 @@ typed-rest-client@^1.8.4:
tunnel "0.0.6"
underscore "^1.12.1"

[email protected].1-rc:
version "5.6.1-rc"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.1-rc.tgz#d5e4d7d8170174fed607b74cc32aba3d77018e02"
integrity sha512-E3b2+1zEFu84jB0YQi9BORDjz9+jGbwwy1Zi3G0LUNw7a7cePUrHMRNy8aPh53nXpkFGVHSxIZo5vKTfYaFiBQ==
[email protected].2:
version "5.6.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.2.tgz#d1de67b6bef77c41823f822df8f0b3bcff60a5a0"
integrity sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==

typescript@~4.6.3:
version "4.6.4"
Expand Down
Loading