Skip to content

Commit

Permalink
Prepare Release 1.23.5 (#6921)
Browse files Browse the repository at this point in the history
  • Loading branch information
cortinico committed Jan 31, 2024
1 parent e44aff7 commit ec1a13e
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build-logic/src/main/kotlin/Versions.kt
Expand Up @@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget

object Versions {

const val DETEKT: String = "1.23.4"
const val DETEKT: String = "1.23.5"
const val SNAPSHOT_NAME: String = "main"
val JVM_TARGET: JvmTarget = JvmTarget.JVM_1_8

Expand Down
24 changes: 24 additions & 0 deletions website/src/pages/changelog.md
Expand Up @@ -6,6 +6,30 @@ keywords: [changelog, release-notes, migration]

# Changelog and Migration Guide

#### 1.23.5 - 2024-01-31

##### Notable Changes

- Test Gradle plugin with AGP 8.2.0 - [#6672](https://github.com/detekt/detekt/pull/6672)
- chore(deps): update dependency gradle to v8.5 - [#6663](https://github.com/detekt/detekt/pull/6663)
- fix(deps): update kotlin monorepo to v1.9.22 - [#6746](https://github.com/detekt/detekt/pull/6746)

##### Changelog

- Report rule's default severity in sarif backport - [#6916](https://github.com/detekt/detekt/pull/6916)
- Add ignoreAnnotatedFunctions to TooManyFunctions - [#6875](https://github.com/detekt/detekt/pull/6875)
- Fix by checking the existence of label in previous statements - [#6671](https://github.com/detekt/detekt/pull/6671)
- Also check `USELESS_ELVIS` in `UnreachableCode` - [#6624](https://github.com/detekt/detekt/pull/6624)
- Fix by adding last method call to the set - [#6567](https://github.com/detekt/detekt/pull/6567)

##### Housekeeping & Refactorings

- Opt in to ExperimentalCompilerApi in all compilations in compiler-plugin - [#6534](https://github.com/detekt/detekt/pull/6534)

##### Contributors

We would like to thank the following contributors that made this release possible: @3flex, @TWiStErRob, @atulgpt, @matejdro

#### 1.23.4 - 2023-11-26

This is a point release for Detekt `1.23.0`, where we added support for Kotlin `1.9.21` and fixed several bugs that
Expand Down
2 changes: 1 addition & 1 deletion website/src/remark/detektVersionReplace.js
Expand Up @@ -3,7 +3,7 @@ const visit = require("unist-util-visit");
// Remark plugin that is replacing the [detekt_version] with the latest
// released version. Please note that this field is updated automatically
// by the `applyDocVersion` task.
const detektVersion = "1.23.4";
const detektVersion = "1.23.5";

const plugin = (options) => {
const transformer = async (ast) => {
Expand Down

0 comments on commit ec1a13e

Please sign in to comment.