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: dotnet/orleans
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.2.3
Choose a base ref
...
head repository: dotnet/orleans
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.2.4
Choose a head ref
  • 14 commits
  • 32 files changed
  • 11 contributors

Commits on Nov 7, 2023

  1. Configuration menu
    Copy the full SHA
    0127794 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5b77e06 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Fix overread bug in Reader Skip (#8709)

    * Fix bug in Reader skip. When the skip count + current position is 1 > than the current buffer size, skip will "overread" the buffer, setting the position to a point > the buffer size.
    
    This causes the next read to advance the buffer and consume the first byte which the skip should have already consumed but didn't.
    
    * Update src/Orleans.Serialization/Buffers/Reader.cs
    
    * Add BufferSlice test
    
    * More verification and comments
    
    ---------
    
    Co-authored-by: Reuben Bond <203839+ReubenBond@users.noreply.github.com>
    Co-authored-by: Reuben Bond <reuben.bond@gmail.com>
    3 people authored Nov 8, 2023
    Configuration menu
    Copy the full SHA
    3f63791 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. Support Timeout.InfiniteTimeSpan in grain delay deactivation (#8711)

    Co-authored-by: b.nichvolodov <b.nichvolodov@vk.team>
    nichvolodov and b.nichvolodov authored Nov 9, 2023
    Configuration menu
    Copy the full SHA
    6584ba9 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2023

  1. Configuration menu
    Copy the full SHA
    8ea0ec7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7980370 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cd1aebc View commit details
    Browse the repository at this point in the history
  4. Simplify DelayDeactivation logic (#8712)

    Co-authored-by: b.nichvolodov <b.nichvolodov@vk.team>
    2 people authored and ReubenBond committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    e94f117 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b352f06 View commit details
    Browse the repository at this point in the history
  6. Throw when deserializing Exceptions by reference, and avoid reference…

    … tracking for all Exception-derived types (#8628) (#8698)
    
    * Throw ReferenceFieldNotSupportedException on references for serialized exceptions
    
    * Move tests to a more appropriate place
    
    * Prevent reference tracking for generated exception codecs and exception surrogates
    
    * Remove accidentally introduced class
    
    ---------
    
    Co-authored-by: David Obee <git@davidobee.com>
    david-obee and David Obee authored Nov 11, 2023
    Configuration menu
    Copy the full SHA
    8f73d43 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2023

  1. Correctly count number of items in LRU (#8742) (#8754)

    * Updated test to reflect counting issue
    
    * Only increment and adjust size on Add
    
    * Updated LRU count computation logic
    
    Co-authored-by: Koen <koen@bpk.ltd>
    ReubenBond and koenbeuk committed Dec 2, 2023
    Configuration menu
    Copy the full SHA
    236b398 View commit details
    Browse the repository at this point in the history
  2. Fix exception while collecting activations when activation.KeepAliveU…

    …ntil = DateTime.MaxValue (#8740) (#8755)
    
    Co-authored-by: nichvolodov <nichvolodov.boris@gmail.com>
    Co-authored-by: boris.nichvolodov <boris.nichvolodov@my.games>
    3 people committed Dec 2, 2023
    Configuration menu
    Copy the full SHA
    fbd92f4 View commit details
    Browse the repository at this point in the history
  3. Fix exception caused by a log message (#8558) (#8701) (#8756)

    Co-authored-by: peter-perot <peter-perot@users.noreply.github.com>
    ReubenBond and peter-perot committed Dec 2, 2023
    Configuration menu
    Copy the full SHA
    6be49c1 View commit details
    Browse the repository at this point in the history
  4. Identify F# single case discriminated unions as SumType (#8739) (#8757)

    Single case discriminated unions do not inherit from an abstract
    base class, thus, for single case discriminated unions we need to
    look for the CompilationMappingAttribute on the type itself.
    
    Fix 8715
    
    Co-authored-by: Geir Fiksdal <geirfiks@gmail.com>
    ReubenBond and gfix committed Dec 2, 2023
    Configuration menu
    Copy the full SHA
    4ab056f View commit details
    Browse the repository at this point in the history
Loading