-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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.14.1 backports 1 #29078
Merged
Merged
2.14.1 backports 1 #29078
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
With these changes, the REST Data with Panache extension will propagate the Security annotations within the package `javax.annotation.security` that are defined on your resource interfaces: ```java import javax.annotation.security.DenyAll; import javax.annotation.security.RolesAllowed; @Denyall @ResourceProperties public interface PeopleResource extends PanacheEntityResource<Person, Long> { @RolesAllowed("superuser") boolean delete(Long id); } ``` Additionally, if you are only interested in specifying the roles that are allowed to use the resources, the `@ResourceProperties` and `@MethodProperties` annotations have the field `rolesAllowed` to list the security roles permitted to access the resource or operation. Fix quarkusio#28995 (cherry picked from commit e1ae1d8)
(cherry picked from commit 58c1565)
This updates the release workflow to support releasing from feature branches - Bump actions/checkout and actions/setup-java to v3 (cherry picked from commit 8db677c)
(cherry picked from commit 258ea39)
This annotation has moved to a new package and we need to use the 22.3 version to make sure our code compiles. As for using 22.2, it still works but the annotation is ignored, which looks OK as the annotation is not used in places where it is strictly necessary. If people use the recommended GraalVM version, everything will be fine. If not, things will mostly work anyway. (cherry picked from commit 3d85651)
(cherry picked from commit f2bf43d)
…Processor` (cherry picked from commit 99ba1b2)
Fix quarkusio#29017 (cherry picked from commit e8a5f01)
(cherry picked from commit 4293f37)
(cherry picked from commit 7ed539c)
(cherry picked from commit 422a492)
Users have come to expect that @RegisterForReflection fixes a lot of native image issues and use it a lot. For Kotlin classes however, registering a class is often not enough - the companion classes are need to be registered. These companion classes are nested classes, so we automatically set the property to true for Kotlin classes Closes: quarkusio#28167 (cherry picked from commit 6274863)
(cherry picked from commit ceb8abb)
Relates to: quarkusio#29043 (cherry picked from commit 4929e1a)
…-jar Closes: quarkusio#29043 (cherry picked from commit f1876ad)
(cherry picked from commit 012b635)
(cherry picked from commit 406e295)
(cherry picked from commit add0d39)
(cherry picked from commit c4a37c3)
(cherry picked from commit 05fcd90)
(cherry picked from commit ba0443b)
(cherry picked from commit ea5960b)
quarkus-bot
bot
added
area/core
area/dependencies
Pull requests that update a dependency file
area/devtools
Issues/PR related to maven, gradle, platform and cli tooling/plugins
area/documentation
area/hibernate-orm
Hibernate ORM
area/infra-automation
anything related to CI, bots, etc. that are used to automated our infrastructure
labels
Nov 5, 2022
quarkus-bot
bot
added
area/kotlin
area/maven
area/oidc
area/panache
area/persistence
OBSOLETE, DO NOT USE
area/platform
Issues related to definition and interaction with Quarkus Platform
area/rest
area/spring
Issues relating to the Spring integration
area/vertx
labels
Nov 5, 2022
Failing Jobs - Building f6b797e
Full information is available in the Build summary check run. Failures⚙️ JVM Tests - JDK 11 Windows #- Failing: extensions/vertx/deployment
! Skipped: extensions/agroal/deployment extensions/amazon-lambda-http/deployment extensions/amazon-lambda-rest/deployment and 340 more 📦 extensions/vertx/deployment✖
⚙️ JVM Tests - JDK 18 #- Failing: integration-tests/logging-gelf
📦 integration-tests/logging-gelf✖
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/core
area/dependencies
Pull requests that update a dependency file
area/devtools
Issues/PR related to maven, gradle, platform and cli tooling/plugins
area/documentation
area/hibernate-orm
Hibernate ORM
area/infra
internal and infrastructure related issues
area/infra-automation
anything related to CI, bots, etc. that are used to automated our infrastructure
area/kotlin
area/maven
area/oidc
area/panache
area/persistence
OBSOLETE, DO NOT USE
area/platform
Issues related to definition and interaction with Quarkus Platform
area/rest
area/spring
Issues relating to the Spring integration
area/vertx
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Please don't merge, I will merge it myself.