Skip to content
代码片段 群组 项目
提交 ab471ef7 编辑于 作者: Malcolm Locke's avatar Malcolm Locke
浏览文件

Improve clarity of FF changelog flow diagram

上级 3508b68b
No related branches found
No related tags found
无相关合并请求
...@@ -731,12 +731,25 @@ We want to avoid introducing a changelog when features are not accessible by an ...@@ -731,12 +731,25 @@ We want to avoid introducing a changelog when features are not accessible by an
Use the flowchart to determine the changelog entry type. Use the flowchart to determine the changelog entry type.
```mermaid ```mermaid
graph LR flowchart LR
A[flag: default off] -->|'added' / 'changed' / 'fixed' / '...'| B(flag: default on) FDOFF(Flag is currently\n`default: off`)
B -->|'other'| C(remove flag, keep new code) FDON(Flag is currently\n`default: on`)
B -->|'removed' / 'changed'| D(remove flag, keep old code) CDO{Change to\n`default: on`}
A -->|'added' / 'changed' / 'fixed' / '...'| C ACF(added / changed / fixed / '...')
A -->|no changelog| D RF{Remove flag}
RF2{Remove flag}
NC(No changelog)
RC(removed / changed)
OTHER(other)
FDOFF -->CDO-->ACF
FDOFF -->RF
RF-->|Keep new code?| ACF
RF-->|Keep old code?| NC
FDON -->RF2
RF2-->|Keep old code?| RC
RF2-->|Keep new code?| OTHER
``` ```
- The changelog for a feature flag should describe the feature and not the - The changelog for a feature flag should describe the feature and not the
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册