pion / rtwatch

Watch videos with friends using WebRTC, let the server do the pausing and seeking.
https://pion.ly/
302 stars 46 forks source link

Update module github.com/pion/webrtc/v3 to v3.1.10 #39

Closed renovate[bot] closed 2 years ago

renovate[bot] commented 3 years ago

WhiteSource Renovate

This PR contains the following updates:

Package Type Update Change
github.com/pion/webrtc/v3 require minor v3.0.4 -> v3.1.10

Release Notes

pion/webrtc ### [`v3.1.10`](https://togithub.com/pion/webrtc/compare/v3.1.9...v3.1.10) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.1.9...v3.1.10) ### [`v3.1.9`](https://togithub.com/pion/webrtc/compare/v3.1.8...v3.1.9) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.1.8...v3.1.9) ### [`v3.1.8`](https://togithub.com/pion/webrtc/compare/v3.1.7...v3.1.8) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.1.7...v3.1.8) ### [`v3.1.7`](https://togithub.com/pion/webrtc/compare/v3.1.6...v3.1.7) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.1.6...v3.1.7) ### [`v3.1.6`](https://togithub.com/pion/webrtc/compare/v3.1.5...v3.1.6) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.1.5...v3.1.6) ### [`v3.1.5`](https://togithub.com/pion/webrtc/compare/v3.1.4...v3.1.5) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.1.4...v3.1.5) ### [`v3.1.4`](https://togithub.com/pion/webrtc/compare/v3.1.3...v3.1.4) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.1.3...v3.1.4) ### [`v3.1.3`](https://togithub.com/pion/webrtc/compare/v3.1.2...v3.1.3) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.1.2...v3.1.3) ### [`v3.1.2`](https://togithub.com/pion/webrtc/compare/v3.1.1...v3.1.2) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.1.1...v3.1.2) ### [`v3.1.1`](https://togithub.com/pion/webrtc/compare/v3.1.0...v3.1.1) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.1.0...v3.1.1) ### [`v3.1.0`](https://togithub.com/pion/webrtc/releases/v3.1.0) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.32...v3.1.0) Pion WebRTC v3.1.0 is now available. Pion WebRTC is a Go implementation of WebRTC. If you haven't used it before check out [awesome-pion](https://togithub.com/pion/awesome-pion) or [example-webrtc-applications](https://togithub.com/pion/example-webrtc-applications) for what people are doing. We maintain a feature list and other helpful resources in our [README.md](https://togithub.com/pion/webrtc/blob/master/README.md) This release includes 170 commits from 36 authors. This release was primarily focused on improve media quality/experience and making it easier to scale with Pion. #### New Features ##### Serve many PeerConnections with one UDP port You can now serve all your PeerConnections with a single UDP port. This makes deploying and scaling in environment like Kubernetes easier. Most WebRTC implementations (including Pion) will listen on a random UDP port for each remote peer. To use this you create a `ICEUDPMux` and then share across all your PeerConnections via the SettingEngine. Your code will look like the following. ```go // Listen on UDP Port 8443 udpListener, _ := net.ListenUDP("udp", &net.UDPAddr{ IP: net.IP{0, 0, 0, 0}, Port: 8443, }) // Configure a SettingEngine to use our UDPMux. By default a PeerConnection has // no global state. The API+SettingEngine allows the user to share state between them. // In this case we are sharing our listening port across many. settingEngine := webrtc.SettingEngine{} settingEngine.SetICEUDPMux(webrtc.NewICEUDPMux(nil, udpListener)) // Create a new API using our SettingEngine api = webrtc.NewAPI(webrtc.WithSettingEngine(settingEngine)) // Create a new PeerConnection peerConnection_, := api.NewPeerConnection(webrtc.Configuration{}) ``` This was implemented in [d0a525](https://togithub.com/pion/webrtc/commit/d0a52518b0c1b43ad74efbac4a775185cf3cce8f). ##### FireFox Simulcast Support We now support SSRC based Simulcast, before we only supported reading RID/MID from the RTP Extension Header as defined in [ietf-mmusic-sdp-simulcast](https://tools.ietf.org/html/draft-ietf-mmusic-sdp-simulcast-14). This was implemented in [d570b7](https://togithub.com/pion/webrtc/commit/d570b78ae1868615a7d0cf532ebd87ff732a17b8). ##### Sender/Receiver Report Sender/Receiver Reports are now enabled by default via [pion/interceptor](https://togithub.com/pion/interceptor) This means that remote peers will now get metadata from Pion and be able to do things like Bandwidth Estimation. No code changes are needed to use them, but if you wish to disable them create a PeerConnection without passing a InterceptorRegisty that `RegisterDefaultInterceptors` has been called on. This can be useful if performance is critical or you want to ship your own implementation. ```go // Register the default Codec configuration m := &webrtc.MediaEngine{} m.RegisterDefaultCodecs() // Create a new API using our MediaEngine api = webrtc.NewAPI(webrtc.WithMediaEngine(m)) // Create a new PeerConnection peerConnection_, := api.NewPeerConnection(webrtc.Configuration{}) ``` This was implemented in [bc3016](https://togithub.com/pion/interceptor/commit/bc30165ae456af3e8a9ae25e1c3d25dc3a7ccc41) ##### Transport Wide Congestion Control Feedback Transport Wide Congestion Control Feedback is now enabled by default via [pion/interceptor](https://togithub.com/pion/interceptor) This allows remote peers to perform even better Congestion Control over Receiver Reports. No code changes are needed to use them, but if you wish to disable them create a PeerConnection without passing a InterceptorRegisty that `RegisterDefaultInterceptors` has been called on. This can be useful if performance is critical or you want to ship your own implementation. ```go // Register the default Codec configuration m := &webrtc.MediaEngine{} m.RegisterDefaultCodecs() // Create a new API using our MediaEngine api = webrtc.NewAPI(webrtc.WithMediaEngine(m)) // Create a new PeerConnection peerConnection_, := api.NewPeerConnection(webrtc.Configuration{}) ``` This was implemented in [c8a26a](https://togithub.com/pion/interceptor/commit/c8a26a2cd0a9f3f2a84acd94a995934c234600ae) ##### H265 Support You can now packetize/depacketize H265. This allows you to read from a video file and send it over RTP, or the reverse. This was implemented in [6cf5e9](https://togithub.com/pion/rtp/commit/6cf5e9bfef24e0eaac09cc12c42b196393fb2c42) ### [`v3.0.32`](https://togithub.com/pion/webrtc/compare/v3.0.31...v3.0.32) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.31...v3.0.32) ### [`v3.0.31`](https://togithub.com/pion/webrtc/compare/v3.0.30...v3.0.31) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.30...v3.0.31) ### [`v3.0.30`](https://togithub.com/pion/webrtc/compare/v3.0.29...v3.0.30) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.29...v3.0.30) ### [`v3.0.29`](https://togithub.com/pion/webrtc/compare/v3.0.28...v3.0.29) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.28...v3.0.29) ### [`v3.0.28`](https://togithub.com/pion/webrtc/compare/v3.0.27...v3.0.28) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.27...v3.0.28) ### [`v3.0.27`](https://togithub.com/pion/webrtc/compare/v3.0.26...v3.0.27) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.26...v3.0.27) ### [`v3.0.26`](https://togithub.com/pion/webrtc/compare/v3.0.25...v3.0.26) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.25...v3.0.26) ### [`v3.0.25`](https://togithub.com/pion/webrtc/compare/v3.0.24...v3.0.25) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.24...v3.0.25) ### [`v3.0.24`](https://togithub.com/pion/webrtc/compare/v3.0.23...v3.0.24) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.23...v3.0.24) ### [`v3.0.23`](https://togithub.com/pion/webrtc/compare/v3.0.22...v3.0.23) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.22...v3.0.23) ### [`v3.0.22`](https://togithub.com/pion/webrtc/compare/v3.0.21...v3.0.22) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.21...v3.0.22) ### [`v3.0.21`](https://togithub.com/pion/webrtc/compare/v3.0.20...v3.0.21) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.20...v3.0.21) ### [`v3.0.20`](https://togithub.com/pion/webrtc/compare/v3.0.19...v3.0.20) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.19...v3.0.20) ### [`v3.0.19`](https://togithub.com/pion/webrtc/compare/v3.0.18...v3.0.19) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.18...v3.0.19) ### [`v3.0.18`](https://togithub.com/pion/webrtc/compare/v3.0.17...v3.0.18) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.17...v3.0.18) ### [`v3.0.17`](https://togithub.com/pion/webrtc/compare/v3.0.16...v3.0.17) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.16...v3.0.17) ### [`v3.0.16`](https://togithub.com/pion/webrtc/compare/v3.0.15...v3.0.16) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.15...v3.0.16) ### [`v3.0.15`](https://togithub.com/pion/webrtc/compare/v3.0.14...v3.0.15) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.14...v3.0.15) ### [`v3.0.14`](https://togithub.com/pion/webrtc/compare/v3.0.13...v3.0.14) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.13...v3.0.14) ### [`v3.0.13`](https://togithub.com/pion/webrtc/compare/v3.0.12...v3.0.13) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.12...v3.0.13) ### [`v3.0.12`](https://togithub.com/pion/webrtc/compare/v3.0.11...v3.0.12) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.11...v3.0.12) ### [`v3.0.11`](https://togithub.com/pion/webrtc/compare/v3.0.10...v3.0.11) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.10...v3.0.11) ### [`v3.0.10`](https://togithub.com/pion/webrtc/compare/v3.0.9...v3.0.10) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.9...v3.0.10) ### [`v3.0.9`](https://togithub.com/pion/webrtc/compare/v3.0.8...v3.0.9) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.8...v3.0.9) ### [`v3.0.8`](https://togithub.com/pion/webrtc/compare/v3.0.7...v3.0.8) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.7...v3.0.8) ### [`v3.0.7`](https://togithub.com/pion/webrtc/compare/v3.0.6...v3.0.7) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.6...v3.0.7) ### [`v3.0.6`](https://togithub.com/pion/webrtc/compare/v3.0.5...v3.0.6) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.5...v3.0.6) ### [`v3.0.5`](https://togithub.com/pion/webrtc/compare/v3.0.4...v3.0.5) [Compare Source](https://togithub.com/pion/webrtc/compare/v3.0.4...v3.0.5)

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by WhiteSource Renovate. View repository job log here.

renovate[bot] commented 3 years ago

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻️ Renovate will retry this branch, including artifacts, only when one of the following happens:

The artifact failure details are included below:

File name: go.sum
Command failed: docker run --rm --name=renovate_go --label=renovate_child -v "/mnt/renovate/gh/pion/rtwatch":"/mnt/renovate/gh/pion/rtwatch" -v "/tmp/renovate-cache":"/tmp/renovate-cache" -v "/tmp/renovate-cache/others/go":"/tmp/renovate-cache/others/go" -e GOPATH -e CGO_ENABLED -w "/mnt/renovate/gh/pion/rtwatch" docker.io/renovate/go:1.16.3 bash -l -c "git config --global url.\"https://**redacted**@github.com/\".insteadOf \"https://github.com/\" && go get -d ./... && go mod tidy && go mod tidy"
go: downloading github.com/gorilla/websocket v1.4.2
go: downloading github.com/pion/webrtc/v3 v3.0.29
go: downloading github.com/pion/datachannel v1.4.21
go: downloading github.com/pion/dtls/v2 v2.0.9
go: downloading github.com/pion/ice/v2 v2.1.7
go: downloading github.com/pion/interceptor v0.0.12
go: downloading github.com/pion/logging v0.2.2
go: downloading github.com/pion/randutil v0.1.0
go: downloading github.com/pion/rtcp v1.2.6
go: downloading github.com/pion/rtp v1.6.5
go: downloading github.com/pion/sctp v1.7.12
go: downloading github.com/pion/sdp/v3 v3.0.4
go: downloading github.com/pion/srtp/v2 v2.0.2
go: downloading github.com/pion/transport v0.12.3
go: downloading golang.org/x/net v0.0.0-20210420210106-798c2154c571
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/pion/udp v0.1.1
go: downloading golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
go: downloading github.com/google/uuid v1.2.0
go: downloading github.com/pion/mdns v0.0.5
go: downloading github.com/pion/stun v0.3.5
go: downloading github.com/pion/turn/v2 v2.0.5
go: downloading golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
go: downloading golang.org/x/sys v0.0.0-20210420072515-93ed5bcd2bfe
github.com/pion/rtwatch imports
    github.com/pion/rtwatch/gst: no Go source files
go: downloading github.com/stretchr/testify v1.7.0
go: downloading github.com/davecgh/go-spew v1.1.1
go: downloading github.com/pmezard/go-difflib v1.0.0
go: downloading gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
github.com/pion/rtwatch imports
    github.com/pion/webrtc/v3 tested by
    github.com/pion/webrtc/v3.test imports
    github.com/stretchr/testify/assert imports
    gopkg.in/yaml.v3: fstatat /tmp/renovate-cache/others/go/pkg/mod/gopkg.in/yaml.v3@v3.0.0-20200313102051-9f266ea9e77c: permission denied