Skip to content

Commit adc403b

Browse files
committed
Changelog #190
1 parent e425320 commit adc403b

File tree

2 files changed

+36
-4
lines changed

2 files changed

+36
-4
lines changed

generated_assists.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ struct Point<'a> {
197197

198198
[discrete]
199199
=== `add_missing_match_arms`
200-
**Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/add_missing_match_arms.rs#L16[add_missing_match_arms.rs]
200+
**Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/add_missing_match_arms.rs#L13[add_missing_match_arms.rs]
201201

202202
Adds missing clauses to a `match` expression.
203203

@@ -1147,7 +1147,7 @@ impl Default for Example {
11471147

11481148
[discrete]
11491149
=== `generate_delegate_methods`
1150-
**Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/generate_delegate_methods.rs#L12[generate_delegate_methods.rs]
1150+
**Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/generate_delegate_methods.rs#L16[generate_delegate_methods.rs]
11511151

11521152
Generate delegate methods.
11531153

@@ -1286,7 +1286,7 @@ impl core::ops::Deref for B {
12861286

12871287
[discrete]
12881288
=== `generate_derive`
1289-
**Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/generate_derive.rs#L9[generate_derive.rs]
1289+
**Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/generate_derive.rs#L8[generate_derive.rs]
12901290

12911291
Adds a new `#[derive()]` clause to a struct or enum.
12921292

@@ -2375,7 +2375,7 @@ fn t() {}
23752375

23762376
[discrete]
23772377
=== `promote_local_to_const`
2378-
**Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/promote_local_to_const.rs#L19[promote_local_to_const.rs]
2378+
**Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/promote_local_to_const.rs#L16[promote_local_to_const.rs]
23792379

23802380
Promotes a local variable to a const item changing its name to a `SCREAMING_SNAKE_CASE` variant
23812381
if the local uses no non-const expressions.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
= Changelog #190
2+
:sectanchors:
3+
:experimental:
4+
:page-layout: post
5+
6+
Commit: commit:d82451103962b1482cb137850c81a1acb34db0e7[] +
7+
Release: release:2023-07-17[] (`v0.3.1591`)
8+
9+
== Fixes
10+
* pr:15248[] fix eager token mapping panics.
11+
* pr:15297[] normalize type alias in `projected_ty`.
12+
* pr:15258[] support `getrandom` syscall in MIR.
13+
* pr:15268[] add `write_bytes` and `ctlz` intrinsics.
14+
* pr:15282[] add `type_name` intrinsic and give real `discriminant_type` to `chalk`.
15+
* pr:15284[] add `sched_getaffinity` and enable `cfg(miri)` in analysis.
16+
17+
== Internal Improvements
18+
19+
* pr:15257[] (first contribution) ignore `Content-Length` header case in `lsp-server`.
20+
* pr:15270[] (first contribution) make fields of `mir::Terminator` public.
21+
* pr:15292[] (first contribution) fix typo in command line help.
22+
* pr:15295[] (first contribution) fix `rust-analzyer ssr` help message.
23+
* pr:15251[] skip building subtrees for built-in derives.
24+
* pr:15231[], pr:15260[] migrate more assists to use the structured snippet API.
25+
* pr:15263[] enable `derive` feature for `serde` in `lsp-server`.
26+
* pr:15267[] mark MIR execution limit test as slow.
27+
* pr:15252[] enable `useUnknownInCatchVariables` TypeScript option.
28+
* pr:15259[] use type imports.
29+
* pr:15254[] add FIXME for `exactOptionalPropertyTypes`.
30+
* pr:15264[], pr:15265[] bump npm dependencies.
31+
* pr:15266[] set `.editorconfig` default indent size to `4`.
32+
* pr:15275[] default to stable toolchain in the metrics workflow.

0 commit comments

Comments
 (0)