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

Support binding properties to specific Arbs when doing reflective binding #3358

Merged
merged 5 commits into from
Nov 18, 2023

Conversation

Kantis
Copy link
Member

@Kantis Kantis commented Jan 25, 2023

Adds the method:

inline fun <reified T : Any> Arb.Companion.bind(builder: ProvidedArbsBuilder.() -> Unit): Arb<T>

Which lets us construct reflective arbs while providing arbs to be used for various classes and properties. Previously this capability existed but one could only provide a default arb per class. This becomes inconvenient for commonly used types like Int, String, etc.

The new method proposes a builder syntax, like:

   "Bind using properties" {

      data class Person(val id: Int, val name: String)
      data class Family(val name: String, val persons: List<Person>)

      checkAll(Arb.bind<Family> {
         // Create a binding for the `name` property on Family to always 
         // generate a String prefixed with Flanders 
         bind(Family::name to Arb.string().map { s -> "Flanders-$s" })
     
         // Bind the `id` property of `Person` to generate positive ints
         bind(Person::id to Arb.positiveInt())
  
         // Binding using class is also still possible. 
         // Included for completeness but completely useless for the test.
         bind(Double::class to Arb.double())
      }) { family ->
         family.name.shouldStartWith("Flanders-")
         family.persons.forAll {
            it.name.shouldNotStartWith("Flanders-")
            it.id shouldBeGreaterThan 0
         }
      }

   }

Work-around

