Skip to content

fix(deps): update backend non-major dependencies - autoclosed#1458

Closed
renovate[bot] wants to merge 1 commit intostagingfrom
renovate/backend-minor-patch
Closed

fix(deps): update backend non-major dependencies - autoclosed#1458
renovate[bot] wants to merge 1 commit intostagingfrom
renovate/backend-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 24, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.jgroups:jgroups (source) 5.4.4.Final -> 5.4.6.Final age adoption passing confidence
net.datafaker:datafaker (source) 2.4.2 -> 2.4.3 age adoption passing confidence
org.springdoc:springdoc-openapi-starter-webmvc-api (source) 2.8.5 -> 2.8.6 age adoption passing confidence
io.sentry:sentry-opentelemetry-core 8.3.0 -> 8.8.0 age adoption passing confidence
io.sentry:sentry-logback 8.3.0 -> 8.8.0 age adoption passing confidence
io.sentry:sentry-spring-boot-starter-jakarta 8.3.0 -> 8.8.0 age adoption passing confidence
org.jdbi:jdbi3-bom (source) 3.48.0 -> 3.49.0 age adoption passing confidence
org.springframework.boot:spring-boot-starter-parent (source) 3.4.3 -> 3.4.4 age adoption passing confidence

Release Notes

datafaker-net/datafaker (net.datafaker:datafaker)

v2.4.3

What's Changed

New Contributors

Full Changelog: datafaker-net/datafaker@v2.4.2...2.4.3

springdoc/springdoc-openapi (org.springdoc:springdoc-openapi-starter-webmvc-api)

v2.8.6

Added
  • #​2909 - Check both SerDe BeanPropertyDefinition for @​JsonUnwrapped/@​Schema
  • #​2927 - Bail sealed class subtype introspection on Schema
  • #​2917 - Add Future to ignored response wrappers
  • #​2938 - Add out of the box support for LocalTime, YearMonth, MonthDay
Changed
  • Upgrade swagger-ui to v5.20.1
  • Upgrade swagger-core to 2.2.29
  • Upgrade spring-cloud-function to 4.2.2
  • Upgrade spring-boot to version 3.4.4
Fixed
  • #​2928 - Add missing builder methods in SchemaBuilder
  • #​2905 - ModelResolver.enumAsRef = true result in invalid openapi with actuator using enum param
  • #​2939 - Duplicate ModelConverter registration with Spring Boot DevTools
  • #​2941 - SpringBoot native fails /v3/api-docs when using a Map as an http entity field
getsentry/sentry-java (io.sentry:sentry-opentelemetry-core)

v8.8.0

Compare Source

Features
  • Add CoroutineExceptionHandler for reporting uncaught exceptions in coroutines to Sentry (#​4259)
    • This is now part of sentry-kotlin-extensions and can be used together with SentryContext when launching a coroutine
    • Any exceptions thrown in a coroutine when using the handler will be captured (not rethrown!) and reported to Sentry
    • It's also possible to extend CoroutineExceptionHandler to implement custom behavior in addition to the one we provide by default
Fixes
  • Use thread context classloader when available (#​4320)
    • This ensures correct resource loading in environments like Spring Boot where the thread context classloader is used for resource loading.
  • Improve low memory breadcrumb capturing (#​4325)
  • Fix do not initialize SDK for Jetpack Compose Preview builds (#​4324)
  • Fix Synchronize Baggage values (#​4327)
Improvements
  • Make SystemEventsBreadcrumbsIntegration faster (#​4330)

v8.7.0

Compare Source

Features
  • UI Profiling GA

    Continuous Profiling is now GA, named UI Profiling. To enable it you can use one of the following options. More info can be found at https://docs.sentry.io/platforms/android/profiling/.
    Note: Both options.profilesSampler and options.profilesSampleRate must not be set to enable UI Profiling.
    To keep the same transaction-based behaviour, without the 30 seconds limitation, you can use the trace lifecycle mode.

    <application>
      <!-- Enable UI profiling, adjust in production env. This is evaluated only once per session -->
      <meta-data android:name="io.sentry.traces.profiling.session-sample-rate" android:value="1.0" />
      <!-- Set profiling lifecycle, can be `manual` (controlled through `Sentry.startProfiler()` and `Sentry.stopProfiler()`) or `trace` (automatically starts and stop a profile whenever a sampled trace starts and finishes) -->
      <meta-data android:name="io.sentry.traces.profiling.lifecycle" android:value="trace" />
      <!-- Enable profiling on app start. The app start profile will be stopped automatically when the app start root span finishes -->
      <meta-data android:name="io.sentry.traces.profiling.start-on-app-start" android:value="true" />
    </application>
    import io.sentry.ProfileLifecycle;
    import io.sentry.android.core.SentryAndroid;
    
    SentryAndroid.init(context, options -> {
        // Enable UI profiling, adjust in production env. This is evaluated only once per session
        options.setProfileSessionSampleRate(1.0);
        // Set profiling lifecycle, can be `manual` (controlled through `Sentry.startProfiler()` and `Sentry.stopProfiler()`) or `trace` (automatically starts and stop a profile whenever a sampled trace starts and finishes)
        options.setProfileLifecycle(ProfileLifecycle.TRACE);
        // Enable profiling on app start. The app start profile will be stopped automatically when the app start root span finishes
        options.setStartProfilerOnAppStart(true);
      });
    import io.sentry.ProfileLifecycle
    import io.sentry.android.core.SentryAndroid
    
    SentryAndroid.init(context, { options ->
      // Enable UI profiling, adjust in production env. This is evaluated only once per session
      options.profileSessionSampleRate = 1.0
      // Set profiling lifecycle, can be `manual` (controlled through `Sentry.startProfiler()` and `Sentry.stopProfiler()`) or `trace` (automatically starts and stop a profile whenever a sampled trace starts and finishes)
      options.profileLifecycle = ProfileLifecycle.TRACE
      // Enable profiling on app start. The app start profile will be stopped automatically when the app start root span finishes
      options.isStartProfilerOnAppStart = true
      })
    • Continuous Profiling - Stop when app goes in background (#​4311)
    • Continuous Profiling - Add delayed stop (#​4293)
    • Continuous Profiling - Out of Experimental (#​4310)
Fixes
  • Compress Screenshots on a background thread (#​4295)

v8.6.0

Compare Source

Behavioral Changes
  • The Sentry SDK will now crash on startup if mixed versions have been detected (#​4277)
    • On Sentry.init / SentryAndroid.init the SDK now checks if all Sentry Java / Android SDK dependencies have the same version.
    • While this may seem like a bad idea at first glance, mixing versions of dependencies has a very high chance of causing a crash later. We opted for a controlled crash that's hard to miss.
    • Note: This detection only works for new versions of the SDK, so please take this as a reminder to check your SDK version alignment manually when upgrading the SDK to this version and then you should be good.
    • The SDK will also print log messages if mixed versions have been detected at a later point. (#​4270)
      • This takes care of cases missed by the startup check above due to older versions.
Features
  • Increase http timeouts from 5s to 30s to have a better chance of events being delivered without retry (#​4276)
  • Add MANIFEST.MF to Sentry JARs (#​4272)
  • Retain baggage sample rate/rand values as doubles (#​4279)
  • Introduce fatal SDK logger (#​4288)
    • We use this to print out messages when there is a problem that prevents the SDK from working correctly.
    • One example for this is when the SDK has been configured with mixed dependency versions where we print out details, which module and version are affected.
Fixes
  • Do not override user-defined SentryOptions (#​4262)
  • Session Replay: Change bitmap config to ARGB_8888 for screenshots (#​4282)
  • The MANIFEST.MF of sentry-opentelemetry-agent now has Implementation-Version set to the raw version (#​4291)
    • An example value would be 8.6.0
    • The value of the Sentry-Version-Name attribute looks like sentry-8.5.0-otel-2.10.0
  • Fix tags missing for compose view hierarchies (#​4275)
  • Do not leak SentryFileInputStream/SentryFileOutputStream descriptors and channels (#​4296)
  • Remove "not yet implemented" from Sentry.flush comment (#​4305)
Internal
  • Added platform to SentryEnvelopeItemHeader (#​4287)
    • Set android platform to ProfileChunk envelope item header
Dependencies

v8.5.0

Compare Source

Features
  • Add native stack frame address information and debug image metadata to ANR events (#​4061)

    • This enables symbolication for stripped native code in ANRs
  • Add Continuous Profiling Support (#​3710)

    To enable Continuous Profiling use the Sentry.startProfiler and Sentry.stopProfiler experimental APIs. Sampling rate can be set through options.profileSessionSampleRate, which defaults to null (disabled).
    Note: Both options.profilesSampler and options.profilesSampleRate must not be set to enable Continuous Profiling.

    import io.sentry.ProfileLifecycle;
    import io.sentry.android.core.SentryAndroid;
    
    SentryAndroid.init(context) { options ->
     
      // Currently under experimental options:
      options.getExperimental().setProfileSessionSampleRate(1.0);
      // In manual mode, you need to start and stop the profiler manually using Sentry.startProfiler and Sentry.stopProfiler
      // In trace mode, the profiler will start and stop automatically whenever a sampled trace starts and finishes
      options.getExperimental().setProfileLifecycle(ProfileLifecycle.MANUAL);
    }
    // Start profiling
    Sentry.startProfiler();
    
    // After all profiling is done, stop the profiler. Profiles can last indefinitely if not stopped.
    Sentry.stopProfiler();
    import io.sentry.ProfileLifecycle
    import io.sentry.android.core.SentryAndroid
    
    SentryAndroid.init(context) { options ->
     
      // Currently under experimental options:
      options.experimental.profileSessionSampleRate = 1.0
      // In manual mode, you need to start and stop the profiler manually using Sentry.startProfiler and Sentry.stopProfiler
      // In trace mode, the profiler will start and stop automatically whenever a sampled trace starts and finishes
      options.experimental.profileLifecycle = ProfileLifecycle.MANUAL
    }
    // Start profiling
    Sentry.startProfiler()
    
    // After all profiling is done, stop the profiler. Profiles can last indefinitely if not stopped.
    Sentry.stopProfiler()

    To learn more visit Sentry's Continuous Profiling documentation page.

Fixes
  • Reduce excessive CPU usage when serializing breadcrumbs to disk for ANRs (#​4181)
  • Ensure app start type is set, even when ActivityLifecycleIntegration is not running (#​4250)
  • Use SpringServletTransactionNameProvider as fallback for Spring WebMVC (#​4263)
    • In certain cases the SDK was not able to provide a transaction name automatically and thus did not finish the transaction for the request.
    • We now first try SpringMvcTransactionNameProvider which would provide the route as transaction name.
    • If that does not return anything, we try SpringServletTransactionNameProvider next, which returns the URL of the request.
Behavioral Changes
  • The user's device.name is not reported anymore via the device context, even if options.isSendDefaultPii is enabled (#​4179)
Dependencies

v8.4.0

Compare Source

Fixes
  • The SDK now handles null on many APIs instead of expecting a non null value (#​4245)
    • Certain APIs like setTag, setData, setExtra, setContext previously caused a NullPointerException when invoked with either null key or value.
    • The SDK now tries to have a sane fallback when null is passed and no longer throws NullPointerException
    • If null is passed, the SDK will
      • do nothing if a null key is passed, returning null for non void methods
      • remove any previous value if the new value is set to null
  • Add support for setting in-app-includes/in-app-excludes via AndroidManifest.xml (#​4240)
  • Modifications to OkHttp requests are now properly propagated to the affected span / breadcrumbs (#​4238)
    • Please ensure the SentryOkHttpInterceptor is added last to your OkHttpClient, as otherwise changes to the Request by subsequent interceptors won't be considered
  • Fix "class ch.qos.logback.classic.spi.ThrowableProxyVO cannot be cast to class ch.qos.logback.classic.spi.ThrowableProxy" (#​4206)
    • In this case we cannot report the Throwable to Sentry as it's not available
    • If you are using OpenTelemetry v1 OpenTelemetryAppender, please consider upgrading to v2
  • Pass OpenTelemetry span attributes into TracesSampler callback (#​4253)
    • SamplingContext now has a getAttribute method that grants access to OpenTelemetry span attributes via their String key (e.g. http.request.method)
  • Fix AbstractMethodError when using SentryTraced for Jetpack Compose (#​4255)
  • Assume http.client for span op if not a root span (#​4257)
  • Avoid unnecessary copies when using CopyOnWriteArrayList (#​4247)
    • This affects in particular SentryTracer.getLatestActiveSpan which would have previously copied all child span references. This may have caused OutOfMemoryError on certain devices due to high frequency of calling the method.
Features
  • The SDK now automatically propagates the trace-context to the native layer. This allows to connect errors on different layers of the application. (#​4137)
  • Capture OpenTelemetry span events (#​3564)
    • OpenTelemetry spans may have exceptions attached to them (openTelemetrySpan.recordException). We can now send those to Sentry as errors.
    • Set capture-open-telemetry-events=true in sentry.properties to enable it
    • Set sentry.capture-open-telemetry-events=true in Springs application.properties to enable it
    • Set sentry.captureOpenTelemetryEvents: true in Springs application.yml to enable it
Behavioural Changes
  • Use java.net.URI for parsing URLs in UrlUtils (#​4210)
    • This could affect grouping for issues with messages containing URLs that fall in known corner cases that were handled incorrectly previously (e.g. email in URL path)
Internal
  • Also use port when checking if a request is made to Sentry DSN (#​4231)
    • For our OpenTelemetry integration we check if a span is for a request to Sentry
    • We now also consider the port when performing this check
Dependencies
jdbi/jdbi (org.jdbi:jdbi3-bom)

v3.49.0

Compare Source

spring-projects/spring-boot (org.springframework.boot:spring-boot-starter-parent)

v3.4.4

Compare Source

❗ Noteworthy Changes

Tomcat APR support is now disabled by default if you are using Java 24 or higher. This change has been made to prevent JDK from issuing warnings.

Please see the updated release notes for details.

🐞 Bug Fixes
  • Actuator throws an exception when using prototype scoped DataSource bean #​44706
  • Docker API error message is missing in some cases #​44630
  • DefaultJmsListenerContainerFactoryConfigurer#setObservationRegistry should not be public #​44585
  • When an application contains multiple DataSource beans, EntityManagerFactoryBuilder will default ddl-auto to a value that may only be appropriate for the primary DataSource #​44516
  • When the main class is not proxied, native testing that uses the application's main method does not work #​44481
  • When loading configuration from a Resource, Log4J2LoggingSystem may not close the InputStream #​44473
  • When loading from a resource, PemContent does not close the InputStream #​44454
  • ResourceBanner does not close the InputStream used to read the banner #​44452
  • ConfigDataLocationResolvers and PropertySourceLoaders are loaded using a potentially different class loader #​44450
  • Kafka message sending fails with 'class SslBundleSslEngineFactory could not be found' #​44437
  • Kafka in native-image fails when using SSL bundles #​44436
  • Nested test classes don't inherit properties from @DataJpaTest on enclosing class #​44407
  • Failure diagnostics are poor when trying to use an image platform that is not supported by the builder #​44059
  • Checking if APR is available logs a warning on Java 24 #​44033
📔 Documentation
  • Multiline properties in documentation are missing backslashes #​44790
  • Polish javadoc of SqlR2dbcScriptDatabaseInitializer #​44764
  • Document support for Java 24 #​44754
  • Remove OpenShift link that 404s #​44748
  • Fix link to javadoc for JavaExec.setArgsString #​44536
  • Fix typo in documentation #​44523
  • Update descriptions of properties that no longer require Flyway Teams #​44483
  • Fix typo in javadoc of CommonStructuredLogFormat#ELASTIC_COMMON_SCHEMA #​44469
  • Samples for metadata annotation processers have invalid fold attribute #​44420
  • Clarify which Mongo properties are ignored when URI property is set #​44404
  • Adapt Javadoc reference of JooqExceptionTranslator to use ExceptionTranslatorExecuteListener #​44402
🔨 Dependency Upgrades
❤️ Contributors

Thank you to all the contributors who worked on this release:

@​KmYgJn, @​bekoenig, @​bernie-schelberg-invicara, @​dmitrysulman, @​izeye, @​metters, @​ngocnhan-tran1996, @​nosan, and @​quaff


Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/backend-minor-patch branch 2 times, most recently from f0d9591 to 2f2f79c Compare April 1, 2025 12:18
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch 3 times, most recently from 52ea6c5 to a1fc858 Compare April 11, 2025 16:41
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch from a1fc858 to 1c4e630 Compare April 14, 2025 19:11
@renovate renovate bot changed the title fix(deps): update backend non-major dependencies fix(deps): update backend non-major dependencies - autoclosed Apr 21, 2025
@renovate renovate bot closed this Apr 21, 2025
@renovate renovate bot deleted the renovate/backend-minor-patch branch April 21, 2025 08:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants