Skip to content
This repository was archived by the owner on Jul 21, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: libp2p/js-libp2p-mplex
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.0.7
Choose a base ref
...
head repository: libp2p/js-libp2p-mplex
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.1.0
Choose a head ref
  • 2 commits
  • 7 files changed
  • 2 contributors

Commits on Nov 25, 2022

  1. feat: add message byte batching (#235)

    * feat: add message byte batching
    
    Adds a new setting `minSendBytes` that is `undefined` by default.
    
    If `undefined` all messages sent through multiplexed streams will
    be serialized and sent over the wire immediately.
    
    If set to a number, it will be used as a byte value, and the
    serialized bytes of all messages sent during the current tick will
    be buffered up to that value.
    
    Once either the buffer lengths hits that value or the next tick
    begins, all bytes in the buffer will be sent over the wire.
    
    * chore: add readme note
    achingbrain authored Nov 25, 2022
    Configuration menu
    Copy the full SHA
    4e2a49d View commit details
    Browse the repository at this point in the history
  2. chore(release): 7.1.0 [skip ci]

    ## [7.1.0](v7.0.7...v7.1.0) (2022-11-25)
    
    ### Features
    
    * add message byte batching ([#235](#235)) ([4e2a49d](4e2a49d))
    semantic-release-bot committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    4df9e62 View commit details
    Browse the repository at this point in the history
Loading