chore(deps): update dependency rust-lang/rust-analyzer to v2026-05-25#206
Merged
Conversation
Contributor
Check & update settingsChecking tag range 2026-05-18..2026-05-25 Changed keys (1){
"rust-analyzer.completion.autoimport.exclude": {
"markdownDescription": "A list of full paths to items to exclude from auto-importing completions.\n\nTraits in this list won't have their methods suggested in completions unless the trait\nis in scope.\n\nYou can either specify a string path which defaults to type \"always\" or use the more\nverbose form `{ \"path\": \"path::to::item\", type: \"always\" }`.\n\nFor traits the type \"methods\" can be used to only exclude the methods but not the trait\nitself.\n\nFor modules the type \"subItems\" can be used to only exclude the all items in it but not the module\nitself. This does not include items defined in nested modules.\n\nThis setting also inherits `#rust-analyzer.completion.excludeTraits#`.",
"default": [
{
"path": "core::borrow::Borrow",
"type": "methods"
},
{
"path": "core::borrow::BorrowMut",
"type": "methods"
}
],
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"path": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"always",
"methods",
"subItems"
],
"markdownEnumDescriptions": [
"Do not show this item or its methods (if it is a trait) in auto-import completions.",
"Do not show this trait's methods in auto-import completions.",
"Do not show this module's all items in it in auto-import completions."
]
}
}
}
]
}
}
}// A list of full paths to items to exclude from auto-importing completions.
//
// Traits in this list won't have their methods suggested in completions unless the trait
// is in scope.
//
// You can either specify a string path which defaults to type "always" or use the more
// verbose form `{ "path": "path::to::item", type: "always" }`.
//
// For traits the type "methods" can be used to only exclude the methods but not the trait
// itself.
//
// For modules the type "subItems" can be used to only exclude the all items in it but not the module
// itself. This does not include items defined in nested modules.
//
// This setting also inherits `#rust-analyzer.completion.excludeTraits#`.
"rust-analyzer.completion.autoimport.exclude": [
{
"path": "core::borrow::Borrow",
"type": "methods"
},
{
"path": "core::borrow::BorrowMut",
"type": "methods"
}
],All changes in the configuration file--- 2026-05-18
+++ 2026-05-25
@@ -1328,7 +1328,7 @@
"title": "Completion",
"properties": {
"rust-analyzer.completion.autoimport.exclude": {
- "markdownDescription": "A list of full paths to items to exclude from auto-importing completions.\n\nTraits in this list won't have their methods suggested in completions unless the trait\nis in scope.\n\nYou can either specify a string path which defaults to type \"always\" or use the more\nverbose form `{ \"path\": \"path::to::item\", type: \"always\" }`.\n\nFor traits the type \"methods\" can be used to only exclude the methods but not the trait\nitself.\n\nThis setting also inherits `#rust-analyzer.completion.excludeTraits#`.",
+ "markdownDescription": "A list of full paths to items to exclude from auto-importing completions.\n\nTraits in this list won't have their methods suggested in completions unless the trait\nis in scope.\n\nYou can either specify a string path which defaults to type \"always\" or use the more\nverbose form `{ \"path\": \"path::to::item\", type: \"always\" }`.\n\nFor traits the type \"methods\" can be used to only exclude the methods but not the trait\nitself.\n\nFor modules the type \"subItems\" can be used to only exclude the all items in it but not the module\nitself. This does not include items defined in nested modules.\n\nThis setting also inherits `#rust-analyzer.completion.excludeTraits#`.",
"default": [
{
"path": "core::borrow::Borrow",
@@ -1355,11 +1355,13 @@
"type": "string",
"enum": [
"always",
- "methods"
+ "methods",
+ "subItems"
],
"enumDescriptions": [
"Do not show this item or its methods (if it is a trait) in auto-import completions.",
- "Do not show this traits methods in auto-import completions."
+ "Do not show this trait's methods in auto-import completions.",
+ "Do not show this module's all items in it in auto-import completions."
]
}
} |
Contributor
Author
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2026-05-18→2026-05-25Release Notes
rust-lang/rust-analyzer (rust-lang/rust-analyzer)
v2026-05-25Compare Source
Commit:
de5824bRelease:
2026-05-25(v0.3.2913)New Features
#22406(first contribution) addmutable-refdiagnostic.#22424(first contribution) addarray-pattern-without-fixed-lengthdiagnostic.#22404addcannot-index-intodiagnostics.#22416support excluding subitems from completions.Performance Improvements
#22322improve incrementality for modules.Fixes
#22432(first contribution) filter package-scoped features in flycheck.#22430(first contribution) saturate float to uint cast in const eval.#22415(first contribution) allow wildcard parameters in foreign function declarations.#22252refactor handling of generic parameters inhir::Type.#22396support named consts in range pattern types.#22392don't try autoref during method probe in path mode.#22385auto-import enum variants.#22425expected tuple struct pattern field in expected type completions.#22397complete macro paths in macro calls.#22399fixref_matchcompletions in macro calls.#22408don't complete semicolon in match expression.#22419use grouped annotation inadd_label_to_loop.#22369use wildcard on sad path inreplace_if_let_with_matchwith guard.#22383return a specific error for unimplemented built-in macros.Internal Improvements
#22420clean up bidirectional proc macro server protocol.See also the changelog post.
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.