Skip to content

Changelog #110 #176

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 1 commit into from
Jan 3, 2022
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
2 changes: 1 addition & 1 deletion generated_assists.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ fn main() {

[discrete]
=== `destructure_tuple_binding`
**Source:** https://github.com/rust-analyzer/rust-analyzer/blob/master/crates/ide_assists/src/handlers/destructure_tuple_binding.rs#L14[destructure_tuple_binding.rs]
**Source:** https://github.com/rust-analyzer/rust-analyzer/blob/master/crates/ide_assists/src/handlers/destructure_tuple_binding.rs#L13[destructure_tuple_binding.rs]

Destructures a tuple binding in place.

Expand Down
3 changes: 2 additions & 1 deletion generated_features.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,8 @@ parenthesis:: Emitted for `()` parentheses.
colon:: Emitted for the `:` token.
comma:: Emitted for the `,` token.
dot:: Emitted for the `.` token.
Semi:: Emitted for the `;` token.
semi:: Emitted for the `;` token.
macroBang:: Emitted for the `!` token in macro calls.

//-

Expand Down
38 changes: 38 additions & 0 deletions thisweek/_posts/2022-01-03-changelog-110.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
= Changelog #110
:sectanchors:
:page-layout: post

Commit: commit:8e9ccbf97a70259b6c6576e8fd7d77d28238737e[] +
Release: release:2022-01-03[]

== Sponsors

**Become a sponsor:** On https://opencollective.com/rust-analyzer/[OpenCollective] or
https://github.com/sponsors/rust-analyzer[GitHub Sponsors].

== New Features

* pr:11151[] correctly fall back to `notify` if the client-side file watching is not supported.
* pr:11173[] allow partially resolved types in `Add explicit type`.

== Fixes

* pr:11136[] (first contribution) use the right numbers of placeholders in `Add turbofish`.
* pr:11088[] hide some trivial type hints.
* pr:11158[] enable completions for `<_>::$0`.
* pr:11171[] fix tool module classification.
* pr:11175[] fix highlighting hack for `self` params.
* pr:11144[] fix server path on NixOS.

== Internal Improvements

* pr:11131[] avoid speculation when completing macros.
* pr:11156[] record unresolved derive invocations in `hir`.
* pr:11160[] use a basic `NonEmptyVec` in `mbe::syntax_bridge`.
* pr:11169[], pr:11177[] handle macro calls better in highlighting.
* pr:11134[] tighten up parser API.
* pr:11141[], pr:11152[], pr:11153[] add tests for extra parser entry points.
* pr:11163[] add tests for top-level parser entry points.
* pr:11164[] more macro tests.
* pr:11165[], pr:11167[] start enforcing invariants for top-level entry points.
* pr:11127[] set a timeout on the Octokit client.