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 all non-major dependencies (except core Kotlin) #1595

Merged
merged 3 commits into from
Mar 14, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 2, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.apache.maven.plugins:maven-dependency-plugin 3.4.0 -> 3.5.0 age adoption passing confidence
com.rudikershaw.gitbuildhook:git-build-hook-maven-plugin (source) 3.3.0 -> 3.4.1 age adoption passing confidence
org.codehaus.mojo:versions-maven-plugin (source) 2.14.2 -> 2.15.0 age adoption passing confidence
org.apache.maven.plugins:maven-failsafe-plugin 3.0.0-M7 -> 3.0.0-M9 age adoption passing confidence
org.apache.maven.plugins:maven-surefire-plugin 3.0.0-M7 -> 3.0.0-M9 age adoption passing confidence
org.apache.maven.plugins:maven-assembly-plugin 3.4.2 -> 3.5.0 age adoption passing confidence
org.apache.maven.plugins:maven-deploy-plugin 3.0.0 -> 3.1.0 age adoption passing confidence
org.apache.maven.plugins:maven-compiler-plugin 3.10.1 -> 3.11.0 age adoption passing confidence
org.assertj:assertj-core 3.23.1 -> 3.24.2 age adoption passing confidence
org.apache.maven.plugins:maven-plugin-plugin 3.7.0 -> 3.8.1 age adoption passing confidence
org.apache.maven.plugin-tools:maven-plugin-annotations 3.7.0 -> 3.8.1 age adoption passing confidence
org.jetbrains.dokka:kotlin-as-java-plugin 1.7.20 -> 1.8.10 age adoption passing confidence
org.jetbrains.dokka:dokka-maven-plugin 1.7.20 -> 1.8.10 age adoption passing confidence
org.junit.platform:junit-platform-suite-engine (source) 1.9.1 -> 1.9.2 age adoption passing confidence
org.junit.jupiter:junit-jupiter (source) 5.9.1 -> 5.9.2 age adoption passing confidence
org.junit.vintage:junit-vintage-engine (source) 5.9.1 -> 5.9.2 age adoption passing confidence
org.jetbrains.kotlinx:kotlinx-serialization-json-jvm 1.4.1 -> 1.5.0 age adoption passing confidence
org.jetbrains.kotlinx:kotlinx-serialization-json 1.4.1 -> 1.5.0 age adoption passing confidence
org.jetbrains.kotlinx:kotlinx-serialization-core-jvm 1.4.1 -> 1.5.0 age adoption passing confidence
org.jetbrains.kotlinx:kotlinx-serialization-core 1.4.1 -> 1.5.0 age adoption passing confidence
com.soebes.itf.jupiter.extension:itf-maven-plugin 0.11.0 -> 0.12.0 age adoption passing confidence
com.soebes.itf.jupiter.extension:itf-jupiter-extension 0.11.0 -> 0.12.0 age adoption passing confidence
org.apache.maven:maven-compat 3.8.6 -> 3.9.0 age adoption passing confidence
org.apache.maven:maven-plugin-api 3.8.6 -> 3.9.0 age adoption passing confidence
org.apache.maven:maven-core 3.8.6 -> 3.9.0 age adoption passing confidence

Release Notes

rudikershaw/git-build-hook

v3.4.1

Compare Source

  • Speculative fix for thread safety issues.

v3.4.0

