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: dropwizard/dropwizard
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.1.0-beta.8
Choose a base ref
...
head repository: dropwizard/dropwizard
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.1.0-beta.9
Choose a head ref
  • 18 commits
  • 78 files changed
  • 8 contributors

Commits on Apr 5, 2022

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

Commits on Apr 6, 2022

  1. Implement Jetty LifeCycle in LogbackAccessRequestLog (#5115)

    `LogbackAccessRequestLog` is registered as a bean, but doesn't implement `LifeCycle` (see qos-ch/logback#269).
    
    If we manually implement `LifeCycle`, which the `RequestLogImpl` actually does with its methods, the component is registered as a managed object rather than a POJO and therefore is started and stopped by the Jetty server.
    
    Closes #3226
    zUniQueX authored Apr 6, 2022
    Configuration menu
    Copy the full SHA
    c939a48 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2022

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

Commits on Apr 10, 2022

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

Commits on Apr 12, 2022

  1. Update actions/cache action to v3.0.2 (#5147)

    Co-authored-by: Renovate Bot <[email protected]>
    renovate[bot] and renovate-bot authored Apr 12, 2022
    Configuration menu
    Copy the full SHA
    a7c7515 View commit details
    Browse the repository at this point in the history
  2. Replace @NotThreadSafe with jUnit 5 Execution(SAME_THREAD) (#5149)

    This allows us to drop a dependency on jcip-annnotations
    rhowe authored Apr 12, 2022
    Configuration menu
    Copy the full SHA
    5061ffd View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2022

  1. Configuration menu
    Copy the full SHA
    b02e699 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    72274c8 View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2022

  1. Configuration menu
    Copy the full SHA
    175725f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0d46d5e View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2022

  1. Update actions/checkout action to v3.0.1 (#5174)

    Co-authored-by: Renovate Bot <[email protected]>
    renovate[bot] and renovate-bot authored Apr 15, 2022
    Configuration menu
    Copy the full SHA
    95dce33 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2022

  1. Deprecate EnvironmentVariableLookup (#5188)

    `StringLookup` is a functional interface and so `EnvironmentVariableLookup` can be implemented as a direct method reference to `System#getenv()`.
    rhowe authored Apr 17, 2022
    Configuration menu
    Copy the full SHA
    b4f07fb View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2022

  1. Replace assumeThat with jUnit 5 DisabledIf et al (#5170)

    jUnit 5 introduces `DisabledIf` and `EnabledIf`, allowing tests or entire test classes to be disabled based on arbitrary conditions.
    rhowe authored Apr 18, 2022
    Configuration menu
    Copy the full SHA
    73e983e View commit details
    Browse the repository at this point in the history
  2. Migrations file handling (#5169)

    ###### Problem:
    Liquibase 4.x.x changed its file finding and handling. Therefore migration files in the `dropwizard-migrations` module were not found.
    
    ###### Solution:
    Add root paths to the `FileSystemResourceAccessor`. Liquibase suggests adding the path `'/'` as a fix when migrating to 4.x.x. This seems to work on Linux, but not on Windows. So this PR adds the operating system specific root path (`C:\` for Windows and `/` otherwise). Additionally, the location of the code source is added (acquired through the `CloseableLiquibase` class).
    
    This allows finding files with an absolute path and files located under `src/main/resources`, that are packaged into the jar as resources. Previously, it was possible to provide paths relative to the root folder of the project, which now isn't possible any more. However, the sources are unlikely to be deployed, so this should be enough in my opinion, when adding this behavior change to the migration guide. This also includes changes to be made to `.xml` files including other ones, as the include mechanism uses the same resolving strategy.
    
    ###### Result:
    Users can specify custom files to the `dropwizard-migrations` module instead of using the default `migrations.xml`.
    
    Resolves #5150
    zUniQueX authored Apr 18, 2022
    Configuration menu
    Copy the full SHA
    266bf1e View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2022

  1. Update mockito monorepo to v4.5.0 (#5199)

    Co-authored-by: Renovate Bot <[email protected]>
    renovate[bot] and renovate-bot authored Apr 20, 2022
    Configuration menu
    Copy the full SHA
    6a3d072 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    42db30e View commit details
    Browse the repository at this point in the history
  3. Update link to Apache HttpClient docs (#5201)

    Fix broken link to the HttpClient docs. The previous link linked to `httpcomponents-core` version 4.3 docs, which doesn't seem to exist anymore.
    amaalali authored Apr 20, 2022
    Configuration menu
    Copy the full SHA
    c3e58b1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fd2787a View commit details
    Browse the repository at this point in the history
Loading