Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Vert.x Web sessions #36310

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from

Commits on Oct 31, 2023

  1. Configuration menu
    Copy the full SHA
    f3d0a0d View commit details
    Browse the repository at this point in the history
  2. Infinispan Client: add runtime SPI and deployment SPI modules

    Some constants from the Infinispan Client runtime module are moved
    to the runtime SPI module, so that they can be used from other modules
    that cannot directly depend on the Infinispan Client extension.
    
    Two build items, `InfinispanClientBuildItem` and `InfinispanClientNameBuildItem`,
    are moved from the Infinispan Client deployment module to the deployment SPI
    module. This is technically a breaking change, because they are also moved
    to a different package, but these build items don't seem to be used anywhere
    outside of Quarkus, so it should be safe.
    Ladicek committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    1d55b6c View commit details
    Browse the repository at this point in the history
  3. Redis Client: add runtime SPI and deployment SPI modules

    Some constants from the Redis Client runtime module are moved
    to the runtime SPI module, so that they can be used from other modules
    that cannot directly depend on the Redis Client extension.
    
    One build item, `RequestedRedisClientBuildItem`, is moved from the Redis Client
    deployment module to the deployment SPI module. This is technically a breaking
    change, because it is also moved to a different package, but this build item
    doesn't seem to be used anywhere outside of Quarkus, so it should be safe.
    
    Further, one new build item, `RedisClientBuildItem`, is added. It provides
    runtime access to the Redis clients (in the Mutiny variant) without having
    to perform a CDI lookup.
    Ladicek committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    e5d73a7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e6e973a View commit details
    Browse the repository at this point in the history