File tree Expand file tree Collapse file tree 4 files changed +25
-5
lines changed
exposed-spring-boot-starter Expand file tree Collapse file tree 4 files changed +25
-5
lines changed Original file line number Diff line number Diff line change
1
+ # 0.39.2
2
+ Infrastructure:
3
+ * All modules built with Kotlin 1.6 as a target
4
+
5
+ Libs updates:
6
+ * h2-database 2.1.214
7
+ * MaridDB driver 2.7.6 and 3.0.6
8
+ * MySQL driver 8.0.30
9
+ * PostgreSQL driver 42.4.0
10
+ * SQLServer driver 9.4.1.jre8
11
+ * Java Money API 1.1
12
+ * Spring Framework 5.3.22
13
+ * Spring Boot 2.7.2
14
+ * Spring Security Crypto 5.6.6
15
+
16
+ Bug Fixes:
17
+ * Converting of ` LocalDateTime ` values to ` Instant ` supported for ` JavaInstantColumnType ` by [ hfazai] ( https://github.com/hfazai )
18
+ * [ Oracle] Better handling of bool column in queries ([ #1540 ] ( https://github.com/JetBrains/Exposed/issues/1540 ) ). PR by [ maio] ( https://github.com/maio )
19
+ * [ Oracle] Proper resolving tables with schemas
20
+
1
21
# 0.39.1
2
22
Infrastructure:
3
23
* Kotlin 1.7.10
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Bill of Materials for all Exposed modules
17
17
<dependency >
18
18
<groupId >org.jetbrains.exposed</groupId >
19
19
<artifactId >exposed-bom</artifactId >
20
- <version >0.39.1 </version >
20
+ <version >0.39.2 </version >
21
21
<type >pom</type >
22
22
<scope >import</scope >
23
23
</dependency >
@@ -51,7 +51,7 @@ repositories {
51
51
}
52
52
53
53
dependencies {
54
- implementation(platform(" org.jetbrains.exposed:exposed-bom:0.39.1 " ))
54
+ implementation(platform(" org.jetbrains.exposed:exposed-bom:0.39.2 " ))
55
55
implementation(" org.jetbrains.exposed" , " exposed-core" )
56
56
implementation(" org.jetbrains.exposed" , " exposed-dao" )
57
57
implementation(" org.jetbrains.exposed" , " exposed-jdbc" )
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ This starter will give you the latest version of [Exposed](https://github.com/Je
18
18
<dependency >
19
19
<groupId >org.jetbrains.exposed</groupId >
20
20
<artifactId >exposed-spring-boot-starter</artifactId >
21
- <version >0.39.1 </version >
21
+ <version >0.39.2 </version >
22
22
</dependency >
23
23
</dependencies >
24
24
```
@@ -28,7 +28,7 @@ repositories {
28
28
mavenCentral()
29
29
}
30
30
dependencies {
31
- implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.39.1 '
31
+ implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.39.2 '
32
32
}
33
33
```
34
34
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ org.gradle.parallel=false
2
2
org.gradle.jvmargs =-Dfile.encoding=UTF-8
3
3
#
4
4
group =org.jetbrains.exposed
5
- version =0.39.2-SNAPSHOT
5
+ version =0.39.2
You can’t perform that action at this time.
0 commit comments