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

2.10.3 backports 1 #26790

Merged
merged 26 commits into from Jul 19, 2022
Merged

2.10.3 backports 1 #26790

merged 26 commits into from Jul 19, 2022

Commits on Jul 18, 2022

  1. Allow overriding of various k8s labels

    Follows up on quarkusio#26285
    
    (cherry picked from commit 80bd1c8)
    geoand authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    7f962ea View commit details
    Browse the repository at this point in the history
  2. Ensure that labels for different k8s targets don't interfere with eac…

    …h other
    
    Fixes: quarkusio#26516
    (cherry picked from commit c808a4f)
    geoand authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    d4c724b View commit details
    Browse the repository at this point in the history
  3. Fix testing guide's example for Testcontainers

    Fixes quarkusio#26573
    If container.start() is missing, it will fail with "java.lang.IllegalStateException: Mapped port can only be obtained
    after the container is started", or can get a NPE at a later phase of execution, if no call to retrieving port info is
    made
    
    (cherry picked from commit 46eb5b7)
    peterhuba authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    3ba71e9 View commit details
    Browse the repository at this point in the history
  4. Bump smalrye-jwt version to 3.5.2

    (cherry picked from commit 2b8b9b5)
    sberyozkin authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    8c89723 View commit details
    Browse the repository at this point in the history
  5. Kafka dev service redpanda container failing with Text file busy

    Fixes quarkusio#26603
    
    (cherry picked from commit 7606630)
    mederel authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    289535f View commit details
    Browse the repository at this point in the history
  6. Fix race condition in content-length header setting

    Fixes: quarkusio#26599
    (cherry picked from commit 0c28160)
    geoand authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    471aebd View commit details
    Browse the repository at this point in the history
  7. Clear Reactive REST Client mocks after the test runs

    Fixes: quarkusio#26594
    (cherry picked from commit d6bdfaa)
    geoand authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    65e15d7 View commit details
    Browse the repository at this point in the history
  8. Make sure JUnit @order annotation on classes is effective for integra…

    …tion tests
    
    (cherry picked from commit fa7c426)
    geoand authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    297bf6e View commit details
    Browse the repository at this point in the history
  9. Support authSource in liquibase-mongodb

    (cherry picked from commit 983f047)
    loicmathieu authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    c299edc View commit details
    Browse the repository at this point in the history
  10. Fix OidcClient duplicating the client_id for the public client

    (cherry picked from commit 8a00cfe)
    sberyozkin authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    4692325 View commit details
    Browse the repository at this point in the history
  11. Qute - fix origin of an expression used as a section param

    - there is no easy way to reliably identify the column of an expression
    used as a section param, therefore, we'll report the column of the
    containing section/block for the moment
    - related to quarkusio#26479
    
    (cherry picked from commit d588d8b)
    mkouba authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    235ce02 View commit details
    Browse the repository at this point in the history
  12. Add missing link to Podman in documentation prerequisites

    (cherry picked from commit e5e626f)
    gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    c497cb2 View commit details
    Browse the repository at this point in the history
  13. Update 'getting started' documentation for 'quarkus-maven-plugin' ver…

    …sion following Quarkus example
    
    (cherry picked from commit da4dd38)
    mauroal authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    8544275 View commit details
    Browse the repository at this point in the history
  14. fix a typo error

    (cherry picked from commit 9cda251)
    number23 authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    c61670e View commit details
    Browse the repository at this point in the history
  15. Strip the scheme value from the OIDC proxy host

    (cherry picked from commit 78d60b4)
    sberyozkin authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    e8148cc View commit details
    Browse the repository at this point in the history
  16. [quarkusio#15839] Test Hibernate Reactive fetch with getReference

    It has been fixed by one of the latest Hibernate Reactive upgrades.
    Probably by hibernate/hibernate-reactive#975
    
    (cherry picked from commit 3ee180a)
    DavideD authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    30868f8 View commit details
    Browse the repository at this point in the history
  17. Clear outer instances when init test state is called

    The init test state is called several times depending whether JUnit 5 is configured with the lifecycle method based or class based.
    
    Clearing out the outer instances every time the main class is initialized, ensure that the outer instances are always up to date.
    
    (cherry picked from commit 28fc5cf)
    Sgitario authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    6926825 View commit details
    Browse the repository at this point in the history
  18. Fix cryptic 'The supplier returned null' message if OIDC server con…

    …nection fails
    
    (cherry picked from commit cf2d8e1)
    famod authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    8a3af09 View commit details
    Browse the repository at this point in the history
  19. Strip debug information from the native executable unconditionally

    PR quarkusio#13963 mistakenly stopped stripping debug information from the native
    executable when debug info generation is enabled resulting in both the
    native executable and the corresponding `.debug` file containing the
    debug information. Which also results in the native executable being
    larger when `-Dquarkus.native.debug.enabled` is used:
    
    ```
    $ du -hs quarkus-integration-test-main-999-SNAPSHOT-runner-nodebug
    108M	quarkus-integration-test-main-999-SNAPSHOT-runner-nodebug
    
    $ du -hs quarkus-integration-test-main-999-SNAPSHOT-runner-debug
    182M	quarkus-integration-test-main-999-SNAPSHOT-runner-debug
    
    $ du -hs quarkus-integration-test-main-999-SNAPSHOT-runner-debug.debug
    75M	quarkus-integration-test-main-999-SNAPSHOT-runner-debug.debug
    ```
    
    Inspecting `quarkus-integration-test-main-999-SNAPSHOT-runner-debug` and
    `quarkus-integration-test-main-999-SNAPSHOT-runner-debug` with
    `readelf --debug-dump=info` we observe that both files are containing
    debug information while only the latter should contain them.
    
    (cherry picked from commit f69d98d)
    zakkak authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    c65497d View commit details
    Browse the repository at this point in the history
  20. Add default codestart in platform catalog metadata

    (cherry picked from commit bccf79c)
    ia3andy authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    4f0120a View commit details
    Browse the repository at this point in the history
  21. Bump smallrye-jwt version to 3.5.3

    (cherry picked from commit 053a39f)
    sberyozkin authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    3c9db6d View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    9c5f1b5 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    9385a42 View commit details
    Browse the repository at this point in the history
  24. Set the recommended Dependency Check plugin version to 7.1.1

    (cherry picked from commit cab846d)
    sberyozkin authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    ea60cf6 View commit details
    Browse the repository at this point in the history
  25. Adjust some extension descriptions

    (cherry picked from commit 906ebcb)
    rsvoboda authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    cd7d6d9 View commit details
    Browse the repository at this point in the history
  26. GraphQL: Make sure the context terminate

    Signed-off-by: Phillip Kruger <phillip.kruger@gmail.com>
    (cherry picked from commit 48787de)
    phillip-kruger authored and gsmet committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    41bb33c View commit details
    Browse the repository at this point in the history