Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: airlift/airbase
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 161
Choose a base ref
...
head repository: airlift/airbase
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 162
Choose a head ref
  • 6 commits
  • 4 files changed
  • 3 contributors

Commits on Aug 7, 2024

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

Commits on Aug 8, 2024

  1. Bump dep.slf4j.version from 2.0.13 to 2.0.14

    Bumps `dep.slf4j.version` from 2.0.13 to 2.0.14.
    
    Updates `org.slf4j:jcl-over-slf4j` from 2.0.13 to 2.0.14
    
    Updates `org.slf4j:jul-to-slf4j` from 2.0.13 to 2.0.14
    
    Updates `org.slf4j:log4j-over-slf4j` from 2.0.13 to 2.0.14
    
    Updates `org.slf4j:slf4j-api` from 2.0.13 to 2.0.14
    
    Updates `org.slf4j:slf4j-ext` from 2.0.13 to 2.0.14
    
    Updates `org.slf4j:slf4j-jdk14` from 2.0.13 to 2.0.14
    
    Updates `org.slf4j:slf4j-nop` from 2.0.13 to 2.0.14
    
    Updates `org.slf4j:slf4j-simple` from 2.0.13 to 2.0.14
    
    ---
    updated-dependencies:
    - dependency-name: org.slf4j:jcl-over-slf4j
      dependency-type: direct:production
      update-type: version-update:semver-patch
    - dependency-name: org.slf4j:jul-to-slf4j
      dependency-type: direct:production
      update-type: version-update:semver-patch
    - dependency-name: org.slf4j:log4j-over-slf4j
      dependency-type: direct:production
      update-type: version-update:semver-patch
    - dependency-name: org.slf4j:slf4j-api
      dependency-type: direct:production
      update-type: version-update:semver-patch
    - dependency-name: org.slf4j:slf4j-ext
      dependency-type: direct:production
      update-type: version-update:semver-patch
    - dependency-name: org.slf4j:slf4j-jdk14
      dependency-type: direct:production
      update-type: version-update:semver-patch
    - dependency-name: org.slf4j:slf4j-nop
      dependency-type: direct:production
      update-type: version-update:semver-patch
    - dependency-name: org.slf4j:slf4j-simple
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    a8ababa View commit details
    Browse the repository at this point in the history
  2. Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.6.3 to 3.8.0

    Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.6.3 to 3.8.0.
    - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases)
    - [Commits](apache/maven-javadoc-plugin@maven-javadoc-plugin-3.6.3...maven-javadoc-plugin-3.8.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    144861a View commit details
    Browse the repository at this point in the history
  3. Bump io.airlift:slice from 2.2 to 2.3

    Bumps [io.airlift:slice](https://github.com/airlift/slice) from 2.2 to 2.3.
    - [Release notes](https://github.com/airlift/slice/releases)
    - [Changelog](https://github.com/airlift/slice/blob/master/jreleaser.yml)
    - [Commits](airlift/slice@2.2...2.3)
    
    ---
    updated-dependencies:
    - dependency-name: io.airlift:slice
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    aa418b0 View commit details
    Browse the repository at this point in the history
  4. Remove InterfaceIsType checkstyle module

    This check prevents a modern Java idiom (and likely future idioms).
    E.g.
    
    ```
    public sealed interface Choice
    {
        record GoodChoice(...)
            implements Choice
        {
        }
    
        record BadChoice(...)
            implements Choice
        {
        }
    }
    ```
    
    The previous purpose of `InterfaceIsType` is arguably out of date
    anyway. It's better to use an interface for utility containers, etc.
    Randgalt authored and wendigo committed Aug 8, 2024
    Configuration menu
    Copy the full SHA
    4cc35f1 View commit details
    Browse the repository at this point in the history
Loading