File tree 1 file changed +52
-0
lines changed
1 file changed +52
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,58 @@ Here you can find a list of migration guides to handle breaking changes between
4
4
5
5
## 0.34.0
6
6
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
+
7
59
### Updated sketch name specifications
8
60
9
61
[ Sketch name specifications] ( https://arduino.github.io/arduino-cli/dev/sketch-specification ) have been updated to
You can’t perform that action at this time.
0 commit comments