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: apache/dubbo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dubbo-2.7.18
Choose a base ref
...
head repository: apache/dubbo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dubbo-2.7.19
Choose a head ref
  • 5 commits
  • 8 files changed
  • 4 contributors

Commits on Sep 27, 2022

  1. fix optimize if null instanceof before (#10674)

    ```
    // instanceof not throw NullPointExcetion
    if (result.getException() != null && result.getException() instanceof RpcException) 
    
    // Examle:
    public static void main(String[] args) {
        Exception e = null;
        if (e instanceof Exception) {
            System.out.println("instanceof");
        }
        System.out.println("success");
    }
    //Out:
    success
    ```
    JiHongYuan authored Sep 27, 2022
    Configuration menu
    Copy the full SHA
    2969a54 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2022

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

Commits on Nov 28, 2022

  1. Configuration menu
    Copy the full SHA
    1a9eda5 View commit details
    Browse the repository at this point in the history
  2. Cherry pick #9340

    AlbumenJ committed Nov 28, 2022
    Configuration menu
    Copy the full SHA
    37689d9 View commit details
    Browse the repository at this point in the history
  3. Prepare 2.7.19 release

    AlbumenJ committed Nov 28, 2022
    Configuration menu
    Copy the full SHA
    3e8c759 View commit details
    Browse the repository at this point in the history
Loading