Bug 1534762 Comment 0 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

The current `depends_on` field is a simple array, but Emma says it would be nice if it’s categorized by bug type. We need a new field to keep backward compatibility, and it would look like:

```json
{
    "depends_on": [1,2,3,4,5,6,7,8,9],
    "depends_on_detail": {
        "defect": [1,2,3],
        "enhancement": [4,5,6],
        "task": [7,8,9],
    }
}
```
The current `depends_on` field is a simple array, but Emma says it would be nice if it’s categorized by bug type. We need a new field to keep backward compatibility, and it would look like:

```json
{
    "depends_on": [1,2,3,4,5,6,7,8,9],
    "depends_on_typed": {
        "defect": [1,2,3],
        "enhancement": [4,5,6],
        "task": [7,8,9]
    }
}
```
The current `depends_on` field is a simple array of bug IDs, but Emma says it would be nice if it’s categorized by bug type. We need a new field to keep the backward compatibility, and it would look like:

```json
{
    "depends_on": [1,2,3,4,5,6,7,8,9],
    "depends_on_typed": {
        "defect": [1,2,3],
        "enhancement": [4,5,6],
        "task": [7,8,9]
    }
}
```

Back to Bug 1534762 Comment 0