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): bump the dependencies group across 1 directory with 25 updates #369

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 21, 2024

Bumps the dependencies group with 25 updates in the / directory:

Package From To
org.jetbrains.kotlinx:kotlinx-coroutines-slf4j 1.8.1 1.9.0
com.fasterxml.jackson.datatype:jackson-datatype-jsr310 2.18.0 2.18.1
org.apache.kafka:kafka-clients 3.8.0 3.9.0
org.postgresql:postgresql 42.7.3 42.7.4
org.flywaydb:flyway-core 9.22.3 10.22.0
org.yaml:snakeyaml 2.2 2.3
no.nav.helse:diagnosekoder 1.2024.0 1.2024.1
org.springframework.security:spring-security-web 6.3.1 6.4.1
no.nav.security:token-client-spring 5.0.1 5.0.11
no.nav.security:token-support 5.0.1 5.0.11
no.nav.security:token-validation-core 5.0.1 5.0.11
no.nav.security:token-validation-spring 5.0.1 5.0.11
org.springframework.boot:spring-boot-starter-oauth2-resource-server 3.3.2 3.3.5
org.apache.commons:commons-lang3 3.16.0 3.17.0
org.apache.httpcomponents.client5:httpclient5 5.2 5.4.1
io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations 2.3.0 2.10.0
org.hibernate.orm:hibernate-core 6.2.6.Final 6.6.2.Final
org.testcontainers:junit-jupiter 1.20.1 1.20.4
org.testcontainers:postgresql 1.20.1 1.20.4
org.testcontainers:kafka 1.20.1 1.20.4
io.mockk:mockk 1.13.10 1.13.13
org.apache.commons:commons-compress 1.27.0 1.27.1
org.springframework.boot 3.3.2 3.3.5
jvm 2.0.10 2.0.21
plugin.spring 2.0.10 2.0.21

Updates org.jetbrains.kotlinx:kotlinx-coroutines-slf4j from 1.8.1 to 1.9.0

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-slf4j's releases.

1.9.0

