Skip to content

Commit

Permalink
Add UPGRADE for 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Nov 26, 2020
1 parent 7b04283 commit 43cb741
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Upgrade

### View Parameter of Single and Multi Selection Content Types changed

The view parameter of the single and multi selection has changed to be consistent through all selections:

**Before:**

```json
"view" {
"single_selection": 1,
"multi_selection": [1, 2],
}
```

**After:**

```json
"view" {
"single_selection": {
"id": 1,
},
"multi_selection": {
"ids": [1, 2]
},
}
```

## 0.2.0

### Data given into Twig file changed
Expand Down

0 comments on commit 43cb741

Please sign in to comment.