A damn simple library for building production-ready RESTful web services.

Overview

Dropwizard

Build Quality Gate Status Maven Central Javadocs Documentation Status Maintainability Reproducible Builds

Dropwizard is a sneaky way of making fast Java web applications.

It's a little bit of opinionated glue code which bangs together a set of libraries which have historically not sucked:

Read more at dropwizard.io.

Want to contribute to Dropwizard?

Before working on the code, if you plan to contribute changes, please read the following CONTRIBUTING document.

Need help or found an issue?

When reporting an issue through the issue tracker on GitHub or sending an email to the Dropwizard User Google Group mailing list, please use the following guidelines:

  • Check existing issues to see if it has been addressed already
  • The version of Dropwizard you are using
  • A short description of the issue you are experiencing and the expected outcome
  • Description of how someone else can reproduce the problem
  • Paste error output or logs in your issue or in a Gist. If pasting them in the GitHub issue, wrap it in three backticks: ``` so that it renders nicely
  • Write a unit test to show the issue!

Sponsors

Dropwizard is generously supported by some companies with licenses and free accounts for their products.

JetBrains

JetBrains

JetBrains supports our open source project by sponsoring some All Products Packs within their Free Open Source License program.

Comments
  • Port To Jersey 2.x

    Port To Jersey 2.x

    Note that this relies on a forked branch to Metrics for the same purpose of supporting Jersey2 that hasn't been accepted yet. The PR for that is at https://github.com/dropwizard/metrics/pull/532

    feature 
    opened by saadmufti 42
  • Allow normal Logback facilities to be used to configure logging

    Allow normal Logback facilities to be used to configure logging

    As the title states, this PR allows the normal Logback facilities to be used to configure logging.

    Basically what it does is extract LoggingFactory into an interface like ServerFactory. It is a discoverable interface and defaults to DefaultLoggingFactory (which is the current code renamed).

    You have to do three things in order to use the normal Logback facilities...

    1. Add a constructor to your Application derived class that passes false to the super class. This tells Dropwizard to not bootstrap logging. Logback is lazy and doesn't initialize until it has to (which given the current code is when ServerCommand is created in Application.run).

    2. In your YML file, make the type of logging noop.

      logging:
      -type: noop
      
    3. Add a logback.xml, logback.groovy, or other configuration file to your classpath.

    opened by justrudd 36
  • Dependency Injection frameworks

    Dependency Injection frameworks

    Can you provide any advice on what DI framework works best with Dropwizard?

    I've tried both Guice and Dagger plugins yet they always seem to have integration issues with the core Dropwizard framework. I'm surprised that in the Dropwizard tool chain a DI container isn't recommended.

    Any thoughts? Do you assume teams will hand roll DI as you're focusing on teams producing smaller APIs?

    stale 
    opened by darrenhaken 35
  • Allow specifying configurations for each logger

    Allow specifying configurations for each logger

    Dropwizard doesn't have the ability to specify configurations for individual loggers yet. With this patch user can do something like this:

    logging:
      level: INFO
      loggers:
        wego.curiosity:
          level: DEBUG
          appenders: 
            - type: console
              target: stdout
              logFormat: "%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{16} - %msg%n"
              ...
      appenders:
        - type: file
         ...
        - type: console
          target: stdout
          logFormat: "%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{16} - %msg%n"
        - type: loggly
        ...
    
    opened by wakandan 31
  • Need to be able to use custom HK2 ServiceLocator for Spring integration

    Need to be able to use custom HK2 ServiceLocator for Spring integration

    We have been one of the early adopters of DW and been using it in production for over 3 years. However, we are stuck on 0.7 and cannot move to a higher version.

    The reason for this is the ******** HK2 DI that Jersey 2 introduced (and DW adopted in 0.8). It just refuses to play nice with the our Spring context that we use everywhere for DI.

    We've had 2 senior architects spend 3 weeks trying to get it to work and HK2 fails to play nicely with Spring no matter what. It wants to @Inject its own beans into our JAX-RS classes, even though those are existing Spring beans and have already been injected with existing Spring beans.

    The only solution seems to write a custom HK2 service locator that just fetches the beans directly from Spring and hope that works.

    However, Dropwizard seems to offer no API to allow defining a custom ServiceLocator in HK2 to override the default one.

    If we cannot get this to work, we cannot be stuck on 0.7 and will be faced with the difficult choice of moving to a different platform...which we would hate, since we all love Dropwizard.

    Help please :-/

    opened by jacek99 30
  • @Context or @Session injection not working in ContainerRequestFilter

    @Context or @Session injection not working in ContainerRequestFilter

    Hi,

    According to Jersey people, this (at least with @Context) should be supported since Jersey 2.4 (see JERSEY-1960 but I'm trying with dropwizard 0.9.3 and and the context simply does not get injected. I also tried with the dropwizard's @Session annotation but it's the same.

    Is that normal or is there a bug somewhere?

    Note: my filter is registered via AuthDynamicFeature (because it's an alternative authentication filter based on the content session, maybe it's not the best way to do that?).

    Thanks!

    opened by victornoel 30
  • Add a Logback Access RequestLog implementation

    Add a Logback Access RequestLog implementation

    This change builds on top of the #1290 by applying the proposed changes from #580 with some tweaks. It still needs more javadoc and unit tests, but I thought I would get it out here to see if there is interest in this change.

    A couple questions:

    1. Should a warning message be logged if the LogFormat is configured but the SLF4JRequestLog is being used that states that the supplied format is being ignored?
    2. Should a warning message be logged if both the LogFormat and the TimeZone are configured in the appender config that states that the TimeZone will be ignored and can be configured as part of the LogFomat?
    improvement 
    opened by ghenkes 28
  • Provide a means for Validator failures to be returned to the client as a JSON response.

    Provide a means for Validator failures to be returned to the client as a JSON response.

    Some context is here: https://groups.google.com/d/msg/dropwizard-user/ZvO3mnDTJYg/Y4Pt3yzt300J

    I had a similar problem to the person who posted this. My clients expect JSON, all the time, even for errors. And more generally, keeping validation errors in code-friendly format seems to be a good idea. The current Dropwizard code (in Validator) discards all the juicy and useful violation information and instead crams the errors into a List of Strings.

    Yes, you can use your own Validator, but that path is kludgy.

    This patch introduces a handful of new classes and concepts:

    • ValidationResult, which is what the Validator will now return from calls to validate. ValidationResult contains the same List of Strings, but also contains a List of ConstraintViolations, so that callers can have more freedom to work with those as well.
    • InvalidEntityToJsonExceptionMapper, to use in place of InvalidEntityExceptionMapper. This mapper keeps the same 422 HTTP response, but the entity body is now a JSON array of (messageTemplate, message, invalidValue) tuples.
    • ValidatorConfiguration, a new top-level configuration that allows you to override the default InvalidEntityExceptionMapper, and can be configured by adding the following to your YML config.

    here's the config snippet:

    validation:
      invalidEntityExceptionMapperClass: com.yammer.dropwizard.jersey.InvalidEntityToJsonExceptionMapper
    

    All tests pass and this is working great for me. There might be better/cleaner ways to do the overriding though (the new top-level config might be unpalatable for reasons I'm unable to think of), so I'm open to suggestions if there is a better way.

    opened by cobbzilla 26
  • Add Maven Archetypes for skeleton projects

    Add Maven Archetypes for skeleton projects

    It's a good idea to have a template for new projects to help users adhere to best practices for project layout.

    Provides:

    • A Java Archetype, java-simple, for creating new Java Dropwizard projects.
    • A Scala Archetype, scala-simple, for creating new Scala Dropwizard projects. [update: no Scala support as of 0.7.0]
    • A utility, dropwizard-create, for bootstrapping a new project using the Archetypes.

    The POM for generated projects will:

    • Generate JavaDoc/ScalaDoc, and build an attached doc JAR.
    • Build and attach a source JAR.
    • Build shaded JAR (optional)
    • Build an executable JAR for the Service.
    • Generate Maven Site

    The dropwizard-create utility is provided so that users don't have to grapple with Mavens' appalling UI for generating projects from Archetypes. It ensures that all the necessary properties are provided to the Archetypes and provides some sensible defaults for the lazy.

    feature 
    opened by nicktelford 26
  • org.glassfish.jersey.internal.Errors Parameter 1 of type FooResource is not resolvable to a concrete type

    org.glassfish.jersey.internal.Errors Parameter 1 of type FooResource is not resolvable to a concrete type

    This is a kotlin project using dropwizard 1.3.0 I have some resources with constructors with abstract parameters.

    FooResource(private val repository: Repository<String,ByteArray>){
        \\...
    }
    

    Where Repository is an Interface

    I get a bunch of warnings like:

    5:09:40.108 [main] [] WARN  org.glassfish.jersey.internal.Errors - The following warnings have been detected: WARNING: Parameter 1 of type com.foo.Repository<? su
    per java.lang.String, byte[]> from public com.foo.FooResource(com.foo.Repository<? super java.lang.String, byte[]>) is n
    ot resolvable to a concrete type.
    

    But the program works fine. I assume this warning has something to do with the supported DI framework / IoC containers, but I use manual injection and don't care about this.

    Why is this warning being logged? How do I disable this check?

    UPDATE: I think this has to do with kotlin adding a wildcard to String

    bug 
    opened by charlesritchea 24
  • Add ability to override config settings that are in arrays and maps

    Add ability to override config settings that are in arrays and maps

    Overview

    This pull request lets you override more config entries like server port and hibernate properties. It also adds tests for the existing override feature as well as for these additions.

    Details

    Properties like listening port cannot be overridden because they are inside a list like so:

    server:
        applicationConnectors:
            - type: http
              port: 8080
    

    This pull request addresses this by adding support for indexing into arrays. The override for this looks like:

    -Ddw.server.applicationConncetors[0].port=9090
    

    Additionally, properties inside maps that have '.' in the name cannot be overridden. For example, setting hibernate properties in database config:

    database:
        url: jdbc://...
        properties:
            charSet: UTF-8
            hibernate.hbm2ddl.auto: create
    

    This pull request also addresses this issue by adding support for properties inside maps. The overide for hbm2ddl above looks like this:

    -Ddw.database.properties.hibernate.hbm2ddl.auto=none
    
    opened by cmicali 24
  • Update dependency Sphinx to v6 (release/4.0.x)

    Update dependency Sphinx to v6 (release/4.0.x)

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | Sphinx (changelog) | ==5.3.0 -> ==6.0.0 | age | adoption | passing | confidence |


    ⚠ Dependency Lookup Warnings ⚠

    Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


    Release Notes

    sphinx-doc/sphinx

    v6.0.0

    Compare Source

    =====================================

    Dependencies

    • #​10468: Drop Python 3.6 support
    • #​10470: Drop Python 3.7, Docutils 0.14, Docutils 0.15, Docutils 0.16, and Docutils 0.17 support. Patch by Adam Turner

    Incompatible changes

    • #​7405: Removed the jQuery and underscore.js JavaScript frameworks.

      These frameworks are no longer be automatically injected into themes from Sphinx 6.0. If you develop a theme or extension that uses the jQuery, $, or $u global objects, you need to update your JavaScript to modern standards, or use the mitigation below.

      The first option is to use the sphinxcontrib.jquery_ extension, which has been developed by the Sphinx team and contributors. To use this, add sphinxcontrib.jquery to the extensions list in conf.py, or call app.setup_extension("sphinxcontrib.jquery") if you develop a Sphinx theme or extension.

      The second option is to manually ensure that the frameworks are present. To re-add jQuery and underscore.js, you will need to copy jquery.js and underscore.js from the Sphinx repository_ to your static directory, and add the following to your layout.html:

      .. code-block:: html+jinja

      {%- block scripts %} {{ super() }} {%- endblock %}

      .. _sphinxcontrib.jquery: https://github.com/sphinx-contrib/jquery/

      Patch by Adam Turner.

    • #​10471, #​10565: Removed deprecated APIs scheduled for removal in Sphinx 6.0. See :ref:dev-deprecated-apis for details. Patch by Adam Turner.

    • #​10901: C Domain: Remove support for parsing pre-v3 style type directives and roles. Also remove associated configuration variables c_allow_pre_v3 and c_warn_on_allowed_pre_v3. Patch by Adam Turner.

    Features added

    • #​10924: LaTeX: adopt better looking defaults for tables and code-blocks. See :confval:latex_table_style and the pre_border-radius and pre_background-TeXcolor :ref:additionalcss for the former defaults and how to re-enact them if desired.

    Bugs fixed

    • #​10984: LaTeX: Document :confval:latex_additional_files behavior for files with .tex extension.

    Configuration

    📅 Schedule: Branch creation - "before 2am" (UTC), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    dependencies 
    opened by renovate[bot] 2
  • Update dependency Sphinx to v6 (release/3.0.x)

    Update dependency Sphinx to v6 (release/3.0.x)

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | Sphinx (changelog) | ==5.3.0 -> ==6.0.0 | age | adoption | passing | confidence |


    ⚠ Dependency Lookup Warnings ⚠

    Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


    Release Notes

    sphinx-doc/sphinx

    v6.0.0

    Compare Source

    =====================================

    Dependencies

    • #​10468: Drop Python 3.6 support
    • #​10470: Drop Python 3.7, Docutils 0.14, Docutils 0.15, Docutils 0.16, and Docutils 0.17 support. Patch by Adam Turner

    Incompatible changes

    • #​7405: Removed the jQuery and underscore.js JavaScript frameworks.

      These frameworks are no longer be automatically injected into themes from Sphinx 6.0. If you develop a theme or extension that uses the jQuery, $, or $u global objects, you need to update your JavaScript to modern standards, or use the mitigation below.

      The first option is to use the sphinxcontrib.jquery_ extension, which has been developed by the Sphinx team and contributors. To use this, add sphinxcontrib.jquery to the extensions list in conf.py, or call app.setup_extension("sphinxcontrib.jquery") if you develop a Sphinx theme or extension.

      The second option is to manually ensure that the frameworks are present. To re-add jQuery and underscore.js, you will need to copy jquery.js and underscore.js from the Sphinx repository_ to your static directory, and add the following to your layout.html:

      .. code-block:: html+jinja

      {%- block scripts %} {{ super() }} {%- endblock %}

      .. _sphinxcontrib.jquery: https://github.com/sphinx-contrib/jquery/

      Patch by Adam Turner.

    • #​10471, #​10565: Removed deprecated APIs scheduled for removal in Sphinx 6.0. See :ref:dev-deprecated-apis for details. Patch by Adam Turner.

    • #​10901: C Domain: Remove support for parsing pre-v3 style type directives and roles. Also remove associated configuration variables c_allow_pre_v3 and c_warn_on_allowed_pre_v3. Patch by Adam Turner.

    Features added

    • #​10924: LaTeX: adopt better looking defaults for tables and code-blocks. See :confval:latex_table_style and the pre_border-radius and pre_background-TeXcolor :ref:additionalcss for the former defaults and how to re-enact them if desired.

    Bugs fixed

    • #​10984: LaTeX: Document :confval:latex_additional_files behavior for files with .tex extension.

    Configuration

    📅 Schedule: Branch creation - "before 2am" (UTC), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    dependencies 
    opened by renovate[bot] 2
  • Update dependency Sphinx to v6 (release/2.1.x)

    Update dependency Sphinx to v6 (release/2.1.x)

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | Sphinx (changelog) | ==5.3.0 -> ==6.0.0 | age | adoption | passing | confidence |


    ⚠ Dependency Lookup Warnings ⚠

    Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


    Release Notes

    sphinx-doc/sphinx

    v6.0.0

    Compare Source

    =====================================

    Dependencies

    • #​10468: Drop Python 3.6 support
    • #​10470: Drop Python 3.7, Docutils 0.14, Docutils 0.15, Docutils 0.16, and Docutils 0.17 support. Patch by Adam Turner

    Incompatible changes

    • #​7405: Removed the jQuery and underscore.js JavaScript frameworks.

      These frameworks are no longer be automatically injected into themes from Sphinx 6.0. If you develop a theme or extension that uses the jQuery, $, or $u global objects, you need to update your JavaScript to modern standards, or use the mitigation below.

      The first option is to use the sphinxcontrib.jquery_ extension, which has been developed by the Sphinx team and contributors. To use this, add sphinxcontrib.jquery to the extensions list in conf.py, or call app.setup_extension("sphinxcontrib.jquery") if you develop a Sphinx theme or extension.

      The second option is to manually ensure that the frameworks are present. To re-add jQuery and underscore.js, you will need to copy jquery.js and underscore.js from the Sphinx repository_ to your static directory, and add the following to your layout.html:

      .. code-block:: html+jinja

      {%- block scripts %} {{ super() }} {%- endblock %}

      .. _sphinxcontrib.jquery: https://github.com/sphinx-contrib/jquery/

      Patch by Adam Turner.

    • #​10471, #​10565: Removed deprecated APIs scheduled for removal in Sphinx 6.0. See :ref:dev-deprecated-apis for details. Patch by Adam Turner.

    • #​10901: C Domain: Remove support for parsing pre-v3 style type directives and roles. Also remove associated configuration variables c_allow_pre_v3 and c_warn_on_allowed_pre_v3. Patch by Adam Turner.

    Features added

    • #​10924: LaTeX: adopt better looking defaults for tables and code-blocks. See :confval:latex_table_style and the pre_border-radius and pre_background-TeXcolor :ref:additionalcss for the former defaults and how to re-enact them if desired.

    Bugs fixed

    • #​10984: LaTeX: Document :confval:latex_additional_files behavior for files with .tex extension.

    Configuration

    📅 Schedule: Branch creation - "before 2am" (UTC), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    dependencies 
    opened by renovate[bot] 2
  • Update dependency Sphinx to v6 (release/2.0.x)

    Update dependency Sphinx to v6 (release/2.0.x)

    Mend Renovate

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | Sphinx (changelog) | ==5.3.0 -> ==6.0.0 | age | adoption | passing | confidence |


    ⚠ Dependency Lookup Warnings ⚠

    Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


    Release Notes

    sphinx-doc/sphinx

    v6.0.0

    Compare Source

    =====================================

    Dependencies

    • #​10468: Drop Python 3.6 support
    • #​10470: Drop Python 3.7, Docutils 0.14, Docutils 0.15, Docutils 0.16, and Docutils 0.17 support. Patch by Adam Turner

    Incompatible changes

    • #​7405: Removed the jQuery and underscore.js JavaScript frameworks.

      These frameworks are no longer be automatically injected into themes from Sphinx 6.0. If you develop a theme or extension that uses the jQuery, $, or $u global objects, you need to update your JavaScript to modern standards, or use the mitigation below.

      The first option is to use the sphinxcontrib.jquery_ extension, which has been developed by the Sphinx team and contributors. To use this, add sphinxcontrib.jquery to the extensions list in conf.py, or call app.setup_extension("sphinxcontrib.jquery") if you develop a Sphinx theme or extension.

      The second option is to manually ensure that the frameworks are present. To re-add jQuery and underscore.js, you will need to copy jquery.js and underscore.js from the Sphinx repository_ to your static directory, and add the following to your layout.html:

      .. code-block:: html+jinja

      {%- block scripts %} {{ super() }} {%- endblock %}

      .. _sphinxcontrib.jquery: https://github.com/sphinx-contrib/jquery/

      Patch by Adam Turner.

    • #​10471, #​10565: Removed deprecated APIs scheduled for removal in Sphinx 6.0. See :ref:dev-deprecated-apis for details. Patch by Adam Turner.

    • #​10901: C Domain: Remove support for parsing pre-v3 style type directives and roles. Also remove associated configuration variables c_allow_pre_v3 and c_warn_on_allowed_pre_v3. Patch by Adam Turner.

    Features added

    • #​10924: LaTeX: adopt better looking defaults for tables and code-blocks. See :confval:latex_table_style and the pre_border-radius and pre_background-TeXcolor :ref:additionalcss for the former defaults and how to re-enact them if desired.

    Bugs fixed

    • #​10984: LaTeX: Document :confval:latex_additional_files behavior for files with .tex extension.

    Configuration

    📅 Schedule: Branch creation - "before 2am" (UTC), Automerge - At any time (no schedule defined).

    🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

    Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

    🔕 Ignore: Close this PR and you won't be reminded about this update again.


    • [ ] If you want to rebase/retry this PR, check this box

    This PR has been generated by Mend Renovate. View repository job log here.

    dependencies 
    opened by renovate[bot] 2
  • Add ability to limit

    Add ability to limit "message" length for "JSON Layout"

    We use ELK for logging and have configured it to build indexes based on JSON messages. If the message size exceeds 8k it gets truncated by ELK and it is no longer valid JSON and subsequently not included in the indexes. If JSON Layout can limit the message size, this problem goes away. ELK is always going to have a limit. If we can't assure the output of Logback is within that limit, we lose the JSON based message processing ELK provides.

    opened by dude-abides 5
  • Introduce new Dropwizard specific conversion words

    Introduce new Dropwizard specific conversion words

    Follow-up for #4211.

    This PR introduces the new conversion words dwEx, dwException, dwThrowable, dwXEx, dwXException, dwXThrowable, dwREx and dwRootException. Therefore all exception specific Logback conversion words work as documented in the Logback manual. This improves our configuration docs, which previously deferred to the Logback documentation without a note on the conversion word overrides.

    Additionally, a section in the core docs is added to explain the stack trace prefixing.

    opened by zUniQueX 1
Releases(v2.1.4)
  • v2.1.4(Oct 20, 2022)

    What's Changed

    • Update dependency com.fasterxml.jackson:jackson-bom to v2.13.4.20221012 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6070
    • Update dependency joda-time:joda-time to v2.12.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6074
    • Update actions/cache action to v3.0.11 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6080
    • Update dependency com.fasterxml.jackson:jackson-bom to v2.13.4.20221013 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6081
    • Update dependency Sphinx to v5.3.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6085
    • Update dependency org.mockito:mockito-junit-jupiter to v4.8.1 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6091
    • Update github/codeql-action digest to cc7986c (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6099
    • Update actions/setup-java digest to de1bb2b (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6098
    • Update dependency mysql:mysql-connector-java to v8.0.31 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6111

    Full Changelog: https://github.com/dropwizard/dropwizard/compare/v2.1.3...v2.1.4

    Source code(tar.gz)
    Source code(zip)
  • v2.0.34(Oct 18, 2022)

    What's Changed

    • Update actions/cache action to v3.0.9 by @renovate in https://github.com/dropwizard/dropwizard/pull/5958
    • Update actions/cache action to v3.0.10 by @renovate in https://github.com/dropwizard/dropwizard/pull/5996
    • Update actions/cache action to v3.0.11 by @renovate in https://github.com/dropwizard/dropwizard/pull/6076
    • Update actions/checkout action to v3.1.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/6010
    • Update actions/setup-java digest to a18c333 by @renovate in https://github.com/dropwizard/dropwizard/pull/5945
    • Update actions/setup-java digest to de1bb2b by @renovate in https://github.com/dropwizard/dropwizard/pull/6096
    • Update actions/stale action to v5.2.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5875
    • Update actions/stale action to v6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5925
    • Update actions/stale action to v6.0.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/6027
    • Update dependency Sphinx to v5.2.3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5935
    • Update dependency Sphinx to v5.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/6084
    • Update dependency com.uber.nullaway:nullaway to v0.10.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5857
    • Update dependency com.uber.nullaway:nullaway to v0.10.2 by @renovate in https://github.com/dropwizard/dropwizard/pull/5920
    • Update dependency joda-time:joda-time to v2.11.2 by @renovate in https://github.com/dropwizard/dropwizard/pull/5937
    • Update dependency joda-time:joda-time to v2.12.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/6073
    • Update dependency net.bytebuddy:byte-buddy to v1.12.17 by @renovate in https://github.com/dropwizard/dropwizard/pull/5921
    • Update dependency net.bytebuddy:byte-buddy to v1.12.18 by @renovate in https://github.com/dropwizard/dropwizard/pull/6043
    • Update dependency org.apache.commons:commons-text to v1.10.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5951 (CVE-2022-42889)
    • Update dependency org.apache.maven.plugins:maven-enforcer-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5954
    • Update dependency org.apache.maven.plugins:maven-enforcer-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5955
    • Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5885
    • Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5886
    • Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.4.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5887
    • Update dependency org.apache.tomcat:tomcat-jdbc to v9.0.67 by @renovate in https://github.com/dropwizard/dropwizard/pull/5941
    • Update dependency org.apache.tomcat:tomcat-jdbc to v9.0.68 by @renovate in https://github.com/dropwizard/dropwizard/pull/6023
    • Update dependency org.checkerframework:checker-qual to v3.26.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/6002
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.2 by @renovate in https://github.com/dropwizard/dropwizard/pull/6036
    • Update dependency org.hibernate:hibernate-core to v5.6.12.Final by @renovate in https://github.com/dropwizard/dropwizard/pull/5946
    • Update dependency org.javassist:javassist to v3.29.2-GA by @renovate in https://github.com/dropwizard/dropwizard/pull/5874
    • Update dependency org.jdbi:jdbi3-bom to v3.33.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5952
    • Update dependency org.jdbi:jdbi3-bom to v3.34.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/6011
    • Update dependency org.mockito:mockito-junit-jupiter to v4.8.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/6090
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.4 by @renovate in https://github.com/dropwizard/dropwizard/pull/5959
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.5 by @renovate in https://github.com/dropwizard/dropwizard/pull/6009
    • Update github/codeql-action digest to 6a38b7d by @renovate in https://github.com/dropwizard/dropwizard/pull/5877
    • Update github/codeql-action digest to 8075783 by @renovate in https://github.com/dropwizard/dropwizard/pull/6026
    • Update github/codeql-action digest to 86f3159 by @renovate in https://github.com/dropwizard/dropwizard/pull/5924
    • Update github/codeql-action digest to 904260d by @renovate in https://github.com/dropwizard/dropwizard/pull/5884
    • Update github/codeql-action digest to cc7986c by @renovate in https://github.com/dropwizard/dropwizard/pull/6097
    • Update github/codeql-action digest to e0e5ded by @renovate in https://github.com/dropwizard/dropwizard/pull/5957
    • Update jetty.version to v9.4.49.v20220914 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5878
    • Update junit5 monorepo to v5.9.1 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5922

    Full Changelog: https://github.com/dropwizard/dropwizard/compare/v2.0.33...v2.0.34

    Source code(tar.gz)
    Source code(zip)
  • v4.0.0-beta.3(Oct 12, 2022)

    What's Changed

    • Update upgrade notes for Dropwizard 2.1.x regarding the Grizzly connector by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5492
    • Update dependency org.hibernate:hibernate-core-jakarta to v5.6.10.Final by @renovate in https://github.com/dropwizard/dropwizard/pull/5505
    • Update dependency org.apache.httpcomponents.core5:httpcore5 to v5.1.4 by @renovate in https://github.com/dropwizard/dropwizard/pull/5508
    • Update dependency org.checkerframework:checker-qual to v3.23.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5516
    • Update dependency org.liquibase:liquibase-core to v4.13.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5517
    • Update actions/setup-java digest to 2c7a487 by @renovate in https://github.com/dropwizard/dropwizard/pull/5521
    • Update actions/cache action to v3.0.5 by @renovate in https://github.com/dropwizard/dropwizard/pull/5522
    • Update github/codeql-action digest to 3e7e3b3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5533
    • Update dependency org.jdbi:jdbi3-bom to v3.31.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5547
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5546
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5545
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5561
    • Update dependency org.apache.maven.plugins:maven-deploy-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5574
    • Update dependency org.apache.maven.plugins:maven-deploy-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5575
    • Update dependency org.apache.maven.plugins:maven-install-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5576
    • Update dependency org.apache.maven.plugins:maven-install-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5577
    • Bump actions/stale from 5.0.0 to 5.1.0 by @dependabot in https://github.com/dropwizard/dropwizard/pull/5548
    • Update dependency org.apache.tomcat:tomcat-jdbc to v10.0.23 by @renovate in https://github.com/dropwizard/dropwizard/pull/5603
    • Update dependency mysql:mysql-connector-java to v8.0.30 by @renovate in https://github.com/dropwizard/dropwizard/pull/5598
    • Update dependency Sphinx to v5.1.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5599
    • Update dependency jakarta.ws.rs:jakarta.ws.rs-api to v3.1.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5230
    • Update dependency org.apache.maven.plugins:maven-resources-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5600
    • Update dependency org.jdbi:jdbi3-bom to v3.32.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5585
    • Update dependency org.apache.maven.plugins:maven-resources-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5601
    • Update dependency org.liquibase:liquibase-core to v4.14.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5586
    • Update dependency jakarta.servlet:jakarta.servlet-api to v6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5401
    • Update junit5 monorepo to v5.9.0 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5616
    • Update dependency Sphinx to v5.1.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5615
    • Revert "Update dependency jakarta.servlet:jakarta.servlet-api to v6 (release/4.0.x)" by @joschi in https://github.com/dropwizard/dropwizard/pull/5609
    • Fix tests by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5618
    • Update github/codeql-action digest to 0c670bb by @renovate in https://github.com/dropwizard/dropwizard/pull/5632
    • Update actions/stale digest to 9c1b1c6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5631
    • Update dependency net.bytebuddy:byte-buddy to v1.12.13 by @renovate in https://github.com/dropwizard/dropwizard/pull/5637
    • Replace org.glassfish.hk2.external:jakarta.inject with jakarta.inject:jakarta.inject-api by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5638
    • Update github/codeql-action digest to 2ca79b6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5661
    • Update dependency com.uber.nullaway:nullaway to v0.9.9 by @renovate in https://github.com/dropwizard/dropwizard/pull/5662
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5663
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5664
    • Update dependency org.hibernate.validator:hibernate-validator to v7.0.5.Final by @renovate in https://github.com/dropwizard/dropwizard/pull/5665
    • Update error_prone.version to v2.15.0 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5667
    • Update dependency org.checkerframework:checker-qual to v3.24.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5666
    • Update dependency jp.skypencil.errorprone.slf4j:errorprone-slf4j to v0.1.13 by @renovate in https://github.com/dropwizard/dropwizard/pull/5671
    • Update dependency io.dropwizard.metrics:metrics-bom to v4.2.11 by @renovate in https://github.com/dropwizard/dropwizard/pull/5675
    • Update actions/cache action to v3.0.6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5679
    • Update dependency org.liquibase:liquibase-core to v4.15.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5687
    • Update dependency org.glassfish.jersey:jersey-bom to v3.0.6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5686
    • Properly handle null in PortRangeValidator by @joschi in https://github.com/dropwizard/dropwizard/pull/5690
    • Add toJavaDuration to Duration by @sleberknight in https://github.com/dropwizard/dropwizard/pull/5692
    • Update dependency org.javassist:javassist to v3.29.1-GA by @renovate in https://github.com/dropwizard/dropwizard/pull/5697
    • Update actions/cache action to v3.0.7 by @renovate in https://github.com/dropwizard/dropwizard/pull/5704
    • Update mockito monorepo to v4.7.0 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5711
    • Remove guava exclusion from mustache dependency by @rhowe in https://github.com/dropwizard/dropwizard/pull/5712
    • Remove deprecated EnvironmentVariableLookup by @rhowe in https://github.com/dropwizard/dropwizard/pull/5713
    • Revert "Update dependency org.glassfish.jersey:jersey-bom to v3.0.6 (release/4.0.x)" by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5728
    • Wrap exceptions thrown by beforeStart with MappableException by @andref in https://github.com/dropwizard/dropwizard/pull/5506
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5732
    • Update slf4j.version to v2.0.0-beta1 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5688
    • Update logback.version to v1.3.0-beta0 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5698
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5734
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5735
    • Update dependency org.apache.maven.plugins:maven-help-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5737
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5736
    • Update github/codeql-action digest to f5d217b by @renovate in https://github.com/dropwizard/dropwizard/pull/5741
    • Update slf4j.version to v2.0.0 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5745
    • Allow parameter conversion exceptions to be mapped to responses by exception mappers by @tmelmoth in https://github.com/dropwizard/dropwizard/pull/5691
    • Update github/codeql-action digest to 7fee4ca by @renovate in https://github.com/dropwizard/dropwizard/pull/5759
    • Update actions/cache action to v3.0.8 by @renovate in https://github.com/dropwizard/dropwizard/pull/5760
    • Update dependency net.bytebuddy:byte-buddy to v1.12.14 by @renovate in https://github.com/dropwizard/dropwizard/pull/5761
    • Update github/codeql-action digest to c7f292e by @renovate in https://github.com/dropwizard/dropwizard/pull/5768
    • Remove redundant outputPatternAsHeader logging setting from tests by @rhowe in https://github.com/dropwizard/dropwizard/pull/5770
    • Suppress logging during dropwizard-validations tests by @rhowe in https://github.com/dropwizard/dropwizard/pull/5716
    • Minimise test logging configuration by @rhowe in https://github.com/dropwizard/dropwizard/pull/5771
    • Update logback.version to v1.4.0 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5777
    • Use Byte Buddy instead of Javassist in UnitOfWorkAwareProxyFactory by @sjthomason in https://github.com/dropwizard/dropwizard/pull/5748
    • Update logback to version 1.3.0 by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5781
    • Update dependency com.uber.nullaway:nullaway to v0.9.10 by @renovate in https://github.com/dropwizard/dropwizard/pull/5797
    • Update github/codeql-action digest to b398f52 by @renovate in https://github.com/dropwizard/dropwizard/pull/5796
    • Address errorprone warnings in dropwizard-logging by @rhowe in https://github.com/dropwizard/dropwizard/pull/5778
    • Update dependency jp.skypencil.errorprone.slf4j:errorprone-slf4j to v0.1.15 by @renovate in https://github.com/dropwizard/dropwizard/pull/5798
    • Update dependency org.hibernate:hibernate-core-jakarta to v5.6.11.Final by @renovate in https://github.com/dropwizard/dropwizard/pull/5799
    • Update dependency org.glassfish.jersey:jersey-bom to v3.0.8 by @renovate in https://github.com/dropwizard/dropwizard/pull/5802
    • Update dependency com.fasterxml.jackson:jackson-bom to v2.13.4 by @renovate in https://github.com/dropwizard/dropwizard/pull/5807
    • Update dependency io.dropwizard.metrics:metrics-bom to v4.2.12 by @renovate in https://github.com/dropwizard/dropwizard/pull/5811
    • Update dependency org.checkerframework:checker-qual to v3.25.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5812
    • Exclude jetty-servlet-api by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5814
    • Re-introduce automatic module names by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5813
    • Update upgrade notes for 3.0.0 by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5822
    • Update actions/setup-java digest to d854b6d by @renovate in https://github.com/dropwizard/dropwizard/pull/5834
    • Update dependency net.bytebuddy:byte-buddy to v1.12.16 by @renovate in https://github.com/dropwizard/dropwizard/pull/5835
    • Only configure JMX, if the JMXConfigurator is present by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5825
    • Update mockito monorepo to v4.8.0 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5836
    • Allow parameter conversion exceptions to be mapped to responses by exception mappers by @tmelmoth in https://github.com/dropwizard/dropwizard/pull/5837
    • Allow parameter conversion exceptions to be mapped to responses by exception mappers by @tmelmoth in https://github.com/dropwizard/dropwizard/pull/5838
    • Update dependency com.uber.nullaway:nullaway to v0.10.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5845
    • Update dependency org.liquibase:liquibase-core to v4.16.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5846
    • Disable check for static keyword on SLF4J loggers by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5725
    • Drop support for Java 8 in dropwizard-jersey by @rhowe in https://github.com/dropwizard/dropwizard/pull/5855
    • Update dependency com.uber.nullaway:nullaway to v0.10.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5862
    • Exchange HTTP client implementation by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5872
    • Improve startup performance for many loggers by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5854
    • Update link to Jackson's polymorphic deserialization docs by @bskarda in https://github.com/dropwizard/dropwizard/pull/5882
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.12 by @renovate in https://github.com/dropwizard/dropwizard/pull/5900
    • Update logback.version to v1.4.1 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5901
    • Update slf4j.version to v2.0.1 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5902
    • Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5903
    • Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5904
    • Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.4.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5905
    • Upgrade to hibernate-core 6.1.3 by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5871
    • Update github/codeql-action digest to 904260d by @renovate in https://github.com/dropwizard/dropwizard/pull/5917
    • Update dependency org.javassist:javassist to v3.29.2-GA by @renovate in https://github.com/dropwizard/dropwizard/pull/5918
    • Update actions/stale digest to 99b6c70 by @renovate in https://github.com/dropwizard/dropwizard/pull/5916
    • Update dependency org.liquibase:liquibase-core to v4.16.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5919
    • Expose MethodInterceptor and the invoke method by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5880
    • JavaDoc enhancements by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5749
    • Expose ManagedDataSource to provide access to the connection pool by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5681
    • Update slf4j.version to v2.0.3 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5989
    • Update junit5 monorepo to v5.9.1 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5988
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.4 by @renovate in https://github.com/dropwizard/dropwizard/pull/5987
    • Update dependency net.bytebuddy:byte-buddy to v1.12.17 by @renovate in https://github.com/dropwizard/dropwizard/pull/5985
    • Update actions/cache action to v3.0.9 by @renovate in https://github.com/dropwizard/dropwizard/pull/5983
    • Update actions/setup-java digest to a18c333 by @renovate in https://github.com/dropwizard/dropwizard/pull/5981
    • Update dependency org.jdbi:jdbi3-bom to v3.33.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5993
    • Update github/codeql-action digest to e0e5ded by @renovate in https://github.com/dropwizard/dropwizard/pull/5982
    • Update dependency Sphinx to v5.2.3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5990
    • Update dependency org.apache.commons:commons-text to v1.10.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5991
    • Update actions/stale action to v6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5994
    • Update dependency org.apache.tomcat:tomcat-jdbc to v10.1.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5992
    • Skip Sonar execution on Windows runners by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5940
    • Update dependency com.uber.nullaway:nullaway to v0.10.2 by @renovate in https://github.com/dropwizard/dropwizard/pull/5984
    • Remove the Jadira Usertype Core library by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5939
    • Update logback.version to v1.4.3 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/6001
    • Update actions/cache action to v3.0.10 by @renovate in https://github.com/dropwizard/dropwizard/pull/6000
    • Update dependency org.checkerframework:checker-qual to v3.26.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/6006
    • Update actions/checkout action to v3.1.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/6020
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.5 by @renovate in https://github.com/dropwizard/dropwizard/pull/6019
    • Update dependency org.hibernate.orm:hibernate-core to v6.1.4.Final by @renovate in https://github.com/dropwizard/dropwizard/pull/6018
    • Update dependency org.jdbi:jdbi3-bom to v3.34.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/6021
    • Update actions/stale digest to 5ebf00e by @renovate in https://github.com/dropwizard/dropwizard/pull/6034
    • Update github/codeql-action digest to 8075783 by @renovate in https://github.com/dropwizard/dropwizard/pull/6035
    • Add manual workflow to trigger a release by @joschi in https://github.com/dropwizard/dropwizard/pull/6041
    • Update actions/checkout digest to 93ea575 by @renovate in https://github.com/dropwizard/dropwizard/pull/6057
    • Update error_prone.version to v2.16 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/6064
    • Update logback.version to v1.4.4 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/6062
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.2 by @renovate in https://github.com/dropwizard/dropwizard/pull/6061
    • Update dependency org.apache.tomcat:tomcat-jdbc to v10.1.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/6060
    • Update dependency net.bytebuddy:byte-buddy to v1.12.18 by @renovate in https://github.com/dropwizard/dropwizard/pull/6059
    • Update dependency jp.skypencil.errorprone.slf4j:errorprone-slf4j to v0.1.16 by @renovate in https://github.com/dropwizard/dropwizard/pull/6058

    New Contributors

    • @sleberknight made their first contribution in https://github.com/dropwizard/dropwizard/pull/5692
    • @andref made their first contribution in https://github.com/dropwizard/dropwizard/pull/5506
    • @tmelmoth made their first contribution in https://github.com/dropwizard/dropwizard/pull/5691
    • @sjthomason made their first contribution in https://github.com/dropwizard/dropwizard/pull/5748
    • @bskarda made their first contribution in https://github.com/dropwizard/dropwizard/pull/5882

    Full Changelog: https://github.com/dropwizard/dropwizard/compare/v4.0.0-beta.2...v4.0.0-beta.3

    Source code(tar.gz)
    Source code(zip)
  • v3.0.0-beta.4(Oct 12, 2022)

    What's Changed

    • Update upgrade notes for Dropwizard 2.1.x regarding the Grizzly connector by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5492
    • Update dependency org.hibernate:hibernate-core to v5.6.10.Final by @renovate in https://github.com/dropwizard/dropwizard/pull/5504
    • Update dependency org.apache.httpcomponents.core5:httpcore5 to v5.1.4 by @renovate in https://github.com/dropwizard/dropwizard/pull/5507
    • Update dependency org.checkerframework:checker-qual to v3.23.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5514
    • Update dependency org.liquibase:liquibase-core to v4.13.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5515
    • Update actions/setup-java digest to 2c7a487 by @renovate in https://github.com/dropwizard/dropwizard/pull/5525
    • Update actions/cache action to v3.0.5 by @renovate in https://github.com/dropwizard/dropwizard/pull/5526
    • Update github/codeql-action digest to 3e7e3b3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5531
    • Update dependency org.jdbi:jdbi3-bom to v3.31.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5544
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5542
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5543
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5560
    • Update dependency org.apache.maven.plugins:maven-deploy-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5571
    • Update dependency org.apache.maven.plugins:maven-deploy-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5570
    • Update dependency org.apache.maven.plugins:maven-install-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5572
    • Update dependency org.apache.maven.plugins:maven-install-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5573
    • Bump actions/stale from 5.0.0 to 5.1.0 by @dependabot in https://github.com/dropwizard/dropwizard/pull/5548
    • Update dependency org.apache.tomcat:tomcat-jdbc to v10.0.23 by @renovate in https://github.com/dropwizard/dropwizard/pull/5602
    • Update dependency mysql:mysql-connector-java to v8.0.30 by @renovate in https://github.com/dropwizard/dropwizard/pull/5594
    • Update dependency Sphinx to v5.1.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5595
    • Update dependency org.liquibase:liquibase-core to v4.14.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5584
    • Update dependency org.apache.maven.plugins:maven-resources-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5597
    • Update dependency org.jdbi:jdbi3-bom to v3.32.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5583
    • Update dependency org.apache.maven.plugins:maven-resources-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5596
    • Update dependency Sphinx to v5.1.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5613
    • Update junit5 monorepo to v5.9.0 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5614
    • Fix tests by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5618
    • Update github/codeql-action digest to 0c670bb by @renovate in https://github.com/dropwizard/dropwizard/pull/5628
    • Update actions/stale digest to 9c1b1c6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5627
    • Update dependency net.bytebuddy:byte-buddy to v1.12.13 by @renovate in https://github.com/dropwizard/dropwizard/pull/5636
    • Replace org.glassfish.hk2.external:jakarta.inject with jakarta.inject:jakarta.inject-api by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5638
    • Update github/codeql-action digest to 2ca79b6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5654
    • Update dependency com.uber.nullaway:nullaway to v0.9.9 by @renovate in https://github.com/dropwizard/dropwizard/pull/5655
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5656
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5657
    • Update dependency org.hibernate.validator:hibernate-validator to v6.2.4.Final by @renovate in https://github.com/dropwizard/dropwizard/pull/5658
    • Update error_prone.version to v2.15.0 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5660
    • Update dependency org.checkerframework:checker-qual to v3.24.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5659
    • Update dependency jp.skypencil.errorprone.slf4j:errorprone-slf4j to v0.1.13 by @renovate in https://github.com/dropwizard/dropwizard/pull/5670
    • Update dependency io.dropwizard.metrics:metrics-bom to v4.2.11 by @renovate in https://github.com/dropwizard/dropwizard/pull/5674
    • Update actions/cache action to v3.0.6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5678
    • Update dependency org.liquibase:liquibase-core to v4.15.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5685
    • Properly handle null in PortRangeValidator by @joschi in https://github.com/dropwizard/dropwizard/pull/5690
    • Add toJavaDuration to Duration by @sleberknight in https://github.com/dropwizard/dropwizard/pull/5692
    • Update dependency org.javassist:javassist to v3.29.1-GA by @renovate in https://github.com/dropwizard/dropwizard/pull/5702
    • Update actions/cache action to v3.0.7 by @renovate in https://github.com/dropwizard/dropwizard/pull/5701
    • Update mockito monorepo to v4.7.0 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5710
    • Remove guava exclusion from mustache dependency by @rhowe in https://github.com/dropwizard/dropwizard/pull/5712
    • Remove deprecated EnvironmentVariableLookup by @rhowe in https://github.com/dropwizard/dropwizard/pull/5713
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5724
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5723
    • Wrap exceptions thrown by beforeStart with MappableException by @andref in https://github.com/dropwizard/dropwizard/pull/5506
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5730
    • Update dependency org.apache.maven.plugins:maven-help-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5731
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5729
    • Update github/codeql-action digest to f5d217b by @renovate in https://github.com/dropwizard/dropwizard/pull/5740
    • Allow parameter conversion exceptions to be mapped to responses by exception mappers by @tmelmoth in https://github.com/dropwizard/dropwizard/pull/5691
    • Update github/codeql-action digest to 7fee4ca by @renovate in https://github.com/dropwizard/dropwizard/pull/5756
    • Update actions/cache action to v3.0.8 by @renovate in https://github.com/dropwizard/dropwizard/pull/5757
    • Update dependency net.bytebuddy:byte-buddy to v1.12.14 by @renovate in https://github.com/dropwizard/dropwizard/pull/5758
    • Update github/codeql-action digest to c7f292e by @renovate in https://github.com/dropwizard/dropwizard/pull/5767
    • Remove redundant outputPatternAsHeader logging setting from tests by @rhowe in https://github.com/dropwizard/dropwizard/pull/5770
    • Suppress logging during dropwizard-validations tests by @rhowe in https://github.com/dropwizard/dropwizard/pull/5716
    • Minimise test logging configuration by @rhowe in https://github.com/dropwizard/dropwizard/pull/5771
    • Use Byte Buddy instead of Javassist in UnitOfWorkAwareProxyFactory by @sjthomason in https://github.com/dropwizard/dropwizard/pull/5748
    • Update logback to version 1.3.0 by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5781
    • Update dependency com.uber.nullaway:nullaway to v0.9.10 by @renovate in https://github.com/dropwizard/dropwizard/pull/5793
    • Update github/codeql-action digest to b398f52 by @renovate in https://github.com/dropwizard/dropwizard/pull/5792
    • Update dependency jp.skypencil.errorprone.slf4j:errorprone-slf4j to v0.1.15 by @renovate in https://github.com/dropwizard/dropwizard/pull/5794
    • Address errorprone warnings in dropwizard-logging by @rhowe in https://github.com/dropwizard/dropwizard/pull/5778
    • Update dependency org.hibernate:hibernate-core to v5.6.11.Final by @renovate in https://github.com/dropwizard/dropwizard/pull/5795
    • Update dependency org.checkerframework:checker-qual to v3.25.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5806
    • Update dependency com.fasterxml.jackson:jackson-bom to v2.13.4 by @renovate in https://github.com/dropwizard/dropwizard/pull/5805
    • Update dependency io.dropwizard.metrics:metrics-bom to v4.2.12 by @renovate in https://github.com/dropwizard/dropwizard/pull/5810
    • Exclude jetty-servlet-api by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5814
    • Re-introduce automatic module names by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5813
    • Update dependency org.glassfish.jersey:jersey-bom to v2.37 by @renovate in https://github.com/dropwizard/dropwizard/pull/5819
    • Update upgrade notes for 3.0.0 by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5822
    • Update actions/setup-java digest to d854b6d by @renovate in https://github.com/dropwizard/dropwizard/pull/5831
    • Update dependency net.bytebuddy:byte-buddy to v1.12.16 by @renovate in https://github.com/dropwizard/dropwizard/pull/5832
    • Only configure JMX, if the JMXConfigurator is present by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5825
    • Update mockito monorepo to v4.8.0 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5833
    • Allow parameter conversion exceptions to be mapped to responses by exception mappers by @tmelmoth in https://github.com/dropwizard/dropwizard/pull/5838
    • Update dependency com.uber.nullaway:nullaway to v0.10.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5843
    • Update dependency org.liquibase:liquibase-core to v4.16.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5844
    • Disable check for static keyword on SLF4J loggers by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5725
    • Drop support for Java 8 in dropwizard-jersey by @rhowe in https://github.com/dropwizard/dropwizard/pull/5855
    • Update dependency com.uber.nullaway:nullaway to v0.10.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5860
    • Update dependency org.hibernate.validator:hibernate-validator to v6.2.5.Final by @renovate in https://github.com/dropwizard/dropwizard/pull/5861
    • Exchange HTTP client implementation by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5872
    • Improve startup performance for many loggers by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5854
    • Update link to Jackson's polymorphic deserialization docs by @bskarda in https://github.com/dropwizard/dropwizard/pull/5882
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.12 by @renovate in https://github.com/dropwizard/dropwizard/pull/5899
    • Update logback.version to v1.3.1 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5906
    • Update slf4j.version to v2.0.1 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5907
    • Update github/codeql-action digest to 904260d by @renovate in https://github.com/dropwizard/dropwizard/pull/5909
    • Update dependency org.javassist:javassist to v3.29.2-GA by @renovate in https://github.com/dropwizard/dropwizard/pull/5910
    • Update dependency org.liquibase:liquibase-core to v4.16.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5911
    • Update actions/stale digest to 99b6c70 by @renovate in https://github.com/dropwizard/dropwizard/pull/5908
    • Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5912
    • Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5913
    • Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.4.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5914
    • Expose MethodInterceptor and the invoke method by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5880
    • JavaDoc enhancements by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5749
    • Expose ManagedDataSource to provide access to the connection pool by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5681
    • Update dependency com.uber.nullaway:nullaway to v0.10.2 by @renovate in https://github.com/dropwizard/dropwizard/pull/5934
    • Update github/codeql-action digest to 86f3159 by @renovate in https://github.com/dropwizard/dropwizard/pull/5933
    • Update dependency org.jdbi:jdbi3-bom to v3.33.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5979
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.4 by @renovate in https://github.com/dropwizard/dropwizard/pull/5973
    • Update dependency org.hibernate:hibernate-core to v5.6.12.Final by @renovate in https://github.com/dropwizard/dropwizard/pull/5972
    • Update actions/setup-java digest to a18c333 by @renovate in https://github.com/dropwizard/dropwizard/pull/5967
    • Update github/codeql-action digest to e0e5ded by @renovate in https://github.com/dropwizard/dropwizard/pull/5968
    • Update actions/cache action to v3.0.9 by @renovate in https://github.com/dropwizard/dropwizard/pull/5969
    • Update dependency net.bytebuddy:byte-buddy to v1.12.17 by @renovate in https://github.com/dropwizard/dropwizard/pull/5970
    • Update dependency org.apache.tomcat:tomcat-jdbc to v10.0.26 by @renovate in https://github.com/dropwizard/dropwizard/pull/5971
    • Update actions/stale action to v6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5980
    • Skip Sonar execution on Windows runners by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5940
    • Update junit5 monorepo to v5.9.1 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5974
    • Update slf4j.version to v2.0.3 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5975
    • Update dependency Sphinx to v5.2.3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5976
    • Update dependency org.apache.commons:commons-text to v1.10.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5977
    • Update dependency org.apache.tomcat:tomcat-jdbc to v10.1.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5978
    • Remove the Jadira Usertype Core library by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5939
    • Update logback.version to v1.3.3 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5999
    • Update actions/cache action to v3.0.10 by @renovate in https://github.com/dropwizard/dropwizard/pull/5998
    • Update dependency org.checkerframework:checker-qual to v3.26.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/6005
    • Update dependency org.jdbi:jdbi3-bom to v3.34.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/6017
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.5 by @renovate in https://github.com/dropwizard/dropwizard/pull/6015
    • Update actions/checkout action to v3.1.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/6016
    • Update actions/stale digest to 5ebf00e by @renovate in https://github.com/dropwizard/dropwizard/pull/6031
    • Update github/codeql-action digest to 8075783 by @renovate in https://github.com/dropwizard/dropwizard/pull/6032
    • Update logback.version to v1.3.4 (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/6033
    • Add manual workflow to trigger a release by @joschi in https://github.com/dropwizard/dropwizard/pull/6041
    • Update actions/checkout digest to 93ea575 by @renovate in https://github.com/dropwizard/dropwizard/pull/6049
    • Update dependency jp.skypencil.errorprone.slf4j:errorprone-slf4j to v0.1.16 by @renovate in https://github.com/dropwizard/dropwizard/pull/6050
    • Update dependency net.bytebuddy:byte-buddy to v1.12.18 by @renovate in https://github.com/dropwizard/dropwizard/pull/6051
    • Update dependency org.apache.tomcat:tomcat-jdbc to v10.1.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/6052
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.2 by @renovate in https://github.com/dropwizard/dropwizard/pull/6053
    • Update error_prone.version to v2.16 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/6055

    New Contributors

    • @sleberknight made their first contribution in https://github.com/dropwizard/dropwizard/pull/5692
    • @andref made their first contribution in https://github.com/dropwizard/dropwizard/pull/5506
    • @sjthomason made their first contribution in https://github.com/dropwizard/dropwizard/pull/5748
    • @bskarda made their first contribution in https://github.com/dropwizard/dropwizard/pull/5882

    Full Changelog: https://github.com/dropwizard/dropwizard/compare/v3.0.0-beta.3...v3.0.0-beta.4

    Source code(tar.gz)
    Source code(zip)
  • v2.1.3(Oct 12, 2022)

    What's Changed

    • Update dependency org.hibernate.validator:hibernate-validator to v6.2.5.Final (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5859
    • Update dependency com.uber.nullaway:nullaway to v0.10.1 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5858
    • Improve startup performance for many loggers by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5854
    • Update link to Jackson's polymorphic deserialization docs by @bskarda in https://github.com/dropwizard/dropwizard/pull/5882
    • Update actions/stale digest to 99b6c70 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5890
    • Update github/codeql-action digest to 904260d (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5891
    • Update jetty.version to v9.4.49.v20220914 (release/2.1.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5894
    • Update dependency org.liquibase:liquibase-core to v4.16.1 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5893
    • Update dependency org.javassist:javassist to v3.29.2-GA (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5892
    • Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.3.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5896
    • Update dependency org.apache.maven.plugins:maven-jar-plugin to v3.3.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5895
    • Update dependency org.apache.maven.plugins:maven-shade-plugin to v3.4.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5897
    • Expose MethodInterceptor and the invoke method by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5880
    • JavaDoc enhancements by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5749
    • Expose ManagedDataSource to provide access to the connection pool by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5681
    • Update dependency com.uber.nullaway:nullaway to v0.10.2 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5923
    • Update actions/stale action to v6 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5931
    • Update junit5 monorepo to v5.9.1 (release/2.1.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5930
    • Update github/codeql-action digest to 86f3159 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5928
    • Update dependency net.bytebuddy:byte-buddy to v1.12.17 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5929
    • Update dependency joda-time:joda-time to v2.11.2 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5938
    • Update dependency org.apache.tomcat:tomcat-jdbc to v9.0.67 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5942
    • Update dependency Sphinx to v5.2.3 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5936
    • Update dependency org.jdbi:jdbi3-bom to v3.33.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5964
    • Update dependency org.hibernate:hibernate-core to v5.6.12.Final (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5949
    • Update dependency org.apache.commons:commons-text to v1.10.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5963
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.4 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5962
    • Update actions/setup-java digest to a18c333 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5948
    • Update github/codeql-action digest to e0e5ded (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5960
    • Update actions/cache action to v3.0.9 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5961
    • Skip Sonar execution on Windows runners by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5940
    • Update actions/cache action to v3.0.10 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5997
    • Update dependency org.checkerframework:checker-qual to v3.26.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6004
    • Update actions/checkout action to v3.1.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6013
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.5 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6012
    • Update dependency org.jdbi:jdbi3-bom to v3.34.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6014
    • Update actions/stale digest to 5ebf00e (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6028
    • Update github/codeql-action digest to 8075783 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6029
    • Update dependency org.apache.tomcat:tomcat-jdbc to v9.0.68 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6030
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.2 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6038
    • Update dependency org.liquibase:liquibase-core to v4.17.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6039
    • Add manual workflow to trigger a release by @joschi in https://github.com/dropwizard/dropwizard/pull/6041
    • Update dependency net.bytebuddy:byte-buddy to v1.12.18 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6047
    • Update actions/checkout digest to 93ea575 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/6045

    New Contributors

    • @bskarda made their first contribution in https://github.com/dropwizard/dropwizard/pull/5882

    Full Changelog: https://github.com/dropwizard/dropwizard/compare/v2.1.2...v2.1.3

    Source code(tar.gz)
    Source code(zip)
  • v2.1.2(Sep 12, 2022)

    What's Changed

    • Update dependency org.hibernate:hibernate-core to v5.6.10.Final by @renovate in https://github.com/dropwizard/dropwizard/pull/5503
    • Update dependency org.liquibase:liquibase-core to v4.13.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5513
    • Update dependency org.checkerframework:checker-qual to v3.23.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5511
    • Update actions/setup-java digest to 2c7a487 by @renovate in https://github.com/dropwizard/dropwizard/pull/5520
    • Update actions/cache action to v3.0.5 by @renovate in https://github.com/dropwizard/dropwizard/pull/5524
    • Update github/codeql-action digest to 3e7e3b3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5530
    • Update dependency org.jdbi:jdbi3-bom to v3.31.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5541
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5540
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5539
    • Update dependency org.apache.tomcat:tomcat-jdbc to v9.0.65 by @renovate in https://github.com/dropwizard/dropwizard/pull/5558
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5559
    • Update dependency org.apache.maven.plugins:maven-deploy-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5563
    • Update dependency org.apache.maven.plugins:maven-deploy-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5562
    • Update dependency org.apache.maven.plugins:maven-install-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5569
    • Update dependency org.apache.maven.plugins:maven-install-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5568
    • Bump actions/stale from 5.0.0 to 5.1.0 by @dependabot in https://github.com/dropwizard/dropwizard/pull/5548
    • Update dependency org.jdbi:jdbi3-bom to v3.32.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5581
    • Update dependency org.liquibase:liquibase-core to v4.14.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5582
    • Update actions/stale digest to 3cc1237 by @renovate in https://github.com/dropwizard/dropwizard/pull/5589
    • Update dependency mysql:mysql-connector-java to v8.0.30 by @renovate in https://github.com/dropwizard/dropwizard/pull/5590
    • Update dependency Sphinx to v5.1.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5591
    • Update dependency org.apache.maven.plugins:maven-resources-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5592
    • Update dependency org.apache.maven.plugins:maven-resources-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5593
    • Update junit5 monorepo to v5.9.0 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5611
    • Update dependency Sphinx to v5.1.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5610
    • Update github/codeql-action digest to 0c670bb by @renovate in https://github.com/dropwizard/dropwizard/pull/5624
    • Update actions/stale digest to 9c1b1c6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5620
    • Fix tests by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5618
    • Update dependency net.bytebuddy:byte-buddy to v1.12.13 by @renovate in https://github.com/dropwizard/dropwizard/pull/5635
    • Replace org.glassfish.hk2.external:jakarta.inject with jakarta.inject:jakarta.inject-api by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5638
    • Update github/codeql-action digest to 2ca79b6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5647
    • Update dependency com.uber.nullaway:nullaway to v0.9.9 by @renovate in https://github.com/dropwizard/dropwizard/pull/5648
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5649
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5650
    • Update dependency org.hibernate.validator:hibernate-validator to v6.2.4.Final by @renovate in https://github.com/dropwizard/dropwizard/pull/5651
    • Update dependency org.checkerframework:checker-qual to v3.24.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5652
    • Update dependency io.dropwizard.metrics:metrics-bom to v4.2.11 by @renovate in https://github.com/dropwizard/dropwizard/pull/5673
    • Update actions/cache action to v3.0.6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5677
    • Update dependency org.liquibase:liquibase-core to v4.15.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5683
    • Properly handle null in PortRangeValidator by @joschi in https://github.com/dropwizard/dropwizard/pull/5690
    • Add toJavaDuration to Duration by @sleberknight in https://github.com/dropwizard/dropwizard/pull/5692
    • Update dependency org.javassist:javassist to v3.29.1-GA by @renovate in https://github.com/dropwizard/dropwizard/pull/5700
    • Update actions/cache action to v3.0.7 by @renovate in https://github.com/dropwizard/dropwizard/pull/5699
    • Update dependency joda-time:joda-time to v2.11.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5707
    • Update mockito monorepo to v4.7.0 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5709
    • Remove guava exclusion from mustache dependency by @rhowe in https://github.com/dropwizard/dropwizard/pull/5712
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5719
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5721
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5720
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5722
    • Update dependency org.apache.maven.plugins:maven-help-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5727
    • Update github/codeql-action digest to f5d217b by @renovate in https://github.com/dropwizard/dropwizard/pull/5739
    • Allow parameter conversion exceptions to be mapped to responses by exception mappers by @tmelmoth in https://github.com/dropwizard/dropwizard/pull/5691
    • Update github/codeql-action digest to 7fee4ca by @renovate in https://github.com/dropwizard/dropwizard/pull/5753
    • Update actions/cache action to v3.0.8 by @renovate in https://github.com/dropwizard/dropwizard/pull/5754
    • Update dependency net.bytebuddy:byte-buddy to v1.12.14 by @renovate in https://github.com/dropwizard/dropwizard/pull/5755
    • Update dependency joda-time:joda-time to v2.11.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5766
    • Update github/codeql-action digest to c7f292e by @renovate in https://github.com/dropwizard/dropwizard/pull/5765
    • Remove redundant outputPatternAsHeader logging setting from tests by @rhowe in https://github.com/dropwizard/dropwizard/pull/5770
    • Suppress logging during dropwizard-validations tests by @rhowe in https://github.com/dropwizard/dropwizard/pull/5716
    • Minimise test logging configuration by @rhowe in https://github.com/dropwizard/dropwizard/pull/5771
    • Use Byte Buddy instead of Javassist in UnitOfWorkAwareProxyFactory by @sjthomason in https://github.com/dropwizard/dropwizard/pull/5748
    • Update dependency org.hibernate:hibernate-core to v5.6.11.Final by @renovate in https://github.com/dropwizard/dropwizard/pull/5788
    • Update dependency com.uber.nullaway:nullaway to v0.9.10 by @renovate in https://github.com/dropwizard/dropwizard/pull/5786
    • Update github/codeql-action digest to b398f52 by @renovate in https://github.com/dropwizard/dropwizard/pull/5790
    • Address errorprone warnings in dropwizard-logging by @rhowe in https://github.com/dropwizard/dropwizard/pull/5778
    • Update dependency org.checkerframework:checker-qual to v3.25.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5801
    • Update dependency com.fasterxml.jackson:jackson-bom to v2.13.4 by @renovate in https://github.com/dropwizard/dropwizard/pull/5804
    • Update dependency io.dropwizard.metrics:metrics-bom to v4.2.12 by @renovate in https://github.com/dropwizard/dropwizard/pull/5809
    • Update dependency org.glassfish.jersey:jersey-bom to v2.37 by @renovate in https://github.com/dropwizard/dropwizard/pull/5818
    • Update mockito monorepo to v4.8.0 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5824
    • Update actions/setup-java digest to d854b6d by @renovate in https://github.com/dropwizard/dropwizard/pull/5829
    • Update dependency net.bytebuddy:byte-buddy to v1.12.16 by @renovate in https://github.com/dropwizard/dropwizard/pull/5830
    • Only configure JMX, if the JMXConfigurator is present by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5825
    • Update dependency com.uber.nullaway:nullaway to v0.10.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5841
    • Update dependency org.liquibase:liquibase-core to v4.16.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5842
    • Disable check for static keyword on SLF4J loggers by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5725

    New Contributors

    • @sleberknight made their first contribution in https://github.com/dropwizard/dropwizard/pull/5692
    • @sjthomason made their first contribution in https://github.com/dropwizard/dropwizard/pull/5748
    • @tmelmoth made their first contribution in https://github.com/dropwizard/dropwizard/pull/5691

    Full Changelog: https://github.com/dropwizard/dropwizard/compare/v2.1.1...v2.1.2

    Source code(tar.gz)
    Source code(zip)
  • v2.0.33(Sep 12, 2022)

    What's Changed

    • Update dependency org.hibernate:hibernate-core to v5.6.10.Final by @renovate in https://github.com/dropwizard/dropwizard/pull/5502
    • Update dependency org.checkerframework:checker-qual to v3.23.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5510
    • Update actions/setup-java digest to 2c7a487 by @renovate in https://github.com/dropwizard/dropwizard/pull/5519
    • Update actions/cache action to v3.0.5 by @renovate in https://github.com/dropwizard/dropwizard/pull/5523
    • Update github/codeql-action digest to 3e7e3b3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5529
    • Update actions/stale action to v5.1.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5535
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5537
    • Update dependency org.jdbi:jdbi3-bom to v3.31.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5538
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5536
    • Update dependency org.apache.maven.plugins:maven-install-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5553
    • Update dependency org.cyclonedx:cyclonedx-maven-plugin to v2.7.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5552
    • Update dependency org.apache.tomcat:tomcat-jdbc to v9.0.65 by @renovate in https://github.com/dropwizard/dropwizard/pull/5557
    • Update dependency org.apache.maven.plugins:maven-install-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5554
    • Update dependency org.apache.maven.plugins:maven-deploy-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5551
    • Update dependency org.apache.maven.plugins:maven-deploy-plugin to v3 by @renovate in https://github.com/dropwizard/dropwizard/pull/5550
    • Update dependency org.apache.maven.plugins:maven-install-plugin to v3.0.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5564
    • Update dependency org.apache.maven.plugins:maven-install-plugin to v3.0.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5565
    • Update dependency Sphinx to v5.1.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5579
    • Update dependency mysql:mysql-connector-java to v8.0.30 by @renovate in https://github.com/dropwizard/dropwizard/pull/5578
    • Update dependency org.jdbi:jdbi3-bom to v3.32.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5580
    • Update dependency org.apache.maven.plugins:maven-resources-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5587
    • Update dependency org.apache.maven.plugins:maven-resources-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5588
    • Update junit5 monorepo to v5.9.0 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5605
    • Update dependency Sphinx to v5.1.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5604
    • Update github/codeql-action digest to 0c670bb by @renovate in https://github.com/dropwizard/dropwizard/pull/5623
    • Update actions/stale action to v5.1.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5619
    • Update dependency net.bytebuddy:byte-buddy to v1.12.13 by @renovate in https://github.com/dropwizard/dropwizard/pull/5634
    • Update dependency com.uber.nullaway:nullaway to v0.9.9 by @renovate in https://github.com/dropwizard/dropwizard/pull/5641
    • Update github/codeql-action digest to 2ca79b6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5640
    • Update dependency org.checkerframework:checker-qual to v3.24.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5644
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5643
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5642
    • Update actions/cache action to v3.0.6 by @renovate in https://github.com/dropwizard/dropwizard/pull/5676
    • Update dependency io.dropwizard.metrics:metrics-bom to v4.1.33 by @renovate in https://github.com/dropwizard/dropwizard/pull/5682
    • Properly handle null in PortRangeValidator by @joschi in https://github.com/dropwizard/dropwizard/pull/5689
    • Update actions/cache action to v3.0.7 by @renovate in https://github.com/dropwizard/dropwizard/pull/5695
    • Update dependency org.javassist:javassist to v3.29.1-GA by @renovate in https://github.com/dropwizard/dropwizard/pull/5696
    • Update dependency joda-time:joda-time to v2.11.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5706
    • Update mockito monorepo to v4.7.0 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5708
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5715
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5714
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5717
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.4.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5718
    • Update dependency org.apache.maven.plugins:maven-help-plugin to v3.3.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5726
    • Update github/codeql-action digest to f5d217b by @renovate in https://github.com/dropwizard/dropwizard/pull/5738
    • Update dependency net.bytebuddy:byte-buddy to v1.12.14 by @renovate in https://github.com/dropwizard/dropwizard/pull/5752
    • Update github/codeql-action digest to 7fee4ca by @renovate in https://github.com/dropwizard/dropwizard/pull/5750
    • Update actions/cache action to v3.0.8 by @renovate in https://github.com/dropwizard/dropwizard/pull/5751
    • Update dependency joda-time:joda-time to v2.11.1 by @renovate in https://github.com/dropwizard/dropwizard/pull/5764
    • Update github/codeql-action digest to c7f292e by @renovate in https://github.com/dropwizard/dropwizard/pull/5763
    • Remove redundant outputPatternAsHeader logging setting from tests by @rhowe in https://github.com/dropwizard/dropwizard/pull/5769
    • Update dependency com.uber.nullaway:nullaway to v0.9.10 by @renovate in https://github.com/dropwizard/dropwizard/pull/5783
    • Update dependency org.hibernate:hibernate-core to v5.6.11.Final by @renovate in https://github.com/dropwizard/dropwizard/pull/5785
    • Update github/codeql-action digest to b398f52 by @renovate in https://github.com/dropwizard/dropwizard/pull/5789
    • Update dependency org.checkerframework:checker-qual to v3.25.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5800
    • Update mockito monorepo to v4.8.0 (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5823
    • Update dependency net.bytebuddy:byte-buddy to v1.12.16 by @renovate in https://github.com/dropwizard/dropwizard/pull/5827
    • Update actions/setup-java digest to d854b6d by @renovate in https://github.com/dropwizard/dropwizard/pull/5826
    • Update dependency com.uber.nullaway:nullaway to v0.10.0 by @renovate in https://github.com/dropwizard/dropwizard/pull/5839

    Full Changelog: https://github.com/dropwizard/dropwizard/compare/v2.0.32...v2.0.33

    Source code(tar.gz)
    Source code(zip)
  • v4.0.0-beta.2(Jun 30, 2022)

    What's Changed

    • Update dependency com.h2database:h2 to v2.1.212 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5145
    • Replace @NotThreadSafe with jUnit 5 Execution(SAME_THREAD) by @rhowe in https://github.com/dropwizard/dropwizard/pull/5149
    • Update hk2.version to v3.0.3 (release/4.0.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5156
    • Update actions/cache action to v3.0.2 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5155
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5157
    • Set permissions for GitHub actions by @naveensrinivasan in https://github.com/dropwizard/dropwizard/pull/5159
    • Update dependency org.hibernate:hibernate-core-jakarta to v5.6.8.Final (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5166
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.1 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5167
    • Update error_prone.version to v2.13.0 (release/4.0.x) (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5182
    • Update dependency jp.skypencil.errorprone.slf4j:errorprone-slf4j to v0.1.10 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5181
    • Update actions/checkout action to v3.0.1 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5180
    • Update dependency jakarta.xml.bind:jakarta.xml.bind-api to v4 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5158
    • Deprecate EnvironmentVariableLookup by @rhowe in https://github.com/dropwizard/dropwizard/pull/5188
    • Migrate away from JSR305 by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5176
    • Replace assumeThat with jUnit 5 DisabledIf et al by @rhowe in https://github.com/dropwizard/dropwizard/pull/5170
    • Migrations file handling by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5169
    • Update error_prone.version to v2.13.1 (release/4.0.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5195
    • Update dependency jp.skypencil.errorprone.slf4j:errorprone-slf4j to v0.1.11 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5194
    • rework auth filter injection behavior to only setup injection once at startup by @pstackle in https://github.com/dropwizard/dropwizard/pull/5197
    • Update link to Apache HttpClient's docs by @amaalali in https://github.com/dropwizard/dropwizard/pull/5201
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5217
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5218
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5219
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5220
    • Update mockito monorepo to v4.5.1 (release/4.0.x) (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5221
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.13 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5229
    • Update actions/checkout action to v3.0.2 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5228
    • Add notes for breaking changes in Jersey and Liquibase by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5231
    • Clean up some multiline string behaviour by @rhowe in https://github.com/dropwizard/dropwizard/pull/5232
    • Update dependency mysql:mysql-connector-java to v8.0.29 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5240
    • Update github/codeql-action action to v2 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5241
    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.1.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5248
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.3.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5253
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.3.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5254
    • Update dependency net.bytebuddy:byte-buddy to v1.12.10 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5258
    • Update dependency org.checkerframework:checker-qual to v3.22.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5264
    • Update dependency org.liquibase:liquibase-core to v4.10.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5273
    • Update dependency com.uber.nullaway:nullaway to v0.9.7 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5277
    • Update logback.version to v1.3.0-alpha15 (release/4.0.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5278
    • Update dependency com.fasterxml.jackson:jackson-bom to v2.13.3 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5300
    • Update dependency org.hibernate:hibernate-core-jakarta to v5.6.9.Final (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5302
    • Update dependency org.apache.tomcat:tomcat-jdbc to v10.0.21 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5301
    • Update dependency org.javassist:javassist to v3.29.0-GA (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5303
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.2 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5312
    • Update logback.version to v1.3.0-alpha16 (release/4.0.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5313
    • Change access modifier to methods of AuthorizationContext by @cyberdelia in https://github.com/dropwizard/dropwizard/pull/5259
    • Update dependency org.jdbi:jdbi3-bom to v3.29.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5314
    • Include runnable code snippets into docs by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5183
    • Update error_prone.version to v2.14.0 (release/4.0.x) (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5323
    • Update dependency org.liquibase:liquibase-core to v4.11.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5322
    • Update dependency jp.skypencil.errorprone.slf4j:errorprone-slf4j to v0.1.12 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5328
    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.1.1 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5332
    • Update mockito monorepo to v4.6.0 (release/4.0.x) (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5338
    • Update dependency Sphinx to v5 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5346
    • Update dependency org.apache.maven.plugins:maven-invoker-plugin to v3.3.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5345
    • Update dependency org.assertj:assertj-core to v3.23.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5350
    • Update actions/cache action to v3.0.3 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5352
    • Update dependency org.assertj:assertj-core to v3.23.1 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5357
    • Update dependency jakarta.validation:jakarta.validation-api to v3.0.2 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5358
    • Add support for remote development with Gitpod by @joschi in https://github.com/dropwizard/dropwizard/pull/5359
    • Update dependency org.jdbi:jdbi3-bom to v3.30.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5380
    • Update dependency Sphinx to v5.0.1 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5377
    • Update dependency org.checkerframework:checker-qual to v3.22.1 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5378
    • Update mockito monorepo to v4.6.1 (release/4.0.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5379
    • Generate SBOM for Dropwizard using CycloneDX Maven plugin by @joschi in https://github.com/dropwizard/dropwizard/pull/5388
    • Update actions/cache action to v3.0.4 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5397
    • Update dependency org.apache.tomcat:tomcat-jdbc to v10.0.22 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5399
    • Update maven-enforcer-plugin to v3.1.0 by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5413
    • chore: renovate bot setting to pin actions to a full length commit SHA by @naveensrinivasan in https://github.com/dropwizard/dropwizard/pull/5304
    • Pin actions/cache action to c3f1317 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5422
    • Update dependency io.dropwizard.metrics:metrics-bom to v4.2.10 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5427
    • Windows runners by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5420
    • Use Visual Studio 2022 image and Java 17 on AppVeyor by @joschi in https://github.com/dropwizard/dropwizard/pull/5430
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.10 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5435
    • Update dependency jakarta.annotation:jakarta.annotation-api to v2.1.1 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5434
    • Update dependency org.glassfish.jersey:jersey-bom to v3.0.5 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5436
    • Remove jUnit 4.x support by @rhowe in https://github.com/dropwizard/dropwizard/pull/5138
    • Remove code source path in favor of CloseableLiquibaseWithClassPathMigrationsFile by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5437
    • Update github/codeql-action digest to d00e8c0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5441
    • Bump actions/setup-java from 3.3.0 to 3.4.0 by @dependabot in https://github.com/dropwizard/dropwizard/pull/5442
    • Update dependency com.uber.nullaway:nullaway to v0.9.8 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5465
    • Change access modifier of @UnitsOfWork to public by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5464
    • Update actions/setup-java digest to 16cca54 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5467
    • Update github/codeql-action digest to 41a4ada (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5468
    • Update dependency org.eclipse.jetty:jetty-bom to v11.0.11 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5470
    • Update dependency net.bytebuddy:byte-buddy to v1.12.12 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5469
    • Update dependency net.java.dev.jna:jna to v5.12.0 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5471
    • Update github/codeql-action digest to 3f62b75 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5488
    • Update dependency net.java.dev.jna:jna to v5.12.1 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5489
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.3 (release/4.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5490
    • Revert "Replace Jackson Afterburner with Blackbird" by @joschi in https://github.com/dropwizard/dropwizard/pull/5477
    • Support PATCH HTTP method on Java 17 by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5403

    New Contributors

    • @naveensrinivasan made their first contribution in https://github.com/dropwizard/dropwizard/pull/5159
    • @amaalali made their first contribution in https://github.com/dropwizard/dropwizard/pull/5201

    Full Changelog: https://github.com/dropwizard/dropwizard/compare/v4.0.0-beta.1...v4.0.0-beta.2

    Source code(tar.gz)
    Source code(zip)
  • v3.0.0-beta.3(Jun 30, 2022)

    What's Changed

    • Update mockito monorepo to v4.5.1 (release/3.0.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5212
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5213
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5214
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5215
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5216
    • Update actions/checkout action to v3.0.2 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5226
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.13 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5227
    • Add notes for breaking changes in Jersey and Liquibase by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5231
    • Clean up some multiline string behaviour by @rhowe in https://github.com/dropwizard/dropwizard/pull/5232
    • Update dependency mysql:mysql-connector-java to v8.0.29 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5238
    • Update github/codeql-action action to v2 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5239
    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.1.0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5247
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.3.0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5252
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.3.0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5251
    • Update dependency net.bytebuddy:byte-buddy to v1.12.10 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5257
    • Update dependency org.checkerframework:checker-qual to v3.22.0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5263
    • Update dependency org.liquibase:liquibase-core to v4.10.0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5270
    • Update dependency com.uber.nullaway:nullaway to v0.9.7 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5276
    • Update dependency com.fasterxml.jackson:jackson-bom to v2.13.3 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5296
    • Update dependency org.apache.tomcat:tomcat-jdbc to v10.0.21 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5297
    • Update dependency org.javassist:javassist to v3.29.0-GA (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5299
    • Update dependency org.hibernate:hibernate-core to v5.6.9.Final (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5298
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.2 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5308
    • Update dependency org.jdbi:jdbi3-bom to v3.29.0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5311
    • Change access modifier to methods of AuthorizationContext by @cyberdelia in https://github.com/dropwizard/dropwizard/pull/5259
    • Include runnable code snippets into docs by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5183
    • Update error_prone.version to v2.14.0 (release/3.0.x) (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5326
    • Update dependency org.liquibase:liquibase-core to v4.11.0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5325
    • Update dependency jp.skypencil.errorprone.slf4j:errorprone-slf4j to v0.1.12 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5327
    • Update dependency com.github.ben-manes.caffeine:caffeine to v3.1.1 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5333
    • Update mockito monorepo to v4.6.0 (release/3.0.x) (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5337
    • Update dependency Sphinx to v5 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5344
    • Update dependency org.apache.maven.plugins:maven-invoker-plugin to v3.3.0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5343
    • Update dependency org.assertj:assertj-core to v3.23.0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5349
    • Update actions/cache action to v3.0.3 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5351
    • Update dependency org.assertj:assertj-core to v3.23.1 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5355
    • Add support for remote development with Gitpod by @joschi in https://github.com/dropwizard/dropwizard/pull/5359
    • Update dependency org.jdbi:jdbi3-bom to v3.30.0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5376
    • Update dependency Sphinx to v5.0.1 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5373
    • Update dependency org.checkerframework:checker-qual to v3.22.1 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5374
    • Update mockito monorepo to v4.6.1 (release/3.0.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5375
    • Generate SBOM for Dropwizard using CycloneDX Maven plugin by @joschi in https://github.com/dropwizard/dropwizard/pull/5388
    • Update actions/cache action to v3.0.4 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5393
    • Update dependency org.apache.tomcat:tomcat-jdbc to v10.0.22 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5396
    • Update maven-enforcer-plugin to v3.1.0 by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5413
    • chore: renovate bot setting to pin actions to a full length commit SHA by @naveensrinivasan in https://github.com/dropwizard/dropwizard/pull/5304
    • Pin actions/cache action to c3f1317 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5421
    • Update dependency io.dropwizard.metrics:metrics-bom to v4.2.10 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5426
    • Windows runners by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5420
    • Use Visual Studio 2022 image and Java 17 on AppVeyor by @joschi in https://github.com/dropwizard/dropwizard/pull/5430
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.10 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5433
    • Remove jUnit 4.x support by @rhowe in https://github.com/dropwizard/dropwizard/pull/5138
    • Remove code source path in favor of CloseableLiquibaseWithClassPathMigrationsFile by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5437
    • Update github/codeql-action digest to d00e8c0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5440
    • Bump actions/setup-java from 3.3.0 to 3.4.0 by @dependabot in https://github.com/dropwizard/dropwizard/pull/5442
    • Update github/codeql-action digest to 41a4ada (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5460
    • Update actions/setup-java digest to 16cca54 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5459
    • Update dependency net.bytebuddy:byte-buddy to v1.12.12 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5462
    • Update dependency org.eclipse.jetty:jetty-bom to v10.0.11 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5463
    • Update dependency com.uber.nullaway:nullaway to v0.9.8 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5461
    • Change access modifier of @UnitsOfWork to public by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5464
    • Update dependency net.java.dev.jna:jna to v5.12.0 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5466
    • Update github/codeql-action digest to 3f62b75 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5482
    • Update dependency net.java.dev.jna:jna to v5.12.1 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5486
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.3 (release/3.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5487
    • Revert "Replace Jackson Afterburner with Blackbird" by @joschi in https://github.com/dropwizard/dropwizard/pull/5477
    • Support PATCH HTTP method on Java 17 by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5403

    Full Changelog: https://github.com/dropwizard/dropwizard/compare/v3.0.0-beta.2...v3.0.0-beta.3

    Source code(tar.gz)
    Source code(zip)
  • v2.1.1(Jun 30, 2022)

    What's Changed

    • Update dependency org.checkerframework:checker-qual to v3.22.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5262
    • Update dependency org.liquibase:liquibase-core to v4.10.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5269
    • Update dependency com.uber.nullaway:nullaway to v0.9.7 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5275
    • Update dependency org.javassist:javassist to v3.29.0-GA (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5287
    • Update dependency com.fasterxml.jackson:jackson-bom to v2.13.3 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5293
    • Update dependency org.hibernate:hibernate-core to v5.6.9.Final (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5295
    • Update dependency org.apache.tomcat:tomcat-jdbc to v9.0.63 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5294
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.2 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5307
    • Update dependency org.jdbi:jdbi3-bom to v3.29.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5310
    • Change access modifier to methods of AuthorizationContext by @cyberdelia in https://github.com/dropwizard/dropwizard/pull/5259
    • Update dependency org.liquibase:liquibase-core to v4.11.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5321
    • Update mockito monorepo to v4.6.0 (release/2.1.x) (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5336
    • Update dependency org.apache.maven.plugins:maven-invoker-plugin to v3.3.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5341
    • Update dependency Sphinx to v5 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5342
    • Update dependency org.assertj:assertj-core to v3.23.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5348
    • Update actions/cache action to v3.0.3 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5354
    • Update dependency org.assertj:assertj-core to v3.23.1 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5356
    • Add support for remote development with Gitpod by @joschi in https://github.com/dropwizard/dropwizard/pull/5359
    • Update dependency Sphinx to v5.0.1 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5369
    • Update dependency org.checkerframework:checker-qual to v3.22.1 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5370
    • Update mockito monorepo to v4.6.1 (release/2.1.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5371
    • Update dependency org.jdbi:jdbi3-bom to v3.30.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5372
    • Generate SBOM for Dropwizard using CycloneDX Maven plugin by @joschi in https://github.com/dropwizard/dropwizard/pull/5388
    • Update actions/cache action to v3.0.4 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5392
    • Update dependency org.apache.tomcat:tomcat-jdbc to v9.0.64 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5395
    • Update dependency Sphinx to v5.0.2 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5410
    • Update dependency com.h2database:h2 to v2.1.214 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5408
    • Update dependency org.checkerframework:checker-qual to v3.22.2 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5411
    • Update dependency org.apache.maven.shared:maven-filtering to v3.3.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5412
    • Update maven-enforcer-plugin to v3.1.0 by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5413
    • chore: renovate bot setting to pin actions to a full length commit SHA by @naveensrinivasan in https://github.com/dropwizard/dropwizard/pull/5304
    • Pin dependencies (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5415
    • Update dependency org.glassfish.jersey:jersey-bom to v2.36 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5416
    • Update dependency org.liquibase:liquibase-core to v4.12.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5417
    • Update dependency io.dropwizard.metrics:metrics-bom to v4.2.10 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5425
    • Windows runners by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5420
    • Use Visual Studio 2022 image and Java 17 on AppVeyor by @joschi in https://github.com/dropwizard/dropwizard/pull/5430
    • Update jetty.version to v9.4.47.v20220610 (release/2.1.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5432
    • Remove code source path in favor of CloseableLiquibaseWithClassPathMigrationsFile by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5437
    • Update github/codeql-action digest to d00e8c0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5439
    • Bump actions/setup-java from 3.3.0 to 3.4.0 by @dependabot in https://github.com/dropwizard/dropwizard/pull/5442
    • Update github/codeql-action digest to 41a4ada (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5448
    • Update actions/setup-java digest to 860f600 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5447
    • Update actions/setup-java digest to 16cca54 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5454
    • Update dependency com.uber.nullaway:nullaway to v0.9.8 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5455
    • Update dependency net.bytebuddy:byte-buddy to v1.12.12 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5456
    • Update jetty.version to v9.4.48.v20220622 (release/2.1.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5457
    • Update dependency net.java.dev.jna:jna to v5.12.0 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5458
    • Change access modifier of @UnitsOfWork to public by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5464
    • Update github/codeql-action digest to 3f62b75 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5475
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.3 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5481
    • Update dependency net.java.dev.jna:jna to v5.12.1 (release/2.1.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5485
    • Revert "Replace Jackson Afterburner with Blackbird" by @joschi in https://github.com/dropwizard/dropwizard/pull/5477
    • Support PATCH HTTP method on Java 17 by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5403
    • Update upgrade notes for Dropwizard 2.1.x regarding the Grizzly connector by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5492

    Full Changelog: https://github.com/dropwizard/dropwizard/compare/v2.1.0...v2.1.1

    Source code(tar.gz)
    Source code(zip)
  • v2.0.32(Jun 30, 2022)

    What's Changed

    • Update jetty.version to v9.4.47.v20220610 (release/2.0.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5431
    • Update github/codeql-action digest to d00e8c0 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5438
    • Update dependency net.bytebuddy:byte-buddy to v1.12.11 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5444
    • Update github/codeql-action digest to 41a4ada (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5443
    • Update jetty.version to v9.4.48.v20220622 (release/2.0.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5446
    • Update dependency net.bytebuddy:byte-buddy to v1.12.12 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5452
    • Update actions/setup-java digest to 16cca54 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5450
    • Update dependency com.uber.nullaway:nullaway to v0.9.8 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5451
    • Update dependency net.java.dev.jna:jna to v5.12.0 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5453
    • Update github/codeql-action digest to 3f62b75 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5474
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.3 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5480
    • Update dependency net.java.dev.jna:jna to v5.12.1 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5484

    Full Changelog: https://github.com/dropwizard/dropwizard/compare/v2.0.31...v2.0.32

    Source code(tar.gz)
    Source code(zip)
  • v2.0.31(Jun 19, 2022)

    The Dropwizard 2.0.30 release was missing the SBOMs, so this release is just providing these.

    What's Changed

    • Pin dependencies (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5414
    • Fix CycloneDX execution by @zUniQueX in https://github.com/dropwizard/dropwizard/pull/5419

    Full Changelog: https://github.com/dropwizard/dropwizard/compare/v2.0.30...v2.0.31

    Source code(tar.gz)
    Source code(zip)
  • v2.0.30(Jun 19, 2022)

    ⚠️ This release is missing the generated SBOMs for the official Dropwizard modules. If you need the generated SBOMs for Dropwizard, please use Dropwizard 2.0.31.

    Dependency updates

    • Update dependency net.bytebuddy:byte-buddy to v1.12.9 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5131
    • Update actions/cache action to v3.0.2 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5146
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.0 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5151
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.1 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5161
    • Update dependency org.hibernate:hibernate-core to v5.6.8.Final (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5160
    • Update actions/checkout action to v3.0.1 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5172
    • Update mockito monorepo to v4.5.0 (release/2.0.x) (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5198
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.0 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5202
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.0 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5205
    • Update dependency org.apache.maven.plugins:maven-javadoc-plugin to v3.4.0 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5203
    • Update dependency org.apache.maven.plugins:maven-site-plugin to v3.12.0 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5204
    • Update mockito monorepo to v4.5.1 (release/2.0.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5206
    • Update dependency org.sonatype.plugins:nexus-staging-maven-plugin to v1.6.13 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5223
    • Update actions/checkout action to v3.0.2 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5222
    • Update github/codeql-action action to v2 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5234
    • Update dependency mysql:mysql-connector-java to v8.0.29 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5233
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.3.0 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5245
    • Update dependency org.apache.maven.plugins:maven-project-info-reports-plugin to v3.3.0 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5246
    • Update dependency net.bytebuddy:byte-buddy to v1.12.10 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5255
    • Update dependency org.checkerframework:checker-qual to v3.22.0 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5260
    • Update dependency com.uber.nullaway:nullaway to v0.9.7 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5274
    • Update dependency org.javassist:javassist to v3.29.0-GA (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5286
    • Update dependency org.hibernate:hibernate-core to v5.6.9.Final (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5288
    • Update dependency org.apache.tomcat:tomcat-jdbc to v9.0.63 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5292
    • Update dependency org.testcontainers:testcontainers-bom to v1.17.2 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5306
    • Update dependency org.jdbi:jdbi3-bom to v3.29.0 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5309
    • Update mockito monorepo to v4.6.0 (release/2.0.x) (minor) by @renovate in https://github.com/dropwizard/dropwizard/pull/5335
    • Update dependency org.apache.maven.plugins:maven-invoker-plugin to v3.3.0 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5339
    • Update dependency org.assertj:assertj-core to v3.23.0 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5347
    • Update dependency Sphinx to v5 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5340
    • Update actions/cache action to v3.0.3 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5353
    • Update dependency org.assertj:assertj-core to v3.23.1 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5360
    • Update dependency Sphinx to v5.0.1 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5366
    • Update mockito monorepo to v4.6.1 (release/2.0.x) (patch) by @renovate in https://github.com/dropwizard/dropwizard/pull/5367
    • Update dependency org.checkerframework:checker-qual to v3.22.1 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5362
    • Update dependency org.jdbi:jdbi3-bom to v3.30.0 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5368
    • Update dependency io.dropwizard.metrics:metrics-bom to v4.1.32 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5390
    • Update actions/cache action to v3.0.4 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5389
    • Update dependency org.apache.tomcat:tomcat-jdbc to v9.0.64 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5394
    • Update dependency Sphinx to v5.0.2 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5409
    • Update dependency org.checkerframework:checker-qual to v3.22.2 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5404
    • Update dependency org.apache.maven.shared:maven-filtering to v3.3.0 (release/2.0.x) by @renovate in https://github.com/dropwizard/dropwizard/pull/5405

    Assorted

    • Generate SBOM for Dropwizard using CycloneDX Maven plugin by @joschi in https://github.com/dropwizard/dropwizard/pull/5385

    Full Changelog: https://github.com/dropwizard/dropwizard/compare/v2.0.29...v2.0.30

    Source code(tar.gz)
    Source code(zip)
Spring HATEOAS - Library to support implementing representations for hyper-text driven REST web services.

Spring HATEOAS This project provides some APIs to ease creating REST representations that follow the HATEOAS principle when working with Spring and es

Spring 996 Dec 28, 2022
Spring HATEOAS - Library to support implementing representations for hyper-text driven REST web services.

Spring HATEOAS This project provides some APIs to ease creating REST representations that follow the HATEOAS principle when working with Spring and es

Spring 920 Mar 8, 2021
Rest.li is a REST+JSON framework for building robust, scalable service architectures using dynamic discovery and simple asynchronous APIs.

Rest.li is an open source REST framework for building robust, scalable RESTful architectures using type-safe bindings and asynchronous, non-blocking I

LinkedIn 2.3k Dec 29, 2022
API RESTful Challenge

developer-challenge API RESTful Challenge API feita com java e hospedada no Heroku #Adicionar país Metodo: [POST] https://challenge-rest-api.herokuapp

Albertino Augusto Marrengule 2 Sep 7, 2022
Rapidoid - Extremely Fast, Simple and Powerful Java Web Framework and HTTP Server!

Rapidoid - Simple. Powerful. Secure. Fast! Rapidoid is an extremely fast HTTP server and modern Java web framework / application container, with a str

null 1.6k Dec 30, 2022
JHipster is a development platform to quickly generate, develop, & deploy modern web applications & microservice architectures.

Greetings, Java Hipster! Full documentation and information is available on our website at https://www.jhipster.tech/ Please read our guidelines befor

JHipster 20.2k Jan 5, 2023
Simple JSP Servlets REST api.

Simple JSP Servlets REST api.

MisterFunny01 3 May 9, 2021
A simple http wrapper

HTTP Wrapper A Java 8 HTTP Wrapper Lib to deserialize the response! Explore the docs » Examples · Report Bug · Request Feature Getting Started This is

Diego Cardenas 13 Jul 22, 2021
A simple API wrapper for discords.com (alias botsfordiscord.com) written in Java.

Discords.com / BotsForDiscord.com Java Library A simple API wrapper for discords.com (alias botsfordiscord.com) written in Java 8. Installation This w

Dorian 3 Aug 6, 2021
A simple banking system written in Java used to teach object-oriented programming and best coding practices.

didactic-bank-application A simple banking system written in Java used to teach object-oriented programming and best coding practices. It is a three-l

Ingrid Nunes 32 Aug 28, 2022
Microserver is a Java 8 native, zero configuration, standards based, battle hardened library to run Java Rest Microservices via a standard Java main class. Supporting pure Microservice or Micro-monolith styles.

Microserver A convenient modular engine for Microservices. Microserver plugins offer seamless integration with Spring (core), Jersey, Guava, Tomcat, G

AOL 936 Dec 19, 2022
Library for OpenAPI 3 with spring-boot

Full documentation Acknowledgements springdoc-openapi is made possible thanks to all of its contributors. Introduction The springdoc-openapi Java libr

springdoc-openapi 2.3k Jan 5, 2023
🪖 A library for counting queries for Spring Data JPA application

?? Query-Counter Query-Counter is a library for counting queries for Spring Data JPA application, currently supporting Hibernate only. It aims to help

Jinhong 3 Dec 12, 2021
Nano-library which provides the ability to define typesafe (!) configuration templates for applications.

Configur8 Nano-library which provides the ability to define typesafe (!) Configuration templates for applications. Concept: A Configuration is a set o

David Denton 11 Oct 3, 2022
RESTEasy is a JBoss project that provides various frameworks to help you build RESTful Web Services and RESTful Java applications

RESTEasy RESTEasy is a JBoss.org project aimed at providing productivity frameworks for developing client and server RESTful applications and services

RESTEasy 1k Dec 23, 2022
Tencent Kona JDK11 is a no-cost, production-ready distribution of the Open Java Development Kit (OpenJDK), Long-Term Support(LTS) with quarterly updates. Tencent Kona JDK11 is certified as compatible with the Java SE standard.

Tencent Kona JDK11 Tencent Kona JDK11 is a no-cost, production-ready distribution of the Open Java Development Kit (OpenJDK), Long-Term Support(LTS) w

Tencent 268 Dec 16, 2022
Tencent Kona JDK17 is a no-cost, production-ready distribution of the Open Java Development Kit (OpenJDK), Long-Term Support(LTS) with quarterly updates.

Tencent Kona JDK17 Tencent Kona JDK17 is a no-cost, production-ready distribution of the Open Java Development Kit (OpenJDK), Long-Term Support(LTS) w

Tencent 59 Nov 30, 2022
Cucumber DSL for testing RESTful Web Services

cukes-rest takes simplicity of Cucumber and provides bindings for HTTP specification. As a sugar on top, cukes-rest adds steps for storing and using r

C.T.Co 100 Oct 18, 2022