Skip to content

Commit 65af44e

Browse files
committed
Changelog #275
1 parent 0b5692b commit 65af44e

7 files changed

+52
-8
lines changed

thisweek/_posts/2024-11-18-changelog-260.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ Release: release:2024-11-18[] (`v0.3.2188`)
1313

1414
== Internal Improvements
1515

16-
* pr:18495[] (first contribution) migrate `reorder_fields` assist to use `SyntaxFactory`.
16+
* pr:18495[] (first contribution) migrate `reorder_fields` assist to use `SyntaxEditor`.
1717
* pr:18482[] add public `direct_supertraits` and `all_supertraits` accessors to `hir::Trait`.

thisweek/_posts/2024-11-25-changelog-261.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ Release: release:2024-11-25[] (`v0.3.2196`)
1313

1414
== Internal Improvements
1515

16-
* pr:18485[] migrate `add_braces` assist to use `SyntaxFactory`.
17-
* pr:18521[] migrate `reorder_impl_items` assist to use `SyntaxFactory`.
16+
* pr:18485[] migrate `add_braces` assist to use `SyntaxEditor`.
17+
* pr:18521[] migrate `reorder_impl_items` assist to use `SyntaxEditor`.
1818
* pr:18552[] fix formatting in "missing ``rust-src``" message.

thisweek/_posts/2024-12-09-changelog-263.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Release: release:2024-12-09[] (`v0.3.2212`)
4343

4444
* pr:18561[] (first contribution) add macro expansion test for raw variable names.
4545
* pr:18595[] remove references to `platform-intrinsic` ABI.
46-
* pr:18483[] migrate `introduce_named_generic` assist to `SyntaxFactory`.
47-
* pr:18538[] migrate `sort_items` assist to `SyntaxFactory`.
46+
* pr:18483[] migrate `introduce_named_generic` assist to `SyntaxEditor`.
47+
* pr:18538[] migrate `sort_items` assist to `SyntaxEditor`.
4848
* pr:18551[] migrate `add_turbo_fish` assist to `SyntaxFditor`.
4949
* pr:18575[] migrate `flip` assists to `SyntaxEditor`.

thisweek/_posts/2024-12-30-changelog-266.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Release: release:2024-12-30[] (`v0.3.2237`)
2323
== Internal Improvements
2424

2525
* pr:18774[] implement parameter variance inference.
26-
* pr:18718[] standardize iterator passing in `SyntaxFactory`.
26+
* pr:18718[] standardize iterator passing in `SyntaxEditor`.
2727
* pr:18760[], pr:18762[] work around leaking `salsa` cycles.
2828
* pr:18761[] swallow `config value is not set` Cargo error.
2929
* pr:18754[] clean up target fetching for Cargo metadata.

thisweek/_posts/2025-02-17-changelog-273.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Release: release:2025-02-17[] (`v0.3.2308`)
2727

2828
* pr:19110[] (first contribution) `panic_context`.
2929
* pr:19142[] spawn toolchain querying processes in parallel.
30-
* pr:19155[] migrate `add_missing_match_arms` to `SyntaxFactory`.
30+
* pr:19155[] migrate `add_missing_match_arms` to `SyntaxEditor`.
3131
* pr:19163[] stabilize sort order of `related_tests`.
3232
* pr:19161[], pr:19166[] improve sort order of runnables.
3333
* pr:19159[] set `RUSTUP_TOOLCHAIN` when loading sysroot workspace.

thisweek/_posts/2025-02-24-changelog-274.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
:page-layout: post
55

66
Commit: commit:6d68c475c7aaf7534251182662456a4bf4216dfe[] +
7-
Release: release:2025-02-24[] (`v0.3.2317`)
7+
Release: release:2025-02-24[] (`v0.3.2319`)
88

99
== New Features
1010

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
= Changelog #275
2+
:sectanchors:
3+
:experimental:
4+
:page-layout: post
5+
6+
Commit: commit:81ff38f53b9a14ac608feb30b21ed42a41d016c6[] +
7+
Release: release:2025-03-03[] (`v0.3.2328`)
8+
9+
== Announcement
10+
11+
The x86-64, AArch64 and ARM Linux binaries now target GLIBC 2.28, and will keep doing so for the foreseeable future, which might be until June 2029.
12+
13+
== New Features
14+
15+
* pr:18987[] calculate drop glue and show it on hover.
16+
* pr:19259[] add "flip or-pattern" assist.
17+
* pr:19230[] set up Zig on CI and start using it in rust-analyzer.
18+
19+
== Fixes
20+
21+
* pr:19197[] (first contribution) update `insta` inline snapshot using `cargo insta` when clicking 'Update Test' runnable.
22+
* pr:19246[] (first contribution) add anchor for intra-doc links to associated items.
23+
* pr:19266[] (first contribution) add `identifier` to pull diagnostic LSP capabilities.
24+
* pr:19211[] include private items in completions for local crates.
25+
* pr:19223[] support target features implications in `target_feature` 1.1.
26+
* pr:19204[] allow `package/feature` format for features.
27+
* pr:19241[] map crate ids for proc macros in sysroot crate graph construction.
28+
* pr:19249[] avoid unnecessary parantheses in prefix adjustment hints.
29+
* pr:19250[] use precedence calculation for parentheses in `inline_local_variable`.
30+
* pr:19221[] add tab stop to impl body in `generate_trait_impl`.
31+
32+
== Internal Improvements
33+
34+
* pr:19239[] (first contribution) configure out performance counters on `ohos` to fix compilation.
35+
* pr:19096[] allow rust-project.json to specify sysroot workspace.
36+
* pr:19225[] migrate `remove_mut`, `remove_parantheses` and `remove_unused_param` to `SyntaxEditor`.
37+
* pr:19171[] migrate `apply_demorgan` to `SyntaxEditor`.
38+
* pr:19253[] migrate `convert_bool_then` to `SyntaxEditor`.
39+
* pr:19251[] remove syntax editing from parenthesis computation.
40+
* pr:19257[] clean up syntax highlighting.
41+
* pr:19219[] vendor `always-assert` into `stdx`.
42+
* pr:19237[] enable doctests.
43+
* pr:19218[] make release builds from source non-incremental.
44+
* pr:19194[] bump VS Code extension deps.

0 commit comments

Comments
 (0)