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: microsphere-projects/microsphere-java
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.3.16
Choose a base ref
...
head repository: microsphere-projects/microsphere-java
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.3.17
Choose a head ref
  • 8 commits
  • 5 files changed
  • 2 contributors

Commits on Aug 1, 2026

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

Commits on Aug 3, 2026

  1. Add zero-arg method case to parameter match test

    Extend `ExecutableUtilsTest#testMatchParameterTypes` with a `hashCode()` method lookup and assertion that `matchParameterTypes(method)` returns true. This covers the no-parameter executable path and guards against regressions for empty argument matching.
    mercyblitz committed Aug 3, 2026
    Configuration menu
    Copy the full SHA
    1e6ed43 View commit details
    Browse the repository at this point in the history
  2. Align invokeMethod overload parameter order

    Reordered the core `invokeMethod` overload to take `forceAccess` first, then updated all internal delegations and examples to match. This keeps the API consistent with related helpers (including static invocation) and avoids ambiguity when forwarding arguments between overloads.
    mercyblitz committed Aug 3, 2026
    Configuration menu
    Copy the full SHA
    18d3fbe View commit details
    Browse the repository at this point in the history
  3. Fix array method filtering with force access

    Update `MethodUtils` to treat array classes like `Object` when selecting method candidates, so `publicOnly=false` uses declared Object methods instead of only public ones. This fixes reflective invocation paths that require force access on arrays, and adds a test asserting `invokeMethod(true, values, "clone")` works correctly.
    mercyblitz committed Aug 3, 2026
    Configuration menu
    Copy the full SHA
    8f155dc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1aa9181 View commit details
    Browse the repository at this point in the history
  5. Fix array method expectations in MethodUtilsTest

    Update `findMethods` assertions for array classes to expect `OBJECT_DECLARED_METHODS` instead of `OBJECT_PUBLIC_METHODS` when inherited methods are not being included. This aligns the test with the actual method discovery behavior for arrays.
    mercyblitz committed Aug 3, 2026
    Configuration menu
    Copy the full SHA
    1da7b5d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2d43ab2 View commit details
    Browse the repository at this point in the history
Loading