-
Notifications
You must be signed in to change notification settings - Fork 13k
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
make rustc_encodable_decodable feature properly unstable #134272
base: master
Are you sure you want to change the base?
make rustc_encodable_decodable feature properly unstable #134272
Conversation
r? @ibraheemdev rustbot has assigned @ibraheemdev. Use |
2993504
to
3ce5d1d
Compare
…_decodable, r=<try> make rustc_encodable_decodable feature properly unstable This has been shown in future-compat reports since Rust 1.79 (rust-lang#116016). Let's see if crater still finds any issues. Cc `@rust-lang/libs-api`
This comment has been minimized.
This comment has been minimized.
3ce5d1d
to
88960fd
Compare
@bors try |
…_decodable, r=<try> make rustc_encodable_decodable feature properly unstable This has been shown in future-compat reports since Rust 1.79 (rust-lang#116016). Let's see if crater still finds any issues. Cc `@rust-lang/libs-api`
☀️ Try build successful - checks-actions |
@craterbot check |
👌 Experiment ℹ️ Crater is a tool to run experiments across parts of the Rust ecosystem. Learn more |
88960fd
to
e9804a3
Compare
I don't think there really was a plan — soft destabilizing it was the extent to which it was discussed afaik. |
There's some mixed messaging here: the ACP says "full destabilization is not proposed due to breakage of existing code", but the lint that is emitted when using these types says this "will become a hard error in a future release". |
Ha, that's 100% on me. It must have been discussed on Zulip, as I wasn't aware soft destabilization was a thing before that. Anyways, it doesn't much matter. |
Well, seems like nobody complained about the future compat "this will become a hard error" warning that we have emitted for more than half a year now (and that is shown even when this occurs just in a dependency), so let's just see what crater says. |
🚧 Experiment ℹ️ Crater is a tool to run experiments across parts of the Rust ecosystem. Learn more |
🎉 Experiment
|
Analysis the regressed results with https://github.com/Skgland/Crater-Analysis yields: 139 times And five other
|
I've done an in-depth analysis of the crates.io failures at https://hackmd.io/@RalfJung/HyXfMpGH1e. (I did not look at the github repo failures.) There are 73 true regressions. Almost all of them are due to crates depending on num 0.1, which is ancient. v0.2 has been released more than 6 years ago, so likely all that code is basically unmaintained. This covers 61 of the true regressions. Everything else falls into two categories:
So, it seems like the impact on maintained code is negligible. Nominating for t-libs-api discussion. |
See also the Rust 2024 soft destabilization in: |
We discussed this in the libs-api meeting. Considering that this has been soft-deprecated for 6 months already, we believe the impact of breakage is low. However:
|
@Amanieu do you plan to do a libs-api FCP here, or can I consider this to be team consensus already? |
e9804a3
to
a25d805
Compare
I can update |
This comment has been minimized.
This comment has been minimized.
FCP to propose removing @rfcbot merge |
Team member @Amanieu has proposed to merge this. The next step is review by the rest of the tagged team members: No concerns currently listed. Once a majority of reviewers approve (and at most 2 approvals are outstanding), this will enter its final comment period. If you spot a major issue that hasn't been raised at any point in this process, please speak up! See this document for info about what commands tagged team members can give me. |
e771452
to
9ac62f9
Compare
🔔 This is now entering its final comment period, as per the review above. 🔔 |
This has been shown in future-compat reports since Rust 1.79 (#116016), released June 2024. Let's see if crater still finds any issues.
Part of #134301.
Cc @rust-lang/libs-api