emberjs / rfcs

RFCs for changes to Ember
https://rfcs.emberjs.com/
790 stars 408 forks source link

Advance RFC #1003 `"Deprecate `import Ember from 'ember';"` to Stage Ready for Release #1015

Open emberjs-rfcs-bot opened 8 months ago

emberjs-rfcs-bot commented 8 months ago

Advance #1003 to the Ready For Release Stage

Rendered

Summary

This pull request is advancing the RFC to the Ready For Release Stage.

An FCP is required before merging this PR to advance.

Upon merging this PR, automation will open a draft PR for this RFC to move to the Released Stage.

Ready for Release Stage Description This stage is complete when the implementation is complete according to plan outlined in the RFC, and is in harmony with any changes in Ember that have occurred since the RFC was first written. This includes any necessary learning materials. At this stage, features or deprecations may be available for use behind a feature flag, or with an optional package, etc. For codebase changes, there are no open questions that are anticipated to require breaking changes; the Ember team is ready to commit to the stability of any interfaces exposed by the current implementation of the feature. This stage should include a list of criteria for determining when the proposal can be considered Recommended after being Released. An FCP is required to move into this stage. Each Ember core team will be requested as a reviewer on the PR to move into this stage. A representative of each team adds a review. If a team does not respond to the request, and after the conclusion of the FCP, it is assumed that the release may proceed.

Checklist to move to Ready for Release

Criteria for moving to Recommended (required)

A set of criteria for moving this RFC to the Recommended Stage, following release:

  1. Update ember-data and other blueprint-packages to avoid import Ember from "ember"

Track Implementation

kategengler commented 5 months ago

Backed this out of FCP -- the deprecation guides haven't been accepted and there a few blockers to being able to enable the deprecation.

NullVoxPopuli commented 5 months ago

Status Update: Goal: get default blueprint non-violating with this set of deprecations.

Done, probably (pending any required changes from Outstanding):

Outstanding

davidtaylorhq commented 4 months ago

Is there a plan for Ember.EventDispatcher? I don't see it listed in the RFC, or the deprecation-guides PR 👀

(context: we access it to disable its functionality, so that we can use our own our own browser-native events implementation for classic components, and therefore have better support for mixing glimmer/classic components)

ef4 commented 4 months ago

EventDispatcher would still be accessible at:

import { EventDispatcher } from '@ember/-internals/views';

It would be really good if you could upstream that more-compatible event dispatching. It could be behind an optional feature so it's non-breaking. Instead of paying for the whole old event dispatching system that you don't want to use anyway, the optional feature could make sure it's dropped from the build.

I don't think it would be a controversial RFC, especially since you've already done the work to thoroughly test how compatible it is.

ef4 commented 2 weeks ago

Now is a good time to re-check whether we can get the stock blueprint running cleanly with no deprecation firing. We think everything is done but upgrades (like @glimmer/component) in the blueprint may need to land.

The inspector issue can still get tracked as a blocker for Recommended, not Released.

ef4 commented 2 weeks ago

It would be good to implement the optional deprecation activation in https://github.com/emberjs/rfcs/pull/896 as a way to test this deprecation.