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: ruby/drb
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.2.1
Choose a base ref
...
head repository: ruby/drb
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.2.3
Choose a head ref
  • 15 commits
  • 10 files changed
  • 6 contributors

Commits on Jun 4, 2024

  1. Fix wrong certificate version

    OpenSSL::X509::Certificate#version= calls X509_set_version, and
    that sets the version stored in the certificate.  However, the
    version stored in certificate is one less than the actual
    certificate version (https://www.openssl.org/docs/manmaster/man3/X509_set_version.html).
    There are no version 4 certificates, and when using recent LibreSSL,
    drb ssl tests all fail without this change.
    jeremyevans committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    226ae82 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2024

  1. Provide a 'Changelog' link on rubygems.org/gems/drb

    By providing a 'changelog_uri' in the metadata of the gemspec a
    'Changelog' link will be shown on https://rubygems.org/gems/drb
    which makes it quick and easy for someone to check on the changes
    introduced with a new version.
    
    Details of this functionality can be found on https://guides.rubygems.org/specification-reference/
    mark-young-atg committed Jun 7, 2024
    Configuration menu
    Copy the full SHA
    eec397e View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2024

  1. Merge pull request #30 from mark-young-atg/provide_changelog_link_on_…

    …rubygems
    
    Provide a 'Changelog' link on rubygems.org/gems/drb
    hsbt authored Jun 9, 2024
    Configuration menu
    Copy the full SHA
    10fceea View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. [doc] Update links

    The book is out of print, and its page removed. So, I used archive.org's linking to an old page.
    
    I also updated the Programming Ruby book link, to point at the right page.
    olleolleolle authored Aug 7, 2024
    Configuration menu
    Copy the full SHA
    4fc2d4f View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2024

  1. Merge pull request #33 from ruby/docs-fix-links

    [doc] Update links
    hsbt authored Sep 10, 2024
    Configuration menu
    Copy the full SHA
    208101f View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2024

  1. Merge pull request #29 from jeremyevans/fix-openssl-cert-version

    Fix wrong certificate version
    hsbt authored Oct 3, 2024
    Configuration menu
    Copy the full SHA
    69c2ef5 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2025

  1. Avoid use of id2ref for weak mapping (#35)

    [Bugs #15711]
    
    https://bugs.ruby-lang.org/issues/15711
    
    The implementation of `ObjectSpace._id2ref` on JRuby (and TruffleRuby)
    is very expensive, and on JRuby we normally do not have it enabled
    because it impacts performance of the entire runtime.
    
    This uses `ObjectSpace::WeakMap` instead of `ObjectSpace._id2ref` by
    default and deprecates `DRb::WeakIdConv`.
    
    Authored-by: Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
    kou authored Apr 28, 2025
    Configuration menu
    Copy the full SHA
    b360d74 View commit details
    Browse the repository at this point in the history
  2. Add safety comment about x509 cert versioning rule (#34)

    Noticed from Jeremy's recent PR, and he requested here #29 (comment)
    lilole authored Apr 28, 2025
    Configuration menu
    Copy the full SHA
    e827fe7 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2025

  1. Merge InvokeMethod18Mixin into InvokeMethod (#37)

    InvokeMethod18Mixin is for supporting Ruby 1.6 or older but we don't
    support Ruby 1.6 or older. So we can InvokeMethod18Mixin into
    InvokeMethod.
    kou authored Apr 29, 2025
    Configuration menu
    Copy the full SHA
    99a2835 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2025

  1. Configuration menu
    Copy the full SHA
    ca80a6c View commit details
    Browse the repository at this point in the history
  2. Use more specific changelog page

    kou committed May 21, 2025
    Configuration menu
    Copy the full SHA
    6a94342 View commit details
    Browse the repository at this point in the history
  3. Add 2.2.2 entry

    kou committed May 21, 2025
    Configuration menu
    Copy the full SHA
    6f74128 View commit details
    Browse the repository at this point in the history
  4. Bump version

    kou committed May 21, 2025
    Configuration menu
    Copy the full SHA
    9ec64d4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3f24a11 View commit details
    Browse the repository at this point in the history
  6. Bump version

    kou committed May 21, 2025
    Configuration menu
    Copy the full SHA
    a4f7444 View commit details
    Browse the repository at this point in the history
Loading