--- note_id: n53PZVXnSxSrvEcp1zrohA --- # Old MCPs not seconded (After ~3 months they are candidate for closing - [MCP process](https://forge.rust-lang.org/compiler/mcp.html#when-should-major-change-proposals-be-closed)) The [list on Github](https://github.com/rust-lang/compiler-team/issues?q=is%3Aissue+is%3Aopen+label%3Amajor-change+-label%3Afinal-comment-period+sort%3Aupdated-asc). - Old MCPs (not seconded, take a look) - "Consistently use 'region' terminology in later stages of the compiler" [compiler-team#634](https://github.com/rust-lang/compiler-team/issues/634) - 22-08-2023 Pinged on Zulip, seems fine to accept? - "Add a new `--build-id` flag to rustc" [compiler-team#635](https://github.com/rust-lang/compiler-team/issues/635) - waiting on a second, the proposal has received mixed comments - "Add support for visionOS targets" [compiler-team#642](https://github.com/rust-lang/compiler-team/issues/642) - status? - "Match the behavior of `strip` and `split-debuginfo` across platforms" [compiler-team#669](https://github.com/rust-lang/compiler-team/issues/669) - status? - "Retire the mailing list and make all decisions on zulip" [compiler-team#649](https://github.com/rust-lang/compiler-team/issues/649) - status? - "Add `$message_type` field to distinguish json diagnostic outputs" [compiler-team#673](https://github.com/rust-lang/compiler-team/issues/673) - status? --- <details><summary>generate this report</summary> (needs a Github personal token) ``` curl -qsS https://api.github.com/search/issues?q=repo%3Arust-lang/compiler-team+is%3Aissue+is%3Aopen+label%3Amajor-change+-label%3Afinal-comment-period+sort%3Aupdated-asc \ -H "Authorization: Bearer $GITHUB_API_TOKEN" \ -H "Content-Type: application/json" \ -H "X-GitHub-Api-Version: 2022-11-28" \ -H "Accept: application/vnd.github+json" \ | jq -c '.items[] | {title, number, html_url}' ``` or with `httpie`: ``` http https://api.github.com/search/issues?q=repo%3Arust-lang/compiler-team+is%3Aissue+is%3Aopen+label%3Amajor-change+-label%3Afinal-comment-period+sort%3Aupdated-asc \ --auth-type=jwt \ --session gh-session.json \ | jq -c '.items[] | {title, number, html_url}' ``` </details>