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

Bump the minor-and-patch group across 1 directory with 13 updates #573

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 20, 2025

Bumps the minor-and-patch group with 13 updates in the / directory:

Package From To
ch.qos.logback:logback-classic 1.5.6 1.5.16
io.micrometer:micrometer-registry-prometheus 1.12.7 1.14.3
com.fasterxml.jackson.datatype:jackson-datatype-jsr310 2.17.2 2.18.2
redis.clients:jedis 5.1.3 5.2.0
org.postgresql:postgresql 42.7.4 42.7.5
io.zonky.test:embedded-postgres 2.0.7 2.1.0
io.confluent:kafka-avro-serializer 7.6.1 7.8.0
io.confluent:kafka-schema-registry 7.6.1 7.8.0
no.nav.tjenestespesifikasjoner:servicemeldingMedKontaktinformasjon-v1-tjenestespesifikasjon 1.2020.06.11-19.53-1cad83414166 1.2021.02.22-10.45-4201aaea72fb
io.mockk:mockk 1.13.11 1.13.16
no.nav.tjenestespesifikasjoner:altinn-correspondence-agency-external-basic 1.2020.01.20-15.44-063ae9f84815 1.2021.02.22-10.45-4201aaea72fb
jvm 2.0.20 2.1.0
com.gradleup.shadow 8.3.2 8.3.5

Updates ch.qos.logback:logback-classic from 1.5.6 to 1.5.16

Commits
  • 74c9ebd prepare release 1.5.16
  • 9308a58 javadocs structure changed
  • 8935470 adapt test to SLF4J version 2.0.16
  • cb60369 addded StubEventEvaluator as default class for evaluator element so as to dir...
  • 1da2f17 bump jxr version
  • 5bde644 bump slf4j version to 2.0.16
  • aa2ebae remove stax related code
  • 80db86b fix issues/860
  • a8a2303 start work on 1.5.16-SNAPSHOT
  • bf14c2c minor javadoc update
  • Additional commits viewable in compare view

Updates io.micrometer:micrometer-registry-prometheus from 1.12.7 to 1.14.3

Release notes

Sourced from io.micrometer:micrometer-registry-prometheus's releases.

1.14.3

🐞 Bug Fixes

  • Handle RuntimeException when getting/setting JMS headers #5746
  • NPE occurs when AOP is applied to a method that returns CompletableFuture #5741
  • Performance regression in MeterRegistry#remove with many meters #5466
  • Exponential histogram throws ArrayIndexOutOfBoundsException #5740

🔨 Dependency Upgrades

  • Bump com.netflix.spectator:spectator-reg-atlas from 1.8.2 to 1.8.3 #5799
  • Bump software.amazon.awssdk:cloudwatch from 2.29.23 to 2.29.46 #5795
  • Bump io.prometheus:prometheus-metrics-bom from 1.3.4 to 1.3.5 #5783

📔 Documentation

  • Polish gh-5751 #5760
  • Improve docs for same name with different tags #5751
  • Document no support for meta-annotations with @Timed/@Counted #5737
  • Remove outdated warnings in docs for @Counted/@Timed #5736

❤️ Contributors

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

@​cfredri4 and @​izeye

1.14.2

🐞 Bug Fixes

  • Protect against concurrent reads/writes to Context keyvalues #5739
  • Null stacktrace in InvalidObservationException using Virtual Threads #5702
  • Deprecate AggregationTemporality#toOtlpAggregationTemporality #5733
  • Warn about gauge re-registration #5688
  • executor.queued metrics of ForkJoinPool does not include queued submissions #5650
  • Default ObservationConventions for Grpc do not always use a consistent set of keyvalues #5609

🔨 Dependency Upgrades

  • Bump software.amazon.awssdk:cloudwatch from 2.29.14 to 2.29.23 #5724
  • Bump io.prometheus:prometheus-metrics-bom from 1.3.3 to 1.3.4 #5723
  • Bump dropwizard-metrics from 4.2.28 to 4.2.29 #5721

📔 Documentation

  • Remove duplicated contextpropagation.adoc #5693
  • Polish "Grafana Dashboard" section #5662
  • Use BOM for Micrometer dependency examples in reference docs #5652

❤️ Contributors

... (truncated)

Commits
  • 73e7928 Merge branch '1.13.x' into 1.14.x
  • 229a787 Adds post release action; fixes gh-5805
  • 4c64ed5 Merge branch '1.13.x' into 1.14.x
  • d1c8045 Merge branch '1.12.x' into 1.13.x
  • 5010e2d Polish (#5759)
  • 96f6e5d Polish 1c891c7 (#5804)
  • 521d57d Add a test verifying that a single character meter name is allowed for Promet...
  • 7e35196 Merge branch '1.13.x' into 1.14.x
  • 819fa61 Merge branch '1.12.x' into 1.13.x
  • be6f962 Handle all exceptions when getting/setting JMS headers
  • Additional commits viewable in compare view

Updates com.fasterxml.jackson.datatype:jackson-datatype-jsr310 from 2.17.2 to 2.18.2

Updates redis.clients:jedis from 5.1.3 to 5.2.0

Release notes

Sourced from redis.clients:jedis's releases.

5.2.0 GA

Enhanced Client-side caching

We are happy to announce that improved server-assisted, client-side caching is now generally available! Special thanks to all our beta testers for their valuable feedback, which helped us refine and improve the initial implementation.

Client-side caching is supported exclusively with the RESP3 protocol with Redis >= 7.4 and is available in UnifiedJedis, JedisPooled, and JedisCluster and other classes.

How to try Client-Side Caching

  1. Install Jedis 5.2.0
  2. Use the following code example to get started:
public class CSCExampleTest {
  public static void main() {
HostAndPort node = HostAndPort.from("localhost:6379");
JedisClientConfig clientConfig = DefaultJedisClientConfig.builder()
    .resp3()                // RESP3 protocol is required for client-side caching
    //.user("myuser")       // Redis server username (optional)
    //.password("mypass")   // Redis user's password (optional)
    .build();
CacheConfig cacheConfig = getCacheConfig();
Cache cache = CacheFactory.getCache(cacheConfig);
try (UnifiedJedis client = new UnifiedJedis(node, clientConfig, cache)) {
client.set("foo", "bar");
client.get("foo");
client.get("foo"); // Cache hit
System.out.println("Cache size: " + cache.getSize()); // 1
System.out.println(cache.getStats().toString());
//Let's change the value of "foo" to invalidate the value stored in the local cache
client.mset("foo", "new_value", "ignore_me:1", "another_value");
Thread.sleep(1000); // wait for the cache invalidation to happen
System.out.println(client.get("foo")); // Cache miss
System.out.println(cache.getStats().toString());
client.get("ignore_me:1"); // Client will ignore this key
System.out.println("Cache size: " + cache.getSize()); // still 1
// check the cache stats
System.out.println(cache.getStats().toString());
} catch (InterruptedException e) {
throw new RuntimeException(e);
}

</tr></table>

... (truncated)

Commits

Updates org.postgresql:postgresql from 42.7.4 to 42.7.5

Release notes

Sourced from org.postgresql:postgresql's releases.

v42.7.5

Changes

⬆️ Dependencies

... (truncated)

Changelog

Sourced from org.postgresql:postgresql's changelog.

[42.7.5] (2025-01-14 08:00:00 -0400)

Added

Fixed

Commits
  • 94a1693 update changelogs and increment version in gradle.properties for release (#3478)
  • ce54dfd chore: replace deprecated kotlinOptions with a replacement API
  • 398029e chore: avoid failure in osgi-test/onlyIf if -PjdkBuildVersion is missing at t...
  • 7245443 test: skip :pgjdbc-osgi-test:test when runnning tests with Java 8
  • 7747527 chore(deps): update dependency gradle to v8.12
  • bb07a4b chore(deps): update codecov/codecov-action digest to adfacf2
  • f545514 chore(deps): update dependency sbt/sbt to v1.10.7
  • 45df56c fix(deps): update dependency org.ops4j.pax.url:pax-url-aether to v2.6.15
  • b87e106 fix(deps): update junit5 monorepo to v5.11.4
  • 5603477 fix(deps): update dependency com.github.spotbugs:com.github.spotbugs.gradle.p...
  • Additional commits viewable in compare view

Updates io.zonky.test:embedded-postgres from 2.0.7 to 2.1.0

Release notes

Sourced from io.zonky.test:embedded-postgres's releases.

v2.1.0

Changes:

  • Fixed dependency conflicts with commons-io and commons-compress libraries (#133)
  • Removed unnecessary try-catch handling when extracting PostgreSQL binaries (#136)
  • Upgraded dependencies: (#135 #142 #140 #130 #128)
    • Flyway to 9.22.3
    • Liquibase to 4.30.0
    • PostgreSQL JDBC Driver to 42.7.4
    • Embedded Postgres Binaries to 14.15.0
    • Apache Commons Compress to 1.26.2
    • Apache Commons IO to 2.16.1
    • Apache Commons Codec to 1.17.1
    • Apache Commons Lang to 3.15.0
    • Tukaani XZ to 1.10
Commits
  • 8567f40 [maven-release-plugin] prepare release v2.1.0
  • fd49283 Merge pull request #142 from zonkyio/dependency-upgrades
  • 74552df upgrade postgresql driver, liquibase and junit dependencies
  • dbdc9e4 Merge pull request #141 from zonkyio/postgres-14.15
  • f25a23f #140 upgrade to embedded postgres binaries 14.15
  • 2f830bf Merge pull request #136 from turbanoff/avoid_bogus_catch
  • 389fc61 Merge pull request #137 from mikebell90/explain.rationale
  • 87a0377 Minor adjustments to the project description
  • 2b7e8b9 Clearer explanation for why the fork occurred, indicate the original library ...
  • 41b4546 Remove empty IOException try-catch handling when extracting PostgreSQL binaries
  • Additional commits viewable in compare view

Updates io.confluent:kafka-avro-serializer from 7.6.1 to 7.8.0

Commits
  • 145b030 Set Confluent to 7.8.0, Kafka to 7.8.0.
  • 6b58ab0 Added kafka-tools dependency (#3404) (#3405)
  • 5e40d15 DGS-18853 Revert change to default rule actions (#3334) (#3345)
  • c11bcb0 Merge branch '7.7.x' into 7.8.x by rayokota
  • 93e7b26 Merge branch '7.6.x' into 7.7.x by rayokota
  • 6e2c2b6 Merge branch '7.5.x' into 7.6.x by rayokota
  • b4f6a17 Merge branch '7.4.x' into 7.5.x by rayokota
  • bc2890a Return encrypted value instead of throwing in MetadataEncoderService (#76) (#...
  • 226ae3a Merge branch '7.7.x' into 7.8.x by kcorman0
  • 315ea8d Merge branch '7.6.x' into 7.7.x by kcorman0
  • Additional commits viewable in compare view

Updates io.confluent:kafka-schema-registry from 7.6.1 to 7.8.0

Updates io.confluent:kafka-schema-registry from 7.6.1 to 7.8.0

Updates no.nav.tjenestespesifikasjoner:servicemeldingMedKontaktinformasjon-v1-tjenestespesifikasjon from 1.2020.06.11-19.53-1cad83414166 to 1.2021.02.22-10.45-4201aaea72fb

Commits

Updates io.mockk:mockk from 1.13.11 to 1.13.16

Release notes

Sourced from io.mockk:mockk's releases.

1.13.16

What's Changed

Full Changelog: mockk/mockk@1.13.14...1.13.16

1.13.14

What's Changed

New Contributors

Full Changelog: mockk/mockk@1.13.13...1.13.14

1.13.13

What's Changed

New Contributors

Full Changelog: mockk/mockk@1.13.11...1.13.13

1.13.12

What's Changed

... (truncated)

Commits
  • 9d151cb Version bump
  • 59d8d16 Merge pull request #1332 from kpadhiamex/1073-fix-issue-with-mocking-value-cl...
  • f602f77 Used Result.success("") for Kotlin class comparison instead of string name co...
  • 580c1d7 Used Kotlin class comparison instead of name comparison
  • 2ddd49d Fix( Issue #1073): Bug fix for the issue with mocking value classes with coEv...
  • 1b3b01e Version bump
  • e7ec061 Merge pull request #1331 from kpadhiamex/1330-fix-for-relaxed-mocking-simple-...
  • f3a12a2 Merge branch 'master' into 1330-fix-for-relaxed-mocking-simple-value-when-pro...
  • 2264808 Reenable java 17
  • 0ebbb0e Run instrumented test on ubuntu-latest
  • Additional commits viewable in compare view

Updates no.nav.tjenestespesifikasjoner:altinn-correspondence-agency-external-basic from 1.2020.01.20-15.44-063ae9f84815 to 1.2021.02.22-10.45-4201aaea72fb

Commits

Updates jvm from 2.0.20 to 2.1.0

Release notes

Sourced from jvm's releases.

Kotlin 2.1.0

Changelog

Analysis API

New Features

  • KT-68603 KotlinDirectInheritorsProvider: add an option to ignore non-kotlin results

Performance Improvements

  • KT-70757 Performance problem in KaFirVisibilityChecker for KaFirPsiJavaClassSymbol

Fixes

  • KT-70437 Class reference is not resolvable
  • KT-57733 Analysis API: Use optimized ModuleWithDependenciesScopes in combined symbol providers
  • KT-72389 K2: False positive "Redundant 'protected' modifier" for protected property inside protected constructor from private or internal class
  • KT-69190 K2: False-positive "redundant private modifier"
  • KT-64984 Analysis API: Support Wasm target
  • KT-70375 K2: NPE at org.jetbrains.kotlin.analysis.api.fir.symbols.KaFirNamedClassSymbolBase.createPointer
  • KT-71259 K2 evaluator: Invalid smart cast info collecting for Code Fragments
  • KT-69360 Lack of implicit receiver for the last statement under lambda in scripts
  • KT-70890 Analysis API: Experiment with weak references to LL FIR/analysis sessions in session caches
  • KT-70657 Analysis API: Inner types from classes with generics are incorrectly represented by the compiled jars
  • KT-71055 Suspend calls inside 'analyze()' break the block guarantees
  • KT-70815 Analysis API: Implement stop-the-world session invalidation
  • KT-69819 K2 IDE: LHS type in callable references is unresolved when it has type arguments and is qualified
  • KT-68761 Analysis API: Experiment with limited-size cache in KaFirSessionProvider
  • KT-70384 Analysis API Standalone: The same class in the same two renamed jars is unresolved
  • KT-71067 Exceptions from references cancel Find Usages
  • KT-69535 Redesign 'containingSymbol'
  • KT-71025 K2 IDE: Scopes in "importingScopeContext" have reversed ordering and "indexInTower" values
  • KT-67483 K2 IDE: Serializable plugin causes infinite resolve recursion when there is a star import from a class with annotation call
  • KT-69416 K2 IDE / Completion: “No classifier found” on simple value creating
  • KT-70257 CCE: class kotlin.UInt cannot be cast to class java.lang.Number
  • KT-70376 K2 IDE / Kotlin Debugger: IAE “Only componentN functions should be cached this way, but got: toString” on evaluating toString() method for value class
  • KT-70264 AA: service registration via XML fails with AbstractMethodError in Lint CLI
  • KT-69950 Analysis API: Introduce isSubtypeOf(ClassId)
  • KT-68625 K2: “lazyResolveToPhase(STATUS) cannot be called from a transformer with a phase STATUS.”
  • KT-67665 K2: contract violation for value class with a constructor parameter with an implicit type
  • KT-67009 Analysis API: Add abbreviated type tests for type aliases from source modules
  • KT-69977 KaFirFunctionalType#getAbbreviation is always null
  • KT-68341 Analysis API: Expanded function types from libraries don't have an abbreviated type
  • KT-68857 Analysis API: Refactor annotations
  • KT-70386 Do not filter out overloads from different libraries in dangling files
  • KT-65552 K2: CANNOT_CHECK_FOR_ERASED in KtTypeCodeFragment
  • KT-65803 K2: Analysis API: KtFirTypeProvider#getSubstitutedSuperTypes throws an exception in the case of "Wrong number of type arguments"
  • KT-68896 Support VirtualFile binary dependency inputs to Analysis API modules
  • KT-69395 K2 IDE: incorrect overload selection from binary dependencies in a shared native source set

... (truncated)

Changelog

Sourced from jvm's changelog.

2.1.0

Analysis API

New Features

  • KT-68603 KotlinDirectInheritorsProvider: add an option to ignore non-kotlin results

Performance Improvements

  • KT-70757 Performance problem in KaFirVisibilityChecker for KaFirPsiJavaClassSymbol

Fixes

  • KT-70437 Class reference is not resolvable
  • KT-57733 Analysis API: Use optimized ModuleWithDependenciesScopes in combined symbol providers
  • KT-72389 K2: False positive "Redundant 'protected' modifier" for protected property inside protected constructor from private or internal class
  • KT-69190 K2: False-positive "redundant private modifier"
  • KT-64984 Analysis API: Support Wasm target
  • KT-70375 K2: NPE at org.jetbrains.kotlin.analysis.api.fir.symbols.KaFirNamedClassSymbolBase.createPointer
  • KT-71259 K2 evaluator: Invalid smart cast info collecting for Code Fragments
  • KT-69360 Lack of implicit receiver for the last statement under lambda in scripts
  • KT-70890 Analysis API: Experiment with weak references to LL FIR/analysis sessions in session caches
  • KT-70657 Analysis API: Inner types from classes with generics are incorrectly represented by the compiled jars
  • KT-71055 Suspend calls inside 'analyze()' break the block guarantees
  • KT-70815 Analysis API: Implement stop-the-world session invalidation
  • KT-69819 K2 IDE: LHS type in callable references is unresolved when it has type arguments and is qualified
  • KT-68761 Analysis API: Experiment with limited-size cache in KaFirSessionProvider
  • KT-70384 Analysis API Standalone: The same class in the same two renamed jars is unresolved
  • KT-71067 Exceptions from references cancel Find Usages
  • KT-69535 Redesign 'containingSymbol'
  • KT-71025 K2 IDE: Scopes in "importingScopeContext" have reversed ordering and "indexInTower" values
  • KT-67483 K2 IDE: Serializable plugin causes infinite resolve recursion when there is a star import from a class with annotation call
  • KT-69416 K2 IDE / Completion: “No classifier found” on simple value creating
  • KT-70257 CCE: class kotlin.UInt cannot be cast to class java.lang.Number
  • KT-70376 K2 IDE / Kotlin Debugger: IAE “Only componentN functions should be cached this way, but got: toString” on evaluating toString() method for value class
  • KT-70264 AA: service registration via XML fails with AbstractMethodError in Lint CLI
  • KT-69950 Analysis API: Introduce isSubtypeOf(ClassId)
  • KT-68625 K2: “lazyResolveToPhase(STATUS) cannot be called from a transformer with a phase STATUS.”
  • KT-67665 K2: contract violation for value class with a constructor parameter with an implicit type
  • KT-67009 Analysis API: Add abbreviated type tests for type aliases from source modules
  • KT-69977 KaFirFunctionalType#getAbbreviation is always null
  • KT-68341 Analysis API: Expanded function types from libraries don't have an abbreviated type
  • KT-68857 Analysis API: Refactor annotations
  • KT-70386 Do not filter out overloads from different libraries in dangling files
  • KT-65552 K2: CANNOT_CHECK_FOR_ERASED in KtTypeCodeFragment
  • KT-65803 K2: Analysis API: KtFirTypeProvider#getSubstitutedSuperTypes throws an exception in the case of "Wrong number of type arguments"
  • KT-68896 Support VirtualFile binary dependency inputs to Analysis API modules
  • KT-69395 K2 IDE: incorrect overload selection from binary dependencies in a shared native source set
  • KT-68573 ISE: "Unexpected constant value (kotlin/annotation/AnnotationTarget, CLASS)" at Kt1DescUtilsKt.toKtConstantValue()

... (truncated)

Commits
  • 5dd9cea Add ChangeLog for 2.1.0
  • be31f19 [Gradle] Fix documentation publishing to Kotlinlang
  • f959bf2 Add ChangeLog for 2.1.0-RC2
  • b21df7b [Gradle] Update info about versioning
  • a7dabb6 [Gradle] Fix templates extraction
  • 858b914 [Gradle] Add KDoc for KotlinTargetsDsl
  • 1026b47 [Gradle] Add KDoc for KotlinTargetWithTests
  • 54452c0 [Gradle] Add KDoc for KotlinTestRun
  • d10e47a [Gradle] Add KDoc for KotlinExecution

Bumps the minor-and-patch group with 13 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) | `1.5.6` | `1.5.16` |
| [io.micrometer:micrometer-registry-prometheus](https://github.com/micrometer-metrics/micrometer) | `1.12.7` | `1.14.3` |
| com.fasterxml.jackson.datatype:jackson-datatype-jsr310 | `2.17.2` | `2.18.2` |
| [redis.clients:jedis](https://github.com/redis/jedis) | `5.1.3` | `5.2.0` |
| [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) | `42.7.4` | `42.7.5` |
| [io.zonky.test:embedded-postgres](https://github.com/zonkyio/embedded-postgres) | `2.0.7` | `2.1.0` |
| [io.confluent:kafka-avro-serializer](https://github.com/confluentinc/schema-registry) | `7.6.1` | `7.8.0` |
| io.confluent:kafka-schema-registry | `7.6.1` | `7.8.0` |
| [no.nav.tjenestespesifikasjoner:servicemeldingMedKontaktinformasjon-v1-tjenestespesifikasjon](https://github.com/navikt/tjenestespesifikasjoner) | `1.2020.06.11-19.53-1cad83414166` | `1.2021.02.22-10.45-4201aaea72fb` |
| [io.mockk:mockk](https://github.com/mockk/mockk) | `1.13.11` | `1.13.16` |
| [no.nav.tjenestespesifikasjoner:altinn-correspondence-agency-external-basic](https://github.com/navikt/tjenestespesifikasjoner) | `1.2020.01.20-15.44-063ae9f84815` | `1.2021.02.22-10.45-4201aaea72fb` |
| [jvm](https://github.com/JetBrains/kotlin) | `2.0.20` | `2.1.0` |
| [com.gradleup.shadow](https://github.com/GradleUp/shadow) | `8.3.2` | `8.3.5` |



Updates `ch.qos.logback:logback-classic` from 1.5.6 to 1.5.16
- [Commits](qos-ch/logback@v_1.5.6...v_1.5.16)

Updates `io.micrometer:micrometer-registry-prometheus` from 1.12.7 to 1.14.3
- [Release notes](https://github.com/micrometer-metrics/micrometer/releases)
- [Commits](micrometer-metrics/micrometer@v1.12.7...v1.14.3)

Updates `com.fasterxml.jackson.datatype:jackson-datatype-jsr310` from 2.17.2 to 2.18.2

Updates `redis.clients:jedis` from 5.1.3 to 5.2.0
- [Release notes](https://github.com/redis/jedis/releases)
- [Commits](redis/jedis@v5.1.3...v5.2.0)

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

Updates `io.zonky.test:embedded-postgres` from 2.0.7 to 2.1.0
- [Release notes](https://github.com/zonkyio/embedded-postgres/releases)
- [Commits](zonkyio/embedded-postgres@v2.0.7...v2.1.0)

Updates `io.confluent:kafka-avro-serializer` from 7.6.1 to 7.8.0
- [Commits](confluentinc/schema-registry@v7.6.1...v7.8.0)

Updates `io.confluent:kafka-schema-registry` from 7.6.1 to 7.8.0

Updates `io.confluent:kafka-schema-registry` from 7.6.1 to 7.8.0

Updates `no.nav.tjenestespesifikasjoner:servicemeldingMedKontaktinformasjon-v1-tjenestespesifikasjon` from 1.2020.06.11-19.53-1cad83414166 to 1.2021.02.22-10.45-4201aaea72fb
- [Release notes](https://github.com/navikt/tjenestespesifikasjoner/releases)
- [Commits](https://github.com/navikt/tjenestespesifikasjoner/commits)

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

Updates `no.nav.tjenestespesifikasjoner:altinn-correspondence-agency-external-basic` from 1.2020.01.20-15.44-063ae9f84815 to 1.2021.02.22-10.45-4201aaea72fb
- [Release notes](https://github.com/navikt/tjenestespesifikasjoner/releases)
- [Commits](https://github.com/navikt/tjenestespesifikasjoner/commits)

Updates `jvm` from 2.0.20 to 2.1.0
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)
- [Commits](JetBrains/kotlin@v2.0.20...v2.1.0)

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

---
updated-dependencies:
- dependency-name: ch.qos.logback:logback-classic
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: io.micrometer:micrometer-registry-prometheus
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: com.fasterxml.jackson.datatype:jackson-datatype-jsr310
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: redis.clients:jedis
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: org.postgresql:postgresql
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: io.zonky.test:embedded-postgres
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: io.confluent:kafka-avro-serializer
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: io.confluent:kafka-schema-registry
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: io.confluent:kafka-schema-registry
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: no.nav.tjenestespesifikasjoner:servicemeldingMedKontaktinformasjon-v1-tjenestespesifikasjon
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: io.mockk:mockk
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: no.nav.tjenestespesifikasjoner:altinn-correspondence-agency-external-basic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: jvm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: com.gradleup.shadow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jan 20, 2025
@dependabot dependabot bot requested a review from a team as a code owner January 20, 2025 01:46
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