If one wishes to achieve the same result with currently available methods, you would have to first create the Arb<Person> and explicitly bind it to Person::class during reflective binding, like:

   "Bind WITHOUT using properties" {

      data class Person(val id: Int, val name: String)
      data class Family(val name: String, val persons: List<Person>)
    
      val personArb = Arb.bind<Person>(mapOf(Int::class to Arb.positiveInt())
 
      checkAll(Arb.bind<Family>(mapOf(Person::class to personArb)) { family ->
         family.name.shouldStartWith("Flanders-")
         family.persons.forAll {
            it.name.shouldNotStartWith("Flanders-")
            it.id shouldBeGreaterThan 0
         }
      }

   }

In a scenario with deeper nesting or more type-reuse this might be incredibly inconvenient.

@Kantis Kantis changed the title Bind arbs for properties Support binding properties to specific Arbs when doing reflective binding Jan 30, 2023
@stale
Copy link

stale bot commented Mar 18, 2023

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale 🏚️ Issues that were lost to time and are no longer up-to-date label Mar 18, 2023
@Kantis Kantis requested a review from myuwono March 23, 2023 22:26
@stale stale bot removed the stale 🏚️ Issues that were lost to time and are no longer up-to-date label Mar 23, 2023
@Kantis
Copy link
Member Author

Kantis commented Mar 23, 2023

@myuwono: WDYT? Would it be better to expand the ArbResolver interface with property-handling capabilities, and make it possible to supply that when creating arbs using reflection?

@myuwono
Copy link
Contributor

myuwono commented Apr 2, 2023

That's a really good idea @Kantis ! hmm I think as long as we can get the usage to be ergonomic enough this is going to be really helpful. Can you supply perhaps an example code for the usage in here? Keen to see how it looks like.

@Kantis
Copy link
Member Author

Kantis commented Apr 15, 2023

@myuwono I updated the original PR comment to describe the proposed API properly

@stale
Copy link

stale bot commented May 21, 2023

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale 🏚️ Issues that were lost to time and are no longer up-to-date label May 21, 2023
@Kantis
Copy link
Member Author

Kantis commented Jun 4, 2023

Still interested in feedback on this one

@stale stale bot removed the stale 🏚️ Issues that were lost to time and are no longer up-to-date label Jun 4, 2023
@myuwono
Copy link
Contributor

myuwono commented Jun 4, 2023

I think this is really awesome!

@Kantis Kantis added this to the 5.7 milestone Jul 25, 2023
@Kantis Kantis self-assigned this Jul 25, 2023
@sksamuel
Copy link
Member

Can we get this ready for 5.7, would love to include it.

@Kantis
Copy link
Member Author

Kantis commented Aug 27, 2023

On vacation for another week. I could probably finish it up first week in September if that's soon enough :)

@sksamuel sksamuel modified the milestones: 5.7, 5.8 Sep 3, 2023
@Kantis Kantis marked this pull request as ready for review November 17, 2023 23:14
@@ -26,7 +28,11 @@ import kotlin.reflect.typeOf
@Deprecated("This logic has moved to ArbResolver and this function will be removed in 5.6. Since 5.5")
actual inline fun <reified A> targetDefaultForClass(): Arb<A>? = targetDefaultForType(type = typeOf<A>()) as Arb<A>?

fun targetDefaultForType(providedArbs: Map<KClass<*>, Arb<*>> = emptyMap(), type: KType): Arb<*>? {
fun targetDefaultForType(
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this function be @KotestInternal?

@Kantis Kantis merged commit 23c09ac into master Nov 18, 2023
12 checks passed
@Kantis Kantis deleted the arb-for-prop branch November 18, 2023 09:19
renovate bot added a commit to krzema12/xenosearch that referenced this pull request Mar 11, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[io.kotest:kotest-framework-engine](https://togithub.com/kotest/kotest)
| `5.8.0` -> `5.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.kotest:kotest-framework-engine/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.kotest:kotest-framework-engine/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.kotest:kotest-framework-engine/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.kotest:kotest-framework-engine/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>kotest/kotest (io.kotest:kotest-framework-engine)</summary>

### [`v5.8.1`](https://togithub.com/kotest/kotest/releases/tag/v5.8.1)

##### What's Changed

- Update dependency io.github.classgraph:classgraph to v4.8.164 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3751
- Non-negative/positive `Long` assertions and property testers by
[@&#8203;RusticFlare](https://togithub.com/RusticFlare) in
[kotest/kotest#3720
- Fix typo in documentation by
[@&#8203;tamj0rd2](https://togithub.com/tamj0rd2) in
[kotest/kotest#3756
- fixed : rolled back to initial Readme.md by
[@&#8203;mirageoasis](https://togithub.com/mirageoasis) in
[kotest/kotest#3757
- Add context container to behavior spec by
[@&#8203;jcthenerd](https://togithub.com/jcthenerd) in
[kotest/kotest#3737
- Fixed display of large ranges by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3765
- Expose the kotlin coroutineTestScope by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3769
- Increase maps diff size to 100, allowing for config by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3767
- Allow display name formatter to return null by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3764
- CoroutineDispatcher is not a TestDispatcher on JS by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3766
- Use evals as measure for assumptions by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3771
- Added tier3 targets
[#&#8203;3748](https://togithub.com/kotest/kotest/issues/3748) by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3761
- Add size matchers to typed Kotlin array classes by
[@&#8203;obecker](https://togithub.com/obecker) in
[kotest/kotest#3773
- Regular file passes the shouldBeEmptyDirectory() assertion by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3775
- OffsetDateTimeToleranceMatcher
([#&#8203;6](https://togithub.com/kotest/kotest/issues/6)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3781
- Add FixtureMonkey in third party extensions by
[@&#8203;seongahjo](https://togithub.com/seongahjo) in
[kotest/kotest#3782
- Local date time plus or minus by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3779
- Fix orNull with nullProbability=1.0 produce non-nulls by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3783
- Fix continually does not work with null values by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3786
- cutting docs for 5.8 by [@&#8203;Kantis](https://togithub.com/Kantis)
in
[kotest/kotest#3787
- Support binding properties to specific Arbs when doing reflective
binding by [@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3358
- Plus or minus for zoned date time draft
([#&#8203;8](https://togithub.com/kotest/kotest/issues/8)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3785
- Plus or minus for instant draft
([#&#8203;7](https://togithub.com/kotest/kotest/issues/7)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3784
- Fix race condition in beforeSpec by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3763
- Provide overriddable defaults for eventually by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3788
- cutting docs for 5.8 (right this time) by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3791
- Fix compiler plugin for K2 compiler by
[@&#8203;OliverO2](https://togithub.com/OliverO2) in
[kotest/kotest#3800
- Local time plus or minus take2 by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3802
- docs: fix EnabledCondition example (interface, not class) by
[@&#8203;jhult](https://togithub.com/jhult) in
[kotest/kotest#3810
- Update inspectors.md - Fixed a typo by
[@&#8203;karuturi](https://togithub.com/karuturi) in
[kotest/kotest#3811
- Fix `BigDecimal.ZERO.shouldBePositive()` returning true by
[@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3814
- Add `intersect` matcher to ranges by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3792
- tiny doc fix by [@&#8203;fantayeneh](https://togithub.com/fantayeneh)
in
[kotest/kotest#3823
- fix: Path.shouldBeAFile should fail on non-existant files by
[@&#8203;LeoColman](https://togithub.com/LeoColman) in
[kotest/kotest#3826
- Add `shouldNotBePositive` and `shouldNotBeNegative` matchers for
BigDecimal by [@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3818
- Support `Iterable` in `withData` on root level by
[@&#8203;obecker](https://togithub.com/obecker) in
[kotest/kotest#3831
- Added java.time.Year arbitrary support by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3842
- Added java.time.Year supports for reflective arbitrary bind by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3844
- Have upper bound print violations by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3847
- ContainDuplicates should print them
([#&#8203;20](https://togithub.com/kotest/kotest/issues/20)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3846
- Should contain exactly in any order count mismatch draft
([#&#8203;19](https://togithub.com/kotest/kotest/issues/19)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3845
- Replace Range Intersect tests with Property Tests by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3824
- Changing the Kotlin Gradle plugin dependncy to compileOnly by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3856
- Publishing JVM jar and pom in root variant by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3859
- Fixing Arb.localDate when minDate == maxDate by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3860
- fix(deps): update dependency io.mockk:mockk to v1.13.9 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3853
- Add selfie snapshot testing to the extensions listing by
[@&#8203;nedtwigg](https://togithub.com/nedtwigg) in
[kotest/kotest#3870
- Contains in order more details
([#&#8203;29](https://togithub.com/kotest/kotest/issues/29)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3871
- Fix maxDate not being generated by Arb.localDate() by
[@&#8203;oliverblaha](https://togithub.com/oliverblaha) in
[kotest/kotest#3876
- print-duplicates
([#&#8203;33](https://togithub.com/kotest/kotest/issues/33)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3883
- document-plusOrMinus-for-temporals
([#&#8203;34](https://togithub.com/kotest/kotest/issues/34)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3885
- Add selfie snapshot testing to the versioned docs pages by
[@&#8203;nedtwigg](https://togithub.com/nedtwigg) in
[kotest/kotest#3887
- override suspend fun beforeTest
([#&#8203;36](https://togithub.com/kotest/kotest/issues/36)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3892
- Creating a PR base workflow that shall be mandatory by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3893
- Fix the snapshot version badge in index markdowns by
[@&#8203;graceful-martin](https://togithub.com/graceful-martin) in
[kotest/kotest#3888
- add support for SortedSet and add test accordingly by
[@&#8203;mirageoasis](https://togithub.com/mirageoasis) in
[kotest/kotest#3873
- Have upper bound failure with more detail
([#&#8203;32](https://togithub.com/kotest/kotest/issues/32)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3882
- ShouldExistInOrderTest.kt
([#&#8203;30](https://togithub.com/kotest/kotest/issues/30)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3872
- Remove unnecessary delay when retry and fix error message by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3891
- more detailed failure for startWith and endWith by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3886
- Refactoring CI workflow by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3897
- Quote expected and actual exception messages in assertions by
[@&#8203;sschuberth](https://togithub.com/sschuberth) in
[kotest/kotest#3894
- Preserving original failure when short-circuiting eventually by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3864
- Update dependency io.github.classgraph:classgraph to v4.8.165 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3816
- comparing Maps, find keys similar to missing
([#&#8203;27](https://togithub.com/kotest/kotest/issues/27)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3866
- Contains in order more details draft
([#&#8203;43](https://togithub.com/kotest/kotest/issues/43)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3907
- Added IPAddressV6 arb by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3905
- Add includeFirst option to EventuallyConfiguration by
[@&#8203;kin4496](https://togithub.com/kin4496) in
[kotest/kotest#3904
- Update dependency io.mockk:mockk to v1.13.10 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3902
- Update dependency com.jayway.jsonpath:json-path to v2.9.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3903
- implement beWithin for ClosedRange and OpenEndRange by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3839
- Make `shouldBe expected` equivalent to `should be(expected)` for
non-matcher objects by [@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3827
- Framework should handle stack traces not being available by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3916
- add search for similar items to containAll by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3909
- Do not allow TestConfiguration::tags after spec is initialized by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3919
- Rename unresolved test config and allow passing into test methods by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3917
- Arb.distinct() should work for edgecases by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3920
- specify module name kotest-assertions-json by
[@&#8203;jlous](https://togithub.com/jlous) in
[kotest/kotest#3898
- Using NoSystemOutListener prevents single tests from being executed by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3923
- Fix information printed by KProperty0<T>.shouldHaveValue
([#&#8203;3908](https://togithub.com/kotest/kotest/issues/3908)) by
[@&#8203;gianninia](https://togithub.com/gianninia) in
[kotest/kotest#3921
- withEdgecases should keep shrinker
[#&#8203;3812](https://togithub.com/kotest/kotest/issues/3812) by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3922
- Fix TestWithConfigBuilder#config using parsed name when clear
TestDslState by [@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3798
- Proper fix for DescribeSpec test with a multiline description by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3926
- Allow equals comparison of BigDecimals with different scales by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3924
- Fixed use of type alias in shouldBeEqualToComparingFields by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3927
- Don't consider kotlinx and javax types to be builtin by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3899

##### New Contributors

- [@&#8203;tamj0rd2](https://togithub.com/tamj0rd2) made their first
contribution in
[kotest/kotest#3756
- [@&#8203;mirageoasis](https://togithub.com/mirageoasis) made their
first contribution in
[kotest/kotest#3757
- [@&#8203;jcthenerd](https://togithub.com/jcthenerd) made their first
contribution in
[kotest/kotest#3737
- [@&#8203;seongahjo](https://togithub.com/seongahjo) made their first
contribution in
[kotest/kotest#3782
- [@&#8203;jhult](https://togithub.com/jhult) made their first
contribution in
[kotest/kotest#3810
- [@&#8203;karuturi](https://togithub.com/karuturi) made their first
contribution in
[kotest/kotest#3811
- [@&#8203;pubiqq](https://togithub.com/pubiqq) made their first
contribution in
[kotest/kotest#3814
- [@&#8203;fantayeneh](https://togithub.com/fantayeneh) made their first
contribution in
[kotest/kotest#3823
- [@&#8203;nedtwigg](https://togithub.com/nedtwigg) made their first
contribution in
[kotest/kotest#3870
- [@&#8203;oliverblaha](https://togithub.com/oliverblaha) made their
first contribution in
[kotest/kotest#3876
- [@&#8203;graceful-martin](https://togithub.com/graceful-martin) made
their first contribution in
[kotest/kotest#3888
- [@&#8203;kin4496](https://togithub.com/kin4496) made their first
contribution in
[kotest/kotest#3904
- [@&#8203;jlous](https://togithub.com/jlous) made their first
contribution in
[kotest/kotest#3898
- [@&#8203;gianninia](https://togithub.com/gianninia) made their first
contribution in
[kotest/kotest#3921

**Full Changelog**:
kotest/kotest@v5.8.0...v5.8.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/krzema12/xenosearch).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIzMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to typesafegithub/github-actions-typing that referenced this pull request Mar 11, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [io.kotest:kotest-bom](https://togithub.com/kotest/kotest) | `5.8.0`
-> `5.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.kotest:kotest-bom/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.kotest:kotest-bom/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.kotest:kotest-bom/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.kotest:kotest-bom/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>kotest/kotest (io.kotest:kotest-bom)</summary>

### [`v5.8.1`](https://togithub.com/kotest/kotest/releases/tag/v5.8.1)

##### What's Changed

- Update dependency io.github.classgraph:classgraph to v4.8.164 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3751
- Non-negative/positive `Long` assertions and property testers by
[@&#8203;RusticFlare](https://togithub.com/RusticFlare) in
[kotest/kotest#3720
- Fix typo in documentation by
[@&#8203;tamj0rd2](https://togithub.com/tamj0rd2) in
[kotest/kotest#3756
- fixed : rolled back to initial Readme.md by
[@&#8203;mirageoasis](https://togithub.com/mirageoasis) in
[kotest/kotest#3757
- Add context container to behavior spec by
[@&#8203;jcthenerd](https://togithub.com/jcthenerd) in
[kotest/kotest#3737
- Fixed display of large ranges by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3765
- Expose the kotlin coroutineTestScope by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3769
- Increase maps diff size to 100, allowing for config by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3767
- Allow display name formatter to return null by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3764
- CoroutineDispatcher is not a TestDispatcher on JS by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3766
- Use evals as measure for assumptions by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3771
- Added tier3 targets
[#&#8203;3748](https://togithub.com/kotest/kotest/issues/3748) by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3761
- Add size matchers to typed Kotlin array classes by
[@&#8203;obecker](https://togithub.com/obecker) in
[kotest/kotest#3773
- Regular file passes the shouldBeEmptyDirectory() assertion by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3775
- OffsetDateTimeToleranceMatcher
([#&#8203;6](https://togithub.com/kotest/kotest/issues/6)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3781
- Add FixtureMonkey in third party extensions by
[@&#8203;seongahjo](https://togithub.com/seongahjo) in
[kotest/kotest#3782
- Local date time plus or minus by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3779
- Fix orNull with nullProbability=1.0 produce non-nulls by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3783
- Fix continually does not work with null values by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3786
- cutting docs for 5.8 by [@&#8203;Kantis](https://togithub.com/Kantis)
in
[kotest/kotest#3787
- Support binding properties to specific Arbs when doing reflective
binding by [@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3358
- Plus or minus for zoned date time draft
([#&#8203;8](https://togithub.com/kotest/kotest/issues/8)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3785
- Plus or minus for instant draft
([#&#8203;7](https://togithub.com/kotest/kotest/issues/7)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3784
- Fix race condition in beforeSpec by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3763
- Provide overriddable defaults for eventually by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3788
- cutting docs for 5.8 (right this time) by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3791
- Fix compiler plugin for K2 compiler by
[@&#8203;OliverO2](https://togithub.com/OliverO2) in
[kotest/kotest#3800
- Local time plus or minus take2 by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3802
- docs: fix EnabledCondition example (interface, not class) by
[@&#8203;jhult](https://togithub.com/jhult) in
[kotest/kotest#3810
- Update inspectors.md - Fixed a typo by
[@&#8203;karuturi](https://togithub.com/karuturi) in
[kotest/kotest#3811
- Fix `BigDecimal.ZERO.shouldBePositive()` returning true by
[@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3814
- Add `intersect` matcher to ranges by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3792
- tiny doc fix by [@&#8203;fantayeneh](https://togithub.com/fantayeneh)
in
[kotest/kotest#3823
- fix: Path.shouldBeAFile should fail on non-existant files by
[@&#8203;LeoColman](https://togithub.com/LeoColman) in
[kotest/kotest#3826
- Add `shouldNotBePositive` and `shouldNotBeNegative` matchers for
BigDecimal by [@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3818
- Support `Iterable` in `withData` on root level by
[@&#8203;obecker](https://togithub.com/obecker) in
[kotest/kotest#3831
- Added java.time.Year arbitrary support by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3842
- Added java.time.Year supports for reflective arbitrary bind by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3844
- Have upper bound print violations by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3847
- ContainDuplicates should print them
([#&#8203;20](https://togithub.com/kotest/kotest/issues/20)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3846
- Should contain exactly in any order count mismatch draft
([#&#8203;19](https://togithub.com/kotest/kotest/issues/19)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3845
- Replace Range Intersect tests with Property Tests by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3824
- Changing the Kotlin Gradle plugin dependncy to compileOnly by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3856
- Publishing JVM jar and pom in root variant by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3859
- Fixing Arb.localDate when minDate == maxDate by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3860
- fix(deps): update dependency io.mockk:mockk to v1.13.9 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3853
- Add selfie snapshot testing to the extensions listing by
[@&#8203;nedtwigg](https://togithub.com/nedtwigg) in
[kotest/kotest#3870
- Contains in order more details
([#&#8203;29](https://togithub.com/kotest/kotest/issues/29)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3871
- Fix maxDate not being generated by Arb.localDate() by
[@&#8203;oliverblaha](https://togithub.com/oliverblaha) in
[kotest/kotest#3876
- print-duplicates
([#&#8203;33](https://togithub.com/kotest/kotest/issues/33)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3883
- document-plusOrMinus-for-temporals
([#&#8203;34](https://togithub.com/kotest/kotest/issues/34)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3885
- Add selfie snapshot testing to the versioned docs pages by
[@&#8203;nedtwigg](https://togithub.com/nedtwigg) in
[kotest/kotest#3887
- override suspend fun beforeTest
([#&#8203;36](https://togithub.com/kotest/kotest/issues/36)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3892
- Creating a PR base workflow that shall be mandatory by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3893
- Fix the snapshot version badge in index markdowns by
[@&#8203;graceful-martin](https://togithub.com/graceful-martin) in
[kotest/kotest#3888
- add support for SortedSet and add test accordingly by
[@&#8203;mirageoasis](https://togithub.com/mirageoasis) in
[kotest/kotest#3873
- Have upper bound failure with more detail
([#&#8203;32](https://togithub.com/kotest/kotest/issues/32)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3882
- ShouldExistInOrderTest.kt
([#&#8203;30](https://togithub.com/kotest/kotest/issues/30)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3872
- Remove unnecessary delay when retry and fix error message by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3891
- more detailed failure for startWith and endWith by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3886
- Refactoring CI workflow by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3897
- Quote expected and actual exception messages in assertions by
[@&#8203;sschuberth](https://togithub.com/sschuberth) in
[kotest/kotest#3894
- Preserving original failure when short-circuiting eventually by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3864
- Update dependency io.github.classgraph:classgraph to v4.8.165 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3816
- comparing Maps, find keys similar to missing
([#&#8203;27](https://togithub.com/kotest/kotest/issues/27)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3866
- Contains in order more details draft
([#&#8203;43](https://togithub.com/kotest/kotest/issues/43)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3907
- Added IPAddressV6 arb by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3905
- Add includeFirst option to EventuallyConfiguration by
[@&#8203;kin4496](https://togithub.com/kin4496) in
[kotest/kotest#3904
- Update dependency io.mockk:mockk to v1.13.10 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3902
- Update dependency com.jayway.jsonpath:json-path to v2.9.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3903
- implement beWithin for ClosedRange and OpenEndRange by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3839
- Make `shouldBe expected` equivalent to `should be(expected)` for
non-matcher objects by [@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3827
- Framework should handle stack traces not being available by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3916
- add search for similar items to containAll by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3909
- Do not allow TestConfiguration::tags after spec is initialized by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3919
- Rename unresolved test config and allow passing into test methods by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3917
- Arb.distinct() should work for edgecases by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3920
- specify module name kotest-assertions-json by
[@&#8203;jlous](https://togithub.com/jlous) in
[kotest/kotest#3898
- Using NoSystemOutListener prevents single tests from being executed by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3923
- Fix information printed by KProperty0<T>.shouldHaveValue
([#&#8203;3908](https://togithub.com/kotest/kotest/issues/3908)) by
[@&#8203;gianninia](https://togithub.com/gianninia) in
[kotest/kotest#3921
- withEdgecases should keep shrinker
[#&#8203;3812](https://togithub.com/kotest/kotest/issues/3812) by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3922
- Fix TestWithConfigBuilder#config using parsed name when clear
TestDslState by [@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3798
- Proper fix for DescribeSpec test with a multiline description by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3926
- Allow equals comparison of BigDecimals with different scales by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3924
- Fixed use of type alias in shouldBeEqualToComparingFields by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3927
- Don't consider kotlinx and javax types to be builtin by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3899

##### New Contributors

- [@&#8203;tamj0rd2](https://togithub.com/tamj0rd2) made their first
contribution in
[kotest/kotest#3756
- [@&#8203;mirageoasis](https://togithub.com/mirageoasis) made their
first contribution in
[kotest/kotest#3757
- [@&#8203;jcthenerd](https://togithub.com/jcthenerd) made their first
contribution in
[kotest/kotest#3737
- [@&#8203;seongahjo](https://togithub.com/seongahjo) made their first
contribution in
[kotest/kotest#3782
- [@&#8203;jhult](https://togithub.com/jhult) made their first
contribution in
[kotest/kotest#3810
- [@&#8203;karuturi](https://togithub.com/karuturi) made their first
contribution in
[kotest/kotest#3811
- [@&#8203;pubiqq](https://togithub.com/pubiqq) made their first
contribution in
[kotest/kotest#3814
- [@&#8203;fantayeneh](https://togithub.com/fantayeneh) made their first
contribution in
[kotest/kotest#3823
- [@&#8203;nedtwigg](https://togithub.com/nedtwigg) made their first
contribution in
[kotest/kotest#3870
- [@&#8203;oliverblaha](https://togithub.com/oliverblaha) made their
first contribution in
[kotest/kotest#3876
- [@&#8203;graceful-martin](https://togithub.com/graceful-martin) made
their first contribution in
[kotest/kotest#3888
- [@&#8203;kin4496](https://togithub.com/kin4496) made their first
contribution in
[kotest/kotest#3904
- [@&#8203;jlous](https://togithub.com/jlous) made their first
contribution in
[kotest/kotest#3898
- [@&#8203;gianninia](https://togithub.com/gianninia) made their first
contribution in
[kotest/kotest#3921

**Full Changelog**:
kotest/kotest@v5.8.0...v5.8.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/typesafegithub/github-actions-typing).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIzMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to krzema12/xenosearch that referenced this pull request Mar 11, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [io.kotest:kotest-runner-junit5](https://togithub.com/kotest/kotest) |
`5.8.0` -> `5.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.kotest:kotest-runner-junit5/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.kotest:kotest-runner-junit5/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.kotest:kotest-runner-junit5/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.kotest:kotest-runner-junit5/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>kotest/kotest (io.kotest:kotest-runner-junit5)</summary>

### [`v5.8.1`](https://togithub.com/kotest/kotest/releases/tag/v5.8.1)

##### What's Changed

- Update dependency io.github.classgraph:classgraph to v4.8.164 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3751
- Non-negative/positive `Long` assertions and property testers by
[@&#8203;RusticFlare](https://togithub.com/RusticFlare) in
[kotest/kotest#3720
- Fix typo in documentation by
[@&#8203;tamj0rd2](https://togithub.com/tamj0rd2) in
[kotest/kotest#3756
- fixed : rolled back to initial Readme.md by
[@&#8203;mirageoasis](https://togithub.com/mirageoasis) in
[kotest/kotest#3757
- Add context container to behavior spec by
[@&#8203;jcthenerd](https://togithub.com/jcthenerd) in
[kotest/kotest#3737
- Fixed display of large ranges by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3765
- Expose the kotlin coroutineTestScope by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3769
- Increase maps diff size to 100, allowing for config by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3767
- Allow display name formatter to return null by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3764
- CoroutineDispatcher is not a TestDispatcher on JS by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3766
- Use evals as measure for assumptions by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3771
- Added tier3 targets
[#&#8203;3748](https://togithub.com/kotest/kotest/issues/3748) by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3761
- Add size matchers to typed Kotlin array classes by
[@&#8203;obecker](https://togithub.com/obecker) in
[kotest/kotest#3773
- Regular file passes the shouldBeEmptyDirectory() assertion by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3775
- OffsetDateTimeToleranceMatcher
([#&#8203;6](https://togithub.com/kotest/kotest/issues/6)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3781
- Add FixtureMonkey in third party extensions by
[@&#8203;seongahjo](https://togithub.com/seongahjo) in
[kotest/kotest#3782
- Local date time plus or minus by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3779
- Fix orNull with nullProbability=1.0 produce non-nulls by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3783
- Fix continually does not work with null values by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3786
- cutting docs for 5.8 by [@&#8203;Kantis](https://togithub.com/Kantis)
in
[kotest/kotest#3787
- Support binding properties to specific Arbs when doing reflective
binding by [@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3358
- Plus or minus for zoned date time draft
([#&#8203;8](https://togithub.com/kotest/kotest/issues/8)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3785
- Plus or minus for instant draft
([#&#8203;7](https://togithub.com/kotest/kotest/issues/7)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3784
- Fix race condition in beforeSpec by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3763
- Provide overriddable defaults for eventually by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3788
- cutting docs for 5.8 (right this time) by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3791
- Fix compiler plugin for K2 compiler by
[@&#8203;OliverO2](https://togithub.com/OliverO2) in
[kotest/kotest#3800
- Local time plus or minus take2 by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3802
- docs: fix EnabledCondition example (interface, not class) by
[@&#8203;jhult](https://togithub.com/jhult) in
[kotest/kotest#3810
- Update inspectors.md - Fixed a typo by
[@&#8203;karuturi](https://togithub.com/karuturi) in
[kotest/kotest#3811
- Fix `BigDecimal.ZERO.shouldBePositive()` returning true by
[@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3814
- Add `intersect` matcher to ranges by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3792
- tiny doc fix by [@&#8203;fantayeneh](https://togithub.com/fantayeneh)
in
[kotest/kotest#3823
- fix: Path.shouldBeAFile should fail on non-existant files by
[@&#8203;LeoColman](https://togithub.com/LeoColman) in
[kotest/kotest#3826
- Add `shouldNotBePositive` and `shouldNotBeNegative` matchers for
BigDecimal by [@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3818
- Support `Iterable` in `withData` on root level by
[@&#8203;obecker](https://togithub.com/obecker) in
[kotest/kotest#3831
- Added java.time.Year arbitrary support by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3842
- Added java.time.Year supports for reflective arbitrary bind by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3844
- Have upper bound print violations by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3847
- ContainDuplicates should print them
([#&#8203;20](https://togithub.com/kotest/kotest/issues/20)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3846
- Should contain exactly in any order count mismatch draft
([#&#8203;19](https://togithub.com/kotest/kotest/issues/19)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3845
- Replace Range Intersect tests with Property Tests by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3824
- Changing the Kotlin Gradle plugin dependncy to compileOnly by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3856
- Publishing JVM jar and pom in root variant by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3859
- Fixing Arb.localDate when minDate == maxDate by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3860
- fix(deps): update dependency io.mockk:mockk to v1.13.9 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3853
- Add selfie snapshot testing to the extensions listing by
[@&#8203;nedtwigg](https://togithub.com/nedtwigg) in
[kotest/kotest#3870
- Contains in order more details
([#&#8203;29](https://togithub.com/kotest/kotest/issues/29)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3871
- Fix maxDate not being generated by Arb.localDate() by
[@&#8203;oliverblaha](https://togithub.com/oliverblaha) in
[kotest/kotest#3876
- print-duplicates
([#&#8203;33](https://togithub.com/kotest/kotest/issues/33)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3883
- document-plusOrMinus-for-temporals
([#&#8203;34](https://togithub.com/kotest/kotest/issues/34)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3885
- Add selfie snapshot testing to the versioned docs pages by
[@&#8203;nedtwigg](https://togithub.com/nedtwigg) in
[kotest/kotest#3887
- override suspend fun beforeTest
([#&#8203;36](https://togithub.com/kotest/kotest/issues/36)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3892
- Creating a PR base workflow that shall be mandatory by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3893
- Fix the snapshot version badge in index markdowns by
[@&#8203;graceful-martin](https://togithub.com/graceful-martin) in
[kotest/kotest#3888
- add support for SortedSet and add test accordingly by
[@&#8203;mirageoasis](https://togithub.com/mirageoasis) in
[kotest/kotest#3873
- Have upper bound failure with more detail
([#&#8203;32](https://togithub.com/kotest/kotest/issues/32)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3882
- ShouldExistInOrderTest.kt
([#&#8203;30](https://togithub.com/kotest/kotest/issues/30)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3872
- Remove unnecessary delay when retry and fix error message by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3891
- more detailed failure for startWith and endWith by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3886
- Refactoring CI workflow by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3897
- Quote expected and actual exception messages in assertions by
[@&#8203;sschuberth](https://togithub.com/sschuberth) in
[kotest/kotest#3894
- Preserving original failure when short-circuiting eventually by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3864
- Update dependency io.github.classgraph:classgraph to v4.8.165 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3816
- comparing Maps, find keys similar to missing
([#&#8203;27](https://togithub.com/kotest/kotest/issues/27)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3866
- Contains in order more details draft
([#&#8203;43](https://togithub.com/kotest/kotest/issues/43)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3907
- Added IPAddressV6 arb by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3905
- Add includeFirst option to EventuallyConfiguration by
[@&#8203;kin4496](https://togithub.com/kin4496) in
[kotest/kotest#3904
- Update dependency io.mockk:mockk to v1.13.10 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3902
- Update dependency com.jayway.jsonpath:json-path to v2.9.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3903
- implement beWithin for ClosedRange and OpenEndRange by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3839
- Make `shouldBe expected` equivalent to `should be(expected)` for
non-matcher objects by [@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3827
- Framework should handle stack traces not being available by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3916
- add search for similar items to containAll by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3909
- Do not allow TestConfiguration::tags after spec is initialized by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3919
- Rename unresolved test config and allow passing into test methods by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3917
- Arb.distinct() should work for edgecases by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3920
- specify module name kotest-assertions-json by
[@&#8203;jlous](https://togithub.com/jlous) in
[kotest/kotest#3898
- Using NoSystemOutListener prevents single tests from being executed by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3923
- Fix information printed by KProperty0<T>.shouldHaveValue
([#&#8203;3908](https://togithub.com/kotest/kotest/issues/3908)) by
[@&#8203;gianninia](https://togithub.com/gianninia) in
[kotest/kotest#3921
- withEdgecases should keep shrinker
[#&#8203;3812](https://togithub.com/kotest/kotest/issues/3812) by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3922
- Fix TestWithConfigBuilder#config using parsed name when clear
TestDslState by [@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3798
- Proper fix for DescribeSpec test with a multiline description by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3926
- Allow equals comparison of BigDecimals with different scales by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3924
- Fixed use of type alias in shouldBeEqualToComparingFields by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3927
- Don't consider kotlinx and javax types to be builtin by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3899

##### New Contributors

- [@&#8203;tamj0rd2](https://togithub.com/tamj0rd2) made their first
contribution in
[kotest/kotest#3756
- [@&#8203;mirageoasis](https://togithub.com/mirageoasis) made their
first contribution in
[kotest/kotest#3757
- [@&#8203;jcthenerd](https://togithub.com/jcthenerd) made their first
contribution in
[kotest/kotest#3737
- [@&#8203;seongahjo](https://togithub.com/seongahjo) made their first
contribution in
[kotest/kotest#3782
- [@&#8203;jhult](https://togithub.com/jhult) made their first
contribution in
[kotest/kotest#3810
- [@&#8203;karuturi](https://togithub.com/karuturi) made their first
contribution in
[kotest/kotest#3811
- [@&#8203;pubiqq](https://togithub.com/pubiqq) made their first
contribution in
[kotest/kotest#3814
- [@&#8203;fantayeneh](https://togithub.com/fantayeneh) made their first
contribution in
[kotest/kotest#3823
- [@&#8203;nedtwigg](https://togithub.com/nedtwigg) made their first
contribution in
[kotest/kotest#3870
- [@&#8203;oliverblaha](https://togithub.com/oliverblaha) made their
first contribution in
[kotest/kotest#3876
- [@&#8203;graceful-martin](https://togithub.com/graceful-martin) made
their first contribution in
[kotest/kotest#3888
- [@&#8203;kin4496](https://togithub.com/kin4496) made their first
contribution in
[kotest/kotest#3904
- [@&#8203;jlous](https://togithub.com/jlous) made their first
contribution in
[kotest/kotest#3898
- [@&#8203;gianninia](https://togithub.com/gianninia) made their first
contribution in
[kotest/kotest#3921

**Full Changelog**:
kotest/kotest@v5.8.0...v5.8.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

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

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/krzema12/xenosearch).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIzMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to StefanLobbenmeier/yt-dlp-compose that referenced this pull request Mar 11, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [io.kotest:kotest-runner-junit5](https://togithub.com/kotest/kotest) |
`5.8.0` -> `5.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.kotest:kotest-runner-junit5/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.kotest:kotest-runner-junit5/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.kotest:kotest-runner-junit5/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.kotest:kotest-runner-junit5/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>kotest/kotest (io.kotest:kotest-runner-junit5)</summary>

### [`v5.8.1`](https://togithub.com/kotest/kotest/releases/tag/v5.8.1)

##### What's Changed

- Update dependency io.github.classgraph:classgraph to v4.8.164 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3751
- Non-negative/positive `Long` assertions and property testers by
[@&#8203;RusticFlare](https://togithub.com/RusticFlare) in
[kotest/kotest#3720
- Fix typo in documentation by
[@&#8203;tamj0rd2](https://togithub.com/tamj0rd2) in
[kotest/kotest#3756
- fixed : rolled back to initial Readme.md by
[@&#8203;mirageoasis](https://togithub.com/mirageoasis) in
[kotest/kotest#3757
- Add context container to behavior spec by
[@&#8203;jcthenerd](https://togithub.com/jcthenerd) in
[kotest/kotest#3737
- Fixed display of large ranges by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3765
- Expose the kotlin coroutineTestScope by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3769
- Increase maps diff size to 100, allowing for config by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3767
- Allow display name formatter to return null by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3764
- CoroutineDispatcher is not a TestDispatcher on JS by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3766
- Use evals as measure for assumptions by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3771
- Added tier3 targets
[#&#8203;3748](https://togithub.com/kotest/kotest/issues/3748) by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3761
- Add size matchers to typed Kotlin array classes by
[@&#8203;obecker](https://togithub.com/obecker) in
[kotest/kotest#3773
- Regular file passes the shouldBeEmptyDirectory() assertion by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3775
- OffsetDateTimeToleranceMatcher
([#&#8203;6](https://togithub.com/kotest/kotest/issues/6)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3781
- Add FixtureMonkey in third party extensions by
[@&#8203;seongahjo](https://togithub.com/seongahjo) in
[kotest/kotest#3782
- Local date time plus or minus by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3779
- Fix orNull with nullProbability=1.0 produce non-nulls by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3783
- Fix continually does not work with null values by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3786
- cutting docs for 5.8 by [@&#8203;Kantis](https://togithub.com/Kantis)
in
[kotest/kotest#3787
- Support binding properties to specific Arbs when doing reflective
binding by [@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3358
- Plus or minus for zoned date time draft
([#&#8203;8](https://togithub.com/kotest/kotest/issues/8)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3785
- Plus or minus for instant draft
([#&#8203;7](https://togithub.com/kotest/kotest/issues/7)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3784
- Fix race condition in beforeSpec by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3763
- Provide overriddable defaults for eventually by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3788
- cutting docs for 5.8 (right this time) by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3791
- Fix compiler plugin for K2 compiler by
[@&#8203;OliverO2](https://togithub.com/OliverO2) in
[kotest/kotest#3800
- Local time plus or minus take2 by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3802
- docs: fix EnabledCondition example (interface, not class) by
[@&#8203;jhult](https://togithub.com/jhult) in
[kotest/kotest#3810
- Update inspectors.md - Fixed a typo by
[@&#8203;karuturi](https://togithub.com/karuturi) in
[kotest/kotest#3811
- Fix `BigDecimal.ZERO.shouldBePositive()` returning true by
[@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3814
- Add `intersect` matcher to ranges by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3792
- tiny doc fix by [@&#8203;fantayeneh](https://togithub.com/fantayeneh)
in
[kotest/kotest#3823
- fix: Path.shouldBeAFile should fail on non-existant files by
[@&#8203;LeoColman](https://togithub.com/LeoColman) in
[kotest/kotest#3826
- Add `shouldNotBePositive` and `shouldNotBeNegative` matchers for
BigDecimal by [@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3818
- Support `Iterable` in `withData` on root level by
[@&#8203;obecker](https://togithub.com/obecker) in
[kotest/kotest#3831
- Added java.time.Year arbitrary support by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3842
- Added java.time.Year supports for reflective arbitrary bind by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3844
- Have upper bound print violations by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3847
- ContainDuplicates should print them
([#&#8203;20](https://togithub.com/kotest/kotest/issues/20)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3846
- Should contain exactly in any order count mismatch draft
([#&#8203;19](https://togithub.com/kotest/kotest/issues/19)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3845
- Replace Range Intersect tests with Property Tests by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3824
- Changing the Kotlin Gradle plugin dependncy to compileOnly by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3856
- Publishing JVM jar and pom in root variant by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3859
- Fixing Arb.localDate when minDate == maxDate by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3860
- fix(deps): update dependency io.mockk:mockk to v1.13.9 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3853
- Add selfie snapshot testing to the extensions listing by
[@&#8203;nedtwigg](https://togithub.com/nedtwigg) in
[kotest/kotest#3870
- Contains in order more details
([#&#8203;29](https://togithub.com/kotest/kotest/issues/29)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3871
- Fix maxDate not being generated by Arb.localDate() by
[@&#8203;oliverblaha](https://togithub.com/oliverblaha) in
[kotest/kotest#3876
- print-duplicates
([#&#8203;33](https://togithub.com/kotest/kotest/issues/33)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3883
- document-plusOrMinus-for-temporals
([#&#8203;34](https://togithub.com/kotest/kotest/issues/34)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3885
- Add selfie snapshot testing to the versioned docs pages by
[@&#8203;nedtwigg](https://togithub.com/nedtwigg) in
[kotest/kotest#3887
- override suspend fun beforeTest
([#&#8203;36](https://togithub.com/kotest/kotest/issues/36)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3892
- Creating a PR base workflow that shall be mandatory by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3893
- Fix the snapshot version badge in index markdowns by
[@&#8203;graceful-martin](https://togithub.com/graceful-martin) in
[kotest/kotest#3888
- add support for SortedSet and add test accordingly by
[@&#8203;mirageoasis](https://togithub.com/mirageoasis) in
[kotest/kotest#3873
- Have upper bound failure with more detail
([#&#8203;32](https://togithub.com/kotest/kotest/issues/32)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3882
- ShouldExistInOrderTest.kt
([#&#8203;30](https://togithub.com/kotest/kotest/issues/30)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3872
- Remove unnecessary delay when retry and fix error message by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3891
- more detailed failure for startWith and endWith by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3886
- Refactoring CI workflow by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3897
- Quote expected and actual exception messages in assertions by
[@&#8203;sschuberth](https://togithub.com/sschuberth) in
[kotest/kotest#3894
- Preserving original failure when short-circuiting eventually by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3864
- Update dependency io.github.classgraph:classgraph to v4.8.165 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3816
- comparing Maps, find keys similar to missing
([#&#8203;27](https://togithub.com/kotest/kotest/issues/27)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3866
- Contains in order more details draft
([#&#8203;43](https://togithub.com/kotest/kotest/issues/43)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3907
- Added IPAddressV6 arb by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3905
- Add includeFirst option to EventuallyConfiguration by
[@&#8203;kin4496](https://togithub.com/kin4496) in
[kotest/kotest#3904
- Update dependency io.mockk:mockk to v1.13.10 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3902
- Update dependency com.jayway.jsonpath:json-path to v2.9.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3903
- implement beWithin for ClosedRange and OpenEndRange by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3839
- Make `shouldBe expected` equivalent to `should be(expected)` for
non-matcher objects by [@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3827
- Framework should handle stack traces not being available by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3916
- add search for similar items to containAll by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3909
- Do not allow TestConfiguration::tags after spec is initialized by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3919
- Rename unresolved test config and allow passing into test methods by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3917
- Arb.distinct() should work for edgecases by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3920
- specify module name kotest-assertions-json by
[@&#8203;jlous](https://togithub.com/jlous) in
[kotest/kotest#3898
- Using NoSystemOutListener prevents single tests from being executed by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3923
- Fix information printed by KProperty0<T>.shouldHaveValue
([#&#8203;3908](https://togithub.com/kotest/kotest/issues/3908)) by
[@&#8203;gianninia](https://togithub.com/gianninia) in
[kotest/kotest#3921
- withEdgecases should keep shrinker
[#&#8203;3812](https://togithub.com/kotest/kotest/issues/3812) by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3922
- Fix TestWithConfigBuilder#config using parsed name when clear
TestDslState by [@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3798
- Proper fix for DescribeSpec test with a multiline description by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3926
- Allow equals comparison of BigDecimals with different scales by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3924
- Fixed use of type alias in shouldBeEqualToComparingFields by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3927
- Don't consider kotlinx and javax types to be builtin by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3899

##### New Contributors

- [@&#8203;tamj0rd2](https://togithub.com/tamj0rd2) made their first
contribution in
[kotest/kotest#3756
- [@&#8203;mirageoasis](https://togithub.com/mirageoasis) made their
first contribution in
[kotest/kotest#3757
- [@&#8203;jcthenerd](https://togithub.com/jcthenerd) made their first
contribution in
[kotest/kotest#3737
- [@&#8203;seongahjo](https://togithub.com/seongahjo) made their first
contribution in
[kotest/kotest#3782
- [@&#8203;jhult](https://togithub.com/jhult) made their first
contribution in
[kotest/kotest#3810
- [@&#8203;karuturi](https://togithub.com/karuturi) made their first
contribution in
[kotest/kotest#3811
- [@&#8203;pubiqq](https://togithub.com/pubiqq) made their first
contribution in
[kotest/kotest#3814
- [@&#8203;fantayeneh](https://togithub.com/fantayeneh) made their first
contribution in
[kotest/kotest#3823
- [@&#8203;nedtwigg](https://togithub.com/nedtwigg) made their first
contribution in
[kotest/kotest#3870
- [@&#8203;oliverblaha](https://togithub.com/oliverblaha) made their
first contribution in
[kotest/kotest#3876
- [@&#8203;graceful-martin](https://togithub.com/graceful-martin) made
their first contribution in
[kotest/kotest#3888
- [@&#8203;kin4496](https://togithub.com/kin4496) made their first
contribution in
[kotest/kotest#3904
- [@&#8203;jlous](https://togithub.com/jlous) made their first
contribution in
[kotest/kotest#3898
- [@&#8203;gianninia](https://togithub.com/gianninia) made their first
contribution in
[kotest/kotest#3921

**Full Changelog**:
kotest/kotest@v5.8.0...v5.8.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/StefanLobbenmeier/yt-dlp-compose).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIzMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
github-merge-queue bot pushed a commit to BSStudio/bss-web-admin-backend that referenced this pull request Mar 13, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [io.kotest:kotest-runner-junit5](https://togithub.com/kotest/kotest) |
`5.8.0` -> `5.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.kotest:kotest-runner-junit5/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.kotest:kotest-runner-junit5/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.kotest:kotest-runner-junit5/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.kotest:kotest-runner-junit5/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[io.kotest:kotest-assertions-core-jvm](https://togithub.com/kotest/kotest)
| `5.8.0` -> `5.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.kotest:kotest-assertions-core-jvm/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.kotest:kotest-assertions-core-jvm/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.kotest:kotest-assertions-core-jvm/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.kotest:kotest-assertions-core-jvm/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.kotest:kotest-assertions-json](https://togithub.com/kotest/kotest)
| `5.8.0` -> `5.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.kotest:kotest-assertions-json/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.kotest:kotest-assertions-json/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.kotest:kotest-assertions-json/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.kotest:kotest-assertions-json/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[org.springdoc:springdoc-openapi-starter-webmvc-ui](https://springdoc.org/)
([source](https://togithub.com/springdoc/springdoc-openapi)) | `2.3.0`
-> `2.4.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/org.springdoc:springdoc-openapi-starter-webmvc-ui/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/org.springdoc:springdoc-openapi-starter-webmvc-ui/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/org.springdoc:springdoc-openapi-starter-webmvc-ui/2.3.0/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.springdoc:springdoc-openapi-starter-webmvc-ui/2.3.0/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>kotest/kotest (io.kotest:kotest-runner-junit5)</summary>

### [`v5.8.1`](https://togithub.com/kotest/kotest/releases/tag/v5.8.1)

##### What's Changed

- Update dependency io.github.classgraph:classgraph to v4.8.164 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3751
- Non-negative/positive `Long` assertions and property testers by
[@&#8203;RusticFlare](https://togithub.com/RusticFlare) in
[kotest/kotest#3720
- Fix typo in documentation by
[@&#8203;tamj0rd2](https://togithub.com/tamj0rd2) in
[kotest/kotest#3756
- fixed : rolled back to initial Readme.md by
[@&#8203;mirageoasis](https://togithub.com/mirageoasis) in
[kotest/kotest#3757
- Add context container to behavior spec by
[@&#8203;jcthenerd](https://togithub.com/jcthenerd) in
[kotest/kotest#3737
- Fixed display of large ranges by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3765
- Expose the kotlin coroutineTestScope by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3769
- Increase maps diff size to 100, allowing for config by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3767
- Allow display name formatter to return null by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3764
- CoroutineDispatcher is not a TestDispatcher on JS by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3766
- Use evals as measure for assumptions by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3771
- Added tier3 targets
[#&#8203;3748](https://togithub.com/kotest/kotest/issues/3748) by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3761
- Add size matchers to typed Kotlin array classes by
[@&#8203;obecker](https://togithub.com/obecker) in
[kotest/kotest#3773
- Regular file passes the shouldBeEmptyDirectory() assertion by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3775
- OffsetDateTimeToleranceMatcher
([#&#8203;6](https://togithub.com/kotest/kotest/issues/6)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3781
- Add FixtureMonkey in third party extensions by
[@&#8203;seongahjo](https://togithub.com/seongahjo) in
[kotest/kotest#3782
- Local date time plus or minus by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3779
- Fix orNull with nullProbability=1.0 produce non-nulls by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3783
- Fix continually does not work with null values by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3786
- cutting docs for 5.8 by [@&#8203;Kantis](https://togithub.com/Kantis)
in
[kotest/kotest#3787
- Support binding properties to specific Arbs when doing reflective
binding by [@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3358
- Plus or minus for zoned date time draft
([#&#8203;8](https://togithub.com/kotest/kotest/issues/8)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3785
- Plus or minus for instant draft
([#&#8203;7](https://togithub.com/kotest/kotest/issues/7)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3784
- Fix race condition in beforeSpec by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3763
- Provide overriddable defaults for eventually by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3788
- cutting docs for 5.8 (right this time) by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3791
- Fix compiler plugin for K2 compiler by
[@&#8203;OliverO2](https://togithub.com/OliverO2) in
[kotest/kotest#3800
- Local time plus or minus take2 by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3802
- docs: fix EnabledCondition example (interface, not class) by
[@&#8203;jhult](https://togithub.com/jhult) in
[kotest/kotest#3810
- Update inspectors.md - Fixed a typo by
[@&#8203;karuturi](https://togithub.com/karuturi) in
[kotest/kotest#3811
- Fix `BigDecimal.ZERO.shouldBePositive()` returning true by
[@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3814
- Add `intersect` matcher to ranges by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3792
- tiny doc fix by [@&#8203;fantayeneh](https://togithub.com/fantayeneh)
in
[kotest/kotest#3823
- fix: Path.shouldBeAFile should fail on non-existant files by
[@&#8203;LeoColman](https://togithub.com/LeoColman) in
[kotest/kotest#3826
- Add `shouldNotBePositive` and `shouldNotBeNegative` matchers for
BigDecimal by [@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3818
- Support `Iterable` in `withData` on root level by
[@&#8203;obecker](https://togithub.com/obecker) in
[kotest/kotest#3831
- Added java.time.Year arbitrary support by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3842
- Added java.time.Year supports for reflective arbitrary bind by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3844
- Have upper bound print violations by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3847
- ContainDuplicates should print them
([#&#8203;20](https://togithub.com/kotest/kotest/issues/20)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3846
- Should contain exactly in any order count mismatch draft
([#&#8203;19](https://togithub.com/kotest/kotest/issues/19)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3845
- Replace Range Intersect tests with Property Tests by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3824
- Changing the Kotlin Gradle plugin dependncy to compileOnly by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3856
- Publishing JVM jar and pom in root variant by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3859
- Fixing Arb.localDate when minDate == maxDate by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3860
- fix(deps): update dependency io.mockk:mockk to v1.13.9 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3853
- Add selfie snapshot testing to the extensions listing by
[@&#8203;nedtwigg](https://togithub.com/nedtwigg) in
[kotest/kotest#3870
- Contains in order more details
([#&#8203;29](https://togithub.com/kotest/kotest/issues/29)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3871
- Fix maxDate not being generated by Arb.localDate() by
[@&#8203;oliverblaha](https://togithub.com/oliverblaha) in
[kotest/kotest#3876
- print-duplicates
([#&#8203;33](https://togithub.com/kotest/kotest/issues/33)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3883
- document-plusOrMinus-for-temporals
([#&#8203;34](https://togithub.com/kotest/kotest/issues/34)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3885
- Add selfie snapshot testing to the versioned docs pages by
[@&#8203;nedtwigg](https://togithub.com/nedtwigg) in
[kotest/kotest#3887
- override suspend fun beforeTest
([#&#8203;36](https://togithub.com/kotest/kotest/issues/36)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3892
- Creating a PR base workflow that shall be mandatory by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3893
- Fix the snapshot version badge in index markdowns by
[@&#8203;graceful-martin](https://togithub.com/graceful-martin) in
[kotest/kotest#3888
- add support for SortedSet and add test accordingly by
[@&#8203;mirageoasis](https://togithub.com/mirageoasis) in
[kotest/kotest#3873
- Have upper bound failure with more detail
([#&#8203;32](https://togithub.com/kotest/kotest/issues/32)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3882
- ShouldExistInOrderTest.kt
([#&#8203;30](https://togithub.com/kotest/kotest/issues/30)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3872
- Remove unnecessary delay when retry and fix error message by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3891
- more detailed failure for startWith and endWith by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3886
- Refactoring CI workflow by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3897
- Quote expected and actual exception messages in assertions by
[@&#8203;sschuberth](https://togithub.com/sschuberth) in
[kotest/kotest#3894
- Preserving original failure when short-circuiting eventually by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3864
- Update dependency io.github.classgraph:classgraph to v4.8.165 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3816
- comparing Maps, find keys similar to missing
([#&#8203;27](https://togithub.com/kotest/kotest/issues/27)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3866
- Contains in order more details draft
([#&#8203;43](https://togithub.com/kotest/kotest/issues/43)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3907
- Added IPAddressV6 arb by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3905
- Add includeFirst option to EventuallyConfiguration by
[@&#8203;kin4496](https://togithub.com/kin4496) in
[kotest/kotest#3904
- Update dependency io.mockk:mockk to v1.13.10 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3902
- Update dependency com.jayway.jsonpath:json-path to v2.9.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3903
- implement beWithin for ClosedRange and OpenEndRange by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3839
- Make `shouldBe expected` equivalent to `should be(expected)` for
non-matcher objects by [@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3827
- Framework should handle stack traces not being available by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3916
- add search for similar items to containAll by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3909
- Do not allow TestConfiguration::tags after spec is initialized by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3919
- Rename unresolved test config and allow passing into test methods by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3917
- Arb.distinct() should work for edgecases by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3920
- specify module name kotest-assertions-json by
[@&#8203;jlous](https://togithub.com/jlous) in
[kotest/kotest#3898
- Using NoSystemOutListener prevents single tests from being executed by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3923
- Fix information printed by KProperty0<T>.shouldHaveValue
([#&#8203;3908](https://togithub.com/kotest/kotest/issues/3908)) by
[@&#8203;gianninia](https://togithub.com/gianninia) in
[kotest/kotest#3921
- withEdgecases should keep shrinker
[#&#8203;3812](https://togithub.com/kotest/kotest/issues/3812) by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3922
- Fix TestWithConfigBuilder#config using parsed name when clear
TestDslState by [@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3798
- Proper fix for DescribeSpec test with a multiline description by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3926
- Allow equals comparison of BigDecimals with different scales by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3924
- Fixed use of type alias in shouldBeEqualToComparingFields by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3927
- Don't consider kotlinx and javax types to be builtin by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3899

##### New Contributors

- [@&#8203;tamj0rd2](https://togithub.com/tamj0rd2) made their first
contribution in
[kotest/kotest#3756
- [@&#8203;mirageoasis](https://togithub.com/mirageoasis) made their
first contribution in
[kotest/kotest#3757
- [@&#8203;jcthenerd](https://togithub.com/jcthenerd) made their first
contribution in
[kotest/kotest#3737
- [@&#8203;seongahjo](https://togithub.com/seongahjo) made their first
contribution in
[kotest/kotest#3782
- [@&#8203;jhult](https://togithub.com/jhult) made their first
contribution in
[kotest/kotest#3810
- [@&#8203;karuturi](https://togithub.com/karuturi) made their first
contribution in
[kotest/kotest#3811
- [@&#8203;pubiqq](https://togithub.com/pubiqq) made their first
contribution in
[kotest/kotest#3814
- [@&#8203;fantayeneh](https://togithub.com/fantayeneh) made their first
contribution in
[kotest/kotest#3823
- [@&#8203;nedtwigg](https://togithub.com/nedtwigg) made their first
contribution in
[kotest/kotest#3870
- [@&#8203;oliverblaha](https://togithub.com/oliverblaha) made their
first contribution in
[kotest/kotest#3876
- [@&#8203;graceful-martin](https://togithub.com/graceful-martin) made
their first contribution in
[kotest/kotest#3888
- [@&#8203;kin4496](https://togithub.com/kin4496) made their first
contribution in
[kotest/kotest#3904
- [@&#8203;jlous](https://togithub.com/jlous) made their first
contribution in
[kotest/kotest#3898
- [@&#8203;gianninia](https://togithub.com/gianninia) made their first
contribution in
[kotest/kotest#3921

**Full Changelog**:
kotest/kotest@v5.8.0...v5.8.1

</details>

<details>
<summary>springdoc/springdoc-openapi
(org.springdoc:springdoc-openapi-starter-webmvc-ui)</summary>

###
[`v2.4.0`](https://togithub.com/springdoc/springdoc-openapi/blob/HEAD/CHANGELOG.md#240---2023-03-12)

[Compare
Source](https://togithub.com/springdoc/springdoc-openapi/compare/v2.3.0...v2.4.0)

##### Added

-
[#&#8203;2443](https://togithub.com/springdoc/springdoc-openapi/issues/2443)
- Respect schema annotations when using spring mvc with kotlin
-
[#&#8203;2492](https://togithub.com/springdoc/springdoc-openapi/issues/2492),
[#&#8203;2488](https://togithub.com/springdoc/springdoc-openapi/issues/2488)
- Support dynamic evaluation of description field in the RequestBody
-
[#&#8203;2510](https://togithub.com/springdoc/springdoc-openapi/issues/2510)
- Option to disable root api-docs path when using groups

##### Changed

-   Upgrade spring-boot to 3.2.3
-   Upgrade swagger-core to 2.2.20
-   Upgrade swagger-ui to 5.11.8

##### Fixed

-
[#&#8203;2453](https://togithub.com/springdoc/springdoc-openapi/issues/2453)
- Fix CODE_OF_CONDUCT.md links
-
[#&#8203;2454](https://togithub.com/springdoc/springdoc-openapi/issues/2454)
- Fix typo in SwaggerWelcomeWebMvc
-
[#&#8203;2507](https://togithub.com/springdoc/springdoc-openapi/issues/2507)
- Fix typo in Constants
-
[#&#8203;2472](https://togithub.com/springdoc/springdoc-openapi/issues/2472)
- Update JavadocPropertyCustomizer.java
-
[#&#8203;2495](https://togithub.com/springdoc/springdoc-openapi/issues/2495)
- Fix broken links in README and CONTRIBUTING
-
[#&#8203;2501](https://togithub.com/springdoc/springdoc-openapi/issues/2501)
- bug fix when "exported" is set to false in RestResource annotation
-
[#&#8203;2447](https://togithub.com/springdoc/springdoc-openapi/issues/2447)
- Serialization to openapi of org.springframework.data.domain.Sort is
not done correctly
-
[#&#8203;2449](https://togithub.com/springdoc/springdoc-openapi/issues/2449)
- Extensions in subobjects of OpenAPI no longer work
-
[#&#8203;2461](https://togithub.com/springdoc/springdoc-openapi/issues/2461)
- Springdoc OpenApi Annotations
[@&#8203;ExtensionProperty](https://togithub.com/ExtensionProperty) Not
Evaluating Properties from application.yml
-
[#&#8203;2469](https://togithub.com/springdoc/springdoc-openapi/issues/2469)
- Pom contains invalid organizationUrl
-
[#&#8203;2518](https://togithub.com/springdoc/springdoc-openapi/issues/2518)
- Duplicate GroupConfigs in SpringDocConfigProperties
-
[#&#8203;2506](https://togithub.com/springdoc/springdoc-openapi/issues/2506)
- Springdoc breaks (Unexpected value: TRACE) when a
spring-cloud-starter-gateway-mvc universal gateway is configured.
-
[#&#8203;2519](https://togithub.com/springdoc/springdoc-openapi/issues/2519)
- Request parameter parsing error after using
[@&#8203;NotBlank](https://togithub.com/NotBlank) from type interface
field
-
[#&#8203;2516](https://togithub.com/springdoc/springdoc-openapi/issues/2516)
- Spring Data REST fails when setting version to openapi\_3\_1
-
[#&#8203;2509](https://togithub.com/springdoc/springdoc-openapi/issues/2509)
- ArrayIndexOutOfBoundsException in SwaggerUiConfigParameters
-
[#&#8203;2484](https://togithub.com/springdoc/springdoc-openapi/issues/2484)
- JavaDoc integration not working with SnakeCaseStrategy property naming
-
[#&#8203;2483](https://togithub.com/springdoc/springdoc-openapi/issues/2483)
- Controller advice documents ApiResponse on every operation, even if
the operation does not annotate the exception to be thrown
-
[#&#8203;2477](https://togithub.com/springdoc/springdoc-openapi/issues/2477)
- buildApiResponses ignores produced ContentType in case of many
[@&#8203;Operation](https://togithub.com/Operation)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" in timezone
Europe/Dublin, 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](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/BSStudio/bss-web-admin-backend).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzguMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Bence Csik <22349790+csikb@users.noreply.github.com>
csikb added a commit to BSStudio/bss-web-admin-backend that referenced this pull request Mar 13, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [io.kotest:kotest-runner-junit5](https://togithub.com/kotest/kotest) |
`5.8.0` -> `5.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.kotest:kotest-runner-junit5/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.kotest:kotest-runner-junit5/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.kotest:kotest-runner-junit5/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.kotest:kotest-runner-junit5/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[io.kotest:kotest-assertions-core-jvm](https://togithub.com/kotest/kotest)
| `5.8.0` -> `5.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.kotest:kotest-assertions-core-jvm/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.kotest:kotest-assertions-core-jvm/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.kotest:kotest-assertions-core-jvm/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.kotest:kotest-assertions-core-jvm/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.kotest:kotest-assertions-json](https://togithub.com/kotest/kotest)
| `5.8.0` -> `5.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.kotest:kotest-assertions-json/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.kotest:kotest-assertions-json/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.kotest:kotest-assertions-json/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.kotest:kotest-assertions-json/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[org.springdoc:springdoc-openapi-starter-webmvc-ui](https://springdoc.org/)
([source](https://togithub.com/springdoc/springdoc-openapi)) | `2.3.0`
-> `2.4.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/org.springdoc:springdoc-openapi-starter-webmvc-ui/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/org.springdoc:springdoc-openapi-starter-webmvc-ui/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/org.springdoc:springdoc-openapi-starter-webmvc-ui/2.3.0/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.springdoc:springdoc-openapi-starter-webmvc-ui/2.3.0/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>kotest/kotest (io.kotest:kotest-runner-junit5)</summary>

### [`v5.8.1`](https://togithub.com/kotest/kotest/releases/tag/v5.8.1)

##### What's Changed

- Update dependency io.github.classgraph:classgraph to v4.8.164 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3751
- Non-negative/positive `Long` assertions and property testers by
[@&#8203;RusticFlare](https://togithub.com/RusticFlare) in
[kotest/kotest#3720
- Fix typo in documentation by
[@&#8203;tamj0rd2](https://togithub.com/tamj0rd2) in
[kotest/kotest#3756
- fixed : rolled back to initial Readme.md by
[@&#8203;mirageoasis](https://togithub.com/mirageoasis) in
[kotest/kotest#3757
- Add context container to behavior spec by
[@&#8203;jcthenerd](https://togithub.com/jcthenerd) in
[kotest/kotest#3737
- Fixed display of large ranges by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3765
- Expose the kotlin coroutineTestScope by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3769
- Increase maps diff size to 100, allowing for config by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3767
- Allow display name formatter to return null by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3764
- CoroutineDispatcher is not a TestDispatcher on JS by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3766
- Use evals as measure for assumptions by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3771
- Added tier3 targets
[#&#8203;3748](https://togithub.com/kotest/kotest/issues/3748) by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3761
- Add size matchers to typed Kotlin array classes by
[@&#8203;obecker](https://togithub.com/obecker) in
[kotest/kotest#3773
- Regular file passes the shouldBeEmptyDirectory() assertion by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3775
- OffsetDateTimeToleranceMatcher
([#&#8203;6](https://togithub.com/kotest/kotest/issues/6)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3781
- Add FixtureMonkey in third party extensions by
[@&#8203;seongahjo](https://togithub.com/seongahjo) in
[kotest/kotest#3782
- Local date time plus or minus by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3779
- Fix orNull with nullProbability=1.0 produce non-nulls by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3783
- Fix continually does not work with null values by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3786
- cutting docs for 5.8 by [@&#8203;Kantis](https://togithub.com/Kantis)
in
[kotest/kotest#3787
- Support binding properties to specific Arbs when doing reflective
binding by [@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3358
- Plus or minus for zoned date time draft
([#&#8203;8](https://togithub.com/kotest/kotest/issues/8)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3785
- Plus or minus for instant draft
([#&#8203;7](https://togithub.com/kotest/kotest/issues/7)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3784
- Fix race condition in beforeSpec by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3763
- Provide overriddable defaults for eventually by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3788
- cutting docs for 5.8 (right this time) by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3791
- Fix compiler plugin for K2 compiler by
[@&#8203;OliverO2](https://togithub.com/OliverO2) in
[kotest/kotest#3800
- Local time plus or minus take2 by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3802
- docs: fix EnabledCondition example (interface, not class) by
[@&#8203;jhult](https://togithub.com/jhult) in
[kotest/kotest#3810
- Update inspectors.md - Fixed a typo by
[@&#8203;karuturi](https://togithub.com/karuturi) in
[kotest/kotest#3811
- Fix `BigDecimal.ZERO.shouldBePositive()` returning true by
[@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3814
- Add `intersect` matcher to ranges by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3792
- tiny doc fix by [@&#8203;fantayeneh](https://togithub.com/fantayeneh)
in
[kotest/kotest#3823
- fix: Path.shouldBeAFile should fail on non-existant files by
[@&#8203;LeoColman](https://togithub.com/LeoColman) in
[kotest/kotest#3826
- Add `shouldNotBePositive` and `shouldNotBeNegative` matchers for
BigDecimal by [@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3818
- Support `Iterable` in `withData` on root level by
[@&#8203;obecker](https://togithub.com/obecker) in
[kotest/kotest#3831
- Added java.time.Year arbitrary support by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3842
- Added java.time.Year supports for reflective arbitrary bind by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3844
- Have upper bound print violations by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3847
- ContainDuplicates should print them
([#&#8203;20](https://togithub.com/kotest/kotest/issues/20)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3846
- Should contain exactly in any order count mismatch draft
([#&#8203;19](https://togithub.com/kotest/kotest/issues/19)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3845
- Replace Range Intersect tests with Property Tests by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3824
- Changing the Kotlin Gradle plugin dependncy to compileOnly by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3856
- Publishing JVM jar and pom in root variant by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3859
- Fixing Arb.localDate when minDate == maxDate by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3860
- fix(deps): update dependency io.mockk:mockk to v1.13.9 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3853
- Add selfie snapshot testing to the extensions listing by
[@&#8203;nedtwigg](https://togithub.com/nedtwigg) in
[kotest/kotest#3870
- Contains in order more details
([#&#8203;29](https://togithub.com/kotest/kotest/issues/29)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3871
- Fix maxDate not being generated by Arb.localDate() by
[@&#8203;oliverblaha](https://togithub.com/oliverblaha) in
[kotest/kotest#3876
- print-duplicates
([#&#8203;33](https://togithub.com/kotest/kotest/issues/33)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3883
- document-plusOrMinus-for-temporals
([#&#8203;34](https://togithub.com/kotest/kotest/issues/34)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3885
- Add selfie snapshot testing to the versioned docs pages by
[@&#8203;nedtwigg](https://togithub.com/nedtwigg) in
[kotest/kotest#3887
- override suspend fun beforeTest
([#&#8203;36](https://togithub.com/kotest/kotest/issues/36)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3892
- Creating a PR base workflow that shall be mandatory by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3893
- Fix the snapshot version badge in index markdowns by
[@&#8203;graceful-martin](https://togithub.com/graceful-martin) in
[kotest/kotest#3888
- add support for SortedSet and add test accordingly by
[@&#8203;mirageoasis](https://togithub.com/mirageoasis) in
[kotest/kotest#3873
- Have upper bound failure with more detail
([#&#8203;32](https://togithub.com/kotest/kotest/issues/32)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3882
- ShouldExistInOrderTest.kt
([#&#8203;30](https://togithub.com/kotest/kotest/issues/30)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3872
- Remove unnecessary delay when retry and fix error message by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3891
- more detailed failure for startWith and endWith by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3886
- Refactoring CI workflow by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3897
- Quote expected and actual exception messages in assertions by
[@&#8203;sschuberth](https://togithub.com/sschuberth) in
[kotest/kotest#3894
- Preserving original failure when short-circuiting eventually by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3864
- Update dependency io.github.classgraph:classgraph to v4.8.165 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3816
- comparing Maps, find keys similar to missing
([#&#8203;27](https://togithub.com/kotest/kotest/issues/27)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3866
- Contains in order more details draft
([#&#8203;43](https://togithub.com/kotest/kotest/issues/43)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3907
- Added IPAddressV6 arb by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3905
- Add includeFirst option to EventuallyConfiguration by
[@&#8203;kin4496](https://togithub.com/kin4496) in
[kotest/kotest#3904
- Update dependency io.mockk:mockk to v1.13.10 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3902
- Update dependency com.jayway.jsonpath:json-path to v2.9.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3903
- implement beWithin for ClosedRange and OpenEndRange by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3839
- Make `shouldBe expected` equivalent to `should be(expected)` for
non-matcher objects by [@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3827
- Framework should handle stack traces not being available by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3916
- add search for similar items to containAll by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3909
- Do not allow TestConfiguration::tags after spec is initialized by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3919
- Rename unresolved test config and allow passing into test methods by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3917
- Arb.distinct() should work for edgecases by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3920
- specify module name kotest-assertions-json by
[@&#8203;jlous](https://togithub.com/jlous) in
[kotest/kotest#3898
- Using NoSystemOutListener prevents single tests from being executed by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3923
- Fix information printed by KProperty0<T>.shouldHaveValue
([#&#8203;3908](https://togithub.com/kotest/kotest/issues/3908)) by
[@&#8203;gianninia](https://togithub.com/gianninia) in
[kotest/kotest#3921
- withEdgecases should keep shrinker
[#&#8203;3812](https://togithub.com/kotest/kotest/issues/3812) by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3922
- Fix TestWithConfigBuilder#config using parsed name when clear
TestDslState by [@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3798
- Proper fix for DescribeSpec test with a multiline description by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3926
- Allow equals comparison of BigDecimals with different scales by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3924
- Fixed use of type alias in shouldBeEqualToComparingFields by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3927
- Don't consider kotlinx and javax types to be builtin by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3899

##### New Contributors

- [@&#8203;tamj0rd2](https://togithub.com/tamj0rd2) made their first
contribution in
[kotest/kotest#3756
- [@&#8203;mirageoasis](https://togithub.com/mirageoasis) made their
first contribution in
[kotest/kotest#3757
- [@&#8203;jcthenerd](https://togithub.com/jcthenerd) made their first
contribution in
[kotest/kotest#3737
- [@&#8203;seongahjo](https://togithub.com/seongahjo) made their first
contribution in
[kotest/kotest#3782
- [@&#8203;jhult](https://togithub.com/jhult) made their first
contribution in
[kotest/kotest#3810
- [@&#8203;karuturi](https://togithub.com/karuturi) made their first
contribution in
[kotest/kotest#3811
- [@&#8203;pubiqq](https://togithub.com/pubiqq) made their first
contribution in
[kotest/kotest#3814
- [@&#8203;fantayeneh](https://togithub.com/fantayeneh) made their first
contribution in
[kotest/kotest#3823
- [@&#8203;nedtwigg](https://togithub.com/nedtwigg) made their first
contribution in
[kotest/kotest#3870
- [@&#8203;oliverblaha](https://togithub.com/oliverblaha) made their
first contribution in
[kotest/kotest#3876
- [@&#8203;graceful-martin](https://togithub.com/graceful-martin) made
their first contribution in
[kotest/kotest#3888
- [@&#8203;kin4496](https://togithub.com/kin4496) made their first
contribution in
[kotest/kotest#3904
- [@&#8203;jlous](https://togithub.com/jlous) made their first
contribution in
[kotest/kotest#3898
- [@&#8203;gianninia](https://togithub.com/gianninia) made their first
contribution in
[kotest/kotest#3921

**Full Changelog**:
kotest/kotest@v5.8.0...v5.8.1

</details>

<details>
<summary>springdoc/springdoc-openapi
(org.springdoc:springdoc-openapi-starter-webmvc-ui)</summary>

###
[`v2.4.0`](https://togithub.com/springdoc/springdoc-openapi/blob/HEAD/CHANGELOG.md#240---2023-03-12)

[Compare
Source](https://togithub.com/springdoc/springdoc-openapi/compare/v2.3.0...v2.4.0)

##### Added

-
[#&#8203;2443](https://togithub.com/springdoc/springdoc-openapi/issues/2443)
- Respect schema annotations when using spring mvc with kotlin
-
[#&#8203;2492](https://togithub.com/springdoc/springdoc-openapi/issues/2492),
[#&#8203;2488](https://togithub.com/springdoc/springdoc-openapi/issues/2488)
- Support dynamic evaluation of description field in the RequestBody
-
[#&#8203;2510](https://togithub.com/springdoc/springdoc-openapi/issues/2510)
- Option to disable root api-docs path when using groups

##### Changed

-   Upgrade spring-boot to 3.2.3
-   Upgrade swagger-core to 2.2.20
-   Upgrade swagger-ui to 5.11.8

##### Fixed

-
[#&#8203;2453](https://togithub.com/springdoc/springdoc-openapi/issues/2453)
- Fix CODE_OF_CONDUCT.md links
-
[#&#8203;2454](https://togithub.com/springdoc/springdoc-openapi/issues/2454)
- Fix typo in SwaggerWelcomeWebMvc
-
[#&#8203;2507](https://togithub.com/springdoc/springdoc-openapi/issues/2507)
- Fix typo in Constants
-
[#&#8203;2472](https://togithub.com/springdoc/springdoc-openapi/issues/2472)
- Update JavadocPropertyCustomizer.java
-
[#&#8203;2495](https://togithub.com/springdoc/springdoc-openapi/issues/2495)
- Fix broken links in README and CONTRIBUTING
-
[#&#8203;2501](https://togithub.com/springdoc/springdoc-openapi/issues/2501)
- bug fix when "exported" is set to false in RestResource annotation
-
[#&#8203;2447](https://togithub.com/springdoc/springdoc-openapi/issues/2447)
- Serialization to openapi of org.springframework.data.domain.Sort is
not done correctly
-
[#&#8203;2449](https://togithub.com/springdoc/springdoc-openapi/issues/2449)
- Extensions in subobjects of OpenAPI no longer work
-
[#&#8203;2461](https://togithub.com/springdoc/springdoc-openapi/issues/2461)
- Springdoc OpenApi Annotations
[@&#8203;ExtensionProperty](https://togithub.com/ExtensionProperty) Not
Evaluating Properties from application.yml
-
[#&#8203;2469](https://togithub.com/springdoc/springdoc-openapi/issues/2469)
- Pom contains invalid organizationUrl
-
[#&#8203;2518](https://togithub.com/springdoc/springdoc-openapi/issues/2518)
- Duplicate GroupConfigs in SpringDocConfigProperties
-
[#&#8203;2506](https://togithub.com/springdoc/springdoc-openapi/issues/2506)
- Springdoc breaks (Unexpected value: TRACE) when a
spring-cloud-starter-gateway-mvc universal gateway is configured.
-
[#&#8203;2519](https://togithub.com/springdoc/springdoc-openapi/issues/2519)
- Request parameter parsing error after using
[@&#8203;NotBlank](https://togithub.com/NotBlank) from type interface
field
-
[#&#8203;2516](https://togithub.com/springdoc/springdoc-openapi/issues/2516)
- Spring Data REST fails when setting version to openapi\_3\_1
-
[#&#8203;2509](https://togithub.com/springdoc/springdoc-openapi/issues/2509)
- ArrayIndexOutOfBoundsException in SwaggerUiConfigParameters
-
[#&#8203;2484](https://togithub.com/springdoc/springdoc-openapi/issues/2484)
- JavaDoc integration not working with SnakeCaseStrategy property naming
-
[#&#8203;2483](https://togithub.com/springdoc/springdoc-openapi/issues/2483)
- Controller advice documents ApiResponse on every operation, even if
the operation does not annotate the exception to be thrown
-
[#&#8203;2477](https://togithub.com/springdoc/springdoc-openapi/issues/2477)
- buildApiResponses ignores produced ContentType in case of many
[@&#8203;Operation](https://togithub.com/Operation)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" in timezone
Europe/Dublin, 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](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/BSStudio/bss-web-admin-backend).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzguMSIsInVwZGF0ZWRJblZlciI6IjM3LjIzOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Bence Csik <22349790+csikb@users.noreply.github.com>
serras pushed a commit to arrow-kt/arrow-website that referenced this pull request Mar 28, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [io.kotest:kotest-property](https://togithub.com/kotest/kotest) |
`5.8.0` -> `5.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.kotest:kotest-property/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.kotest:kotest-property/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.kotest:kotest-property/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.kotest:kotest-property/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [io.kotest:kotest-assertions-core](https://togithub.com/kotest/kotest)
| `5.8.0` -> `5.8.1` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/io.kotest:kotest-assertions-core/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.kotest:kotest-assertions-core/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.kotest:kotest-assertions-core/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.kotest:kotest-assertions-core/5.8.0/5.8.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>kotest/kotest (io.kotest:kotest-property)</summary>

### [`v5.8.1`](https://togithub.com/kotest/kotest/releases/tag/v5.8.1)

##### What's Changed

- Update dependency io.github.classgraph:classgraph to v4.8.164 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3751
- Non-negative/positive `Long` assertions and property testers by
[@&#8203;RusticFlare](https://togithub.com/RusticFlare) in
[kotest/kotest#3720
- Fix typo in documentation by
[@&#8203;tamj0rd2](https://togithub.com/tamj0rd2) in
[kotest/kotest#3756
- fixed : rolled back to initial Readme.md by
[@&#8203;mirageoasis](https://togithub.com/mirageoasis) in
[kotest/kotest#3757
- Add context container to behavior spec by
[@&#8203;jcthenerd](https://togithub.com/jcthenerd) in
[kotest/kotest#3737
- Fixed display of large ranges by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3765
- Expose the kotlin coroutineTestScope by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3769
- Increase maps diff size to 100, allowing for config by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3767
- Allow display name formatter to return null by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3764
- CoroutineDispatcher is not a TestDispatcher on JS by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3766
- Use evals as measure for assumptions by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3771
- Added tier3 targets
[#&#8203;3748](https://togithub.com/kotest/kotest/issues/3748) by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3761
- Add size matchers to typed Kotlin array classes by
[@&#8203;obecker](https://togithub.com/obecker) in
[kotest/kotest#3773
- Regular file passes the shouldBeEmptyDirectory() assertion by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3775
- OffsetDateTimeToleranceMatcher
([#&#8203;6](https://togithub.com/kotest/kotest/issues/6)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3781
- Add FixtureMonkey in third party extensions by
[@&#8203;seongahjo](https://togithub.com/seongahjo) in
[kotest/kotest#3782
- Local date time plus or minus by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3779
- Fix orNull with nullProbability=1.0 produce non-nulls by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3783
- Fix continually does not work with null values by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3786
- cutting docs for 5.8 by [@&#8203;Kantis](https://togithub.com/Kantis)
in
[kotest/kotest#3787
- Support binding properties to specific Arbs when doing reflective
binding by [@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3358
- Plus or minus for zoned date time draft
([#&#8203;8](https://togithub.com/kotest/kotest/issues/8)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3785
- Plus or minus for instant draft
([#&#8203;7](https://togithub.com/kotest/kotest/issues/7)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3784
- Fix race condition in beforeSpec by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3763
- Provide overriddable defaults for eventually by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3788
- cutting docs for 5.8 (right this time) by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3791
- Fix compiler plugin for K2 compiler by
[@&#8203;OliverO2](https://togithub.com/OliverO2) in
[kotest/kotest#3800
- Local time plus or minus take2 by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3802
- docs: fix EnabledCondition example (interface, not class) by
[@&#8203;jhult](https://togithub.com/jhult) in
[kotest/kotest#3810
- Update inspectors.md - Fixed a typo by
[@&#8203;karuturi](https://togithub.com/karuturi) in
[kotest/kotest#3811
- Fix `BigDecimal.ZERO.shouldBePositive()` returning true by
[@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3814
- Add `intersect` matcher to ranges by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3792
- tiny doc fix by [@&#8203;fantayeneh](https://togithub.com/fantayeneh)
in
[kotest/kotest#3823
- fix: Path.shouldBeAFile should fail on non-existant files by
[@&#8203;LeoColman](https://togithub.com/LeoColman) in
[kotest/kotest#3826
- Add `shouldNotBePositive` and `shouldNotBeNegative` matchers for
BigDecimal by [@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3818
- Support `Iterable` in `withData` on root level by
[@&#8203;obecker](https://togithub.com/obecker) in
[kotest/kotest#3831
- Added java.time.Year arbitrary support by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3842
- Added java.time.Year supports for reflective arbitrary bind by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3844
- Have upper bound print violations by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3847
- ContainDuplicates should print them
([#&#8203;20](https://togithub.com/kotest/kotest/issues/20)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3846
- Should contain exactly in any order count mismatch draft
([#&#8203;19](https://togithub.com/kotest/kotest/issues/19)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3845
- Replace Range Intersect tests with Property Tests by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3824
- Changing the Kotlin Gradle plugin dependncy to compileOnly by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3856
- Publishing JVM jar and pom in root variant by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3859
- Fixing Arb.localDate when minDate == maxDate by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3860
- fix(deps): update dependency io.mockk:mockk to v1.13.9 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3853
- Add selfie snapshot testing to the extensions listing by
[@&#8203;nedtwigg](https://togithub.com/nedtwigg) in
[kotest/kotest#3870
- Contains in order more details
([#&#8203;29](https://togithub.com/kotest/kotest/issues/29)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3871
- Fix maxDate not being generated by Arb.localDate() by
[@&#8203;oliverblaha](https://togithub.com/oliverblaha) in
[kotest/kotest#3876
- print-duplicates
([#&#8203;33](https://togithub.com/kotest/kotest/issues/33)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3883
- document-plusOrMinus-for-temporals
([#&#8203;34](https://togithub.com/kotest/kotest/issues/34)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3885
- Add selfie snapshot testing to the versioned docs pages by
[@&#8203;nedtwigg](https://togithub.com/nedtwigg) in
[kotest/kotest#3887
- override suspend fun beforeTest
([#&#8203;36](https://togithub.com/kotest/kotest/issues/36)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3892
- Creating a PR base workflow that shall be mandatory by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3893
- Fix the snapshot version badge in index markdowns by
[@&#8203;graceful-martin](https://togithub.com/graceful-martin) in
[kotest/kotest#3888
- add support for SortedSet and add test accordingly by
[@&#8203;mirageoasis](https://togithub.com/mirageoasis) in
[kotest/kotest#3873
- Have upper bound failure with more detail
([#&#8203;32](https://togithub.com/kotest/kotest/issues/32)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3882
- ShouldExistInOrderTest.kt
([#&#8203;30](https://togithub.com/kotest/kotest/issues/30)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3872
- Remove unnecessary delay when retry and fix error message by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3891
- more detailed failure for startWith and endWith by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3886
- Refactoring CI workflow by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3897
- Quote expected and actual exception messages in assertions by
[@&#8203;sschuberth](https://togithub.com/sschuberth) in
[kotest/kotest#3894
- Preserving original failure when short-circuiting eventually by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3864
- Update dependency io.github.classgraph:classgraph to v4.8.165 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3816
- comparing Maps, find keys similar to missing
([#&#8203;27](https://togithub.com/kotest/kotest/issues/27)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3866
- Contains in order more details draft
([#&#8203;43](https://togithub.com/kotest/kotest/issues/43)) by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3907
- Added IPAddressV6 arb by
[@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3905
- Add includeFirst option to EventuallyConfiguration by
[@&#8203;kin4496](https://togithub.com/kin4496) in
[kotest/kotest#3904
- Update dependency io.mockk:mockk to v1.13.10 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3902
- Update dependency com.jayway.jsonpath:json-path to v2.9.0 by
[@&#8203;renovate](https://togithub.com/renovate) in
[kotest/kotest#3903
- implement beWithin for ClosedRange and OpenEndRange by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3839
- Make `shouldBe expected` equivalent to `should be(expected)` for
non-matcher objects by [@&#8203;pubiqq](https://togithub.com/pubiqq) in
[kotest/kotest#3827
- Framework should handle stack traces not being available by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3916
- add search for similar items to containAll by
[@&#8203;AlexCue987](https://togithub.com/AlexCue987) in
[kotest/kotest#3909
- Do not allow TestConfiguration::tags after spec is initialized by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3919
- Rename unresolved test config and allow passing into test methods by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3917
- Arb.distinct() should work for edgecases by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3920
- specify module name kotest-assertions-json by
[@&#8203;jlous](https://togithub.com/jlous) in
[kotest/kotest#3898
- Using NoSystemOutListener prevents single tests from being executed by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3923
- Fix information printed by KProperty0<T>.shouldHaveValue
([#&#8203;3908](https://togithub.com/kotest/kotest/issues/3908)) by
[@&#8203;gianninia](https://togithub.com/gianninia) in
[kotest/kotest#3921
- withEdgecases should keep shrinker
[#&#8203;3812](https://togithub.com/kotest/kotest/issues/3812) by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3922
- Fix TestWithConfigBuilder#config using parsed name when clear
TestDslState by [@&#8203;kshired](https://togithub.com/kshired) in
[kotest/kotest#3798
- Proper fix for DescribeSpec test with a multiline description by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3926
- Allow equals comparison of BigDecimals with different scales by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3924
- Fixed use of type alias in shouldBeEqualToComparingFields by
[@&#8203;sksamuel](https://togithub.com/sksamuel) in
[kotest/kotest#3927
- Don't consider kotlinx and javax types to be builtin by
[@&#8203;Kantis](https://togithub.com/Kantis) in
[kotest/kotest#3899

##### New Contributors

- [@&#8203;tamj0rd2](https://togithub.com/tamj0rd2) made their first
contribution in
[kotest/kotest#3756
- [@&#8203;mirageoasis](https://togithub.com/mirageoasis) made their
first contribution in
[kotest/kotest#3757
- [@&#8203;jcthenerd](https://togithub.com/jcthenerd) made their first
contribution in
[kotest/kotest#3737
- [@&#8203;seongahjo](https://togithub.com/seongahjo) made their first
contribution in
[kotest/kotest#3782
- [@&#8203;jhult](https://togithub.com/jhult) made their first
contribution in
[kotest/kotest#3810
- [@&#8203;karuturi](https://togithub.com/karuturi) made their first
contribution in
[kotest/kotest#3811
- [@&#8203;pubiqq](https://togithub.com/pubiqq) made their first
contribution in
[kotest/kotest#3814
- [@&#8203;fantayeneh](https://togithub.com/fantayeneh) made their first
contribution in
[kotest/kotest#3823
- [@&#8203;nedtwigg](https://togithub.com/nedtwigg) made their first
contribution in
[kotest/kotest#3870
- [@&#8203;oliverblaha](https://togithub.com/oliverblaha) made their
first contribution in
[kotest/kotest#3876
- [@&#8203;graceful-martin](https://togithub.com/graceful-martin) made
their first contribution in
[kotest/kotest#3888
- [@&#8203;kin4496](https://togithub.com/kin4496) made their first
contribution in
[kotest/kotest#3904
- [@&#8203;jlous](https://togithub.com/jlous) made their first
contribution in
[kotest/kotest#3898
- [@&#8203;gianninia](https://togithub.com/gianninia) made their first
contribution in
[kotest/kotest#3921

**Full Changelog**:
kotest/kotest@v5.8.0...v5.8.1

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
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.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/arrow-kt/arrow-website).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMzAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIzMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
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.

None yet

3 participants