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

update plugin and dependency versions #3

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changes

## unreleased

### Feature

- version updates:
- update gradle from 8.5 to 8.7
- update kotlin from 1.9.21 to 1.9.23
- update detekt from 1.23.4 to 1.23.6
- update dokka from 1.9.10 to 1.9.20
- update jooq from 3.18.6 to 3.19.6
Copy link
Contributor Author

Choose a reason for hiding this comment

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

PR mainly created for updating the jooq version to be in sync with the one used in lovely-micronaut-graphql

- update kotest from 5.8.0 to 5.8.1
- update logback-classic from 1.4.11 to 1.5.3

## 2024-03-04 / 0.2.0

### Feature
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This project contains opinionated helpers and extensions of [jOOQ](https://github.com/jOOQ/jOOQ) used at Lovely Systems.

Built on **jOOQ 3.18.6**.
Built on **jOOQ 3.19.6**.

You can find the **documentation [here](https://lovelysystems.github.io/lovely-jooq/)**.

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
kotlin.code.style=official
kotlinVersion=1.9.21
kotlinVersion=1.9.23
org.gradle.jvmargs=-Xmx2048M
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
10 changes: 5 additions & 5 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ pluginManagement {
kotlin("jvm") version kotlinVersion

id("com.lovelysystems.gradle") version "1.12.0"
id("io.gitlab.arturbosch.detekt") version "1.23.4"
id("io.gitlab.arturbosch.detekt") version "1.23.6"
id("org.jetbrains.kotlinx.kover") version "0.7.5"
id("org.jetbrains.dokka") version "1.9.10"
id("org.jetbrains.dokka") version "1.9.20"
}
}

Expand Down Expand Up @@ -48,7 +48,7 @@ dependencyResolutionManagement {

// Catalogs
versionCatalogs {
val jooqVersion = "3.18.6"
val jooqVersion = "3.19.6"

create("libs") {
// Kotlin & KotlinX
Expand Down Expand Up @@ -84,15 +84,15 @@ dependencyResolutionManagement {
}

create("testLibs") {
val kotestVersion = "5.8.0"
val kotestVersion = "5.8.1"

library("kotest-runner", "io.kotest", "kotest-runner-junit5").version(kotestVersion)

library("lovely-db-testing", "com.lovelysystems", "lovely-db-testing").version("0.2.0")
library("r2dbc-postgresql", "org.postgresql", "r2dbc-postgresql").version("1.0.4.RELEASE")
library("jooq-codegen", "org.jooq", "jooq-codegen").version(jooqVersion)

library("logback", "ch.qos.logback", "logback-classic").version("1.4.11")
library("logback", "ch.qos.logback", "logback-classic").version("1.5.3")
}
}
}
Expand Down
Loading