diff options
author | Marge Bot <marge@benkard.de> | 2025-04-12 17:53:04 +0000 |
---|---|---|
committer | Marge Bot <marge@benkard.de> | 2025-04-12 17:53:04 +0000 |
commit | 2b6bc6c8e54f4b46ddc1944e3bc7b8a68f28a717 (patch) | |
tree | e57c2f564fde35b4bdbf7f6641cf091ccc31ff81 /core | |
parent | ca69160aee72e24a5413fecbfa6bac24942fd548 (diff) | |
parent | 9cbe93050395fd28ddcba5e0e7f99a46f1b1be7f (diff) |
chore(deps): update all non-major dependencies (mulk/quarkus-googlecloud-jsonlogging!28)
This MR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| [io.github.eisop:checker](https://eisop.github.io/) ([source](https://github.com/eisop/checker-framework)) | | minor | `3.42.0-eisop5` -> `3.49.1-eisop1` |
| [io.quarkus:quarkus-extension-processor](https://github.com/quarkusio/quarkus) | | minor | `3.19.3` -> `3.21.2` |
| [io.quarkus:quarkus-extension-maven-plugin](https://github.com/quarkusio/quarkus) | build | minor | `3.19.3` -> `3.21.2` |
| [io.quarkus:quarkus-bom](https://github.com/quarkusio/quarkus) | import | minor | `3.19.3` -> `3.21.2` |
| [io.quarkus:quarkus-maven-plugin](https://github.com/quarkusio/quarkus) | build | minor | `3.19.3` -> `3.21.2` |
| [org.apache.maven.plugins:maven-failsafe-plugin](https://maven.apache.org/surefire/) | build | patch | `3.5.2` -> `3.5.3` |
| [org.apache.maven.plugins:maven-surefire-plugin](https://maven.apache.org/surefire/) | build | patch | `3.5.2` -> `3.5.3` |
| [com.diffplug.spotless:spotless-maven-plugin](https://github.com/diffplug/spotless) | build | patch | `2.44.3` -> `2.44.4` |
| [io.github.eisop:checker-qual](https://eisop.github.io/) ([source](https://github.com/eisop/checker-framework)) | provided | minor | `3.42.0-eisop5` -> `3.49.1-eisop1` |
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
â™» **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found.
👻 **Immortal**: This MR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box
---
This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNC4wIiwidXBkYXRlZEluVmVyIjoiMzQuMjQuMCJ9-->
Diffstat (limited to 'core')
-rw-r--r-- | core/pom.xml | 4 | ||||
-rw-r--r-- | core/src/main/java/eu/mulk/quarkus/googlecloud/jsonlogging/Formatter.java | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/core/pom.xml b/core/pom.xml index 4c75586..eb12d1f 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -45,7 +45,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later <dependency> <groupId>io.github.eisop</groupId> <artifactId>checker-qual</artifactId> - <version>3.42.0-eisop5</version> + <version>3.49.1-eisop1</version> <scope>provided</scope> </dependency> @@ -99,7 +99,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later <path> <groupId>io.github.eisop</groupId> <artifactId>checker</artifactId> - <version>3.42.0-eisop5</version> + <version>3.49.1-eisop1</version> </path> </annotationProcessorPaths> <annotationProcessors> diff --git a/core/src/main/java/eu/mulk/quarkus/googlecloud/jsonlogging/Formatter.java b/core/src/main/java/eu/mulk/quarkus/googlecloud/jsonlogging/Formatter.java index 9c66f82..5de1475 100644 --- a/core/src/main/java/eu/mulk/quarkus/googlecloud/jsonlogging/Formatter.java +++ b/core/src/main/java/eu/mulk/quarkus/googlecloud/jsonlogging/Formatter.java @@ -12,6 +12,7 @@ import java.util.logging.Level; import java.util.stream.Collectors; import org.jboss.logmanager.ExtFormatter; import org.jboss.logmanager.ExtLogRecord; +import org.jspecify.annotations.NonNull; import org.jspecify.annotations.Nullable; /** @@ -155,7 +156,7 @@ public class Formatter extends ExtFormatter { logRecord.getLevel().intValue() >= 1000 ? ERROR_EVENT_TYPE : null, insertId); - var b = Objects.requireNonNull(stringBuilder.get()); + var b = (@NonNull StringBuilder) stringBuilder.get(); b.delete(0, b.length()); b.append("{"); entry.json(b); |