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: yorkie-team/yorkie
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.5.7
Choose a base ref
...
head repository: yorkie-team/yorkie
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.5.8
Choose a head ref
  • 4 commits
  • 14 files changed
  • 2 contributors

Commits on Dec 16, 2024

  1. Fix panic in pubsub by deleting subs in callback (#1101)

    This commit addresses a panic error that occurred after the introduction
    of a concurrency map in the pubsub by modifying the deletion process of
    subscriptions. Now, instead of causing a panic, subs are deleted within
    the callback to ensure thread safety and prevent race conditions.
    hackerwins authored Dec 16, 2024
    Configuration menu
    Copy the full SHA
    2bd6d39 View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2024

  1. Fix invalid version vector check logic for backward compatibility (#1105

    )
    
    This commit modifies the version check logic for operations, as the
    previous SDK created operations that utilized an empty map for the
    version vector instead of nil. 
    
    With the introduction of version vector from v0.5.7, we now need to
    differentiate between the Concurrent-Causal relationship while still
    supporting the older operations generated by versions prior to v0.5.6.
    The adjustment ensures that the logic appropriately processes an empty
    map for version vector.
    
    ---------
    
    Co-authored-by: Youngteac Hong <[email protected]>
    JOOHOJANG and hackerwins authored Dec 19, 2024
    Configuration menu
    Copy the full SHA
    3a615c6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    74e3457 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    24aebc7 View commit details
    Browse the repository at this point in the history
Loading