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: openrewrite/rewrite-migrate-java
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.24.0
Choose a base ref
...
head repository: openrewrite/rewrite-migrate-java
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.25.0
Choose a head ref
  • 10 commits
  • 14 files changed
  • 5 contributors

Commits on Dec 22, 2025

  1. Configuration menu
    Copy the full SHA
    27312a7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ded84b7 View commit details
    Browse the repository at this point in the history

Commits on Dec 24, 2025

  1. Add or update recipe category descriptors (#960)

    File changes generated using a batch change recipe: https://app.moderne.io/results/CategoryChangeCampaignDec25
    
    Co-authored-by: Moderne <team@moderne.io>
    jkschneider and TeamModerne authored Dec 24, 2025
    Configuration menu
    Copy the full SHA
    0c7e98a View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2025

  1. Generated recipes.csv.

    jkschneider committed Dec 26, 2025
    Configuration menu
    Copy the full SHA
    80e9dee View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2025

  1. Configuration menu
    Copy the full SHA
    560db06 View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2026

  1. Fix recipes.csv validation

    timtebeek committed Jan 1, 2026
    Configuration menu
    Copy the full SHA
    e98dc87 View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2026

  1. Configuration menu
    Copy the full SHA
    6eac4e2 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2026

  1. Configuration menu
    Copy the full SHA
    e34ff20 View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2026

  1. Configuration menu
    Copy the full SHA
    f65dabe View commit details
    Browse the repository at this point in the history
  2. Add bulk read method to InputStream implementations (#961)

    * Add bulk read method to InputStream implementations
    
    Adds a recipe to detect and fix InputStream subclasses that only override
    the single-byte read() method. Java's default bulk read implementation
    calls read() in a loop, which can cause up to 350x slower performance.
    
    For simple delegation patterns, the recipe adds the missing bulk read
    method. For complex bodies (side effects, transformations), it adds a
    search marker for manual review.
    
    Moved from openrewrite/rewrite#6383 per review feedback.
    
    * Apply the first automated suggestions
    
    * Add line to recipes.csv
    
    * Apply formatter and further best practices
    
    * Add placeholder for expanded precondition support upstream
    
    * Add precondition and inline conditionals logic
    
    ---------
    
    Co-authored-by: Tim te Beek <tim@moderne.io>
    pstreef and timtebeek authored Jan 7, 2026
    Configuration menu
    Copy the full SHA
    b695463 View commit details
    Browse the repository at this point in the history
Loading