Jump to >

RBTools 4.0 Release Notes

Release date: October 24, 2022

Compatibility

  • RBTools 4.0 supports Python 3.7 through 3.11.

    Support for Python 2.7 and 3.6 have been dropped. For continued support, please use RBTools 3.x.

  • The RBTools for Windows installer now bundles Python 3.10.

    This unfortunately means we have to drop support for Windows 7 and older, as Python has dropped support in their installers.

New Features

  • Added support for Apple Diff on macOS Ventura.

    Ventura is the first version of macOS to drop support for GNU Diff. It instead introduces Apple Diff, which is similar to GNU Diff in most (but not all) respects.

    RBTools 4 has been updated to detect whether GNU Diff or Apple Diff is installed and to interface with it properly.

  • Added conflict information when trying to apply Subversion patches using rbt patch or rbt land.

  • Improved error messages when posting review requests if failing to find a repository match.

    Sometimes local tools (such as git, svn, or diff) are missing when posting a change for review, or the local tree doesn’t quite match up with what’s configured on Review Board. Or there may be too many repositories that match the local tree.

    RBTools will now report on what types of repositories were tried, what tools may be missing, and what conflicts may have been found, helping you to resolve the problem more quickly.

Performance Improvements

  • Improved the performance of diff generation for most SCMs.

    Subversion, Perforce, and Team Foundation Server will see the most gains here, especially for larger changes.

  • Improved startup time and reliability.

    We’ve optimized how we load in repository support, reducing the work required when starting up.

RBTools Python API

If you’re developing custom scripts that use the RBTools Python API, you may need to update your scripts for RBTools 4.

These changes should all be backwards-compatible, but deprecated code will be removed in RBTools 5.

New SCMClient Support

We’ve completely reworked how SCMClients (which interface with services like Git or Perforce) are registered and set up:

  • SCMClients can be registered or looked up using rbtools.clients.base.registry.scmclient_registry.

    This will still include SCMClients provided by Python packages that use Python Entry Points.

  • Custom SCMClients must now inherit from rbtools.clients.base.scmclient.BaseSCMClient, instead of the legacy rbtools.clients.SCMClient.

    This allows base class allows clients to specify dependencies, compatible diff tools (GNU Diff, Apple Diff, or custom diff tools), and go through a formal setup process.

  • If manually instantiating a SCMClient, setup() must be called.

    This checks for missing dependencies and performs some internal client setup.

    If not called, certain operations may fail, or emit deprecation warnings.

New Diff Functionality

It’s now easier than ever to create or process diffs using RBTools.

New Repository Scanning

Tools can now use rbtools.utils.source_tree.scan_scmclients_for_path() to determine which SCMClient and which repository on Review Board is correct for a given path.

This will check client dependencies as well, and return detailed error messages if a match could not be found.

Python 3 Type Annotations

Much of our codebase has been updated to provide Type Annotations, which IDEs can use to ensure the code you write is using the right types.

Much of the API, SCMClients, new diff functionality, and utility functions have been updated with Type Annotations, with more coming in the future.

Deprecations

The following functionality in the RBTools Python API have been deprecated and will be removed in RBTools 5:

rbtools.api

rbtools.clients

rbtools.utils

Bug Fixes

API Communication

  • Fixed a bug where RBTools tried and failed to load custom SSL certificates when only finding a certificate or a key (but not both).

Bazaar/Breezy

  • Fixed rare crashes that could occur with mismatched data types.

Mercurial

  • Fixed problems that could occur when applying Mercurial patches using rbt patch or rbt land.

Subversion

  • Fixed problems that could occur when applying Subversion patches using rbt patch or rbt land.

  • Fixed an infinite loop that could theoretically occur when building diffs of empty files.

Team Foundation Server

  • Fixed a crash that could occur when parsing revisions to post for review.

  • Fixed string type issues on Python 3.

Contributors

  • Christian Hammond

  • David Trowbridge

  • Michelle Aubin