Old MCPs not seconded

(After ~3 months they are candidate for closing - MCP process)

The list on Github.

  • Old MCPs (not seconded, take a look)
    • "Consistently use 'region' terminology in later stages of the compiler" compiler-team#634
      • 22-08-2023 Pinged on Zulip, seems fine to accept?
    • "Add a new --build-id flag to rustc" compiler-team#635
      • waiting on a second, the proposal has received mixed comments
  • "Add support for visionOS targets" compiler-team#642
    • status?
  • "Match the behavior of strip and split-debuginfo across platforms" compiler-team#669
    • status?
  • "Retire the mailing list and make all decisions on zulip" compiler-team#649
    • status?
  • "Add $message_type field to distinguish json diagnostic outputs" compiler-team#673
    • status?

generate this report

(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}'
Select a repo