Merge branch 'release/1.17.1' into main

This commit is contained in:
Nicola Corti
2021-05-21 19:26:42 +02:00
4 changed files with 19 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
object Versions {
const val DETEKT: String = "1.17.0"
const val DETEKT: String = "1.17.1"
const val SNAPSHOT_NAME: String = "main"
const val JVM_TARGET: String = "1.8"

View File

@@ -117,4 +117,4 @@ description: "Meet detekt, a static code analysis tool for Kotlin."
url: https://detekt.github.io
baseurl: /detekt
detekt_version: 1.17.0
detekt_version: 1.17.1

View File

@@ -6,6 +6,22 @@ permalink: changelog.html
toc: true
---
#### 1.17.1 - 2021-05-19
##### Notable Changes
This is a patch release for Detekt `1.17.0` including fixes that we considered worth a point release.
Specifically, we're reverting a change on our Gradle Plugin. The original change [#3655](https://github.com/detekt/detekt/pull/3655) resulted in several false positives when using rules with Type Resolution on Java/Kotlin mixed codebases.
Moreover we included a couple of false positive fixes for `NoNameShadowing` and `UnnecessaryLet`
##### Changelog
- Revert "Noisy gradle (#3655)" - [#3792](https://github.com/detekt/detekt/pull/3792)
- NoNameShadowing: don't report when implicit 'it' parameter isn't used - [#3793](https://github.com/detekt/detekt/pull/3793)
- UnnecessaryLet: report when implicit parameter isn't used - [#3794](https://github.com/detekt/detekt/pull/3794)
#### 1.17.0 - 2021-05-15
##### Notable Changes

View File

@@ -7,7 +7,7 @@ spek = "2.0.15"
[libraries]
binaryCompatibilityValidator-gradlePlugin = "org.jetbrains.kotlinx:binary-compatibility-validator:0.4.0"
detekt-gradlePlugin = "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.17.0"
detekt-gradlePlugin = "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.17.1"
githubRelease-gradlePlugin = "com.github.breadmoirai:github-release:2.2.12"
gradleVersions-gradlePlugin = "com.github.ben-manes:gradle-versions-plugin:0.28.0"
nexusStaging-gradlePlugin = "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.22.0"