Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update module github.com/pion/webrtc/v3 to v3.2.14 #8

Merged
merged 1 commit into from
Aug 3, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 16, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/pion/webrtc/v3 require minor v3.1.50 -> v3.2.14

Release Notes

pion/webrtc (github.com/pion/webrtc/v3)

v3.2.14

Compare Source

Changelog

  • b40f599 Add RTPReceiver.RTPTransceiver
  • c23eeb1 Update module golang.org/x/net to v0.12.0
  • 448f4ba Add DTLS KeyLog configuration option in WebRTC API
  • 457ff6c Update module github.com/pion/srtp/v2 to v2.0.16

v3.2.13

Compare Source

Changelog

  • 90e3a83 Add support to AV1 in play-from-disk
  • 24b241a Update module github.com/pion/rtp to v1.8.0

v3.2.12

Compare Source

Changelog

  • 3cddada Add IceTransport.GetLocalParameters
  • 53d8f74 Update module github.com/pion/ice/v2 to v2.3.9
  • f9d7579 Update module golang.org/x/net to v0.11.0
  • fb5d5f1 Update module github.com/pion/stun to v0.6.1

v3.2.11

Compare Source

Changelog

  • 3dd667a Update AUTHORS.txt
  • 019920f Update AUTHORS.txt
  • 678ddd4 Add SettingsEngine option to disable Active TCP
  • c05e366 Update module github.com/pion/ice/v2 to v2.3.8

v3.2.10

Compare Source

Changelog

  • c8f7e0d Update module github.com/pion/ice/v2 to v2.3.7
  • 4f1d46f Improvement to rtp-to-webrtc example

v3.2.9

Compare Source

Changelog

  • a0e9824 DTLS: Add Client/RootCAs, ClientAuth, Secret Opts
  • 2ffab96 Update module github.com/stretchr/testify to v1.8.4
  • 83ae83b Run go mod tidy

v3.2.8

Compare Source

Changelog

  • 73276d1 Update module github.com/pion/ice/v2 to v2.3.6

v3.2.7

Compare Source

Changelog

  • 1df634e Remove golint from godoc and move no next line

v3.2.6

Compare Source

Changelog

  • 323469d Update module github.com/pion/stun to v0.6.0
  • 6df9089 Update module github.com/pion/ice/v2 to v2.3.5

v3.2.5

Compare Source

Changelog

  • 7a100b9 Enable SRTP_AEAD_AES_256_GCM
  • f9e0934 Update module github.com/pion/interceptor to v0.1.17
  • 55b1ac0 Update module github.com/pion/dtls/v2 to v2.2.7
  • ab11eed Improve SetEphemeralUDPPortRange documentation
  • d1985e0 Bring back LICENSE file
  • a8aa8cc Update AUTHORS.txt
  • b07c7b2 Update CI configs to v0.10.9

v3.2.4

Compare Source

Changelog

  • f83bd73 Remove SRTP_AEAD_AES_256_GCM from default
  • 505f54c Update module github.com/stretchr/testify to v1.8.3
  • 4d3c4b1 Add SetDTLSConnectContextMaker to SettingEngine
  • c1bec49 Update CI configs to v0.10.8
  • c719ccd Bring back LICENSE file

v3.2.3

Compare Source

Changelog

  • fc0c4e7 Update module github.com/pion/ice/v2 to v2.3.4

v3.2.2

Compare Source

Changelog

  • bb022d5 Implemented SRTP_AEAD_AES_256_GCM
  • 0199c58 Update AUTHORS.txt
  • 1210046 Upgrading pion/ice dependency
  • 683fc83 Make repo REUSE compliant
  • efffef2 Update CI configs to v0.10.7
  • 9f74821 Update module golang.org/x/net to v0.9.0
  • f906bd2 Update module github.com/pion/srtp/v2 to v2.0.13

v3.2.1

Compare Source

Changelog

  • 5bdbaca Update module github.com/pion/sctp to v1.8.7

v3.2.0

Compare Source

Pion WebRTC v3.2.0 is now available. Pion WebRTC is a Go implementation of WebRTC. If you haven't used it before check out awesome-pion or example-webrtc-applications for what people are doing. We maintain a feature list and other helpful resources in our README.md

This release includes 260 commits from 55 authors. This release was primarily focused on providing more tools around understanding and handling network conditions. Pion wouldn't be possible without everyone involved.

New Features

Media Bandwidth Estimator

Pion now provides a Bandwidth Estimator in-tree for serving media. You now get signals about how much bandwidth is available so you can either send more or less data, giving your users the best experience possible. We currently have a implementation of Google Congestion Control. This was implemented using a generic interface so we can provide more implementations in the future.

To use this you create a cc.BandwidthEstimator provided by pion/interceptor. This estimator then can be queried via estimator.GetTargetBitrate(). This returned value tells you if you should raise, lower or sustain the bitrate you are currently sending.

See bandwidth-estimation-from-disk for a full example of how it can be used.

This was implemented by @​mengelbart. Work on Pion's congestion control and bandwidth estimation was funded through the User-Operated Internet fund, a fund established by NLnet made possible by financial support from the PKT Community/The Network Steward and stichting Technology Commons Trust.

webrtc-stats implementation

You can now query and process metadata about your media connections. This data is presented in the standardized webrtc-stats format. These statistics give insight into the why of a WebRTC session.

You can use this to monitor how your Pion WebRTC PeerConnections are operating. Users are also finding this useful to monitor, debug and analyze other WebRTC media servers. You can quickly start up a Pion WebRTC PeerConnection and write canaries and tests against other WebRTC software.

To use this you create a stats.Interceptor provided by pion/interceptor. This allows you to query on a per SSRC basis the status of a stream. The following is an example of query it in a loop in the OnTrack for each stream.

peerConnection.OnTrack(func(track *webrtc.TrackRemote, receiver *webrtc.RTPReceiver) {
    fmt.Printf("New incoming track with codec: %s\n", track.Codec().MimeType)
    for {
        // Pull the stats for the stream that caused OnTrack to be fired
        stats := statsGetter.Get(uint32(track.SSRC()))
                 
         // Print InboundRTPStreamStats. Other stats are available as well
         fmt.Println(stats.InboundRTPStreamStats)

         time.Sleep(time.Second * 5)     
    }
})

See stats for a full example of how it can be used.

This was implemented by @​mengelbart

Simulcast Sender

You are now able to send Simulcast traffic with Pion WebRTC. Before this commit we were only able to receive Simulcast traffic.

Developer are using this to move Simulcast traffic between their servers as they scale out. It has also been useful for testing WebRTC servers. Using a small Pion process you can assert that your servers are properly handling Simulcast traffic.

This was implemented in 37e16a3 by @​boks1971

AV1 Support

Pion WebRTC now has AV1 support. You can send AV1 with the same APIs you send and receive H264, H265, VP8, VP9, Opus and PCM with.

A example of saving AV1 to disk is available at save-to-disk-av1

Extensive Tooling Improvements

@​stv0g and @​at-wat made extensive improvements to the .goassets repo. Tools and processes had fallen out of date and were slowing the project down. They took on a lot of frustrating work so Pion can be stable and defect free.

v3.1.62

Compare Source

Changelog

  • dfaf820 Update module github.com/pion/interceptor to v0.1.13
  • 16fea9e Set DataChannel SCTPTransport before OnDataChannel

v3.1.61

Compare Source

Changelog

  • 570b61a Update module github.com/pion/transport/v2 to v2.2.0
  • d08b3dc Handle Simulcast Offer with one Media Section

v3.1.60

Compare Source

Changelog

  • 6114c27 Fix simucalst track set to incorrect detail
  • 303f204 Drop duplicate stats from marshall test
  • 308f861 Update CI configs to v0.10.6
  • d1b7bdb Harmonize sections in README
  • 10db568 Update module golang.org/x/net to v0.8.0

v3.1.59

Compare Source

Changelog

  • 486f6a2 Update module github.com/pion/ice/v2 to v2.3.2
  • b6191eb Fix potential deadlock in the example
  • cf60891 Fix ignored calls during OnDataChannel
  • 1b74d28 Cleanup common sections in README
  • 77051ab Cleanup badges in README
  • 595f1c0 Move negotation test out of peerconnection_test

v3.1.58

Compare Source

Changelog

  • 777e03c Fix negotiation needed panic on nil Sendonly track
  • 6a520c9 Update module github.com/stretchr/testify to v1.8.2

v3.1.57

Compare Source

Changelog

  • 220b1f3 Refine updateConnectionState
  • 1e5378a Add SetDTLSEllipticCurves test
  • 9671875 Add SettingEngine.SetDTLSEllipticCurves
  • e7f2436 Improve SetDTLSInsecureSkipHelloVerify comment
  • 2a47c12 Add DTLS InsecureSkipHelloVerify option
  • df0ec0c Return bytes written for DtlsTransport.WriteRTCP

v3.1.56

Compare Source

Changelog

  • 61f69be Update module github.com/pion/ice/v2 to v2.3.1
  • 132ebfa Update module github.com/pion/dtls/v2 to v2.2.6
  • d4fc945 Update module github.com/pion/dtls/v2 to v2.2.5
  • fba48cd Add Mermaid Chart to examples/data-channels

v3.1.55

Compare Source

Changelog

  • 43d0c5b Make Transceiver Negotation more consistent
  • 9dd2c42 Fix formatting in SettingEngine docs

v3.1.54

Compare Source

Changelog

  • 098d4ba Update module github.com/pion/ice/v2 to v2.3.0
  • eafdc77 Use new pion/transport Net interface
  • 2af43db Update module github.com/pion/dtls/v2 to v2.2.4
  • 3037913 Update module golang.org/x/net to v0.6.0
  • d43f782 Update module github.com/pion/interceptor to v0.1.12
  • 31c8f0a Update module github.com/pion/dtls/v2 to v2.2.2
  • 3dd1104 Update golang Docker tag to v1.20

v3.1.53

Compare Source

Changelog

  • 0c3da77 Update module github.com/pion/ice/v2 to v2.2.16
  • 045f086 Update module github.com/pion/ice/v2 to v2.2.15

v3.1.52

Compare Source

Changelog

  • 32f6883 Update module github.com/pion/ice/v2 to v2.2.14
  • 657dab7 Adding OnDial handler for datachannels

v3.1.51

Compare Source

Changelog

  • 3c802f7 Reuse passive created sendonly transceiver
  • 5b41ed6 Revert "Revert "Add currentDirection to RTPTransceiver""
  • a92c400 Revert "Add currentDirection to RTPTransceiver"
  • 66e8dfc Update CI configs to v0.10.3
  • 5ef816e Update CI configs to v0.10.1
  • 98a8604 Update module github.com/pion/sctp to v1.8.6
  • 602cedd Update module github.com/pion/srtp/v2 to v2.0.11
  • bc86d15 Update CI configs to v0.9.0
  • 7ab3174 Update module golang.org/x/net to v0.4.0
  • e29259c Update module github.com/pion/ice/v2 to v2.2.13

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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.


  • If you want to rebase/retry this PR, check this box

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

