Skip to content
This repository has been archived by the owner on Jul 6, 2022. It is now read-only.

Update all dependencies #14

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Update all dependencies #14

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Apr 5, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.jlleitschuh.gradle:ktlint-gradle 10.2.1 -> 10.3.0 age adoption passing confidence
io.gitlab.arturbosch.detekt:detekt-gradle-plugin (source) 1.19.0 -> 1.20.0 age adoption passing confidence
org.jetbrains.dokka:dokka-gradle-plugin 1.6.10 -> 1.7.0 age adoption passing confidence
org.jetbrains.kotlin.jvm (source) 1.6.20 -> 1.7.0 age adoption passing confidence
org.jetbrains.kotlin:kotlin-noarg (source) 1.6.20 -> 1.7.0 age adoption passing confidence
org.jetbrains.kotlin:kotlin-allopen (source) 1.6.20 -> 1.7.0 age adoption passing confidence
org.jetbrains.kotlin:kotlin-reflect (source) 1.6.20 -> 1.7.0 age adoption passing confidence
org.jetbrains.kotlin:kotlin-stdlib-jdk8 (source) 1.6.20 -> 1.7.0 age adoption passing confidence
org.jetbrains.kotlin:kotlin-gradle-plugin (source) 1.6.20 -> 1.7.0 age adoption passing confidence
de.lancom.genesis.kotlin 1.1.6 -> 2.0.3 age adoption passing confidence

Release Notes

detekt/detekt

v1.20.0

We're extremely excited to share with you all the next upcoming stable release of Detekt: 1.20.0 🎉
This release is coming with 16 new rules, new API and functionalities and several stability improvements.

First, much thanks to our sponsors ❤️ as we were able to buy a domain and move our website to https://detekt.dev/.

As for the feature shipped, we work a lot on the Reporting side: we added a new type of reporting, improved the styling of the existing one and
generally reduced the unnecessary warnings of run with type resolution.

For rules like ForbiddenMethod where you can configure a signature of a method you want to use in your rule, we added a new syntax
that allows to reference generic methods & extension functions.

We update a lot of the libraries we depend on bringing Detekt up to the ecosystem: KtLint 0.45.2, Kotlin 1.6.20 and Gradle 7.4.2 to name a few.

Finally, we also migrated all of our tests from Spek to JUnit. This was a huge effort that will hopefully make easier for contributors
to be involved with Detekt.

As always, we want to take the opportunity to thank our contributors for testing, bug reporting and helping
us release this new version of Detekt. You're more than welcome to join our community on the #detekt channel on KotlinLang's Slack (you can get an invite here).