Compare Source

  • Fixed and issue where the configure goal would fail when running the plugin in a git worktree. Changing the configure goal configuration in a worktree will not take affect until a build is run with those changes outside of the worktree.
  • The readonly attribute (which shouldn't have been there in the first place) was removed from some goal parameters. This removes some annoying warnings from the build output.
  • Temporary test artefacts from development of this plugin will not longer be deployed to Maven Central with the main artefact.
mojohaus/versions

v2.15.0

Compare Source

Changes

🚀 New features and improvements

🐛 Bug Fixes

📦 Dependency updates

👻 Maintenance

Kotlin/dokka

v1.8.10: 1.8.10 Beta

Compare Source

Dokka's documentation has been entirely rewritten and can now be found on kotlinlang.org:

  • More examples, including Groovy DSL for Gradle project configuration
  • More guidelines to help beginners
  • More details for complex projects

Note: Version 1.8.0 was skipped due to a Metaspace memory leak in Kotlin's reflection (KT-56093). Dokka 1.8.10 should be fully compatible with Kotlin 1.8.0.

Improvements

  • Revise project documentation and examples (#​2728, #​2737, #​2736). Thanks to @​sarahhaggarty for helping!
  • Support generating documentation for Kotlin/Wasm projects (#​2814). Thanks to @​igoriakovlev!
  • Move the contents of Inheritors, Parameters, See also and Samples tabs into the main declaration description (#​2688).
  • Add Members and Members & Extensions tabs to class-like declaration pages (#​2764).
  • Display source set / platform indicators at all times, which should help identify the supported platform of single-platform libraries and modules. (#​2847).
  • Generate the default no-arg constructor for Java declarations (#​2765).

Bugfixes

  • Fixed analysis environment not being properly disposed (#​2755).
  • Fixed nondeterministic sorting of function/property overloads (#​2784).
  • Fixed inconsistent alphabetical order of element groups in index and navigation (#​2861).
  • Fixed constructors being rendered as functions (#​2689).
  • Fixed default values for var properties being displayed (#​2717).
  • Fixed source links leading to the KDoc instead of the declaration (#​2724).
  • Fixed thread-safety issues in DokkaLogger (#​2827).
  • Fixed documentation not being inherited in case of diamond inheritance (#​2686).
Gradle Plugin
  • Fixed NoSuchMethodError when running under Gradle 8 (#​2796).
  • Fixed possible metaspace leaks due to external thread locals not being disposed (#​2678).
  • Fixed premature initialization of outputDirectory input property (#​556).
  • Fixed premature initialization of moduleVersion input property (#​2799). Thanks to @​JavierSegoviaCordoba!
  • Fixed unnecessary snapshotting of source link directory input which led to performance problems (#​2807).
  • Fixed missing group and description for MultiModule tasks (#​2806). Thanks to @​TWiStErRob!
Javadoc
  • Fixed truncation of module and package description after the first sentence (#​2055). Thanks to @​BlackAnubis7!
  • Fixed rendering of empty/useless Kotlin companion objects (#​200, #​2086)
  • Fixed leaking configuration/environment details in generated links (#​2803).
  • Fixed incorrect links when javadoc.jar produced by Dokka is imported into IntelliJ IDEA / Android Studio (#​2734). Thanks to @​bomberaya!

Plugin API

  • Mark Plugin API as experimental (#​2716).

Infrastructure

  • Enable Gradle build cache, and add caching of Maven dependencies for GitHub Actions (#​2711, #​2722). Thanks to @​aSemy!
  • Add concurrency cancellation for build/test GitHub Actions (#​2710). Thanks to @​aSemy!

Other

Kotlin/kotlinx.serialization

v1.5.0

Compare Source

==================

This release contains all features and bugfixes from 1.5.0-RC plus some experimental features and bugfixes on its own (see below).
Kotlin 1.8.10 is used as a default.

HoconEncoder and HoconDecoder interfaces and HOCON-specific serializers

These interfaces work in a way similar to JsonEncoder and JsonDecoder: they allow intercepting (de)serialization process,
making writing if custom HOCON-specific serializers easier. New ConfigMemorySizeSerializer and JavaDurationSerializer already make use of them.
See more details in the PR.
Big thanks to Alexander Mikhailov for contributing this!

Ability to read buffered huge strings in custom Json deserializers

New interface ChunkedDecoder allows you to read huge strings that may not fit in memory by chunks.
Currently, this interface is only implemented by Json decoder that works with strings and streams,
but we may expand it later, if there's a demand for it.
See more details in the PR authored by Alexey Sviridov.

Bugfixes
  • Improve runtime exceptions messages (#​2180)
  • Added support for null values for nullable enums in lenient mode (#​2176)
  • Prevent class loaders from leaking when using ClassValue cache (#​2175)

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 has been generated by Mend Renovate. View repository job log here.

@github-actions
Copy link
Contributor

github-actions bot commented Jan 2, 2023

JUnit Tests (Windows, EnricoMi/publish-unit-test-result-action@v2)

2 018 tests  +4   2 003 ✔️ +4   17m 3s ⏱️ - 2m 1s
   164 suites  - 1        15 💤 ±0 
   164 files    - 1          0 ±0 

Results for commit 1ed5fc0. ± Comparison against base commit 4af545e.

This pull request removes 696 and adds 700 tests. Note that renamed tests count towards both.
Comments inside binary expressions ‑ case 1()[fix] should remain unchanged if properly indented [1]
Comments inside binary expressions ‑ case 1()[warn] should raise no warnings if properly indented [2]
Comments inside binary expressions ‑ case 10()[fix] should remain unchanged if properly indented [1]
Comments inside binary expressions ‑ case 10()[warn] should raise no warnings if properly indented [2]
Comments inside binary expressions ‑ case 11()[fix] should remain unchanged if properly indented [1]
Comments inside binary expressions ‑ case 11()[warn] should raise no warnings if properly indented [2]
Comments inside binary expressions ‑ case 12()[fix] should remain unchanged if properly indented [1]
Comments inside binary expressions ‑ case 12()[warn] should raise no warnings if properly indented [2]
Comments inside binary expressions ‑ case 2()[fix] should remain unchanged if properly indented [1]
Comments inside binary expressions ‑ case 2()[warn] should raise no warnings if properly indented [2]
…
IndentationRuleFixTest Multi-line string literals ‑ case 1 - mis-aligned opening and closing quotes(Path)
IndentationRuleFixTest Multi-line string literals ‑ case 2(Path)
IndentationRuleFixTest Multi-line string literals ‑ case 3(Path)
IndentationRuleFixTest Multi-line string literals ‑ case 4 - mis-aligned opening and closing quotes(Path)
IndentationRuleTest Comments inside binary expressions ‑ case 1()[fix] should remain unchanged if properly indented [1]
IndentationRuleTest Comments inside binary expressions ‑ case 1()[warn] should raise no warnings if properly indented [2]
IndentationRuleTest Comments inside binary expressions ‑ case 10()[fix] should remain unchanged if properly indented [1]
IndentationRuleTest Comments inside binary expressions ‑ case 10()[warn] should raise no warnings if properly indented [2]
IndentationRuleTest Comments inside binary expressions ‑ case 11()[fix] should remain unchanged if properly indented [1]
IndentationRuleTest Comments inside binary expressions ‑ case 11()[warn] should raise no warnings if properly indented [2]
…

♻️ This comment has been updated with latest results.

@github-actions
Copy link
Contributor

github-actions bot commented Jan 2, 2023

JUnit Tests (macOS, EnricoMi/publish-unit-test-result-action@v2)

   164 files  ±  0     164 suites  ±0   22m 36s ⏱️ - 3m 5s
2 018 tests +23  1 980 ✔️ +4  34 💤 +19  4 ±0 
2 022 runs  +23  1 984 ✔️ +4  34 💤 +19  4 ±0 

For more details on these failures, see this check.

Results for commit 1ed5fc0. ± Comparison against base commit 4af545e.

This pull request removes 696 and adds 719 tests. Note that renamed tests count towards both.
Comments inside binary expressions ‑ case 1()[fix] should remain unchanged if properly indented [1]
Comments inside binary expressions ‑ case 1()[warn] should raise no warnings if properly indented [2]
Comments inside binary expressions ‑ case 10()[fix] should remain unchanged if properly indented [1]
Comments inside binary expressions ‑ case 10()[warn] should raise no warnings if properly indented [2]
Comments inside binary expressions ‑ case 11()[fix] should remain unchanged if properly indented [1]
Comments inside binary expressions ‑ case 11()[warn] should raise no warnings if properly indented [2]
Comments inside binary expressions ‑ case 12()[fix] should remain unchanged if properly indented [1]
Comments inside binary expressions ‑ case 12()[warn] should raise no warnings if properly indented [2]
Comments inside binary expressions ‑ case 2()[fix] should remain unchanged if properly indented [1]
Comments inside binary expressions ‑ case 2()[warn] should raise no warnings if properly indented [2]
…
IndentationRuleFixTest Multi-line string literals ‑ case 1 - mis-aligned opening and closing quotes(Path)
IndentationRuleFixTest Multi-line string literals ‑ case 2(Path)
IndentationRuleFixTest Multi-line string literals ‑ case 3(Path)
IndentationRuleFixTest Multi-line string literals ‑ case 4 - mis-aligned opening and closing quotes(Path)
IndentationRuleTest Comments inside binary expressions ‑ case 1()[fix] should remain unchanged if properly indented [1]
IndentationRuleTest Comments inside binary expressions ‑ case 1()[warn] should raise no warnings if properly indented [2]
IndentationRuleTest Comments inside binary expressions ‑ case 10()[fix] should remain unchanged if properly indented [1]
IndentationRuleTest Comments inside binary expressions ‑ case 10()[warn] should raise no warnings if properly indented [2]
IndentationRuleTest Comments inside binary expressions ‑ case 11()[fix] should remain unchanged if properly indented [1]
IndentationRuleTest Comments inside binary expressions ‑ case 11()[warn] should raise no warnings if properly indented [2]
…

♻️ This comment has been updated with latest results.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9990ed3 to cb9e51b Compare January 6, 2023 02:30
@renovate renovate bot changed the title Update all non-major dependencies (except core Kotlin) to v3.8.7 Update all non-major dependencies (except core Kotlin) Jan 6, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a378f41 to b241144 Compare January 12, 2023 00:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4c3e98e to 8c6616b Compare January 17, 2023 02:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 51c8bc7 to d3f24fa Compare February 6, 2023 15:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 3f81a2c to 61bf5eb Compare February 14, 2023 04:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 797d85e to f6db669 Compare February 27, 2023 10:43
@nulls nulls enabled auto-merge (squash) February 27, 2023 10:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from a749f3d to ef431c5 Compare March 6, 2023 08:49
@nulls nulls self-assigned this Mar 6, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ef431c5 to d6700f4 Compare March 6, 2023 09:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d6700f4 to 856d61d Compare March 13, 2023 23:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 856d61d to 1ed5fc0 Compare March 14, 2023 08:36
@renovate
Copy link
Contributor Author

renovate bot commented Mar 14, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@codecov
Copy link

codecov bot commented Mar 14, 2023

Codecov Report

Merging #1595 (a59648d) into master (4af545e) will not change coverage.
The diff coverage is n/a.

@@            Coverage Diff            @@
##             master    #1595   +/-   ##
=========================================
  Coverage     82.47%   82.47%           
  Complexity     2334     2334           
=========================================
  Files           112      112           
  Lines          7862     7862           
  Branches       2045     2045           
=========================================
  Hits           6484     6484           
  Misses          452      452           
  Partials        926      926           
Flag Coverage Δ
unittests 82.47% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

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

Successfully merging this pull request may close these issues.

1 participant