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

Update non-major #3845

Merged
merged 1 commit into from
Sep 11, 2024
Merged

Update non-major #3845

merged 1 commit into from
Sep 11, 2024

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Apr 1, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
io.cucumber:cucumber-spring (source) 7.16.1 -> 7.18.1 age adoption passing confidence
io.cucumber:cucumber-junit-platform-engine (source) 7.16.1 -> 7.18.1 age adoption passing confidence
io.cucumber:cucumber-java8 (source) 7.16.1 -> 7.18.1 age adoption passing confidence
io.cucumber:cucumber-java (source) 7.16.1 -> 7.18.1 age adoption passing confidence
com.google.errorprone:error_prone_core (source) 2.26.1 -> 2.31.0 age adoption passing confidence
com.puppycrawl.tools:checkstyle (source) 10.14.2 -> 10.18.1 age adoption passing confidence
jakarta.servlet:jakarta.servlet-api (source) 6.0.0 -> 6.1.0 age adoption passing confidence
org.apache.commons:commons-lang3 (source) 3.14.0 -> 3.17.0 age adoption passing confidence
io.github.classgraph:classgraph 4.8.168 -> 4.8.175 age adoption passing confidence
org.awaitility:awaitility (source) 4.2.1 -> 4.2.2 age adoption passing confidence
org.apache.avro:avro (source) 1.11.3 -> 1.12.0 age adoption passing confidence
org.apache.activemq:activemq-client (source) 6.1.0 -> 6.1.3 age adoption passing confidence
ch.qos.logback:logback-classic (source, changelog) 1.5.3 -> 1.5.8 age adoption passing confidence
ch.qos.logback:logback-core (source, changelog) 1.5.3 -> 1.5.8 age adoption passing confidence
org.projectlombok:lombok (source) 1.18.32 -> 1.18.34 age adoption passing confidence
org.junit.jupiter:junit-jupiter (source) 5.10.2 -> 5.11.0 age adoption passing confidence
org.junit.jupiter:junit-jupiter-api (source) 5.10.2 -> 5.11.0 age adoption passing confidence
org.assertj:assertj-core (source) 3.25.3 -> 3.26.3 age adoption passing confidence
io.qameta.allure:allure-cucumber7-jvm (source) 2.26.0 -> 2.29.0 age adoption passing confidence
io.cucumber:cucumber-junit (source) 7.16.1 -> 7.18.1 age adoption passing confidence
com.google.code.gson:gson 2.10.1 -> 2.11.0 age adoption passing confidence
com.squareup.retrofit2:retrofit 2.10.0 -> 2.11.0 age adoption passing confidence
org.apache.tomcat:tomcat 10.1.20 -> 10.1.29 age adoption passing confidence
jacoco (source) 0.8.11 -> 0.8.12 age adoption passing confidence

Release Notes

cucumber/cucumber-jvm (io.cucumber:cucumber-spring)

v7.18.1

Changed
  • [Core] Include parameterized scenario name in JUnit and TestNG XML report
Fixed

v7.18.0

