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

chore(deps): update backend non-major dependencies - autoclosed #1229

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 8, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.apache.maven.plugins:maven-compiler-plugin 3.12.1 -> 3.13.0 age adoption passing confidence
org.testcontainers:postgresql (source) 1.19.5 -> 1.19.7 age adoption passing confidence
com.yubico:webauthn-server-core (source) 2.5.0 -> 2.5.1 age adoption passing confidence
org.jgroups.kubernetes:jgroups-kubernetes 2.0.1.Final -> 2.0.2.Final age adoption passing confidence
org.jgroups:jgroups (source) 5.3.2.Final -> 5.3.4.Final age adoption passing confidence
org.springdoc:springdoc-openapi-starter-webmvc-api (source) 2.3.0 -> 2.4.0 age adoption passing confidence
io.sentry:sentry-opentelemetry-core 7.3.0 -> 7.6.0 age adoption passing confidence
io.sentry:sentry-logback 7.3.0 -> 7.6.0 age adoption passing confidence
io.sentry:sentry-spring-boot-starter-jakarta 7.3.0 -> 7.6.0 age adoption passing confidence
io.awspring.cloud:spring-cloud-aws-starter-s3 (source) 3.1.0 -> 3.1.1 age adoption passing confidence
org.jdbi:jdbi3-bom (source) 3.44.1 -> 3.45.1 age adoption passing confidence
org.springframework.boot:spring-boot-starter-parent (source) 3.2.2 -> 3.2.4 age adoption passing confidence

Release Notes

testcontainers/testcontainers-java (org.testcontainers:postgresql)

v1.19.7

Compare Source

Testcontainers for Java 1.19.7

Modules

Elasticserach

HiveMQ
MongoDB
PostgreSQL

📖 Documentation

📦 Dependency updates

v1.19.6

Compare Source

Testcontainers for Java 1.19.6
Modules
New modules
📖 Documentation
🧹 Housekeeping
📦 Dependency updates
Yubico/java-webauthn-server (com.yubico:webauthn-server-core)

v2.5.1: Version 2.5.1

Compare Source

Changes:

  • Dropped dependency on COSE-Java.
  • Fixed incompatibility with Jackson version 2.17.0-rc1.

Artifacts built with openjdk version "17.0.10" 2024-01-16.

jgroups-extras/jgroups-kubernetes (org.jgroups.kubernetes:jgroups-kubernetes)

v2.0.2.Final

Compare Source

What's Changed

Full Changelog: jgroups-extras/jgroups-kubernetes@2.0.1.Final...2.0.2.Final

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

v2.4.0

Compare Source

Added
  • #​2443 - Respect schema annotations when using spring mvc with kotlin
  • #​2492, #​2488 - Support dynamic evaluation of description field in the RequestBody
  • #​2510 - Option to disable root api-docs path when using groups
Changed
  • Upgrade spring-boot to 3.2.3
  • Upgrade swagger-core to 2.2.20
  • Upgrade swagger-ui to 5.11.8
Fixed
  • #​2453 - Fix CODE_OF_CONDUCT.md links
  • #​2454 - Fix typo in SwaggerWelcomeWebMvc
  • #​2507 - Fix typo in Constants
  • #​2472 - Update JavadocPropertyCustomizer.java
  • #​2495 - Fix broken links in README and CONTRIBUTING
  • #​2501 - bug fix when "exported" is set to false in RestResource annotation
  • #​2447 - Serialization to openapi of org.springframework.data.domain.Sort is not done correctly
  • #​2449 - Extensions in subobjects of OpenAPI no longer work
  • #​2461 - Springdoc OpenApi Annotations @​ExtensionProperty Not Evaluating Properties from application.yml
  • #​2469 - Pom contains invalid organizationUrl
  • #​2518 - Duplicate GroupConfigs in SpringDocConfigProperties
  • #​2506 - Springdoc breaks (Unexpected value: TRACE) when a spring-cloud-starter-gateway-mvc universal gateway is configured.
  • #​2519 - Request parameter parsing error after using @​NotBlank from type interface field
  • #​2516 - Spring Data REST fails when setting version to openapi_3_1
  • #​2509 - ArrayIndexOutOfBoundsException in SwaggerUiConfigParameters
  • #​2484 - JavaDoc integration not working with SnakeCaseStrategy property naming
  • #​2483 - Controller advice documents ApiResponse on every operation, even if the operation does not annotate the exception to be thrown
  • #​2477 - buildApiResponses ignores produced ContentType in case of many @​Operation
getsentry/sentry-java (io.sentry:sentry-opentelemetry-core)

v7.6.0

Compare Source

Features
  • Experimental: Add support for Sentry Developer Metrics (#​3205, #​3238, #​3248, #​3250)
    Use the Metrics API to track processing time, download sizes, user signups, and conversion rates and correlate them back to tracing data in order to get deeper insights and solve issues faster. Our API supports counters, distributions, sets, gauges and timers, and it's easy to get started:
    Sentry.metrics()
      .increment(
          "button_login_click", // key
          1.0,                  // value
          null,                 // unit
          mapOf(                // tags
              "provider" to "e-mail"
          )
      )
    To learn more about Sentry Developer Metrics, head over to our Java and Android docs page.

v7.5.0

Compare Source

Features
  • Add support for measurements at span level (#​3219)
  • Add enableScopePersistence option to disable PersistingScopeObserver used for ANR reporting which may increase performance overhead. Defaults to true (#​3218)
    • When disabled, the SDK will not enrich ANRv2 events with scope data (e.g. breadcrumbs, user, tags, etc.)
  • Configurable defaults for Cron - MonitorConfig (#​3195)
  • We now display a warning on startup if an incompatible version of Spring Boot is detected (#​3233)
    • This should help notice a mismatching Sentry dependency, especially when upgrading a Spring Boot application
  • Experimental: Add Metrics API (#​3205)
Fixes
  • Ensure performance measurement collection is not taken too frequently (#​3221)
  • Fix old profiles deletion on SDK init (#​3216)
  • Fix hub restore point in wrappers: SentryWrapper, SentryTaskDecorator and SentryScheduleHook (#​3225)
    • We now reset the hub to its previous value on the thread where the Runnable/Callable/Supplier is executed instead of setting it to the hub that was used on the thread where the Runnable/Callable/Supplier was created.
  • Fix add missing thread name/id to app start spans (#​3226)

v7.4.0

Compare Source

Features
  • Add new threshold parameters to monitor config (#​3181)
  • Report process init time as a span for app start performance (#​3159)
  • (perf-v2): Calculate frame delay on a span level (#​3197)
  • Resolve spring properties in @​SentryCheckIn annotation (#​3194)
  • Experimental: Add Spotlight integration (#​3166)
    • For more details about Spotlight head over to https://spotlightjs.com/
    • Set options.isEnableSpotlight = true to enable Spotlight
Fixes
  • Don't wait on main thread when SDK restarts (#​3200)
  • Fix Jetpack Compose widgets are not being correctly identified for user interaction tracing (#​3209)
  • Fix issue title on Android when a wrapping RuntimeException is thrown by the system (#​3212)
    • This will change grouping of the issues that were previously titled RuntimeInit$MethodAndArgsCaller to have them split up properly by the original root cause exception
awspring/spring-cloud-aws (io.awspring.cloud:spring-cloud-aws-starter-s3)

v3.1.1

jdbi/jdbi (org.jdbi:jdbi3-bom)

v3.45.1

Compare Source

  • Work around JDK-8320575 losing record constructor generic type information
  • Improve record constructor detection of generic types to work around JDK-8320575 (#​2648, thanks @​elonazoulay !)
  • Attempt to improve ConstructorMapper performance by caching constructor MethodHandles (#​2657, thanks @​elonazoulay! )

v3.45.0

Compare Source

  • Testcontainer support for DB2 (#​2625, thanks @​stoyants)
  • create CycloneDX SBOM files for release versions
  • make builds reproducible
  • add JdbiTestContainersExtension#setShutdownWaitTime(int) to control waiting for extension shutdown if a database is very slow. Addresses #​2629 (thanks @​stoyants).
  • documentation updates
spring-projects/spring-boot (org.springframework.boot:spring-boot-starter-parent)

v3.2.4

Compare Source

v3.2.3

Compare Source

⚠️ Noteworthy
  • This release upgrades to Hibernate 6.4.4.Final. While it contains a number of valuable bug fixes, it does not work correctly in a native image. If you are using GraalVM, Hibernate should be temporarily downgraded to 6.4.2.Final using the hibernate.version property.
🐞 Bug Fixes
  • Nested jar URLs can not be resolved if the path contains spaces #​39675
  • Image building runs for a long time when a long image name is used and the tag contains an illegal character #​39638
  • Banner printing doesn't respect set charset #​39621
  • "micrometer.observations.*" configuration properties should be "management.observations.*" #​39600
  • Metadata reading during configuration class parsing uses the default resource loader rather than the application's resource loader #​39598
  • Several gson properties, including spring.gson.disable-html-escaping, do not behave correctly when set to false #​39524
  • Property placeholders aren't resolved when configuration property binding creates a Map from a property value using a converter #​39515
  • Gradle plugin allows the use of Gradle 7.4 but the documented and tested minimum is 7.5 #​39513
  • WebFlux auto-configuration should only configure the blocking executor when virtual threads are enabled #​39469
  • TestcontainersPropertySource assertion has typo #​39449
  • Webflux actuator endpoints respond with 500 when a parameter is missing #​39444
  • NoSuchMethod error when using the non-shaded Pulsar client and configuring authentications parameters #​39389
  • Jetty GracefulShutdown writes to System.out #​39360
  • Building images fails with Docker 25.0 when custom buildpacks are configured #​39347
  • Creating a RestClient from a RestTemplateBuilder-created RestTemplate requires double configuration of the baseUrl/rootUri #​39317
  • Auto-configured ConcurrentPulsarListenerContainerFactory and PulsarConsumerFactory cannot be injected into injection points with specific generic type information #​39308
  • Startup failure when you have multiple @DynamicPropertySources in Spring Boot 3.2.2 #​39297
  • Mockito's MockedStatic isn't closed in all cases #​39272
  • TracingProperties exposes package-private PropagationType from public methods #​39268
📔 Documentation
  • Add note regarding mixing of bundle-based and direct SSL configuration #​39641
  • Add link to Pulsar workaround when using environment variables for authentication #​39630
  • Document that task executor pool size properties are ignored when using virtual threads #​39629
  • Document default value for show-value configuration properties #​39596
  • Clarify that configuration properties only apply to the auto-configured OpenTelemetry Resource bean #​39509
  • Update the Debugging Documentation of the Spring Boot Maven Plugin #​39422
  • Awaitility link in Test Scoped Dependencies is incorrect #​39415
  • Fixed NestedJarFile constructor javadoc #​39285
  • Endpoint documentation contains the typo 'Unuthorized' #​39280
  • Update Revved up by Develocity badge #​39263
🔨 Dependency Upgrades
❤️ Contributors

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

@​PiyalAhmed, @​Tish17, @​amritagg, @​dependabot[bot], @​eddumelendez, @​erichaagdev, @​gdmrw, @​jonas-grgt, @​kilink, @​lukasdo, @​okohub, @​onobc, @​ramilS, @​slovi, @​smurf667, @​snicoll, @​totti-dev, @​vj-atlassian, @​vjh0107, @​wanger26, and @​xpmxf4


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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/backend-minor-patch branch from 5a077ba to efc3153 Compare May 11, 2023 08:49
@renovate renovate bot changed the title fix(deps): update backend non-major dependencies chore(deps): update backend non-major dependencies May 11, 2023
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch 4 times, most recently from 8b8602c to 89c0241 Compare May 19, 2023 13:00
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch 4 times, most recently from 66b6f45 to 7a7e955 Compare May 31, 2023 23:57
@renovate renovate bot changed the title chore(deps): update backend non-major dependencies chore(deps): update backend non-major dependencies - autoclosed Jun 4, 2023
@renovate renovate bot closed this Jun 4, 2023
@renovate renovate bot deleted the renovate/backend-minor-patch branch June 4, 2023 19:43
@renovate renovate bot changed the title chore(deps): update backend non-major dependencies - autoclosed chore(deps): update backend non-major dependencies Jun 5, 2023
@renovate renovate bot reopened this Jun 5, 2023
@renovate renovate bot restored the renovate/backend-minor-patch branch June 5, 2023 23:05
@renovate renovate bot changed the title chore(deps): update backend non-major dependencies fix(deps): update dependency org.jdbi:jdbi3-bom to v3.38.3 Jun 6, 2023
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch 2 times, most recently from 1014b87 to 3d85cce Compare June 7, 2023 14:25
@renovate renovate bot changed the title fix(deps): update dependency org.jdbi:jdbi3-bom to v3.38.3 fix(deps): update backend non-major dependencies Jun 7, 2023
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch 3 times, most recently from 8494cce to 10f620b Compare June 18, 2023 01:20
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch 4 times, most recently from 49ac637 to 310a6ec Compare June 28, 2023 17:37
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch 3 times, most recently from 2d33863 to f777ba3 Compare July 5, 2023 14:34
@renovate renovate bot changed the title chore(deps): update dependency org.testcontainers:postgresql to v1.19.4 fix(deps): update backend non-major dependencies to v7.3.0 Jan 30, 2024
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch 2 times, most recently from df93aef to 4162183 Compare January 31, 2024 16:01
@renovate renovate bot changed the title fix(deps): update backend non-major dependencies to v7.3.0 fix(deps): update backend non-major dependencies Jan 31, 2024
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch 2 times, most recently from 095e032 to a516d28 Compare February 6, 2024 16:43
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch from a516d28 to 20f8a5c Compare February 8, 2024 16:55
@renovate renovate bot changed the title fix(deps): update backend non-major dependencies chore(deps): update backend non-major dependencies Feb 8, 2024
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch 3 times, most recently from 74c7db5 to 471fa6b Compare February 13, 2024 22:01
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch 4 times, most recently from 0361ed8 to a7a22f4 Compare February 22, 2024 21:20
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch 3 times, most recently from 724c982 to ba142b5 Compare March 5, 2024 23:42
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch 4 times, most recently from 46426e1 to 859f52c Compare March 14, 2024 20:25
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch 3 times, most recently from 5d3d693 to d64d9f6 Compare March 21, 2024 13:54
@renovate renovate bot force-pushed the renovate/backend-minor-patch branch from d64d9f6 to 7ac117a Compare March 23, 2024 14:26
@renovate renovate bot changed the title chore(deps): update backend non-major dependencies chore(deps): update backend non-major dependencies - autoclosed Mar 23, 2024
@renovate renovate bot closed this Mar 23, 2024
@renovate renovate bot deleted the renovate/backend-minor-patch branch March 23, 2024 14:50
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