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: jooby-project/jooby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.11.4
Choose a base ref
...
head repository: jooby-project/jooby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.11.5
Choose a head ref
  • 4 commits
  • 65 files changed
  • 1 contributor

Commits on Oct 23, 2025

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

Commits on Oct 24, 2025

  1. flyway: manually add migration

    The manually added Java-based migrations. These are not Java-based migrations discovered through classpath scanning and instantiated by Flyway. Instead, these are manually added instances of JavaMigration. This is particularly useful when working with a dependencies, where you may want to instantiate the class and wire up its dependencies.
    
    ```java
    {
        install(new FlywaydbModule()
            .javaMigrations(new MyMigration(new MyService())
        );
    }
    ```
    
    fix #3796
    jknack committed Oct 24, 2025
    Configuration menu
    Copy the full SHA
    7d6ca5e View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2025

  1. build: version bump

    jknack committed Oct 27, 2025
    Configuration menu
    Copy the full SHA
    8e0532e View commit details
    Browse the repository at this point in the history
  2. v3.11.5

    jknack committed Oct 27, 2025
    Configuration menu
    Copy the full SHA
    118e083 View commit details
    Browse the repository at this point in the history
Loading