Added
  • [Core] The TeamCityPlugin for IntelliJ IDEA now uses the hook's method name for the name of the hook itself. (#​2798 V.V. Belov)
  • [Core] Allow feature with line syntax to target rules and examples. (#​2884 M.P. Korstanje)

v7.17.0

Added
  • [JUnit Platform Engine] Support for parameters cucumber.junit-platform.naming-strategy.short.example-name and cucumber.junit-platform.naming-strategy.long.example-name (#​2743 V.V. Belov)
Changed
  • [Jakarta CDI] Update dependency jakarta.enterprise:jakarta.enterprise.cdi-api to v4.1.0
  • [TestNG] Update dependency org.testng:testng to v7.10.1
  • [Core] Use a message based TestNG XML Formatter (#​2863 M.P. Korstanje)
google/error-prone (com.google.errorprone:error_prone_core)

v2.31.0: Error Prone 2.31.0

This is the last planned minor release of Error Prone that will support running on JDK 11, see #​3803. Using Error Prone to compile code that is deployed to earlier versions will continue to be fully supported, but will require using JDK 17 or newer for compilation and setting --release or -source/-target/-bootclasspath.

Changes:

New checks:

  • AutoValueBoxedValues: AutoValue instances should not usually contain boxed types that are not Nullable. We recommend removing the unnecessary boxing.

Full changelog: google/error-prone@v2.30.0...v2.31.0

v2.30.0: Error Prone 2.30.0

New checks:

Closed issues: #​632, #​4487

Full changelog: google/error-prone@v2.29.2...v2.30.0

v2.29.2: Error Prone 2.29.2

This release contains all of the changes in 2.29.0 and 2.29.1, plus:

Full Changelog: google/error-prone@v2.29.1...v2.29.2

v2.29.1: Error Prone 2.29.1

This release contains all of the changes in 2.29.0, plus:

Full Changelog: google/error-prone@v2.29.0...v2.29.1

v2.29.0: Error Prone 2.29.0

New checks:

Closed issues: #​4318, #​4429, #​4467

Full Changelog: google/error-prone@v2.28.0...v2.29.0

v2.28.0: Error Prone 2.28.0

Error Prone nows supports the latest JDK 23 EA builds (#​4412, #​4415).

Closed issues:

  • Improved errors for invalid check severities (#​4306).
  • Fix a crash with nested instanceof patterns (#​4349).
  • Fix a crash in JUnitIncompatibleType (#​4377).
  • In ObjectEqualsForPrimitives, don't suggest replacing equal with == for floating-point values (#​4392).

New checks:

Full Changelog: google/error-prone@v2.27.1...v2.28.0

v2.27.1: Error Prone 2.27.1

This release contains all of the changes in 2.27.0, plus a bug fix to ClassInitializationDeadlock (https://github.com/google/error-prone/issues/4378)

Full Changelog: google/error-prone@v2.27.0...v2.27.1

v2.27.0: Error Prone 2.27.0

New checks:

  • ClassInitializationDeadlock detects class initializers that reference subtypes of the current class, which can result in deadlocks.
  • MockitoDoSetup suggests using when/thenReturn over doReturn/when for additional type safety.
  • VoidUsed suggests using a literal null instead of referring to a Void-typed variable.

Modified checks:

Closed issues: #​4291. #​4308, #​4343, #​4320

Full Changelog: google/error-prone@v2.26.1...v2.27.0

checkstyle/checkstyle (com.puppycrawl.tools:checkstyle)

v10.18.1

v10.18.0

Compare Source

v10.17.0

v10.16.0

v10.15.0

Compare Source

eclipse-ee4j/servlet-api (jakarta.servlet:jakarta.servlet-api)

v6.1.0

apache/avro (org.apache.avro:avro)

v1.12.0

Compare Source

projectlombok/lombok (org.projectlombok:lombok)

v1.18.34

allure-framework/allure-java (io.qameta.allure:allure-cucumber7-jvm)

v2.29.0

Compare Source

What's Changed

🚀 New Features
🐞 Bug Fixes
⬆️ Dependency Updates

Full Changelog: allure-framework/allure-java@2.28.1...2.29.0

v2.28.1

Compare Source

What's Changed
🐞 Bug Fixes
⬆️ Dependency Updates

Full Changelog: allure-framework/allure-java@2.28.0...2.28.1

v2.28.0

Compare Source

What's Changed
🔬 Improvements
🐞 Bug Fixes
⬆️ Dependency Updates
👻 Internal changes

Full Changelog: allure-framework/allure-java@2.27.0...2.28.0

v2.27.0

Compare Source

What's Changed

🔬 Improvements
🐞 Bug Fixes

New Contributors

Full Changelog: allure-framework/allure-java@2.26.0...2.27.0

square/retrofit (com.squareup.retrofit2:retrofit)

v2.11.0

Compare Source

New

  • The built-in OptionalConverterFactory is now public to allow installing it before other converters which consume all types (e.g., Moshi, Gson, Jackson, etc.).

Fixed

  • Ensure that exceptions thrown from failure to parse method annotations can be observed by multiple threads/callers. Previously only the first caller would see the actual parsing exception and other callers would get a cryptic ClassCastException.
jacoco/jacoco (jacoco)

v0.8.12: 0.8.12

New Features

  • JaCoCo now officially supports Java 22 (GitHub #​1596).
  • Experimental support for Java 23 class files (GitHub #​1553).

Fixed bugs

  • Branches added by the Kotlin compiler for functions with default arguments and having more than 32 parameters are filtered out during generation of report (GitHub #​1556).
  • Branch added by the Kotlin compiler version 1.5.0 and above for reading from lateinit property is filtered out during generation of report (GitHub #​1568).

Non-functional Changes

  • JaCoCo now depends on ASM 9.7 (GitHub #​1600).

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@forking-renovate forking-renovate bot added the renovate https://renovate.whitesourcesoftware.com [FINERACT-962] label Apr 1, 2024
@renovate-bot renovate-bot changed the title fix(deps): update dependency com.squareup.retrofit2:retrofit to v2.11.0 fix(deps): update non-major Apr 1, 2024
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 5 times, most recently from f43d0d0 to 3ec568a Compare April 5, 2024 17:21
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 5 times, most recently from af98646 to 8bc8798 Compare April 15, 2024 06:03
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 3 times, most recently from 6acec1e to 659f50f Compare April 18, 2024 23:02
@renovate-bot renovate-bot changed the title fix(deps): update non-major Update non-major Apr 19, 2024
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 2 times, most recently from 77a0018 to a2f6a0c Compare April 23, 2024 22:40
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 3 times, most recently from 2a3da20 to bb278fa Compare May 1, 2024 17:07
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 3 times, most recently from a8775df to 31e0747 Compare May 19, 2024 21:12
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 3 times, most recently from 228f0a7 to 39dc96c Compare May 31, 2024 20:10
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 2 times, most recently from 0953077 to e28fbc4 Compare June 11, 2024 12:46
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 2 times, most recently from 349269d to 4b320e2 Compare June 19, 2024 18:24
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 2 times, most recently from d1e5863 to 888cd76 Compare June 28, 2024 04:52
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 3 times, most recently from 97ac1cb to 0354a9b Compare July 12, 2024 16:03
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 5 times, most recently from da7cb2f to ad07b4a Compare July 18, 2024 22:41
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 2 times, most recently from e61cba6 to 6880486 Compare August 5, 2024 14:43
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 4 times, most recently from b9598a2 to 3814d58 Compare August 20, 2024 08:53
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 4 times, most recently from 441bab2 to ea52f9c Compare August 30, 2024 14:03
@renovate-bot renovate-bot force-pushed the renovate/non-major branch 2 times, most recently from bb14581 to 92a674f Compare September 7, 2024 13:29
@galovics galovics merged commit b4a68ba into apache:develop Sep 11, 2024
9 checks passed
@renovate-bot renovate-bot deleted the renovate/non-major branch September 11, 2024 14:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
renovate https://renovate.whitesourcesoftware.com [FINERACT-962]
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants