Skip to content
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: apache/pulsar-client-cpp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: apache/pulsar-client-cpp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: branch-3.6
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Aug 28, 2024

  1. Release 3.6.0

    shibd committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    8df0acd View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2024

  1. Fix buffer overflow for non-batched send when the message metadata si…

    …ze exceeds 64KB (#443)
    
    See apache/pulsar-client-python#223
    
    ### Motivation
    
    Currently a shared buffer is used to store serialized message metadata
    for each send request. However, its capacity is only 64KB, when the metadata
    size exceeds 64KB, buffer overflow could happen.
    
    ### Modifications
    
    When the metadata size is too large, allocate a new buffer instead of
    using the shared buffer. Add `testLargeProperties` to cover it.
    
    (cherry picked from commit 8f269e8)
    BewareMyPower authored and shibd committed Aug 29, 2024
    Configuration menu
    Copy the full SHA
    aba8d6d View commit details
    Browse the repository at this point in the history
Loading