Features

  • Wasm/WASI target support (#4064). Thanks, @​igoriakovlev!
  • limitedParallelism now optionally accepts the name of the dispatcher view for easier debugging (#4023).
  • No longer initialize Dispatchers.IO on the JVM when other standard dispatchers are accessed (#4166). Thanks, @​metalhead8816!
  • Introduced the Flow<T>.chunked(size: Int): Flow<List<T>> operator that groups emitted values into groups of the given size (#1290).
  • Closeable dispatchers are instances of AutoCloseable now (#4123).

Fixes

  • Calling hasNext on a Channel's iterator is idempotent (#4065). Thanks, @​gitpaxultek!
  • CoroutineScope() created without an explicit dispatcher uses Dispatchers.Default on Native (#4074). Thanks, @​whyoleg!
  • Fixed a bug that prevented non-Android Dispatchers.Main from initializing when the Firebase dependency is used (#3914).
  • Ensured a more intuitive ordering of tasks in runBlocking (#4134).
  • Forbid casting a Mutex to Semaphore (#4176).
  • Worked around a stack overflow that may occur when calling asDeferred on a Future many times (#4156).

Deprecations and promotions

  • Advanced the deprecation levels for BroadcastChannel-based API (#4197).
  • Advanced the deprecation levels for the old kotlinx-coroutines-test API (#4198).
  • Deprecated Job.cancelFutureOnCompletion (#4173).
  • Promoted CoroutineDispatcher.limitedParallelism to stable (#3864).
  • Promoted CoroutineStart.ATOMIC from ExperimentalCoroutinesApi to DelicateCoroutinesApi (#4169).
  • Promoted CancellableContinuation.resume with an onCancellation lambda to stable, providing extra arguments to the lambda (#4088).
  • Marked the classes and interfaces that are not supposed to be inherited from with the new InternalForInheritanceCoroutinesApi opt-in (#3770).
  • Marked the classes and interfaces inheriting from which is not stable with the new ExperimentalForInheritanceCoroutinesApi opt-in (#3770).

Other

  • Kotlin was updated to 2.0 (#4137).
  • Reworked the documentation for CoroutineStart and Channel-based API (#4147, #4148, #4167). Thanks, @​globsterg!
  • Simplified the internal implementation of Job (#4053).
  • Small tweaks, fixes, and documentation improvements.

1.9.0-RC.2

  • Advanced the deprecation levels for BroadcastChannel-based API (#4197).
  • Advanced the deprecation levels for the old kotlinx-coroutines-test API (#4198).
  • Promoted CoroutineStart.ATOMIC from ExperimentalCoroutinesApi to DelicateCoroutinesApi (#4169).
  • Reworked the documentation for CoroutineStart and Channel-based API (#4147, #4148, #4167). Thanks, @​globsterg!
  • Forbid casting a Mutex to Semaphore (#4176).
  • Deprecated Job.cancelFutureOnCompletion (#4156).
  • Worked around a stack overflow that may occur when calling asDeferred on a Future many times (#4156).
  • Fixed a bug that disallowed setting a custom probeCoroutineResumed when starting coroutines with UNDISPATCHED (#4162).
  • No longer initialize Dispatchers.IO on the JVM when other standard dispatchers are accessed (#4166). Thanks, @​metalhead8816!
  • Small tweaks, fixes, and documentation improvements.

1.9.0-RC

  • Kotlin was updated to 2.0 (#4137).

... (truncated)

Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-slf4j's changelog.

Version 1.9.0

Features

  • Wasm/WASI target support (#4064). Thanks, @​igoriakovlev!
  • limitedParallelism now optionally accepts the name of the dispatcher view for easier debugging (#4023).
  • No longer initialize Dispatchers.IO on the JVM when other standard dispatchers are accessed (#4166). Thanks, @​metalhead8816!
  • Introduced the Flow<T>.chunked(size: Int): Flow<List<T>> operator that groups emitted values into groups of the given size (#1290).
  • Closeable dispatchers are instances of AutoCloseable now (#4123).

Fixes

  • Calling hasNext on a Channel's iterator is idempotent (#4065). Thanks, @​gitpaxultek!
  • CoroutineScope() created without an explicit dispatcher uses Dispatchers.Default on Native (#4074). Thanks, @​whyoleg!
  • Fixed a bug that prevented non-Android Dispatchers.Main from initializing when the Firebase dependency is used (#3914).
  • Ensured a more intuitive ordering of tasks in runBlocking (#4134).
  • Forbid casting a Mutex to Semaphore (#4176).
  • Worked around a stack overflow that may occur when calling asDeferred on a Future many times (#4156).

Deprecations and promotions

  • Advanced the deprecation levels for BroadcastChannel-based API (#4197).
  • Advanced the deprecation levels for the old kotlinx-coroutines-test API (#4198).
  • Deprecated Job.cancelFutureOnCompletion (#4173).
  • Promoted CoroutineDispatcher.limitedParallelism to stable (#3864).
  • Promoted CoroutineStart.ATOMIC from ExperimentalCoroutinesApi to DelicateCoroutinesApi (#4169).
  • Promoted CancellableContinuation.resume with an onCancellation lambda to stable, providing extra arguments to the lambda (#4088).
  • Marked the classes and interfaces that are not supposed to be inherited from with the new InternalForInheritanceCoroutinesApi opt-in (#3770).
  • Marked the classes and interfaces inheriting from which is not stable with the new ExperimentalForInheritanceCoroutinesApi opt-in (#3770).

Other

  • Kotlin was updated to 2.0 (#4137).
  • Reworked the documentation for CoroutineStart and Channel-based API (#4147, #4148, #4167). Thanks, @​globsterg!
  • Simplified the internal implementation of Job (#4053).
  • Small tweaks, fixes, and documentation improvements.

Version 1.9.0-RC.2

  • Advanced the deprecation levels for BroadcastChannel-based API (#4197).
  • Advanced the deprecation levels for the old kotlinx-coroutines-test API (#4198).
  • Promoted CoroutineStart.ATOMIC from ExperimentalCoroutinesApi to DelicateCoroutinesApi (#4169).
  • Reworked the documentation for CoroutineStart and Channel-based API (#4147, #4148, #4167). Thanks, @​globsterg!
  • Forbid casting a Mutex to Semaphore (#4176).
  • Deprecated Job.cancelFutureOnCompletion (#4173).
  • Worked around a stack overflow that may occur when calling asDeferred on a Future many times (#4156).
  • Fixed a bug that disallowed setting a custom probeCoroutineResumed when starting coroutines with UNDISPATCHED (#4162).
  • No longer initialize Dispatchers.IO on the JVM when other standard dispatchers are accessed (#4166). Thanks, @​metalhead8816!
  • Small tweaks, fixes, and documentation improvements.

... (truncated)

Commits

Updates com.fasterxml.jackson.datatype:jackson-datatype-jsr310 from 2.18.0 to 2.18.1

Updates org.apache.kafka:kafka-clients from 3.8.0 to 3.9.0

Updates org.postgresql:postgresql from 42.7.3 to 42.7.4

Release notes

Sourced from org.postgresql:postgresql's releases.

v42.7.4

Changes

⬆️ Dependencies

... (truncated)

Changelog

Sourced from org.postgresql:postgresql's changelog.

[42.7.4] (2024-08-22 08:00:00 -0400)

Added

Fixed

Deprecated

Commits
  • a23fa70 Prepare for 42.7.4 release (#3359)
  • d232e60 fix: remove preDescribe from internalExecuteBatch
  • 257653b Rename release.yml to release-notes.yml
  • 64a18d6 Create release.yml
  • 84bdec6 fix(deps): update dependency com.github.spotbugs:com.github.spotbugs.gradle.p...
  • 89182c1 chore(deps): update dependency gradle to v8.10
  • 1f68373 fix(deps): update dependency org.roaringbitmap:roaringbitmap to v1.2.1
  • f1c8707 chore(deps): update codecov/codecov-action digest to 2439dfc
  • ba1513e fix(deps): update dependency com.google.errorprone:error_prone_core to v2.30.0
  • 6abdb5f fix(deps): update dependency spotbugs to v4.8.6
  • Additional commits viewable in compare view

Updates org.flywaydb:flyway-core from 9.22.3 to 10.22.0

Release notes

Sourced from org.flywaydb:flyway-core's releases.

Flyway 10.22.0

See release notes here

CLI artifact available here

Flyway 10.21.0

See release notes here

CLI artifact available here

Flyway 10.20.1

See release notes here

CLI artifact available here

Flyway 10.20.0

See release notes here

CLI artifact available here

Flyway 10.19.0

See release notes here

CLI artifact available here

Flyway 10.18.2

See release notes here

CLI artifact available here

Flyway 10.18.1

See release notes here

CLI artifact available here

Flyway 10.18.0

See release notes here

CLI artifact available here

Flyway 10.17.3

See release notes here

CLI artifact available here

Flyway 10.17.2

See release notes here

CLI artifact available here

... (truncated)

Commits
  • 5b4b7c8 Bump version to flyway-10.22.0
  • 2dbbab3 Bump version to flyway-10.21.0
  • 2cd387f Bump version to flyway-10.20.1
  • a66a1a3 Bump version to flyway-10.20.0
  • 6d4af9e Bump version to flyway-10.19.0
  • 0cc2198 Bump version to flyway-10.18.2
  • 773ffd1 Bump version to flyway-10.18.1
  • bcab6b4 Bump version to flyway-10.18.0
  • c995105 Bump version to flyway-10.17.3
  • 68538a6 Bump version to flyway-10.17.2
  • Additional commits viewable in compare view

Updates org.yaml:snakeyaml from 2.2 to 2.3

Commits
  • bfc9c15 Merge branch 'refs/heads/master' into try-to-keep-anchor
  • 3137efd Update changes and doc
  • 5960909 Add test for issue 1091
  • 1430c40 Improve test for issue 1091
  • d9e15c1 Add Javadoc to explain issue 1093
  • 7ef0836 Improve Javadoc for comments in the directives
  • f2810dd feat: add mergeOnCompose option to LoaderOptions
  • f245567 few tests for merge expantion on Compose
  • 37c7aed feat: merge nodes on Compose
  • ae6515a fix: remove unnecessary variable
  • Additional commits viewable in compare view

Updates no.nav.helse:diagnosekoder from 1.2024.0 to 1.2024.1

Release notes

Sourced from no.nav.helse:diagnosekoder's releases.

1.2024.1

Bugfiks i typescript pakke: Cast til ICPC2 istadenfor å validere når den blir returnert som typescript konstant. Skal unngå at internt typeflaggsymbol blir serialisert med.

Ingen faktisk endring av koder.

Ingen endring i java pakke.

Commits

Updates org.springframework.security:spring-security-web from 6.3.1 to 6.4.1

Release notes

Sourced from org.springframework.security:spring-security-web's releases.

6.4.1

🪲 Bug Fixes

  • Documentation images should render clearly in both light and dark mode #16132
  • Fix conflicting bean names between @EnableWebSecurity and @EnableWebSocketSecurity #16113

🔩 Build Updates

  • Update Antora UI Spring to v0.4.18 #16112

❤️ Contributors

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

@​github-actions[bot] and @​ngocnhan-tran1996

6.4.0

⭐ New Features

  • Add @FunctionalInterface to AuthorizationEventPublisher #15934
  • Add DefaultResourcesFilter.webauthn() #15970
  • Add deprecation notice for missing leading slashes #16020
  • Code Cleanup #15996
  • Document passkeys dependencies #16107
  • Factor out some common object mocking in tests #15396
  • Fix saml2 authentication guide docs #16017
  • Improve documentation about CredentialsContainer #15554
  • Improve Documentation on Adding a Custom Security Filter #15893
  • Improve Error Message for Conflicting Filter Chains #15992
  • Make it easier to determine where a filter chain has been defined #15874
  • OIDC logout not working for JPA/JDBC OAuth2AuthorizationService because DefaultSaml2AuthenticatedPrincipal does not implement equality #15346
  • Polish JdbcOneTimeTokenService #15997
  • relying-party-registration doesn't allow placeholders in xml #14645
  • Remove unnecessary parentheses and add static final field MockPortResolver#getServerPort #15875
  • Support ServerExchangeRejectedHandler @Bean #16063

🪲 Bug Fixes

  • An empty-string bearer token should result in an appropriate HTTP status code #16037
  • AuthorizeReturnObject AOT support should register proxied class as well #16106
  • Correct class name reference in WebFilterChainProxy JavaDoc #16004
  • Fix typo javadoc some classes #16022
  • Initialize OpenSAML in OpenSamlAssertingPartyMetadataRepository #16055
  • IpAddressMatcher null pointer exception #16104
  • OpenSamlAssertingPartyMetadataRepository should initialize OpenSAML #16042
  • Support ServerWebExchangeFirewall @Bean #15999
  • UniqueSecurityAnnotationScanner throws ConcurrentModificationException #15906

🔨 Dependency Upgrades

... (truncated)

Commits
  • 59b7b55 Release 6.4.1
  • b896a74 Resolve Observation Bean Name Collisions
  • 91832bf Add EnableWebSecurity + EnableWebSocketSecurity Test
  • 30c9860 Add What's New Link to Landing Pages
  • 4787efb Update What's New
  • b712c24 Merge branch '6.3.x'
  • 70a9501 Merge branch '6.2.x' into 6.3.x
  • b8e9f47 Merge branch '5.8.x' into 6.2.x
  • 04baead Update Antora Spring UI to v0.4.18
  • a0a9b48 Update Antora Spring UI to v0.4.18
  • Additional commits viewable in compare view

Updates no.nav.security:token-client-spring from 5.0.1 to 5.0.11

Release notes

Sourced from no.nav.security:token-client-spring's releases.

5.0.11

What's Changed

  • (request.getAttribute(ERROR_EXCEPTION) as? Throwable)?.message

5.0.10

What's Changed

Full Changelog: navikt/token-support@5.0.8...5.0.10

5.0.9

What's Changed

⬆️ Dependency upgrades

5.0.8

What's Changed

  • No changes

5.0.7

What's Changed

⬆️ Dependency upgrades

5.0.5

What's Changed

... (truncated)

Commits
  • bddaf06 get as throwable
  • 25a38df get as throwable
  • c501285 skip validation for async requests when the client id gone (#969)
  • 6c367ed Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.1 to 3.5.2 (#968)
  • f919bb0 Bump com.nimbusds:nimbus-jose-jwt from 9.44 to 9.45 (#967)
  • 267bf37 Bump com.nimbusds:nimbus-jose-jwt from 9.43 to 9.44 (#966)
  • b424763 up
  • da4e526 Bump com.nimbusds:nimbus-jose-jwt from 9.42 to 9.43 (#965)
  • 1979cd3 Bump no.nav.security:mock-oauth2-server from 2.1.9 to 2.1.10 (#964)
  • 24f947e Bump com.nimbusds:nimbus-jose-jwt from 9.41.2 to 9.42 (#963)
  • Additional commit...

    Description has been truncated

…pdates

Bumps the dependencies group with 25 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [org.jetbrains.kotlinx:kotlinx-coroutines-slf4j](https://github.com/Kotlin/kotlinx.coroutines) | `1.8.1` | `1.9.0` |
| com.fasterxml.jackson.datatype:jackson-datatype-jsr310 | `2.18.0` | `2.18.1` |
| org.apache.kafka:kafka-clients | `3.8.0` | `3.9.0` |
| [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) | `42.7.3` | `42.7.4` |
| [org.flywaydb:flyway-core](https://github.com/flyway/flyway) | `9.22.3` | `10.22.0` |
| [org.yaml:snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) | `2.2` | `2.3` |
| [no.nav.helse:diagnosekoder](https://github.com/navikt/diagnosekoder) | `1.2024.0` | `1.2024.1` |
| [org.springframework.security:spring-security-web](https://github.com/spring-projects/spring-security) | `6.3.1` | `6.4.1` |
| [no.nav.security:token-client-spring](https://github.com/navikt/token-support) | `5.0.1` | `5.0.11` |
| [no.nav.security:token-support](https://github.com/navikt/token-support) | `5.0.1` | `5.0.11` |
| [no.nav.security:token-validation-core](https://github.com/navikt/token-support) | `5.0.1` | `5.0.11` |
| [no.nav.security:token-validation-spring](https://github.com/navikt/token-support) | `5.0.1` | `5.0.11` |
| [org.springframework.boot:spring-boot-starter-oauth2-resource-server](https://github.com/spring-projects/spring-boot) | `3.3.2` | `3.3.5` |
| org.apache.commons:commons-lang3 | `3.16.0` | `3.17.0` |
| [org.apache.httpcomponents.client5:httpclient5](https://github.com/apache/httpcomponents-client) | `5.2` | `5.4.1` |
| [io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations](https://github.com/open-telemetry/opentelemetry-java-instrumentation) | `2.3.0` | `2.10.0` |
| [org.hibernate.orm:hibernate-core](https://github.com/hibernate/hibernate-orm) | `6.2.6.Final` | `6.6.2.Final` |
| [org.testcontainers:junit-jupiter](https://github.com/testcontainers/testcontainers-java) | `1.20.1` | `1.20.4` |
| [org.testcontainers:postgresql](https://github.com/testcontainers/testcontainers-java) | `1.20.1` | `1.20.4` |
| [org.testcontainers:kafka](https://github.com/testcontainers/testcontainers-java) | `1.20.1` | `1.20.4` |
| [io.mockk:mockk](https://github.com/mockk/mockk) | `1.13.10` | `1.13.13` |
| org.apache.commons:commons-compress | `1.27.0` | `1.27.1` |
| [org.springframework.boot](https://github.com/spring-projects/spring-boot) | `3.3.2` | `3.3.5` |
| [jvm](https://github.com/JetBrains/kotlin) | `2.0.10` | `2.0.21` |
| [plugin.spring](https://github.com/JetBrains/kotlin) | `2.0.10` | `2.0.21` |



Updates `org.jetbrains.kotlinx:kotlinx-coroutines-slf4j` from 1.8.1 to 1.9.0
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](Kotlin/kotlinx.coroutines@1.8.1...1.9.0)

Updates `com.fasterxml.jackson.datatype:jackson-datatype-jsr310` from 2.18.0 to 2.18.1

Updates `org.apache.kafka:kafka-clients` from 3.8.0 to 3.9.0

Updates `org.postgresql:postgresql` from 42.7.3 to 42.7.4
- [Release notes](https://github.com/pgjdbc/pgjdbc/releases)
- [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md)
- [Commits](pgjdbc/pgjdbc@REL42.7.3...REL42.7.4)

Updates `org.flywaydb:flyway-core` from 9.22.3 to 10.22.0
- [Release notes](https://github.com/flyway/flyway/releases)
- [Commits](flyway/flyway@flyway-9.22.3...flyway-10.22.0)

Updates `org.yaml:snakeyaml` from 2.2 to 2.3
- [Commits](https://bitbucket.org/snakeyaml/snakeyaml/branches/compare/snakeyaml-2.3..snakeyaml-2.2)

Updates `no.nav.helse:diagnosekoder` from 1.2024.0 to 1.2024.1
- [Release notes](https://github.com/navikt/diagnosekoder/releases)
- [Commits](navikt/diagnosekoder@v1.2024.0...v1.2024.1)

Updates `org.springframework.security:spring-security-web` from 6.3.1 to 6.4.1
- [Release notes](https://github.com/spring-projects/spring-security/releases)
- [Changelog](https://github.com/spring-projects/spring-security/blob/main/RELEASE.adoc)
- [Commits](spring-projects/spring-security@6.3.1...6.4.1)

Updates `no.nav.security:token-client-spring` from 5.0.1 to 5.0.11
- [Release notes](https://github.com/navikt/token-support/releases)
- [Commits](navikt/token-support@5.0.1...5.0.11)

Updates `no.nav.security:token-support` from 5.0.1 to 5.0.11
- [Release notes](https://github.com/navikt/token-support/releases)
- [Commits](navikt/token-support@5.0.1...5.0.11)

Updates `no.nav.security:token-validation-core` from 5.0.1 to 5.0.11
- [Release notes](https://github.com/navikt/token-support/releases)
- [Commits](navikt/token-support@5.0.1...5.0.11)

Updates `no.nav.security:token-validation-spring` from 5.0.1 to 5.0.11
- [Release notes](https://github.com/navikt/token-support/releases)
- [Commits](navikt/token-support@5.0.1...5.0.11)

Updates `org.springframework.boot:spring-boot-starter-oauth2-resource-server` from 3.3.2 to 3.3.5
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.3.2...v3.3.5)

Updates `no.nav.security:token-support` from 5.0.1 to 5.0.11
- [Release notes](https://github.com/navikt/token-support/releases)
- [Commits](navikt/token-support@5.0.1...5.0.11)

Updates `no.nav.security:token-validation-core` from 5.0.1 to 5.0.11
- [Release notes](https://github.com/navikt/token-support/releases)
- [Commits](navikt/token-support@5.0.1...5.0.11)

Updates `no.nav.security:token-validation-spring` from 5.0.1 to 5.0.11
- [Release notes](https://github.com/navikt/token-support/releases)
- [Commits](navikt/token-support@5.0.1...5.0.11)

Updates `org.apache.commons:commons-lang3` from 3.16.0 to 3.17.0

Updates `org.apache.httpcomponents.client5:httpclient5` from 5.2 to 5.4.1
- [Changelog](https://github.com/apache/httpcomponents-client/blob/rel/v5.4.1/RELEASE_NOTES.txt)
- [Commits](apache/httpcomponents-client@rel/v5.2...rel/v5.4.1)

Updates `io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations` from 2.3.0 to 2.10.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-java-instrumentation@v2.3.0...v2.10.0)

Updates `org.hibernate.orm:hibernate-core` from 6.2.6.Final to 6.6.2.Final
- [Release notes](https://github.com/hibernate/hibernate-orm/releases)
- [Changelog](https://github.com/hibernate/hibernate-orm/blob/6.6.2/changelog.txt)
- [Commits](hibernate/hibernate-orm@6.2.6...6.6.2)

Updates `org.testcontainers:junit-jupiter` from 1.20.1 to 1.20.4
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.20.1...1.20.4)

Updates `org.testcontainers:postgresql` from 1.20.1 to 1.20.4
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.20.1...1.20.4)

Updates `org.testcontainers:kafka` from 1.20.1 to 1.20.4
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.20.1...1.20.4)

Updates `org.testcontainers:postgresql` from 1.20.1 to 1.20.4
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.20.1...1.20.4)

Updates `org.testcontainers:kafka` from 1.20.1 to 1.20.4
- [Release notes](https://github.com/testcontainers/testcontainers-java/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-java@1.20.1...1.20.4)

Updates `io.mockk:mockk` from 1.13.10 to 1.13.13
- [Release notes](https://github.com/mockk/mockk/releases)
- [Commits](mockk/mockk@1.13.10...1.13.13)

Updates `org.apache.commons:commons-compress` from 1.27.0 to 1.27.1

Updates `org.springframework.boot` from 3.3.2 to 3.3.5
- [Release notes](https://github.com/spring-projects/spring-boot/releases)
- [Commits](spring-projects/spring-boot@v3.3.2...v3.3.5)

Updates `jvm` from 2.0.10 to 2.0.21
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.0.10...v2.0.21)

Updates `plugin.spring` from 2.0.10 to 2.0.21
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.0.10...v2.0.21)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-slf4j
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: com.fasterxml.jackson.datatype:jackson-datatype-jsr310
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.apache.kafka:kafka-clients
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.postgresql:postgresql
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.flywaydb:flyway-core
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: org.yaml:snakeyaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: no.nav.helse:diagnosekoder
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.springframework.security:spring-security-web
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: no.nav.security:token-client-spring
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: no.nav.security:token-support
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: no.nav.security:token-validation-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: no.nav.security:token-validation-spring
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.springframework.boot:spring-boot-starter-oauth2-resource-server
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: no.nav.security:token-support
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: no.nav.security:token-validation-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: no.nav.security:token-validation-spring
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.apache.commons:commons-lang3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.apache.httpcomponents.client5:httpclient5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.opentelemetry.instrumentation:opentelemetry-instrumentation-annotations
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.hibernate.orm:hibernate-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.testcontainers:junit-jupiter
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.testcontainers:postgresql
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.testcontainers:kafka
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.testcontainers:postgresql
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.testcontainers:kafka
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.mockk:mockk
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.apache.commons:commons-compress
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.springframework.boot
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: jvm
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: plugin.spring
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner November 21, 2024 10:54
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Nov 21, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 22, 2024

Superseded by #370.

@dependabot dependabot bot closed this Nov 22, 2024
@dependabot dependabot bot deleted the dependabot/gradle/dependencies-0701948926 branch November 22, 2024 10:14
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.

0 participants