-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Retain end-of-line comment position when adding dependency #12360
Merged
Gankra
merged 6 commits into
astral-sh:main
from
christeefy:bug/retain-trailing-comment-position
Mar 21, 2025
Merged
Retain end-of-line comment position when adding dependency #12360
Gankra
merged 6 commits into
astral-sh:main
from
christeefy:bug/retain-trailing-comment-position
Mar 21, 2025
Conversation
This file contains 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
I'm realizing that testing is done using |
Gankra
approved these changes
Mar 21, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow this function does some real heroics for formatting, thanks for the fix!
tmeijn
pushed a commit
to tmeijn/dotfiles
that referenced
this pull request
Mar 26, 2025
This MR contains the following updates: | Package | Update | Change | |---|---|---| | [astral-sh/uv](https://github.com/astral-sh/uv) | patch | `0.6.9` -> `0.6.10` | MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot). **Proposed changes to behavior should be submitted there as MRs.** --- ### Release Notes <details> <summary>astral-sh/uv (astral-sh/uv)</summary> ### [`v0.6.10`](https://github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0610) [Compare Source](astral-sh/uv@0.6.9...0.6.10) ##### Enhancements - Add `uv sync --check` flag ([#​12342](astral-sh/uv#12342)) - Add support for Python version requests in `uv python list` ([#​12375](astral-sh/uv#12375)) - Support `.env` files in `uv tool run` ([#​12386](astral-sh/uv#12386)) - Support `python find --script` ([#​11891](astral-sh/uv#11891)) ##### Preview features - Check all compatible torch indexes when `--torch-backend` is enabled ([#​12385](astral-sh/uv#12385)) ##### Performance - Use a boxed slice for extras and groups ([#​12391](astral-sh/uv#12391)) - Use small string for index name type ([#​12355](astral-sh/uv#12355)) ##### Bug fixes - Allow virtual packages with `--no-build` ([#​12314](astral-sh/uv#12314)) - Ignore `--find-links` entries for pinned indexes ([#​12396](astral-sh/uv#12396)) - Omit wheels from lockfile based on `--exclude-newer` ([#​12299](astral-sh/uv#12299)) - Retain end-of-line comment position when adding dependency ([#​12360](astral-sh/uv#12360)) - Omit fragment when querying for wheels in Simple HTML API ([#​12384](astral-sh/uv#12384)) - Error on missing argument in `requirements.txt` ([#​12354](astral-sh/uv#12354)) - Support modules with different casing in build backend ([#​12240](astral-sh/uv#12240)) - Add authentication policy support for `pip` commands ([#​12470](astral-sh/uv#12470)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMTMuNSIsInVwZGF0ZWRJblZlciI6IjM5LjIxMy41IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJSZW5vdmF0ZSBCb3QiXX0=-->
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.
Summary
This fixes a case described in #12333, where trailing comments in dependencies can be unexpectedly shifted when a new dependency is added.
Fixes #12333.
Test Plan
cargo test
(Added a snapshot test)