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: assertj/assertj
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: assertj-build-3.27.3
Choose a base ref
...
head repository: assertj/assertj
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: assertj-build-3.27.4
Choose a head ref
  • 11 commits
  • 101 files changed
  • 3 contributors

Commits on Jan 18, 2025

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

Commits on Aug 3, 2025

  1. Remove EOL Java 23

    scordio committed Aug 3, 2025
    Configuration menu
    Copy the full SHA
    015f095 View commit details
    Browse the repository at this point in the history
  2. Fix thread-safety in AbstractDateAssert (#3874)

    97b642a introduced a regression that broke `AbstractDateAssert`
    thread-safety by replacing synchronization on `DEFAULT_DATE_FORMATS`
    with synchronization on the method that parses with the default
    formats. Such a synchronization cannot work properly with multiple
    instances of `AbstractDateAssert` because `DEFAULT_DATE_FORMATS` is
    static.
    
    This change fixes the regression by replacing the synchronization on
    the method level with a `ThreadLocal` that guards access to the current
    `DEFAULT_DATE_FORMATS` content.
    kelunik authored Aug 3, 2025
    Configuration menu
    Copy the full SHA
    7461b68 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8f4a1b5 View commit details
    Browse the repository at this point in the history
  4. Skip tests during snapshot publishing

    See #3822.
    scordio committed Aug 3, 2025
    Configuration menu
    Copy the full SHA
    fdc9bc5 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2025

  1. Polish

    scordio committed Aug 4, 2025
    Configuration menu
    Copy the full SHA
    475c2eb View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2025

  1. Deprecate org.assertj.core.annotations.Beta in favor of `org.assert…

    …j.core.annotation.Beta`
    scordio committed Aug 5, 2025
    Configuration menu
    Copy the full SHA
    72d08b2 View commit details
    Browse the repository at this point in the history
  2. Deprecate org.assertj.core.util.CanIgnoreReturnValue in favor of `o…

    …rg.assertj.core.annotation.CanIgnoreReturnValue`
    scordio committed Aug 5, 2025
    Configuration menu
    Copy the full SHA
    1bf8cd6 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2025

  1. Deprecate org.assertj.core.util.CheckReturnValue in favor of `org.a…

    …ssertj.core.annotation.CheckReturnValue`
    scordio committed Aug 7, 2025
    Configuration menu
    Copy the full SHA
    43e8b65 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    feb5f6f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7a64cde View commit details
    Browse the repository at this point in the history
Loading