We are so glad you are considering contributing to ember-data. Below you'll find sections
detailing how to become involved to best ensure your contributions are successful!
Report issues you've discovered via the issue tracker.
We have provided an issue template what will help guide you through the process.
If you are unsure if something is a bug, the #ember-data channel on Discord is
a great place to ask for help!
Before embarking on a fix, a new feature, or a refactor it is usually best to discuss the
intended work with other contributors. In addition to holding discussions on individual issues
or RFCs, you will find most contributors
and core team members hangout in the #dev-ember-data channel on Discord
Members of the ember-data core team meet weekly to discuss pull-requests, issues, and road-map items. These
meetings are open to all contributors and interested parties, but only team members may vote when a vote
is necessary.
Currently meetings are Wednesdays at 2pm Pacific Time. A video conference link is posted in the
#dev-ember-data channel on Discord a few minutes prior to each meeting.
ember-data participates in the RFC process (GitHub emberjs/rfcs).
Most changes to the public API including new features, changes in behavior, or deprecations require
community discussion and must go through this process.
While there is no guarantee that an RFC will be accepted, successful RFCs typically follow a pattern of iteration while gathering requirements, addressing feedback, and consensus building. The best RFCs are narrowly scoped with clear understanding of alternatives, drawbacks, and their effect on the community.
Here are a few suggestions of **steps to take before drafting your RFC** to best make your RFC successful.
Often this process will complete quickly, but when it does not, don't despair! Often the best ideas
take the longest to bake.
- Bring up your idea in the
#dev-ember-datachannel on Discord or with individual team members - Reflect on any concerns, alternatives, or questions that arise from these discussions.
- Continue to discuss the idea, giving time for everyone to digest and think about it.
- Attend the weekly team meeting to discuss your idea
- Open an RFC issue
to broaden and record the discussion if the idea needs more time for discussion and iteration.
- label your issue with
T-ember-data(or ask someone in#dev-ember-datato add the label if you lack the permission) - announce your issue in
#dev-ember-dataand anywhere else desired such as#news-and-announcementsandtwitter.
- label your issue with
- Draft an RFC and share it with those you have been discussing the ideas with.
- Publish your RFC by opening a PR to emberjs/rfcs/
- label your PR with
T-ember-data(or ask someone in#dev-ember-datato add the label if you lack the permission) - announce your PR in
#dev-ember-dataand anywhere else desired such as#news-and-announcementsandtwitter.
- label your PR with
- Attend weekly team meetings to discuss the RFC, continue iterating on the RFC, and help shepherd it to completion.
- Build a proof-of-concept. Sometimes this is best if it occurs alongside drafting the RFC, as it often informs the RFC design, known drawbacks, and alternatives. Often it will become incorporated in the final implementation.
- If you are able, help land the work in a release! It is not required that you implement your own RFC but often this is the best way to ensure that accepted RFCs are implemented in a timely manner.
Before implementing a feature or a fix, it is usually best to discuss the proposed changes with team members. Some fixes might require new public API or changes to existing public APIs. If this is the case, it is even more important to discuss the issue's problem space and the proposed changes before diving too deep into the implementation.
- Submissions should be made as PRs against the
masterbranch.
All PRs should have accompanying tests. For bug-fixes, this should include tests that demonstrate the issue being fixed and test that the solution works.
- We do write tests for our warns and assertion messages, using the
assert.expectAssertion()andassert.expectWarning()helpers. - Because Travis runs tests in the
productionenvironment, assertions and warnings are stripped out. To avoid tests on warning/assertion messages failing for your PR, use thetestInDebugfunction instead ofqunittestto skip them in production. - Include tests that fail without your code, and pass with it
- Update the documentation, examples, and guides when affected by your contribution
- PRs will automatically run an extensive set of test scenarios for your work
ember-datais anember-addonand usesember-cli. To run tests locally useyarn testoryarn test --serve. For additional test commands see the list of commands in ./package.json
All commits should be tagged. Tags are denoted by square brackets ([]) and come at the start of the commit message.
[CLEANUP]: commits that remove deprecated functionality[CHORE]: commits that refactor code or update dependencies[TEST <feature-name>]: commits that add tests for a feature[FEAT <feature-name>]: commits that add features[DOC <feature-name>]|[DOC]: commits that add or fix documentation for a feature[SECURITY <cve>]: commits that address security vulnerabilities. Please do not submit security related PRs without coordinating with the security team. See the Security Policy for more information.[BUGFIX <feature-name>]: commits that fix an issue. The PR should also specify the github issue # of the issue being resolved.
In general almost all commits should fall into one of the above categories. In the cases where they don't please submit your PR untagged.
Sometimes a new feature can't be completed all at once, but portions of it can be landed to help parallelize the effort and make the review process simpler.
in-progress-feature flags allow for code to be present on the master
branch but stripped from any build that isn't.
These flags have three states. Locally here means that a developer is
working within the addon itself. Locally linking ember-data to
another project or using a master build will not make code behind
the flags available unless isDevelopingAddon in index.js is modified
to return true.
-
false: the feature is only available locally and the code behind the flag is stripped at all times and never included in test runs. To develop on this feature use--enable-in-progress-flag="desired-flag-name,another-flag-name"when running a command. This flag will never be active inCIjobs meaning that both tests and code wrapped in a check for this flag will not run. -
null: The same asfalseexcept theEnabled In-Progress Featuresjob inCIwill activate the flag to ensure it passes tests. Use this for features that are nearing delivery and need protection against regressions but are not quite polished off yet.Other test runs and
CIwill still default the flag tofalseto ensure that what we would release (were we to release master) works as expected.The
--enable-in-progressflag and the Travis JobEnabled In-Progress Featureswill run the tests with any flags set tonullenabled to prevent regressions. -
true: Indicates that this feature is "complete". Features set totruewill be included in anyreleasepublished while the flag is in that state, any build frommasterand allCIjobs.This is a sign that the feature has entered a final testing phase and the in-progress flags for the feature should be removed before a stable release is published.
Sometimes a nearly releasable feature may encounter problems late in the release cycle. For such problems, the flag should be moved back to the
nullstate prior to doing a release.Versions published with a flag set to
truewill include that feature.
- Add your new feature flag to the config/in-progress-features.json file with the
ds-prefix.
{
"ds-mynew-feature": false
}Give it a default of false so it will not be used in production builds.
- Import
isEnabledfromember-data/-private, wrapping any new code with your feature:
import { isEnabled } from 'ember-data/-private';
if (isEnabled('ds-mynew-feature')) {
// ... any additional code
} else {
// ... any previous code that may have been overwritten
}- Similarly, you will want to wrap any new or edited tests with the same feature flag.
import { isEnabled } from 'ember-data/-private';
if (isEnabled('ds-mynew-feature')) {
test('test for new feature', function(assert) {
// ...
});
}This will ensure these feature tests are only run when then feature is included in the build for ember-data.
-
Commit your work. For more information about commit prefixes see Commit Tagging.
-
Push to your fork and submit a pull request. Please provide us with some explanation of why you made the changes you made. For new features make sure to explain a standard use case to us. Use the commit tagging guidelines for the PR title.
- Commit tagging section taken from ember.js