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/transport to v3 - autoclosed #187

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 2, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/pion/transport require major v0.14.1 -> v3.0.1

Release Notes

pion/transport (github.com/pion/transport)

v3.0.1

Compare Source

Changelog

  • 701ff64 Use atomic Int32 instead of Bool

v3.0.0

Compare Source

Changelog

  • a66d5b7 Update AUTHORS.txt
  • 82ae7e5 Update AUTHORS.txt
  • b1019b7 Remove named return values
  • 241097e Update replaydetector tests to include latest
  • 0d51df0 Add latest seqnum notify to replaydetector
  • 03c807b Start pion/transport@v3

v2.2.3

Compare Source

Changelog

  • 6bdfa93 Revert ReplayDetector API Changes
  • e136b3a Update module golang.org/x/net to v0.14.0
  • c808973 Update module golang.org/x/sys to v0.11.0

v2.2.2

Compare Source

Changelog

  • a788a32 Add support to disable read batch
  • 46a4b2c Add batch read/write for udp listener
  • 6890c79 Update CI configs to v0.10.11
  • f2dffd8 Remove named return values
  • 3cefa92 Update replaydetector tests to include latest
  • d490a2c Add latest seqnum notify to replaydetector
  • 571eb96 Update module golang.org/x/net to v0.13.0
  • 41845b0 Update module golang.org/x/net to v0.12.0
  • a789100 Add Daniel Mangum to AUTHORS.txt
  • 5ecc325 Document all public netctx methods
  • 668c2ec Use net.ErrClosed instead of io.EOF
  • a4c1f18 Refactor ConnCtx/PacketConnCtx to Conn/PacketConn
  • 764757e Use netctx in stress tests
  • 7447e09 Add unit tests for PacketConnCtx
  • 8a710a5 Add context wrapped net.PacketConn
  • 55834f5 Use NewConnCtx instead of New
  • c13b96e Mark connctx package as deprecated
  • 7614929 Move ConnCtx to the netctx package
  • 4b89bf8 Update module golang.org/x/sys to v0.10.0
  • 30cd328 Update module golang.org/x/net to v0.11.0
  • c8e9e56 Update module golang.org/x/net to v0.10.0
  • 2cec8d1 Update module github.com/stretchr/testify to v1.8.4
  • 4385551 Remove sync.Pool from udp.listener.readloop

v2.2.1

Compare Source

Changelog

  • 0646cde Update AUTHORS.txt
  • 861dc39 Notify read error if udp.listener.readloop exit
  • a9d5f4e Fix golangci-lint warnings
  • dabec8e Add benchmarks for connctx
  • bda0665 Fix typo in TestReadTimeout
  • b93120c Update CI configs to v0.10.9
  • 5e9c2f0 Bring back LICENSE file
  • 604c2bb Update module github.com/stretchr/testify to v1.8.3
  • 36cf9dc Update CI configs to v0.10.8
  • 67238c1 Update module golang.org/x/net to v0.9.0
  • 1a29910 Make package REUSE compliant
  • 28fbb3b Update CI configs to v0.10.7

v2.2.0

Compare Source

Changelog

  • b083211 Add note that package isnt intended for production
  • 36f2d7f Add pion/dtls/internal/net/dpipe package
  • 83341e0 Revert "Add StrictDeadline option"

v2.1.0

Compare Source

Changelog

  • 5c3a487 Fix invalid nolint directive
  • 4dd98b1 Add StrictDeadline option to packetio.Buffer
  • ca7eeb3 Merge github.com/pion/udp into this package
  • 9ec3bb2 Disable TBF tests for WASM due to poor performance
  • 8cca64e Make TBF refill only when new chunks arrive
  • 2008af3 Update CI configs to v0.10.6
  • ce17e12 Harmonize sections in README
  • e69fe78 Update module golang.org/x/sys to v0.7.0
  • d41a02d Silence linter error
  • 0b8c287 Simplify notifying readers
  • 0091c4c Update module golang.org/x/net to v0.8.0
  • 3e3eeb7 Disable assembler code under gccgo
  • 1a96097 Add build tags for go1.15 and earlier
  • 22a2f3b Cleanup common sections in README
  • b8978be Cleanup badges in README
  • 4506eb1 Update module github.com/stretchr/testify to v1.8.2

v2.0.2

Compare Source

Changelog

  • 3747aec Update module golang.org/x/net to v0.7.0

v2.0.1

Compare Source

Changelog

  • 895931c Update module golang.org/x/net to v0.5.0
  • d668f81 Rename Interface.Addresses() to Interface.Addrs()
  • 818ab5f Update CI configs to v0.10.3
  • 40abc81 Update CI configs to v0.10.1
  • 20b2e1d Update CI configs to v0.9.0
  • f298716 Update module golang.org/x/sys to v0.4.0
  • 206c43e Update module golang.org/x/net to v0.4.0
  • d5e63b1 Update module golang.org/x/net to v0.2.0

v2.0.0

Compare Source

v2 of pion/transport introduces a new interface for abstracting Pions use of the network stack.

This refactoring should allow us to make Pion agnostic of the underlying network stack.
A migration guide for other Pion modules is available in the Wiki "Migration from vnet.Net to transport.Net".

Changelog

  • 8b19d1c Update cherry-picked commits to /v2
  • d774501 Harmonize assertion handling
  • c0da539 Return error in vnet.NewNet()
  • 7e1f72a Add more interface getters to Net
  • f455ca8 Fix some errors found by golangci-lint
  • 1d0366c Add preliminary TCP support to Net interface
  • 479a1c1 Add a new interface 'transport.Net'
  • e75143a Update CI configs to v0.8.1
  • 4d1ad5f Add missing go:build directive
  • d9e13d0 Refactor cchunk to TimestampedChunk
  • d581dcf Fix Typos
  • 536ae85 Fix invalid getter in test/bridge.go
  • 0289e1d Update module stretchr/testify to v1.8.1
  • b08a509 Start /v2

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.

@codecov
Copy link

codecov bot commented Sep 2, 2023

Codecov Report

Patch has no changes to coverable lines.

πŸ“’ Thoughts on this report? Let us know!.

@renovate renovate bot force-pushed the renovate/github.com-pion-transport-3.x branch from e396e3c to 8baf4f2 Compare September 4, 2023 04:55
@renovate renovate bot force-pushed the renovate/github.com-pion-transport-3.x branch from 8baf4f2 to 6bf50c8 Compare September 8, 2023 22:44
@renovate renovate bot changed the title Update module github.com/pion/transport to v3 Update module github.com/pion/transport to v3 - autoclosed Oct 25, 2023
@renovate renovate bot closed this Oct 25, 2023
@renovate renovate bot deleted the renovate/github.com-pion-transport-3.x branch October 25, 2023 17:47
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.

None yet

0 participants