Skip to content

Commit

Permalink
Prepare Release 1.23.4 (#6650)
Browse files Browse the repository at this point in the history
  • Loading branch information
cortinico committed Nov 26, 2023
1 parent 721fe38 commit fe4b3d5
Show file tree
Hide file tree
Showing 3 changed files with 32 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.3"
const val DETEKT: String = "1.23.4"
const val SNAPSHOT_NAME: String = "main"
val JVM_TARGET: JvmTarget = JvmTarget.JVM_1_8

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

# Changelog and Migration Guide

#### 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
got reported by the community.

##### Notable Changes

- fix(deps): update kotlin monorepo to v1.9.21 - [#6642](https://github.com/detekt/detekt/pull/6642)
- fix(deps): update kotlin monorepo to v1.9.20 - [#6572](https://github.com/detekt/detekt/pull/6572)

##### Changelog

- Update the ruleset regex to allow numbers - [#6635](https://github.com/detekt/detekt/pull/6635)
- Show deprecation message - [#6614](https://github.com/detekt/detekt/pull/6614)
- Add io.gitlab.arturbosch.detekt.generator.Main to the jar manifest - [#6613](https://github.com/detekt/detekt/pull/6613)
- Don't report FunctionNaming when the function's name equals to the return type's name with type arguments - [#6605](https://github.com/detekt/detekt/pull/6605)
- Fix issues related to kotlin-stdlib's Gradle module metadata in Kotlin 1.9.20 - [#6590](https://github.com/detekt/detekt/pull/6590)
- MethodSignature - Add the condition of receiver should be null - [#6570](https://github.com/detekt/detekt/pull/6570)
- Remove check for deprectated functions toUpperCase and toLowerCase - [#6548](https://github.com/detekt/detekt/pull/6548)
- Fixes false positive of trailing whitespaces in kdoc - [#6370](https://github.com/detekt/detekt/pull/6370)

##### Dependency Updates

- Update tested AGP version to 8.1.3 - [#6610](https://github.com/detekt/detekt/pull/6610)
- Switch to kctfork for Kotlin compilation testing - [#6589](https://github.com/detekt/detekt/pull/6589)

##### Contributors

We would like to thank the following contributors that made this release possible: @3flex, @BraisGabin, @Gosunet, @atulgpt, @t-kameyama

#### 1.23.3 - 2023-10-31

This is a point release for Detekt `1.23.0`. The changelog is equivalent to `1.23.2`.
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.3";
const detektVersion = "1.23.4";

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

0 comments on commit fe4b3d5

Please sign in to comment.