Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 8, 2025

Bumps the gradle-dependencies group with 4 updates: com.formdev:flatlaf, com.jetbrains.intellij.java:java-gui-forms-rt, io.sentry:sentry-log4j2 and com.gradleup.shadow.

Updates com.formdev:flatlaf from 3.6.2 to 3.7

Release notes

Sourced from com.formdev:flatlaf's releases.

3.7

Highlights

System File Chooser

Class SystemFileChooser (in package com.formdev.flatlaf.util) allows using operating system file dialogs in Java Swing applications.

Details: https://www.formdev.com/flatlaf/system-file-chooser/

Change Log

New features and improvements

  • System File Chooser allows using operating system file dialogs in Java Swing applications. (PR #988)
  • Zooming API. (PR #1051)
  • Icons:
    • Support scaling Laf icons (checkbox, radiobutton, etc). (issue #1061)
    • Scale checkbox and radiobutton icons when using text styles large, medium, small and mini.
  • TabbedPane: Added icon-only tab mode, which shows tab icons but hides tab titles. Tab titles are used in "Show Hidden Tabs" popup menu. (set client property JTabbedPane.tabWidthMode to "iconOnly")
  • TabbedPane: In scroll tab layout, propagate mouse wheel events to ancestors. This allows mouse wheel scrolling if JTabbedPane is inside a JScrollPane. (PR #1030)

Fixed bugs

  • CheckBox and RadioButton: Fixed styling of custom icon. Also fixed focus width (and preferred size) if using custom icon. (PR #1060)
  • TabbedPane: In "Show Hidden Tabs" popup menu, do not show text "x. Tab" if tab has icon but no title. (issue #1062)
  • TextField: Fixed wrong leading/trailing icon placement if border is set to null. (issue #1047)
  • Extras: UI defaults inspector: Exclude inspector window from being blocked by modal dialogs. (issue #1048)
  • JideButton, JideToggleButton, JideSplitButton and JideToggleSplitButton: Paint border in button style TOOLBAR_STYLE if in selected state. (issue #1045)
  • IntelliJ Themes: Fixed problem when using theme instance more than once when switching to that theme. (issue #990)
Changelog

Sourced from com.formdev:flatlaf's changelog.

3.7

New features and improvements

  • System File Chooser allows using operating system file dialogs in Java Swing applications. (PR #988)
  • Zooming API. (PR #1051)
  • Icons:
    • Support scaling Laf icons (checkbox, radiobutton, etc). (issue #1061)
    • Scale checkbox and radiobutton icons when using text styles large, medium, small and mini.
  • TabbedPane: Added icon-only tab mode, which shows tab icons but hides tab titles. Tab titles are used in "Show Hidden Tabs" popup menu. (set client property JTabbedPane.tabWidthMode to "iconOnly")
  • TabbedPane: In scroll tab layout, propagate mouse wheel events to ancestors. This allows mouse wheel scrolling if JTabbedPane is inside a JScrollPane. (PR #1030)

Fixed bugs

  • CheckBox and RadioButton: Fixed styling of custom icon. Also fixed focus width (and preferred size) if using custom icon. (PR #1060)
  • TabbedPane: In "Show Hidden Tabs" popup menu, do not show text "x. Tab" if tab has icon but no title. (issue #1062)
  • TextField: Fixed wrong leading/trailing icon placement if border is set to null. (issue #1047)
  • Extras: UI defaults inspector: Exclude inspector window from being blocked by modal dialogs. (issue #1048)
  • JideButton, JideToggleButton, JideSplitButton and JideToggleSplitButton: Paint border in button style TOOLBAR_STYLE if in selected state. (issue #1045)
  • IntelliJ Themes: Fixed problem when using theme instance more than once when switching to that theme. (issue #990)
Commits
  • 3f0b5d5 release 3.7
  • 6e3633c System File Chooser: save and restore size of (fallback) JFileChooser dialog ...
  • 4f1e5cd IntelliJ Themes: do not release JSON memory to allow re-using theme instance ...
  • 070cf9c Icons: scale checkbox and radiobutton icons when using text styles large, `...
  • 5b0f131 Icons: support scaling Laf icons (checkbox, radiobutton, etc) (issue #1061)
  • d7a5c35 System File Chooser: updated Linux native libraries (PR #988)
  • 9e8b869 System File Chooser: Linux: show file dialog in dark if current FlatLaf theme...
  • 58e073a System File Chooser: on Linux when JavaFX is used in application, then always...
  • 1c6e877 System File Chooser: (PR #988)
  • 1e72402 Merge PR #987: Enhance FlatUIUtils.getBorderArc to support FlatLineBorder Arc...
  • Additional commits viewable in compare view

Updates com.jetbrains.intellij.java:java-gui-forms-rt from 253.28294.238 to 253.28294.335

Commits

Updates io.sentry:sentry-log4j2 from 8.27.1 to 8.28.0

Release notes

Sourced from io.sentry:sentry-log4j2's releases.

8.28.0

Features

  • Android: Flush logs when app enters background (#4951)
  • Add option to capture additional OkHttp network request/response details in session replays (#4919)
    • Depends on SentryOkHttpInterceptor to intercept the request and extract request/response bodies
    • To enable, add url regexes via the io.sentry.session-replay.network-detail-allow-urls metadata tag in AndroidManifest (code sample)
      • Or you can manually specify SentryReplayOptions via SentryAndroid#init:
        (Make sure you disable the auto init via manifest meta-data: io.sentry.auto-init=false)
SentryAndroid.init(
    this,
    options -> {
      // options.dsn = "https://examplePublicKey@o0.ingest.sentry.io/0"
      // options.sessionReplay.sessionSampleRate = 1.0
      // options.sessionReplay.onErrorSampleRate = 1.0
      // ..
  options.sessionReplay.networkDetailAllowUrls = listOf(".*")
  options.sessionReplay.networkDetailDenyUrls = listOf(".*deny.*")
  options.sessionReplay.networkRequestHeaders = listOf("Authorization", "X-Custom-Header", "X-Test-Request")
  options.sessionReplay.networkResponseHeaders = listOf("X-Response-Time", "X-Cache-Status", "X-Test-Response")
});

SentryAndroid.init(
    this,
    options -> {
        options.getSessionReplay().setNetworkDetailAllowUrls(Arrays.asList(".*"));
        options.getSessionReplay().setNetworkDetailDenyUrls(Arrays.asList(".*deny.*"));
        options.getSessionReplay().setNetworkRequestHeaders(
            Arrays.asList("Authorization", "X-Custom-Header", "X-Test-Request"));
        options.getSessionReplay().setNetworkResponseHeaders(
            Arrays.asList("X-Response-Time", "X-Cache-Status", "X-Test-Response"));
    });

... (truncated)

Changelog

Sourced from io.sentry:sentry-log4j2's changelog.

8.28.0

Features

  • Android: Flush logs when app enters background (#4951)
  • Add option to capture additional OkHttp network request/response details in session replays (#4919)
    • Depends on SentryOkHttpInterceptor to intercept the request and extract request/response bodies
    • To enable, add url regexes via the io.sentry.session-replay.network-detail-allow-urls metadata tag in AndroidManifest (code sample)
      • Or you can manually specify SentryReplayOptions via SentryAndroid#init:
        (Make sure you disable the auto init via manifest meta-data: io.sentry.auto-init=false)
SentryAndroid.init(
    this,
    options -> {
      // options.dsn = "https://examplePublicKey@o0.ingest.sentry.io/0"
      // options.sessionReplay.sessionSampleRate = 1.0
      // options.sessionReplay.onErrorSampleRate = 1.0
      // ..
  options.sessionReplay.networkDetailAllowUrls = listOf(".*")
  options.sessionReplay.networkDetailDenyUrls = listOf(".*deny.*")
  options.sessionReplay.networkRequestHeaders = listOf("Authorization", "X-Custom-Header", "X-Test-Request")
  options.sessionReplay.networkResponseHeaders = listOf("X-Response-Time", "X-Cache-Status", "X-Test-Response")
});

SentryAndroid.init(
    this,
    options -> {
        options.getSessionReplay().setNetworkDetailAllowUrls(Arrays.asList(".*"));
        options.getSessionReplay().setNetworkDetailDenyUrls(Arrays.asList(".*deny.*"));
        options.getSessionReplay().setNetworkRequestHeaders(
            Arrays.asList("Authorization", "X-Custom-Header", "X-Test-Request"));
        options.getSessionReplay().setNetworkResponseHeaders(
            Arrays.asList("X-Response-Time", "X-Cache-Status", "X-Test-Response"));
    });

... (truncated)

Commits
  • dd38947 release: 8.28.0
  • 2ab9d50 feat(android): Add log flushing on app backgrounding (#4951)
  • ee35ac3 build(deps): bump actions/checkout from 5 to 6 (#4928)
  • 10be7df fix: handle unparseable mime-type (#4939)
  • d36d909 chore: Remove stefanosiano from CODEOWNERS (#4948)
  • 951caf7 build(deps): bump github/codeql-action from 4.31.2 to 4.31.5 (#4940)
  • a0991f1 chore: update scripts/update-sentry-native-ndk.sh to 0.12.2 (#4944)
  • fc5ccaf feat(envelope-item): Support span type (#4935)
  • 4742e23 feat(replay): Capture network request/response details when using SentryOkHtt...
  • e761994 fix(anr): Always report stacktraces for ANRv1 (#4918)
  • Additional commits viewable in compare view

Updates com.gradleup.shadow from 9.2.2 to 9.3.0

Release notes

Sourced from com.gradleup.shadow's releases.

9.3.0

Added

  • Add PatternFilterableResourceTransformer to simplify pattern based ResourceTransformers. (#1849)
  • Expose patternSet of ServiceFileTransformer as public. (#1849)
  • Expose patternSet of ApacheLicenseResourceTransformer as public. (#1850)
  • Expose patternSet of ApacheNoticeResourceTransformer as public. (#1850)
  • Expose patternSet of PreserveFirstFoundResourceTransformer as public. (#1855)
  • Support overriding output path of ApacheNoticeResourceTransformer. (#1851)
  • Add new merge strategy Fail to PropertiesFileTransformer. (#1856)
  • Add FindResourceInClasspath task to help with debugging issues with merged duplicate resources. (#1860)
  • Add MergeLicenseResourceTransformer. (#1858)
  • Add DeduplicatingResourceTransformer to deduplicate on path and content. (#1859)
  • Support disabling Kotlin module metadata remapping. (#1875)
    tasks.shadowJar {
      // Disable remapping of Kotlin module metadata (`.kotlin_module`) files. This is enabled by default.
      enableKotlinModuleRemapping = false
    }

Changed

  • Change the group of startShadowScripts from application to other. (#1797)
  • Update ASM and jdependency to support Java 26. (#1799)
  • Bump min Gradle requirement to 9.0.0. (#1801)
  • Deprecate PreserveFirstFoundResourceTransformer.resources. (#1855)
  • Make the output of PropertiesFileTransformer reproducible. (#1861)
  • Deprecate ShadowCopyAction. (#1876)
    It should not be used as a public API. Will be made internal in a future release.

Fixed

  • Fix Develocity integration when Isolated Projects enabled. (#1836)
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the gradle-dependencies group with 4 updates: [com.formdev:flatlaf](https://github.com/JFormDesigner/FlatLaf), [com.jetbrains.intellij.java:java-gui-forms-rt](https://github.com/JetBrains/intellij-community), [io.sentry:sentry-log4j2](https://github.com/getsentry/sentry-java) and [com.gradleup.shadow](https://github.com/GradleUp/shadow).


Updates `com.formdev:flatlaf` from 3.6.2 to 3.7
- [Release notes](https://github.com/JFormDesigner/FlatLaf/releases)
- [Changelog](https://github.com/JFormDesigner/FlatLaf/blob/main/CHANGELOG.md)
- [Commits](JFormDesigner/FlatLaf@3.6.2...3.7)

Updates `com.jetbrains.intellij.java:java-gui-forms-rt` from 253.28294.238 to 253.28294.335
- [Release notes](https://github.com/JetBrains/intellij-community/releases)
- [Commits](https://github.com/JetBrains/intellij-community/commits)

Updates `io.sentry:sentry-log4j2` from 8.27.1 to 8.28.0
- [Release notes](https://github.com/getsentry/sentry-java/releases)
- [Changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-java@8.27.1...8.28.0)

Updates `com.gradleup.shadow` from 9.2.2 to 9.3.0
- [Release notes](https://github.com/GradleUp/shadow/releases)
- [Commits](GradleUp/shadow@9.2.2...9.3.0)

---
updated-dependencies:
- dependency-name: com.formdev:flatlaf
  dependency-version: '3.7'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-dependencies
- dependency-name: com.jetbrains.intellij.java:java-gui-forms-rt
  dependency-version: 253.28294.335
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle-dependencies
- dependency-name: io.sentry:sentry-log4j2
  dependency-version: 8.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-dependencies
- dependency-name: com.gradleup.shadow
  dependency-version: 9.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Dec 8, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant