Skip to content

Commit 61dfe99

Browse files
committed
feat: add experiments workflow
1 parent a42e174 commit 61dfe99

File tree

3 files changed

+90
-2
lines changed

3 files changed

+90
-2
lines changed

docs/docs/contributing.md

+5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ Studio Code][vscode-task].
2525
there an approach you can take that maintains this compatibility? If not,
2626
consider opening an issue first so that API changes can be discussed before
2727
you invest your time into a PR.
28+
- **Experiments** - If there is no way to make your change backward compatible
29+
then there is a procedure to introduce breaking changes into minor versions.
30+
We call these "[experiments][experiments]". If you're intending to work on an
31+
experiment, then please read the [experiments workflow][experiments-workflow]
32+
document carefully and submit a proposal first.
2833

2934
## 1. Setup
3035

docs/docs/experiments/experiments.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ You can enable an experimental feature by:
2727
1. Using the `TASK_X_<FEATURE>=1` environment variable. This is intended for
2828
permanently enabling experimental features in your environment.
2929

30-
You can view the [full breaking changes proposal on
31-
GitHub][breaking-change-proposal].
30+
Flags will always override environment variables.
3231

3332
## Current Experimental Features and Deprecations
3433

docs/docs/experiments/workflow.md

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
---
2+
slug: /experiments/workflow/
3+
---
4+
5+
# Workflow
6+
7+
Experiments are a way for us to test out new features in Task before committing
8+
to them in a major release. Because this concept is built around the idea of
9+
feedback from our community, we have built a workflow for the process of
10+
introducing these changes. This ensures that experiments are given the attention
11+
and time that they need and that we are getting the best possible results out of
12+
them.
13+
14+
The sections below describe the various stages that an experiment must go
15+
through from its proposal all the way to being released in a major version of
16+
Task.
17+
18+
## 1. Proposal
19+
20+
All experimental features start with a proposal in the form of a GitHub issue.
21+
If the maintainers decide that an issue has enough support and is a breaking
22+
change or is complex/controversial enough to require user feedback, then the
23+
issue will be marked with the ![proposal] label. At this point, the issue
24+
becomes a proposal and a period of consultation begins. During this period, we
25+
request that users provide feedback on the proposal and how it might effect
26+
their use of Task. It is up to the discretion of the maintainers to decide how
27+
long this period lasts.
28+
29+
## 2. Draft
30+
31+
Once a proposal's consultation ends, a contributor may pick up the work and
32+
begin the initial implementation. Once a PR is opened, the maintainers will
33+
ensure that it meets the requirements for an experimental feature (i.e. flags
34+
are in the right format etc) and merge the feature. Once this code is released,
35+
the status will be updated via the ![draft] label. This indicates that an
36+
implementation is now available for use in a release and the experiment is open
37+
for feedback.
38+
39+
:::note
40+
41+
During the draft period, major changes to the implementation may be made based
42+
on the feedback received from users. There are _no stability guarantees_ and
43+
experimental features may be abandoned _at any time_.
44+
45+
:::
46+
47+
## 3. Candidate
48+
49+
Once an acceptable level of consensus has been reached by the community and
50+
feedback/changes are less frequent/significant, the status may be updated via
51+
the ![candidate] label. This indicates that a proposal is _likely_ to accepted
52+
and will enter a period for final comments and minor changes.
53+
54+
## 4. Stable
55+
56+
Once a suitable amount of time has passed with no changes or feedback, an
57+
experiment will be given the ![stable] label. At this point, the functionality
58+
will be treated like any other feature in Task and any changes _must_ be
59+
backward compatible. This allows users to migrate to the new functionality
60+
without having to worry about anything breaking in future releases. This
61+
provides the best experience for users migrating to a new major version.
62+
63+
## 5. Released
64+
65+
When making a new major release of Task, all experiments marked as ![stable]
66+
will move to ![released] and their behaviors will become the new default in
67+
Task. Experiments in an earlier stage (i.e. not stable) cannot be released and
68+
so will continue to be experiments in the new version.
69+
70+
## Abandoned / Superseeded
71+
72+
If an experiment is unsuccessful at any point then it will be given the
73+
![abandoned] or ![superseeded] labels depending on which is more suitable. These
74+
experiments will be removed from Task.
75+
76+
<!-- prettier-ignore-start -->
77+
[proposal]: https://img.shields.io/badge/experiment:%20proposal-purple
78+
[draft]: https://img.shields.io/badge/experiment:%20draft-purple
79+
[candidate]: https://img.shields.io/badge/experiment:%20candidate-purple
80+
[stable]: https://img.shields.io/badge/experiment:%20stable-purple
81+
[released]: https://img.shields.io/badge/experiment:%20released-purple
82+
[abandoned]: https://img.shields.io/badge/experiment:%20abandoned-purple
83+
[superseeded]: https://img.shields.io/badge/experiment:%20superseeded-purple
84+
<!-- prettier-ignore-end -->

0 commit comments

Comments
 (0)