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 #575

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 3, 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.10
com.gradleup.shadow 8.3.2 8.3.6

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.10

Release notes

Sourced from jvm's releases.

Kotlin 2.1.10

Changelog

Compiler

  • KT-73858 Compose / iOS: NullPointerException on building
  • KT-73454 K2: Fix type parameters mapping for typealiases with inner RHS
  • KT-73043 K2 Compiler does not allow references to inner constructors with typealiases
  • KT-74040 Compilation of inner class usage does not check the visibility of parent class during compilation in different rounds
  • KT-73339 K2: "VerifyError: Bad type on operand stack" because of missing implicit cast on generic field receiver with star projection
  • KT-72585 K2: Compilation failure when upgrading to Kotlin 2.0.20+: Cannot replace top-level type with star projection: S
  • KT-73399 compile-time JVM codegen failure on a KProperty argument of a KSuspendFunction parameter
  • KT-72725 KMP: Unsupported actualization of inherited java field in expect class
  • KT-73153 K2: Standalone diagnostics on type arguments are not reported

Compose compiler

  • CMP-5680 Compose compiler: unexpected stability warnings for classes compiled with 2.0.10
  • b/381407900 Avoid adding Compose annotations on synthetic classes

IR. Inlining

  • KT-73981 [2.1.10] Suppress checkIncorrectCrossFileDeclarationAccess warning for Compose <class>$stable field access

JavaScript

  • KT-70778 Kotlin Js companion is undefined in production build
  • KT-73130 KJS: Missed break for do/while in generated JS code
  • KT-58797 Optimize the code generated for objects on JS and Wasm backends

Klibs

  • KT-70146 [KLIB Resolve] Don't fail on nonexistent transitive dependency
  • KT-73951 Workaround for "Partial linkage engine may not patch some discrepancies in IR when compiling Kotlin/Native static caches" in 2.1.10

Native

  • KT-73559 K/Native: AndroidNativeArm64 linking fails starting from Kotlin 2.1.0

Tools. CLI

  • KT-73967 JDK 25: "IllegalArgumentException: 25-ea" with EA builds

Tools. Daemon

  • KT-73311 "Unable to release compile session, maybe daemon is already down" flakiness

Tools. Gradle

... (truncated)

Changelog

Sourced from jvm's changelog.

2.1.10

Compiler

  • KT-73858 Compose / iOS: NullPointerException on building
  • KT-73454 K2: Fix type parameters mapping for typealiases with inner RHS
  • KT-73043 K2 Compiler does not allow references to inner constructors with typealiases
  • KT-74040 Compilation of inner class usage does not check the visibility of parent class during compilation in different rounds
  • KT-73339 K2: "VerifyError: Bad type on operand stack" because of missing implicit cast on generic field receiver with star projection
  • KT-72585 K2: Compilation failure when upgrading to Kotlin 2.0.20+: Cannot replace top-level type with star projection: S
  • KT-73399 compile-time JVM codegen failure on a KProperty argument of a KSuspendFunction parameter
  • KT-72725 KMP: Unsupported actualization of inherited java field in expect class
  • KT-73153 K2: Standalone diagnostics on type arguments are not reported

Compose compiler

  • CMP-5680 Compose compiler: unexpected stability warnings for classes compiled with 2.0.10
  • b/381407900 Avoid adding Compose annotations on synthetic classes

IR. Inlining

  • KT-73981 Cherry-pick the fix for KT-73482 to 2.1.10

JavaScript

  • KT-70778 Kotlin Js companion is undefined in production build
  • KT-73130 KJS: Missed break for do/while in generated JS code
  • KT-58797 Optimize the code generated for objects on JS and Wasm backends

Klibs

  • KT-70146 [KLIB Resolve] Don't fail on nonexistent transitive dependency
  • KT-73951 Workaround for "Partial linkage engine may not patch some discrepancies in IR when compiling Kotlin/Native static caches" in 2.1.10

Native

  • KT-73559 K/Native: AndroidNativeArm64 linking fails starting from Kotlin 2.1.0

Tools. CLI

  • KT-73967 JDK 25: "IllegalArgumentException: 25-ea" with EA builds

Tools. Daemon

  • KT-73311 "Unable to release compile session, maybe daemon is already down" flakiness

Tools. Gradle

  • KT-73728 'generatePomFileForMavenPublication' creates pom with dependencies with 'unspecified' version

... (truncated)

Commits
  • 6dff565 Add ChangeLog for 2.1.10-RC2
  • 5e6f6a6 [tests] Turned on passing tests
  • b968b02 [K/N] Skip missing dependencies during cache building
  • 8b57d44 [CMP] no metadata annotations on synthetic classes
  • f82abd9 [AA] Lazily compute the effective visibility in FIR stub-based deserializer
  • 618eaff [FIR] Don't render lazy attributes with null value in FIR renderer
  • 5f5af38 [FIR] Remove incorrect fast-path from @​PublishedAPI computation for binary de...
  • 435080b [FIR] Consider effective visibility of parent class during deserialization
  • 05e92d4 [Test] Reproduce KT-74040 in AA tests
  • c49acfb [Test] Render isPublicApi attribute in AA tests
  • Additional commits viewable in compare view

Updates com.gradleup.shadow from 8.3.2 to 8.3.6

Release notes

Sourced from com.gradleup.shadow's releases.

8.3.6

Added

  • Support Java 24. (#1222)

Changed

  • Exclude kotlin-stdlib from plugin dependencies. (#1093)

8.3.5

Fixed

  • Revert "Bump Java level to 11" (#1011).
    This reverts the change to maintain compatibility with 8.x versions. The Java level will be bumped to 11 or above in the next major release.

8.3.4

Fixed

  • Apply legacy plugin last, and declare capabilities for old plugins, fixes #964. (#991)

8.3.3

Changed

  • Disable Develocity integration by default. (#993)
Commits

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


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

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

Description has been truncated

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.10` |
| [com.gradleup.shadow](https://github.com/GradleUp/shadow) | `8.3.2` | `8.3.6` |



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.10
- [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.10)

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

---
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 requested a review from a team as a code owner February 3, 2025 01:38
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Feb 3, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 3, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Feb 3, 2025
@dependabot dependabot bot deleted the dependabot/gradle/minor-and-patch-50fe899d01 branch February 3, 2025 13:48
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