@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from 2185632 to 3bce0e7 Compare February 16, 2023 06:21
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from 3bce0e7 to b502329 Compare February 24, 2023 20:07
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.1.55 Update module github.com/pion/webrtc/v3 to v3.1.56 Feb 24, 2023
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from b502329 to 3666700 Compare March 4, 2023 04:28
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.1.56 Update module github.com/pion/webrtc/v3 to v3.1.57 Mar 4, 2023
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from 3666700 to ab9cd22 Compare March 8, 2023 11:46
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.1.57 Update module github.com/pion/webrtc/v3 to v3.1.58 Mar 8, 2023
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.1.58 Update module github.com/pion/webrtc/v3 to v3.1.58 - autoclosed Mar 15, 2023
@renovate renovate bot closed this Mar 15, 2023
@renovate renovate bot deleted the renovate/github.com-pion-webrtc-v3-3.x branch March 15, 2023 06:51
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.1.58 - autoclosed Update module github.com/pion/webrtc/v3 to v3.1.58 Mar 15, 2023
@renovate renovate bot reopened this Mar 15, 2023
@renovate renovate bot restored the renovate/github.com-pion-webrtc-v3-3.x branch March 15, 2023 10:12
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.1.58 Update module github.com/pion/webrtc/v3 to v3.1.58 - autoclosed Mar 19, 2023
@renovate renovate bot closed this Mar 19, 2023
@renovate renovate bot deleted the renovate/github.com-pion-webrtc-v3-3.x branch March 19, 2023 01:29
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.1.58 - autoclosed Update module github.com/pion/webrtc/v3 to v3.1.58 Mar 19, 2023
@renovate renovate bot reopened this Mar 19, 2023
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from ab9cd22 to b00240b Compare March 30, 2023 01:41
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.1.58 Update module github.com/pion/webrtc/v3 to v3.1.59 Mar 30, 2023
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from b00240b to b590c66 Compare April 17, 2023 04:27
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.1.59 Update module github.com/pion/webrtc/v3 to v3.1.60 Apr 17, 2023
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from b590c66 to 3a690d2 Compare April 23, 2023 17:57
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.1.60 Update module github.com/pion/webrtc/v3 to v3.1.61 Apr 23, 2023
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from 3a690d2 to 5346cad Compare April 25, 2023 09:52
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.1.61 Update module github.com/pion/webrtc/v3 to v3.1.62 Apr 25, 2023
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.1.62 Update module github.com/pion/webrtc/v3 to v3.1.62 - autoclosed Apr 26, 2023
@renovate renovate bot closed this Apr 26, 2023
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.1.62 - autoclosed Update module github.com/pion/webrtc/v3 to v3.1.62 Apr 26, 2023
@renovate renovate bot restored the renovate/github.com-pion-webrtc-v3-3.x branch April 26, 2023 11:49
@renovate renovate bot reopened this Apr 26, 2023
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.1.62 Update module github.com/pion/webrtc/v3 to v3.2.0 Apr 26, 2023
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch 2 times, most recently from 7f3891d to 6ad22dd Compare April 30, 2023 05:04
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.2.0 Update module github.com/pion/webrtc/v3 to v3.2.1 Apr 30, 2023
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from 6ad22dd to 74a52d8 Compare May 28, 2023 15:48
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.2.1 Update module github.com/pion/webrtc/v3 to v3.2.8 May 28, 2023
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from 74a52d8 to c7775fd Compare June 3, 2023 11:45
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.2.8 Update module github.com/pion/webrtc/v3 to v3.2.9 Jun 3, 2023
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from c7775fd to 8321a20 Compare June 10, 2023 08:33
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.2.9 Update module github.com/pion/webrtc/v3 to v3.2.10 Jun 10, 2023
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from 8321a20 to b48339e Compare June 29, 2023 05:57
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.2.10 Update module github.com/pion/webrtc/v3 to v3.2.11 Jun 29, 2023
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from b48339e to d20bdd6 Compare July 10, 2023 21:00
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.2.11 Update module github.com/pion/webrtc/v3 to v3.2.12 Jul 10, 2023
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from d20bdd6 to 0e472cd Compare July 21, 2023 04:57
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.2.12 Update module github.com/pion/webrtc/v3 to v3.2.13 Jul 21, 2023
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from 0e472cd to a4b7e0e Compare August 2, 2023 15:22
@renovate renovate bot changed the title Update module github.com/pion/webrtc/v3 to v3.2.13 Update module github.com/pion/webrtc/v3 to v3.2.14 Aug 2, 2023
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from a4b7e0e to 4a83f5c Compare August 2, 2023 18:04
@ajvpot ajvpot enabled auto-merge (squash) August 3, 2023 20:39
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch 5 times, most recently from c0653ef to 96e4ac6 Compare August 3, 2023 20:48
@renovate renovate bot force-pushed the renovate/github.com-pion-webrtc-v3-3.x branch from 96e4ac6 to 2289692 Compare August 3, 2023 20:54
@ajvpot ajvpot merged commit ba98f33 into master Aug 3, 2023
2 checks passed
@renovate renovate bot deleted the renovate/github.com-pion-webrtc-v3-3.x branch August 3, 2023 20:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant