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 maven-dependencies group across 1 directory with 14 updates #394

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 Nov 3, 2024

Bumps the maven-dependencies group with 14 updates in the / directory:

Package From To
org.mockito:mockito-core 4.11.0 5.0.0
org.slf4j:slf4j-api 1.7.36 2.0.0
org.slf4j:slf4j-log4j12 1.7.36 2.0.0
org.junit.jupiter:junit-jupiter-api 5.11.1 5.11.3
org.junit.jupiter:junit-jupiter-params 5.11.1 5.11.3
org.junit.jupiter:junit-jupiter-engine 5.11.1 5.11.3
io.projectreactor:reactor-test 3.6.10 3.6.11
org.testcontainers:testcontainers 1.20.1 1.20.3
org.testcontainers:toxiproxy 1.20.1 1.20.3
org.testcontainers:junit-jupiter 1.20.1 1.20.3
org.apache.httpcomponents.client5:httpclient5 5.4 5.4.1
org.apache.maven.surefire:surefire-junit-platform 3.5.0 3.5.2
org.apache.maven.plugins:maven-surefire-plugin 3.5.0 3.5.2
org.apache.maven.plugins:maven-javadoc-plugin 3.10.0 3.11.1

Updates org.mockito:mockito-core from 4.11.0 to 5.0.0

Release notes

Sourced from org.mockito:mockito-core's releases.

v5.0.0

Mockito 5: prepare for future JDK versions

For a while now, we have seen an increase in problems/incompatibilities with recent versions of the JDK due to our usage of JVM-internal API. Most notably, JDK 17 made some changes which are incompatible with the current subclass mockmaker. Therefore, to prepare for the future of JDK, we are making some core changes to ensure Mockito keeps on working.

Switch the default mockmaker to mockito-inline

Back in Mockito 2.7.6, we published a new mockmaker based on the "inline bytecode" principle. This mockmaker creates mocks manipulating bytecode equivalent within the original class such that its method implementations hook into the normal Mockito machinery. As a comparison, the subclass mockmaker generates "real" subclasses for mocks, to mimic the same behavior. While the approaches are similar, the inline mockmaker avoids certain restrictions that the JDK imposes. For example, it does not violate module boundaries (introduced in JDK 9, but more heavily used in JDK 17) and avoids the leaking of the creation of the subclass.

Massive thanks to community member @​reta who implemented this change.

Note: this does not affect mockito-android nor testing on Android.

When should I still be using the subclass mockmaker?

There are legitimate remaining use cases for the subclass mockmaker. For example, on the Graal VM's native image, the inline mockmaker will not work and the subclass mockmaker is the appropriate choice. Additionally, if you would like to avoid mocking final classes, using the subclass mockmaker is a possibibility. Note however that if you solely want to use the subclass mockmaker to avoid mocking final, you will run into the above mentioned issues on JDK 17+. We want to leave this choice up to our users, which is why we will keep on supporting the subclass mockmaker.

If you want to use the subclass mockmaker instead, you can use the new mockito-subclass artifact (published on Maven Central along with all our other artifacts).

Update the minimum supported Java version to 11

Mockito 4 supports Java 8 and above. Similar to other open source projects, we are moving away from JDK 8 and to newer versions. The primary reason for moving away from JDK 8 is the increasing maintenance costs with keeping our own infrastructure working. Lately we have been running into more and more JDK 8 breakages. Additionally, while we want to support the newest JDK API's, our current solution to support both JDK 8 and newer versions causes issues with the SecurityManager. Since we want Mockito to work on the newest version and more and more businesses adopting JDK 11, we have decided to make the switch as well.

Massive thanks to community member @​reta who implemented this change.

What should I do if I still run JDK 8?

For JDK 8 and below, you can keep on using Mockito 4. This is similar to if you are using JDK 6, for which you can keep on using Mockito 2. The changes in Mockito 5 (for now) are primarily focused on the latest JDK versions, which means the API differences between Mockito 4 and 5 are minimal. However, over time this will most likely widen, so we do recommend adopting JDK 11 in the future.

New type() method on ArgumentMatcher

One of our most used public API's for customizing Mockito is the ArgumentMatcher interface.

... (truncated)

Commits
  • adf528d Bump versions.bytebuddy from 1.12.21 to 1.12.22 (#2864)
  • 2418419 Bump versions.junitJupiter from 5.9.1 to 5.9.2 (#2858)
  • 3d40cd5 Bump junit-platform-launcher from 1.9.1 to 1.9.2 (#2859)
  • 9bec8e3 Bump versions.errorprone from 2.17.0 to 2.18.0 (#2857)
  • a9595f5 Switch the default mockmaker to the inline mockmaker on JDK 17+ (#2834)
  • c5d7fbc Bump assertj-core from 3.23.1 to 3.24.1 (#2854)
  • dbd7f2f Bump versions.bytebuddy from 1.12.20 to 1.12.21 (#2852)
  • 4d62fa7 Bump junit from 1.1.4 to 1.1.5 (#2850)
  • b1b6d6a Bump espresso-core from 3.5.0 to 3.5.1 (#2849)
  • 7b5b8dd Remove use case for non-existent method VerificationWithTimeout#never (#2848)
  • Additional commits viewable in compare view

Updates org.slf4j:slf4j-api from 1.7.36 to 2.0.0

Commits
  • 0614d46 prepare release 2.0.0
  • b1afcd0 javadoc edits
  • 20cd3ad start work on 2.0.0-SNAPSHOT
  • aeebb61 prepare release 2.0.0-beta1
  • 1068cd0 javadoc changes
  • 4e4e56a add CheckReturnValue annotation in org.slf4j.helpers
  • 0dcfa19 check for return value in some oggingEventBuilder methods
  • e7ca8d1 start work on 2.0.0-beta1-SNAPSHOPT
  • 2314de9 add setMessage and log method to the fluent API
  • 508a796 set version to 2.0.0-beta0
  • Additional commits viewable in compare view

Updates org.slf4j:slf4j-log4j12 from 1.7.36 to 2.0.0

Commits
  • 0614d46 prepare release 2.0.0
  • b1afcd0 javadoc edits
  • 20cd3ad start work on 2.0.0-SNAPSHOT
  • aeebb61 prepare release 2.0.0-beta1
  • 1068cd0 javadoc changes
  • 4e4e56a add CheckReturnValue annotation in org.slf4j.helpers
  • 0dcfa19 check for return value in some oggingEventBuilder methods
  • e7ca8d1 start work on 2.0.0-beta1-SNAPSHOPT
  • 2314de9 add setMessage and log method to the fluent API
  • 508a796 set version to 2.0.0-beta0
  • Additional commits viewable in compare view

Updates org.slf4j:slf4j-log4j12 from 1.7.36 to 2.0.0

Commits
  • 0614d46 prepare release 2.0.0
  • b1afcd0 javadoc edits
  • 20cd3ad start work on 2.0.0-SNAPSHOT
  • aeebb61 prepare release 2.0.0-beta1
  • 1068cd0 javadoc changes
  • 4e4e56a add CheckReturnValue annotation in org.slf4j.helpers
  • 0dcfa19 check for return value in some oggingEventBuilder methods
  • e7ca8d1 start work on 2.0.0-beta1-SNAPSHOPT
  • 2314de9 add setMessage and log method to the fluent API
  • 508a796 set version to 2.0.0-beta0
  • Additional commits viewable in compare view

Updates org.junit.jupiter:junit-jupiter-api from 5.11.1 to 5.11.3

Release notes

Sourced from org.junit.jupiter:junit-jupiter-api's releases.

JUnit 5.11.3 = Platform 1.11.3 + Jupiter 5.11.3 + Vintage 5.11.3

See Release Notes.

Full Changelog: junit-team/junit5@r5.11.2...r5.11.3

JUnit 5.11.2 = Platform 1.11.2 + Jupiter 5.11.2 + Vintage 5.11.2

See Release Notes.

Full Changelog: junit-team/junit5@r5.11.1...r5.11.2

Commits
  • b20991e Release 5.11.3
  • e57b508 Finalize 5.11.3 release notes
  • fb1254c Allow repeating ExtendWith annotation on fields and parameters
  • a3192bd Fix package name comparison on Java 8 (#4077)
  • fcb7b01 Remove useless Order annotation
  • 57dfcb5 Allow repeating @…Source annotations when used as meta annotations
  • 09cd8b3 Add ArchUnit test for consistency of repeatable annotations
  • fa46a92 Hard-wrap at 90 characters
  • 8f45eea Find repeatable @⁠ExtendWith meta-annotations on fields again
  • b451122 Introduce release notes for 5.11.3
  • Additional commits viewable in compare view

Updates org.junit.jupiter:junit-jupiter-params from 5.11.1 to 5.11.3

Release notes

Sourced from org.junit.jupiter:junit-jupiter-params's releases.

JUnit 5.11.3 = Platform 1.11.3 + Jupiter 5.11.3 + Vintage 5.11.3

See Release Notes.

Full Changelog: junit-team/junit5@r5.11.2...r5.11.3

JUnit 5.11.2 = Platform 1.11.2 + Jupiter 5.11.2 + Vintage 5.11.2

See Release Notes.

Full Changelog: junit-team/junit5@r5.11.1...r5.11.2

Commits
  • b20991e Release 5.11.3
  • e57b508 Finalize 5.11.3 release notes
  • fb1254c Allow repeating ExtendWith annotation on fields and parameters
  • a3192bd Fix package name comparison on Java 8 (#4077)
  • fcb7b01 Remove useless Order annotation
  • 57dfcb5 Allow repeating @…Source annotations when used as meta annotations
  • 09cd8b3 Add ArchUnit test for consistency of repeatable annotations
  • fa46a92 Hard-wrap at 90 characters
  • 8f45eea Find repeatable @⁠ExtendWith meta-annotations on fields again
  • b451122 Introduce release notes for 5.11.3
  • Additional commits viewable in compare view

Updates org.junit.jupiter:junit-jupiter-engine from 5.11.1 to 5.11.3

Release notes

Sourced from org.junit.jupiter:junit-jupiter-engine's releases.

JUnit 5.11.3 = Platform 1.11.3 + Jupiter 5.11.3 + Vintage 5.11.3

See Release Notes.

Full Changelog: junit-team/junit5@r5.11.2...r5.11.3

JUnit 5.11.2 = Platform 1.11.2 + Jupiter 5.11.2 + Vintage 5.11.2

See Release Notes.

Full Changelog: junit-team/junit5@r5.11.1...r5.11.2

Commits
  • b20991e Release 5.11.3
  • e57b508 Finalize 5.11.3 release notes
  • fb1254c Allow repeating ExtendWith annotation on fields and parameters
  • a3192bd Fix package name comparison on Java 8 (#4077)
  • fcb7b01 Remove useless Order annotation
  • 57dfcb5 Allow repeating @…Source annotations when used as meta annotations
  • 09cd8b3 Add ArchUnit test for consistency of repeatable annotations
  • fa46a92 Hard-wrap at 90 characters
  • 8f45eea Find repeatable @⁠ExtendWith meta-annotations on fields again
  • b451122 Introduce release notes for 5.11.3
  • Additional commits viewable in compare view

Updates org.junit.jupiter:junit-jupiter-params from 5.11.1 to 5.11.3

Release notes

Sourced from org.junit.jupiter:junit-jupiter-params's releases.

JUnit 5.11.3 = Platform 1.11.3 + Jupiter 5.11.3 + Vintage 5.11.3

See Release Notes.

Full Changelog: junit-team/junit5@r5.11.2...r5.11.3

JUnit 5.11.2 = Platform 1.11.2 + Jupiter 5.11.2 + Vintage 5.11.2

See Release Notes.

Full Changelog: junit-team/junit5@r5.11.1...r5.11.2

Commits
  • b20991e Release 5.11.3
  • e57b508 Finalize 5.11.3 release notes
  • fb1254c Allow repeating ExtendWith annotation on fields and parameters
  • a3192bd Fix package name comparison on Java 8 (#4077)
  • fcb7b01 Remove useless Order annotation
  • 57dfcb5 Allow repeating @…Source annotations when used as meta annotations
  • 09cd8b3 Add ArchUnit test for consistency of repeatable annotations
  • fa46a92 Hard-wrap at 90 characters
  • 8f45eea Find repeatable @⁠ExtendWith meta-annotations on fields again
  • b451122 Introduce release notes for 5.11.3
  • Additional commits viewable in compare view

Updates org.junit.jupiter:junit-jupiter-engine from 5.11.1 to 5.11.3

Release notes

Sourced from org.junit.jupiter:junit-jupiter-engine's releases.

JUnit 5.11.3 = Platform 1.11.3 + Jupiter 5.11.3 + Vintage 5.11.3

See Release Notes.

Full Changelog: junit-team/junit5@r5.11.2...r5.11.3

JUnit 5.11.2 = Platform 1.11.2 + Jupiter 5.11.2 + Vintage 5.11.2

See Release Notes.

Full Changelog: junit-team/junit5@r5.11.1...r5.11.2

Commits
  • b20991e Release 5.11.3
  • e57b508 Finalize 5.11.3 release notes
  • fb1254c Allow repeating ExtendWith annotation on fields and parameters
  • a3192bd Fix package name comparison on Java 8 (#4077)
  • fcb7b01 Remove useless Order annotation
  • 57dfcb5 Allow repeating @…Source annotations when used as meta annotations
  • 09cd8b3 Add ArchUnit test for consistency of repeatable annotations
  • fa46a92 Hard-wrap at 90 characters
  • 8f45eea Find repeatable @⁠ExtendWith meta-annotations on fields again
  • b451122 Introduce release notes for 5.11.3
  • Additional commits viewable in compare view

Updates io.projectreactor:reactor-test from 3.6.10 to 3.6.11

Release notes

Sourced from io.projectreactor:reactor-test's releases.

v3.6.11

Reactor Core 3.6.11 is part of 2023.0.11 Release Train.

What's Changed

✨ New features and improvements

Full Changelog: reactor/reactor-core@v3.6.10...v3.6.11

Commits
  • 149aeaf [release] Prepare and release 3.6.11
  • 6933dae Bump byteBuddyVersion from 1.15.3 to 1.15.4 (#3905)
  • 3620c97 Bump byteBuddyVersion from 1.14.18 to 1.15.3 (#3893)
  • 7cc8c5f Bump actions/setup-java from 4.2.2 to 4.4.0 in /.github/workflows (#3895)
  • 30c2dbf Bump actions/checkout from 4.1.7 to 4.2.0 in /.github/workflows (#3896)
  • d0ed1ec Bump com.pivovarit:throwing-function from 1.5.1 to 1.6.1 (#3894)
  • ca457b7 Bump org.junit:junit-bom from 5.11.0 to 5.11.1 (#3891)
  • 8c0b00d Bump gradle/actions from 4.0.1 to 4.1.0 in /.github/workflows (#3889)
  • aa26c12 Fix MonoPublishOnTest flakiness (#3898)
  • bd5c4e5 Skip running daily and weekly builds against 3.5.x branch
  • Additional commits viewable in compare view

Updates org.testcontainers:testcontainers from 1.20.1 to 1.20.3

Release notes

Sourced from org.testcontainers:testcontainers's releases.

1.20.3

What's Changed

🚀 Features & Enhancements

🐛 Bug Fixes

📖 Documentation

🧹 Housekeeping

1.20.2

What's Changed

🚀 Features & Enhancements

... (truncated)

Commits

Updates org.testcontainers:toxiproxy from 1.20.1 to 1.20.3

Release notes

Sourced from org.testcontainers:toxiproxy's releases.

1.20.3

What's Changed

🚀 Features & Enhancements

🐛 Bug Fixes

📖 Documentation

🧹 Housekeeping

1.20.2

What's Changed

🚀 Features & Enhancements

... (truncated)

Commits

Updates org.testcontainers:junit-jupiter from 1.20.1 to 1.20.3

Release notes

Sourced from org.testcontainers:junit-jupiter's releases.

1.20.3

What's Changed

🚀 Features & Enhancements

🐛 Bug Fixes

📖 Documentation

🧹 Housekeeping

1.20.2

What's Changed

🚀 Features & Enhancements

... (truncated)

Commits

Updates org.testcontainers:toxiproxy from 1.20.1 to 1.20.3

Release notes

Sourced from org.testcontainers:toxiproxy's releases.

1.20.3

What's Changed

🚀 Features & Enhancements

🐛 Bug Fixes

📖 Documentation

🧹 Housekeeping

@smcvb
Copy link
Contributor

smcvb commented Nov 4, 2024

@dependabot show org.mockito:mockito-core ignore conditions

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 4, 2024

Ignore Conditions
Dependency Ignore Condition
org.mockito:mockito-core [>= 5.a, < 6]

@smcvb
Copy link
Contributor

smcvb commented Nov 4, 2024

Put on hold for now due to undesired major versions being included again.
Awaiting a response on this comment in the dependabot-core project before proceeding with this.

@smcvb smcvb self-assigned this Nov 4, 2024
@dependabot dependabot bot force-pushed the dependabot/maven/maven-dependencies-c45b5749c3 branch from dcdbd1d to 11faaff Compare November 10, 2024 17:59
@smcvb
Copy link
Contributor

smcvb commented Nov 11, 2024

@dependabot recreate

Bumps the maven-dependencies group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [org.mockito:mockito-core](https://github.com/mockito/mockito) | `4.11.0` | `5.0.0` |
| [org.slf4j:slf4j-api](https://github.com/qos-ch/slf4j) | `1.7.36` | `2.0.0` |
| [org.slf4j:slf4j-log4j12](https://github.com/qos-ch/slf4j) | `1.7.36` | `2.0.0` |
| [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5) | `5.11.1` | `5.11.3` |
| [org.junit.jupiter:junit-jupiter-params](https://github.com/junit-team/junit5) | `5.11.1` | `5.11.3` |
| [org.junit.jupiter:junit-jupiter-engine](https://github.com/junit-team/junit5) | `5.11.1` | `5.11.3` |
| [io.projectreactor:reactor-test](https://github.com/reactor/reactor-core) | `3.6.10` | `3.6.11` |
| [org.testcontainers:testcontainers](https://github.com/testcontainers/testcontainers-java) | `1.20.1` | `1.20.3` |
| [org.testcontainers:toxiproxy](https://github.com/testcontainers/testcontainers-java) | `1.20.1` | `1.20.3` |
| [org.testcontainers:junit-jupiter](https://github.com/testcontainers/testcontainers-java) | `1.20.1` | `1.20.3` |
| [org.apache.httpcomponents.client5:httpclient5](https://github.com/apache/httpcomponents-client) | `5.4` | `5.4.1` |
| org.apache.maven.surefire:surefire-junit-platform | `3.5.0` | `3.5.2` |
| [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) | `3.5.0` | `3.5.2` |
| [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) | `3.10.0` | `3.11.1` |



Updates `org.mockito:mockito-core` from 4.11.0 to 5.0.0
- [Release notes](https://github.com/mockito/mockito/releases)
- [Commits](mockito/mockito@v4.11.0...v5.0.0)

Updates `org.slf4j:slf4j-api` from 1.7.36 to 2.0.0
- [Commits](qos-ch/slf4j@v_1.7.36...v_2.0.0)

Updates `org.slf4j:slf4j-log4j12` from 1.7.36 to 2.0.0
- [Commits](qos-ch/slf4j@v_1.7.36...v_2.0.0)

Updates `org.slf4j:slf4j-log4j12` from 1.7.36 to 2.0.0
- [Commits](qos-ch/slf4j@v_1.7.36...v_2.0.0)

Updates `org.junit.jupiter:junit-jupiter-api` from 5.11.1 to 5.11.3
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](junit-team/junit5@r5.11.1...r5.11.3)

Updates `org.junit.jupiter:junit-jupiter-params` from 5.11.1 to 5.11.3
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](junit-team/junit5@r5.11.1...r5.11.3)

Updates `org.junit.jupiter:junit-jupiter-engine` from 5.11.1 to 5.11.3
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](junit-team/junit5@r5.11.1...r5.11.3)

Updates `org.junit.jupiter:junit-jupiter-params` from 5.11.1 to 5.11.3
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](junit-team/junit5@r5.11.1...r5.11.3)

Updates `org.junit.jupiter:junit-jupiter-engine` from 5.11.1 to 5.11.3
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](junit-team/junit5@r5.11.1...r5.11.3)

Updates `io.projectreactor:reactor-test` from 3.6.10 to 3.6.11
- [Release notes](https://github.com/reactor/reactor-core/releases)
- [Commits](reactor/reactor-core@v3.6.10...v3.6.11)

Updates `org.testcontainers:testcontainers` from 1.20.1 to 1.20.3
- [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.3)

Updates `org.testcontainers:toxiproxy` from 1.20.1 to 1.20.3
- [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.3)

Updates `org.testcontainers:junit-jupiter` from 1.20.1 to 1.20.3
- [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.3)

Updates `org.testcontainers:toxiproxy` from 1.20.1 to 1.20.3
- [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.3)

Updates `org.testcontainers:junit-jupiter` from 1.20.1 to 1.20.3
- [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.3)

Updates `org.apache.httpcomponents.client5:httpclient5` from 5.4 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.4...rel/v5.4.1)

Updates `org.apache.maven.surefire:surefire-junit-platform` from 3.5.0 to 3.5.2

Updates `org.apache.maven.plugins:maven-surefire-plugin` from 3.5.0 to 3.5.2
- [Release notes](https://github.com/apache/maven-surefire/releases)
- [Commits](apache/maven-surefire@surefire-3.5.0...surefire-3.5.2)

Updates `org.apache.maven.plugins:maven-surefire-plugin` from 3.5.0 to 3.5.2
- [Release notes](https://github.com/apache/maven-surefire/releases)
- [Commits](apache/maven-surefire@surefire-3.5.0...surefire-3.5.2)

Updates `org.apache.maven.plugins:maven-javadoc-plugin` from 3.10.0 to 3.11.1
- [Release notes](https://github.com/apache/maven-javadoc-plugin/releases)
- [Commits](apache/maven-javadoc-plugin@maven-javadoc-plugin-3.10.0...maven-javadoc-plugin-3.11.1)

---
updated-dependencies:
- dependency-name: org.mockito:mockito-core
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: maven-dependencies
- dependency-name: org.slf4j:slf4j-api
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven-dependencies
- dependency-name: org.slf4j:slf4j-log4j12
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven-dependencies
- dependency-name: org.slf4j:slf4j-log4j12
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: maven-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter-api
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter-params
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter-engine
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter-params
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter-engine
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: io.projectreactor:reactor-test
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.testcontainers:testcontainers
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.testcontainers:toxiproxy
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.testcontainers:junit-jupiter
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.testcontainers:toxiproxy
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.testcontainers:junit-jupiter
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.apache.httpcomponents.client5:httpclient5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.apache.maven.surefire:surefire-junit-platform
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.apache.maven.plugins:maven-surefire-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.apache.maven.plugins:maven-surefire-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-dependencies
- dependency-name: org.apache.maven.plugins:maven-javadoc-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/maven/maven-dependencies-c45b5749c3 branch from 11faaff to faa8129 Compare November 11, 2024 08:12
Copy link

sonarcloud bot commented Nov 11, 2024

@smcvb
Copy link
Contributor

smcvb commented Nov 11, 2024

I have constructed an issue at the dependabot-core project for the persisting issues with undesired dependency upgrades of projects that no longer support JDK8, like Mockito 5 and Spring Boot 3.
Until those are resolved, this issue is put on hold.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant