From 2d138388c9eb6ce37ba9c26d275af523d705c405 Mon Sep 17 00:00:00 2001 From: "Andrey.Tarashevskiy" Date: Tue, 14 Sep 2021 22:48:57 +0300 Subject: [PATCH] Exposed release 0.34.1 --- docs/ChangeLog.md | 12 ++++++++++++ exposed-bom/README.md | 4 ++-- exposed-spring-boot-starter/README.md | 4 ++-- gradle.properties | 2 +- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/docs/ChangeLog.md b/docs/ChangeLog.md index 9e1ea88a56..7f6f5783d9 100644 --- a/docs/ChangeLog.md +++ b/docs/ChangeLog.md @@ -1,3 +1,15 @@ +# 0.34.2 +Features: +* Supporting subqueries in insert and update statements. Added by [hfazai](https://github.com/hfazai) +* SQL highlighting in `Transaction.exec` with raw SQL ([#1337](https://github.com/JetBrains/Exposed/issues/1337)) + +Bug Fixes: +* [SQLServer] Properly sanitize column default read from database metadata ([#1341](https://github.com/JetBrains/Exposed/issues/1341)) +* Table.id is not in record set ([#1341](https://github.com/JetBrains/Exposed/issues/1341)) +* newSuspendedTransaction often doesn't honor TransactionManager.defaultDatabase changes ([#1342](https://github.com/JetBrains/Exposed/issues/1342)) +* `Database.name` failed on parsing connection string with '/' in parameter list. Founded and fixed by [RaySmith-ttc](https://github.com/RaySmith-ttc) +* Import of Exposed BOM failed when imported as a platform dependency. Fixed by [clarkperkins](https://github.com/clarkperkins) + # 0.34.1 Infrastructure: * Kotlin 1.5.30 diff --git a/exposed-bom/README.md b/exposed-bom/README.md index 7974d9d08c..8844839c09 100644 --- a/exposed-bom/README.md +++ b/exposed-bom/README.md @@ -17,7 +17,7 @@ Bill of Materials for all Exposed modules org.jetbrains.exposed exposed-bom - 0.34.1 + 0.34.2 pom import @@ -51,7 +51,7 @@ repositories { } dependencies { - implementation(platform("org.jetbrains.exposed:exposed-bom:0.34.1")) + implementation(platform("org.jetbrains.exposed:exposed-bom:0.34.2")) implementation("org.jetbrains.exposed", "exposed-core") implementation("org.jetbrains.exposed", "exposed-dao") implementation("org.jetbrains.exposed", "exposed-jdbc") diff --git a/exposed-spring-boot-starter/README.md b/exposed-spring-boot-starter/README.md index 281580a705..b8d592d75e 100644 --- a/exposed-spring-boot-starter/README.md +++ b/exposed-spring-boot-starter/README.md @@ -18,7 +18,7 @@ This starter will give you the latest version of [Exposed](https://github.com/Je org.jetbrains.exposed exposed-spring-boot-starter - 0.34.1 + 0.34.2 ``` @@ -28,7 +28,7 @@ repositories { mavenCentral() } dependencies { - implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.34.1' + implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.34.2' } ``` diff --git a/gradle.properties b/gradle.properties index 13d4cd72d3..1694c09eee 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,5 +2,5 @@ org.gradle.parallel=false org.gradle.jvmargs=-Dfile.encoding=UTF-8 # group=org.jetbrains.exposed -version=0.34.1 +version=0.34.2 dialect=none