Notable Changes
  • With this Detekt versions, rule authors can define the default configuration for their custom rules. This default configuration will be merged together with the user configuration and can be overridden by the user if they wish. More on this here #​4315. The formatting ruleset provided by Detekt is updated to use this new mechanism - #​4352
  • We've added 16 new rules:
    • UnnecessaryInnerClass - #​4394
    • CanBeNonNullableProperty - #​4379
    • NullCheckOnMutableProperty - #​4353
    • SuspendFunWithCoroutineScopeReceiver - #​4616
    • ElseCaseInsteadOfExhaustiveWhen - #​4632
    • TrailingComma - From KtLint - #​4227
    • UnnecessaryParenthesesBeforeTrailingLambda - From KtLint - #​4630
    • BlockCommentInitialStarAlignment - From KtLint - #​4645
    • CommentWrapping - From KtLint - #​4645
    • DiscouragedCommentLocation - From KtLint - #​4645
    • FunKeywordSpacing - From KtLint - #​4645
    • FunctionTypeReferenceSpacing - From KtLint - #​4645
    • KdocWrapping - From KtLint - #​4645
    • ModifierListSpacing - From KtLint - #​4645
    • TypeArgumentListSpacing - From KtLint - #​4645
    • Wrapping - From KtLint - #​4645
  • We've made several improvements to the console reporting:
    • The HTML report has now a better CSS styling - #​4447
    • The default reporting format is now LiteFindingsReport (which is more compact reporting and similar to other tools in the ecosystem. You can see an example here) - #​4449.
    • We've added issue details to findings on FindingsReport and FileBasedFindingsReporter - #​4464
    • We suppressed several warnings reported when running with type resolution - #​4423
  • We fixed a regression introduced in 1.19.0 for users using ignoreAnnotated running without type resolution - #​4570
  • For rules like ForbiddenMethod where you can specify a method name in the config file, now we added support for:
    • Matching functions with generics - #​4460
    • Matching extension functions - #​4459
  • We've fixed a security vulnerability related to XML parsing - #​4499
  • We've changed the behavior of the baseline task. Now the baseline is always update, even if you fixed all the issues in your codebase - #​4445
  • We now enable the naming ruleset by default also on tests. Previously they were excluded - #​4438
  • This version of Detekt is built with Gradle v7.4.2, AGP 7.1.3 and Kotlin 1.6.20 (see #​4530 #​4573 #​4133 #​4277 #​4665)
  • This version of Detekt is wrapping KtLint version 0.45.2 (see #​4227 #​4630 #​4645 #​4690)
  • For contributors: we migrated all our tests from Spek to JUnit due to better support and tooling #​4670.
Changelog
  • Display dynamic --jvm-target values when using --help flag - #​4694
  • CanBeNonNullable shouldn't consider abstract properties - #​4686
  • NonBooleanPropertyPrefixedWithIs: Allow boolean function reference - #​4684
  • [VarCouldBeVal] fix overrides false positives - #​4664
  • Add ignoreOverridden support for BooleanPropertyNaming rule - #​4654
  • Fix regression generating configuration - #​4646
  • Fix concurrency issue when creating PomModel (#​4609) - #​4631
  • UnnecessaryAbstractClass: fix false positive when the abstract class has properties in the primary constructor - #​4628
  • Properly set toolVersion on DetektExtension - #​4623
  • NamedArguments: Ignore when argument values are the same as the parameter name - #​4613
  • Parallel invocation of AnalysisFacade fails spuriously in 1.20.0-RC1 - #​4609
  • NoSuchElementException after updating to 1.20.0-RC1 - #​4604
  • Better error classification in Gradle Enterprise. - #​4586
  • Fix for missing /kotlin folder when running on Android projects - #​4554
  • Deprecate continuationIndentSize from the Indentation rule - #​4551
  • Fix performance issue for regexp in Reporting.kt - #​4550
  • Revert "trim values when parsing the baseline (#​4335)" - #​4548
  • Fix AutoCorrection crashing with Missing extension point - #​4545
  • Make DoubleMutabilityForCollection configurable and set a DoubleMutability alias - #​4541
  • Fix AnnotationExcluder - #​4518
  • Fix false positive of UnnecessaryInnerClass - #​4509
  • [MaxLineLength] Fix signature in for blank characters in the Baseline - #​4504
  • Fix overridden function reporting for CanBeNonNullable rule - #​4497
  • Set the name of functions and paramenters between ` to improve the readability - #​4488
  • update InvalidPackageDeclaration to report if rootPackage is not present - #​4484
  • [VarCouldBeVal] Override vars will not be flagged if bindingContext is not set - #​4477
  • Document the overlapping rules from formatting - #​4473
  • Match functions signatures with lambdas on it - #​4458
  • Add option for OutdatedDocumentation to allow param in constructor pr… - #​4453
  • Ignore private operators when we don't have ContextBingding in UnusedPrivateMember - #​4441
  • Add documentation for Suppressors - #​4440
  • [FunctionNaming] Don't allow the usage of ` in function names - #​4439
  • Add list of functions to skip in IgnoredReturnValue rule - #​4434
  • Extend CanBeNonNullable rule to check function params - #​4431
  • Extend VarCouldBeVal to include analysis of file- and class-level properties - #​4424
  • Formulate rule/sample-extensions descriptions consistently - #​4412
  • Fix false-positive on ExplicitCollectionElementAccessMethod - #​4400
  • Fixes false negatives in UnnecessaryAbstractClass - #​4399
  • Add first draft of a rule description style guide - #​4386
  • Forbid usage of java.lang.ClassLoader.getResourceAsStream - #​4381
  • Update Sponsor button to Detekt's one - #​4378
  • [OptionalUnit] Allow a function to declare a Unit return type when it uses a generic function initializer - #​4371
  • Completely-empty abstract classes will now be flagged by UnnecessaryAbstractClass - #​4370
  • Fix false positive in RethrowCaughtException for try with more than one catch (#​4367) - #​4369
  • Testing and rule improvement for EmptyElseBlock - #​4349
  • UnusedPrivateMember should not report external classes/interfaces - #​4347
  • [UseDataClass] Do not report on inner classes - #​4344
  • Support jvmTarget 17 - #​4287
  • UnderscoresInNumericLiterals: Allow numbers with non standard groupings - #​4280
  • Introduce DefaultValue type - #​3928
Dependency Updates
  • Update plugin dokka to v1.6.20 - #​4717
  • Update dependency com.android.tools.build:gradle to v7.1.3 - #​4695
  • JaCoCo 0.8.8 - #​4680
  • Update dependency org.jetbrains.kotlinx:kotlinx-coroutines-core to v1.6.1 - #​4673
  • Update dependency gradle to v7.4.2 - #​4658
  • Update dependency org.jetbrains.kotlinx:kotlinx-html-jvm to v0.7.5 - #​4657
  • Update dependency gradle to v7.4.1 - #​4622
  • Update dependency com.android.tools.build:gradle to v7.1.2 - #​4594
  • Update dependency com.android.tools.build:gradle to v7.1.1 - #​4561
  • Update plugin pluginPublishing to v0.20.0 - #​4502
  • Update JamesIves/github-pages-deploy-action action to v4.2.1 - #​4475
  • Update JamesIves/github-pages-deploy-action action to v4.1.9 - #​4455
  • Update plugin gradleVersions to v0.41.0 - #​4454
  • Revert "Update plugin pluginPublishing to v0.19.0 (#​4429)" - #​4452
  • Update plugin pluginPublishing to v0.19.0 - #​4429
  • Update dependency io.mockk:mockk to v1.12.2 - #​4427
  • Shadow 7.1.2 - #​4422
  • Update plugin dokka to v1.6.10 - autoclosed - #​4407
  • Update dependency org.jetbrains.dokka:jekyll-plugin to v1.6.10 - #​4406
  • Update dependency org.jetbrains.kotlinx:kotlinx-coroutines-core to v1.6.0 - #​4393
  • Update dependency gradle to v7.3.3 - #​4392
  • Update dependency org.yaml:snakeyaml to v1.30 - #​4375
  • Update dependency gradle to v7.3.2 - #​4374
  • Update plugin shadow to v7.1.1 - #​4373
  • Update dependency gradle to v7.3.1 - #​4350
  • Update plugin dokka to v1.6.0 - #​4328
Housekeeping & Refactorings
  • Add missing Test annotations - #​4699
  • Add failure message assertions to Gradle's "expect failure" tests - #​4693
  • Drop (most) Groovy DSL tests - #​4687
  • Check detekt-gradle-plugin functionalTest source when running detekt task - #​4681
  • Fix typo in AvoidReferentialEquality rule description - #​4644
  • Housekeep Gradle scripts - #​4589
  • Refactor config printer to improve testability - #​4580
  • avoid usage of java stream for parameterized tests - #​4579
  • split rule documentation printer to improve testability - #​4578
  • Make VERSION_CATALOGS stable - #​4577
  • Enable Gradle's configuration cache by default - #​4576
  • Migrate detekt-rules-performance tests to JUnit - #​4569
  • Migrate detekt-rules-complexity tests to JUnit - #​4566
  • Drop Groovy DSL testing in DetektTaskDslSpec - #​4563
  • Reuse setReportOutputConventions - #​4546
  • Code cleanups - #​4542
  • Fix MaxLineLength violation on detekt main inside IgnoredReturnValue rule - #​4539
  • Use Java 17 for all CI jobs - #​4526
  • Migrate tests in detekt-rules-errorprone to junit - #​4523
  • Drop unused dependencies - #​4506
  • Update JUnit dependencies - #​4505
  • Fixes test for LiteFindingsReport - #​4479
  • Remove outdated detekt suppression - #​4468
  • Add test cases to RedundantSuspendModifier rule - #​4430
  • Refactor MultilineLambdaItParameter rule - #​4428
  • Formulate rule/naming descriptions consistently - #​4419
  • Formulate rule/bugs descriptions consistently - #​4418
  • Formulate rule/complexity descriptions consistently - #​4417
  • Formulate rule/documentation descriptions consistently - #​4416
  • Formulate rule/coroutines descriptions consistently - #​4415
  • Formulate rule/style descriptions consistently - #​4414
  • Formulate rule/exceptions descriptions consistently - #​4413
  • Formulate rule/performance descriptions consistently - #​4411
  • Make MultiRuleCollector.kt consistent with the DoubleMutabilityForCollection rule - #​4405
  • Add test for nested SwallowedException - #​4404
  • Disable CI for Windows & JDK8 - #​4403
  • Improve test description in ForEachOnRangeSpec.kt - #​4402
  • Don't define classes on default package - #​4401
  • Config file in directory test - #​4398
  • Remove unnecessary map lambda in test code - #​4397
  • Improve AnnotationExcluder tests - #​4368
  • Enable UseAnyOrNoneInsteadOfFind - #​4362
  • Enable ForbiddenMethodCall - #​4334

See all issues at: 1.20.0

Kotlin/dokka

v1.7.0

Improvements

General
HTML format
Javadoc format
GFM format
Kotlin-as-Java plugin
Gradle runner

Fixes

General bugfixes
Security

Plugin API

Other

Thanks to all the contributors!

v1.6.21

This is a bugfix release that mostly enables building documentation for multiplatform projects that utilize .klib libraries.

Changes
Bugfixes
  • Support KLIB libraries for common platform, previously led to ERROR CLASS instead of references in documentation (#​2441)
  • Fixed a maven plugin build problem related to coroutines which only occurred in multi-module builds (#​2461)

v1.6.20

Features

HTML format changes

Bugfixes

Plugin API Changes

General Improvements

Known issues

  • Kotlin Multiplatform projects that use .klib libraries may experience problems. There will be a separate 1.6.21 release that will address this issue shortly.
JetBrains/kotlin

v1.7.0

Analysis API. FIR
  • KT-50864 Analysis API: ISE: "KtCallElement should always resolve to a KtCallInfo" is thrown on call resolution inside plusAssign target
  • KT-50252 Analysis API: Implement FirModuleResolveStates for libraries
  • KT-50862 Analsysis API: do not create use site subsitution override symbols
Analysis API. FIR Low Level API
  • KT-50729 Type bound is not fully resolved
  • KT-50728 Lazy resolve of extension function from 'kotlin' package breaks over unresolved type
  • KT-50271 Analysis API: get rid of using FirRefWithValidityCheck
Backend. Native. Debug
  • KT-50558 K/N Debugger. Error is not displayed in variables view for catch block
Compiler
New Features
  • KT-26245 Add ability to specify generic type parameters as not-null
  • KT-45165 Remove JVM target version 1.6
  • KT-27435 Allow implementation by delegation to inlined value of inline class
  • KT-47939 Support method references to functional interface constructors
  • KT-50775 Support IR partial linkage in Kotlin/Native (disabled by default)
  • KT-51737 Kotlin/Native: Remove unnecessary safepoints on watchosArm32 and iosArm32 targets
  • KT-44249 NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER with type usage in higher order function
Performance Improvements
  • KT-48233 Switching to JVM IR backend increases compilation time by more than 15%
  • KT-51699 Kotlin/Native: runtime has no LTO in debug binaries
  • KT-34466 Use optimized switch over enum only when all entries are constant enum entry expressions
  • KT-50861 FIR: Combination of array set convention and plusAssign works exponentially
  • KT-47171 For loop doesn't avoid boxing with value class iterators (JVM)
  • KT-29199 'next' calls for iterators of merged primitive progressive values are not specialized
  • KT-50585 JVM IR: Array constructor loop should use IINC
  • KT-22429 Optimize 'for' loop code generation for reversed arrays
  • KT-50074 Performance regression in String-based 'when' with single equality clause
  • KT-22334 Compiler backend could generate smaller code for loops using range such as integer..array.size -1
  • KT-35272 Unnecessary null check on unsafe cast after not-null assertion operator
  • KT-27427 Optimize nullable check introduced with 'as' cast
Fixes
  • KT-46762 Finalize support for jspecify
  • KT-51499 @​file:OptIn doesn't cover override methods
  • KT-52037 FIR: add error in 1.7.0 branch if run with non-compatible plugins
  • KT-46756 Release the K2/JVM compiler in Alpha
  • KT-49715 IR: "IllegalStateException: Function has no body: FUN name:toString" during IR lowering with shadowed extension inside interface
  • KT-45508 False negative ABSTRACT_CLASS_MEMBER_NOT_IMPLEMENTED on a fake override with an abstract super class member
  • KT-28078 Report error "Public property exposes its private type" for primary constructor properties instead of warning
  • KT-49017 Forbid usages of super or super if in fact it accesses an abstract member
  • KT-38078 Prohibit calling methods from Any with "super" qualifier once they are overridden as abstract in superclass
  • KT-52363 Evaluate impact of qualified this behavior change warnings
  • KT-52561 JVM: Coroutine state machine loses value after a check-induced smart cast
  • KT-52311 java.lang.VerifyError: Bad type on operand stack
  • KT-41124 Inconsistency of exceptions at init block for an enum entry with and without a qualifier name
  • KT-46860 Make safe calls always nullable
  • KT-52503 New green code appeared at the callable reference resolution
  • KT-51925 Native: "IllegalStateException: Symbol for kotlinx.cinterop/CStructVar|null[0] is unbound" caused by inline function
  • KT-49317 "IllegalStateException: Parent of this declaration is not a class: FUN LOCAL_FUNCTION_FOR_LAMBDA" with parameter of suspend type with the default parameter
  • KT-51844 New errors in overload resolution involving vararg extension methods
  • KT-52006 "java.lang.Throwable: Unbalanced tree Exception" on indexing kotlin project
  • KT-51223 Report warning about conflicting inherited members from deserialized dependencies
  • KT-51439 FE 1.0: implement type variance conflict deprecation on qualifier type arguments
  • KT-51433 FE 1.0: implement warnings about label resolve changes
  • KT-51317 Regression in resolution of lambdas where expected type has an extension receiver parameter
  • KT-45935 JVM IR: Add not-null assertion for explicit definitely not-null parameters
  • KT-51818 "ClassCastException: class CoroutineSingletons cannot be cast to class" with suspendCoroutineUninterceptedOrReturn and coroutines
  • KT-51718 JVM / IR: "VerifyError: Bad type on operand stack" caused by nullable variable inside suspend function
  • KT-51927 Native: The symbol of unexpected type encountered during IR deserialization error when multiple libraries have non-conflicting declarations with the same name
  • KT-52394 JVM: Missing annotation on method with value class return type when a subclass is present in the same file in Kotlin 1.7.0-Beta
  • KT-51640 FIR: remove warning about "far from being production ready"
  • KT-45553 FIR: support hiding declaration from star import by as import
  • KT-52404 Prolong deprecation cycle for errors at contravariant usages of star projected argument from Java
  • KT-50734 TYPE_MISMATCH: NonNull parameter with a type of Nullable type argument causes compiler warning
  • KT-51235 JVM / IR: "AbstractMethodError: Receiver class does not define or inherit an implementation of the resolved method" when property with inline class type is overridden to return Nothing?
  • KT-48935 NI: Multiple generic parameter type constraints are not applied as expected when the parameter is of function type
  • KT-49661 NI: No TYPE_INFERENCE_UPPER_BOUND_VIOLATED when argument is inferred by return type
  • KT-50877 Inconsistent flexible type
  • KT-51988 "NPE: getContainingDeclaration…lDeclarationType.REGULAR) must not be null" when using @​BuilderInference with multiple type arguments
  • KT-48890 Revert Opt-In restriction "Overriding methods can only have opt-in annotations that are present on their basic declarations."
  • KT-52035 FIR: add error in 1.7.0 branch if run on JS / Native configuration
  • KT-45461 NI: False negative TYPE_INFERENCE_UPPER_BOUND_VIOLATED when passing an argument to a function with generic constraints
  • KT-52146 JVM IR: "AssertionError: Primitive array expected" on vararg of SAM types with self-type and star projection
  • KT-50730 Implement error for a super class constructor call on a function interface in supertypes list
  • KT-52040 JVM: ClassFormatError Illegal method name "expectFailure$__proxy-0"
  • KT-50845 Postpone rxjava errors reporting in the strict mode till 1.8 due to found broken cases
  • KT-51979 "AssertionError: No modifier list, but modifier has been found by the analyzer" exception on incorrect Java interface override
  • KT-51759 FIR DFA: false positive "Variable must be initialized"
  • KT-50378 Unresolved reference for method in Jsoup library in a kts script file
  • KT-34919 "Visibility is unknown yet" when named parameter in a function type used in a typealias implemented by an abstract class
  • KT-51893 Duplicated [OVERRIDE_DEPRECATION] on overridden properties
  • KT-41034 K2: Change evaluation semantics for combination of safe calls and convention operators
  • KT-51843 Functional interface constructor references are incorrectly allowed in 1.6.20 without any compiler flags
  • KT-51914 False positive RETURN_TYPE_MISMATCH in intellij ultimate
  • KT-51711 Compiler warning is displayed in case there is 'if' else branch used with elvis
  • KT-33517 Kotlin ScriptEngine does not respect async code when using bindings
  • KT-51850 FIR cannot resolve ambiguity with different SinceKotlin/DeprecatedSinceKotlin
  • KT-44705 Deprecate using non-exhaustive if's and when's in rhs of elvis
  • KT-44510 FIR DFA: smartcast after elvis with escaping lambda
  • KT-44879 FIR DFA: Track inc and dec operator calls in preliminary loop visitor
  • KT-51758 FIR: explicit API mode errors should not be reported for effectively internal / private entities
  • KT-51203 FIR: Inconsistent RETURN_TYPE_MISMATCH and TYPE_MISMATCH reporting on functions and properties
  • KT-51624 FIR: false-positive INAPPLICABLE_LATEINIT_MODIFIER for lateinit properties with unresolved types
  • KT-51204 FIR IC: Incremental compilation fails on nested crossinline
  • KT-51798 Fix ISE from IR backend when data class inherits equals/hashCode/toString with incompatible signature
  • KT-46187 FIR: OVERLOAD_RESOLUTION_AMBIGUITY on SAM-converted callable reference to List::plus
  • KT-51761 Incorrect NONE_APPLICABLE in expect class
  • KT-51756 FIR: false positive NO_VALUE_FOR_PARAMETER in expect class delegated constructor call
  • KT-49778 Support cast to DefinitelyNotNull type in Native
  • KT-51441 -Xpartial-linkage option specified in Gradle build script is not passed to Native linker
  • KT-34515 NI: "AssertionError: Base expression was not processed: POSTFIX_EXPRESSION" with double not-null assertion to brackets
  • KT-48546 PSI2IR: "org.jetbrains.kotlin.psi2ir.generators.ErrorExpressionException: null: KtCallExpression" with recursive property access in lazy block
  • KT-28109 "AssertionError: No setter call" for incrementing parenthesized result of indexed access convention operator
  • KT-46136 Unsubstituted return type inferred for a function returning anonymous object upcast to supertype
  • KT-51364 FIR: ambiguity due to String constructors clash
  • KT-51621 FIR: visible VS invisible qualifier conflict
  • KT-50468 FIR compilers fails with CCE when meets top-level destruction
  • KT-51557 Inline stack frame is not shown for default inline lambda
  • KT-51358 OptIn: show default warning/error message in case of empty message argument
  • KT-44152 FIR2IR fails on declarations from java stdlib if java classes are loaded from PSI instead of binaries
  • KT-50949 PSI2IR: NSEE from ArgumentsGenerationUtilsKt.createFunctionForSuspendConversion with providing lambda as argument with suspend type
  • KT-39256 ArrayStoreException with list of anonymous objects with inferred types created in reified extension function
  • KT-39883 Deprecate computing constant values of complex boolean expressions in when condition branches and conditions of loops
  • KT-36952 Exception during codegen: cannot pop operand off an empty stack (reference equality, implicit boxing, type check)
  • KT-51233 AssertionError in JavaLikeCounterLoopBuilder with Compose
  • KT-51254 Verify Error on passing null to type parameter extending inline class
  • KT-50996 [FIR] Support Int -> Long conversion for property initializers
  • KT-51000 [FIR] Support Int ->

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.

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


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title Update plugin de.lancom.genesis.kotlin to v1.1.7 Update plugin de.lancom.genesis.kotlin to v2 Apr 5, 2022
@renovate renovate bot changed the title Update plugin de.lancom.genesis.kotlin to v2 Update all dependencies Apr 14, 2022
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 78ef20b to 5732df1 Compare April 19, 2022 17:55
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants