We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7392a0c commit 5055622Copy full SHA for 5055622
docs/UPGRADING.md
@@ -2,6 +2,25 @@
2
3
Here you can find a list of migration guides to handle breaking changes between releases of the CLI.
4
5
+## 0.25.0
6
+
7
+### go-lang function `github.com/arduino/arudino-cli/utils/FeedStreamTo` has been changed
8
9
+The function `FeedStreamTo` has been changed from:
10
11
+```go
12
+func FeedStreamTo(writer func(data []byte)) io.Writer
13
+```
14
15
+to
16
17
18
+func FeedStreamTo(writer func(data []byte)) (io.WriteCloser, context.Context)
19
20
21
+The user must call the `Close` method on the returned `io.WriteClose` to correctly dispose the streaming channel. The
22
+context `Done()` method may be used to wait for the internal subroutines to complete.
23
24
## 0.24.0
25
26
### gRPC `Monitor` service and related gRPC calls have been removed
0 commit comments