-
-
Notifications
You must be signed in to change notification settings - Fork 15k
Stabilize dyn Allocator #156906
Copy link
Copy link
Open
Labels
I-libs-api-nominatedNominated for discussion during a libs-api team meeting.Nominated for discussion during a libs-api team meeting.T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.disposition-mergeThis issue / PR is in PFCP or FCP with a disposition to merge it.This issue / PR is in PFCP or FCP with a disposition to merge it.needs-triageThis issue may need triage. Remove it if it has been sufficiently triaged.This issue may need triage. Remove it if it has been sufficiently triaged.proposed-final-comment-periodProposed to merge/close by relevant subteam, see T-<team> label. Will enter FCP once signed off.Proposed to merge/close by relevant subteam, see T-<team> label. Will enter FCP once signed off.
Metadata
Metadata
Assignees
Labels
I-libs-api-nominatedNominated for discussion during a libs-api team meeting.Nominated for discussion during a libs-api team meeting.T-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.disposition-mergeThis issue / PR is in PFCP or FCP with a disposition to merge it.This issue / PR is in PFCP or FCP with a disposition to merge it.needs-triageThis issue may need triage. Remove it if it has been sufficiently triaged.This issue may need triage. Remove it if it has been sufficiently triaged.proposed-final-comment-periodProposed to merge/close by relevant subteam, see T-<team> label. Will enter FCP once signed off.Proposed to merge/close by relevant subteam, see T-<team> label. Will enter FCP once signed off.
Type
Fields
Give feedbackNo fields configured for issues without a type.

View all comments
PR #156882 is stabilizing
Allocator.In order to do so more easily, it's marking
Allocatoras notdyn-compatible, to reserve the options of either adding features that currently preventdyn-compatibility or marking itdyn-compatible and requiring those features to use an extension trait instead.In order to make this decision and the stabilization decision in parallel, I'm filing this issue for a separate FCP.
Based on the discussion in the All Hands, it seemed like there weren't any features that we couldn't do via the extension trait solution, allowing the base trait to be
dyn-compatible. So, in this issue, I'm proposing that we remove the limitation onAllocatorand allowdyn Allocator.