Skip to content

Commit fd164be

Browse files
Update docs
1 parent 04b769e commit fd164be

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

Diff for: docs/UPGRADING.md

+52
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,58 @@ Here you can find a list of migration guides to handle breaking changes between
44

55
## 0.34.0
66

7+
### `board list --watch` command JSON output has changed
8+
9+
`board list --watch` command JSON output changed from:
10+
11+
```
12+
{
13+
"type": "add",
14+
"address": "COM3",
15+
"label": "COM3",
16+
"protocol": "serial",
17+
"protocol_label": "Serial Port (USB)",
18+
"hardwareId": "93B0245008567CB2",
19+
"properties": {
20+
"pid": "0x005E",
21+
"serialNumber": "93B0245008567CB2",
22+
"vid": "0x2341"
23+
},
24+
"boards": [
25+
{
26+
"name": "Arduino Nano RP2040 Connect",
27+
"fqbn": "arduino:mbed_nano:nanorp2040connect"
28+
}
29+
]
30+
}
31+
```
32+
33+
to:
34+
35+
```
36+
{
37+
"eventType": "add",
38+
"matching_boards": [
39+
{
40+
"name": "Arduino Nano RP2040 Connect",
41+
"fqbn": "arduino:mbed_nano:nanorp2040connect"
42+
}
43+
],
44+
"port": {
45+
"address": "COM3",
46+
"label": "COM3",
47+
"protocol": "serial",
48+
"protocol_label": "Serial Port (USB)",
49+
"properties": {
50+
"pid": "0x005E",
51+
"serialNumber": "93B0245008567CB2",
52+
"vid": "0x2341"
53+
},
54+
"hardware_id": "93B0245008567CB2"
55+
}
56+
}
57+
```
58+
759
### Updated sketch name specifications
860

961
[Sketch name specifications](https://arduino.github.io/arduino-cli/dev/sketch-specification) have been updated to

0 commit comments

Comments
 (0)