Skip to content

Commit e8d32dd

Browse files
committed
chore: Bump Exposed version from 0.51.1 to 0.52.0
1 parent b2e4883 commit e8d32dd

File tree

11 files changed

+83
-47
lines changed

11 files changed

+83
-47
lines changed

CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
1+
# 0.52.0
2+
3+
Features:
4+
* feat: EXPOSED-334 Support MERGE statement by @obabichevjb in https://github.com/JetBrains/Exposed/pull/2047
5+
* feat: EXPOSED-368 Ordering on References by @obabichevjb in https://github.com/JetBrains/Exposed/pull/2083
6+
* Feat: EXPOSED-396 Supports fetchBatchedResults with sorting order by @roharon in https://github.com/JetBrains/Exposed/pull/2102
7+
* feat: Add OffsetDateTime extension functions by @joc-a in https://github.com/JetBrains/Exposed/pull/2118
8+
* feat: EXPOSED-295 Support subqueries with preceding LATERAL by @obabichevjb in https://github.com/JetBrains/Exposed/pull/2095
9+
* feat: EXPOSED-336 Support Where clause with batchUpsert by @bog-walk in https://github.com/JetBrains/Exposed/pull/2120
10+
* feat: EXPOSED-416 Support adding special database-specific column definitions by @bog-walk in https://github.com/JetBrains/Exposed/pull/2125
11+
12+
Bug fixes:
13+
* fix: EXPOSED-389 Coalesce operator returning nullable value by @joc-a in https://github.com/JetBrains/Exposed/pull/2107
14+
* fix: EXPOSED-390 ASC_NULLS_LAST and DESC_NULLS_FIRST for MySQL string columns by @zly2006 in https://github.com/JetBrains/Exposed/pull/2091
15+
* fix: EXPOSED-402 ClassCastException when eager loading with uuid().references() by @bog-walk in https://github.com/JetBrains/Exposed/pull/2112
16+
* fix(DoubleColumnType): correctly handle precision when casting Float to DoubleColumnType for a `real` column by @jackgisel-RL in https://github.com/JetBrains/Exposed/pull/2115
17+
* fix: EXPOSED-277 statementsRequiredToActualizeScheme does not check s… by @obabichevjb in https://github.com/JetBrains/Exposed/pull/2096
18+
* fix: EXPOSED-411 ClassCastException when `uuid().references()` is used with `referrersOn` by @joc-a in https://github.com/JetBrains/Exposed/pull/2127
19+
* fix: EXPOSED-412 Remove all the usage of isOldMySql function in tests by @obabichevjb in https://github.com/JetBrains/Exposed/pull/2126
20+
* fix: EXPOSED-405 SQLite bugs: Table with custom ID behaves weirdly in DAO and batchInsert by @obabichevjb in https://github.com/JetBrains/Exposed/pull/2119
21+
* fix: EXPOSED-393 H2 upsert with JSON column creates invalid data by @obabichevjb in https://github.com/JetBrains/Exposed/pull/2104
22+
* fix: EXPOSED-400 ClassCastException when using `fetchBatchedResults` by @joc-a in https://github.com/JetBrains/Exposed/pull/2113
23+
* EXPOSED-398 Gradle task testH2_v1 runs tests on version 2.2.224 by @obabichevjb in https://github.com/JetBrains/Exposed/pull/2110
24+
* test: EXPOSED-191 Flaky Oracle test on TC build by @obabichevjb in https://github.com/JetBrains/Exposed/pull/2098
25+
26+
Infrastructure:
27+
* Spring Boot 3.3.1
28+
* io.github.hakky54:logcaptor 2.9.3
29+
* Spring Framework 6.1.10
30+
* org.junit:junit-bom 5.10.2
31+
* chore: Fix TC Docker `version` is obsolete by @bog-walk in https://github.com/JetBrains/Exposed/pull/2111
32+
* test: EXPOSED-249 Add MySQL8 to tests for AllAnyFromBaseOp feature by @bog-walk in https://github.com/JetBrains/Exposed/pull/2123
33+
* chore: Add migration module and move `generateMigrationScript` function to it by @joc-a in https://github.com/JetBrains/Exposed/pull/2128
34+
* Add workflow to build documentation website by @e5l in https://github.com/JetBrains/Exposed/pull/2134
35+
36+
137
# 0.51.1
238
Bug fixes:
339
* fix: EXPOSED-389 Coalesce operator returning nullable value by @joc-a in https://github.com/JetBrains/Exposed/pull/2107

README.md

+21-21
Original file line numberDiff line numberDiff line change
@@ -81,52 +81,52 @@ The Maven Central repository is enabled by default for Maven users.
8181
<dependency>
8282
<groupId>org.jetbrains.exposed</groupId>
8383
<artifactId>exposed-core</artifactId>
84-
<version>0.51.1</version>
84+
<version>0.52.0</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>org.jetbrains.exposed</groupId>
8888
<artifactId>exposed-crypt</artifactId>
89-
<version>0.51.1</version>
89+
<version>0.52.0</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>org.jetbrains.exposed</groupId>
9393
<artifactId>exposed-dao</artifactId>
94-
<version>0.51.1</version>
94+
<version>0.52.0</version>
9595
</dependency>
9696
<dependency>
9797
<groupId>org.jetbrains.exposed</groupId>
9898
<artifactId>exposed-java-time</artifactId>
99-
<version>0.51.1</version>
99+
<version>0.52.0</version>
100100
</dependency>
101101
<dependency>
102102
<groupId>org.jetbrains.exposed</groupId>
103103
<artifactId>exposed-jdbc</artifactId>
104-
<version>0.51.1</version>
104+
<version>0.52.0</version>
105105
</dependency>
106106
<dependency>
107107
<groupId>org.jetbrains.exposed</groupId>
108108
<artifactId>exposed-jodatime</artifactId>
109-
<version>0.51.1</version>
109+
<version>0.52.0</version>
110110
</dependency>
111111
<dependency>
112112
<groupId>org.jetbrains.exposed</groupId>
113113
<artifactId>exposed-json</artifactId>
114-
<version>0.51.1</version>
114+
<version>0.52.0</version>
115115
</dependency>
116116
<dependency>
117117
<groupId>org.jetbrains.exposed</groupId>
118118
<artifactId>exposed-kotlin-datetime</artifactId>
119-
<version>0.51.1</version>
119+
<version>0.52.0</version>
120120
</dependency>
121121
<dependency>
122122
<groupId>org.jetbrains.exposed</groupId>
123123
<artifactId>exposed-money</artifactId>
124-
<version>0.51.1</version>
124+
<version>0.52.0</version>
125125
</dependency>
126126
<dependency>
127127
<groupId>org.jetbrains.exposed</groupId>
128128
<artifactId>exposed-spring-boot-starter</artifactId>
129-
<version>0.51.1</version>
129+
<version>0.52.0</version>
130130
</dependency>
131131
</dependencies>
132132

@@ -136,20 +136,20 @@ The Maven Central repository is enabled by default for Maven users.
136136

137137
```groovy
138138
dependencies {
139-
implementation 'org.jetbrains.exposed:exposed-core:0.51.1'
140-
implementation 'org.jetbrains.exposed:exposed-crypt:0.51.1'
141-
implementation 'org.jetbrains.exposed:exposed-dao:0.51.1'
142-
implementation 'org.jetbrains.exposed:exposed-jdbc:0.51.1'
139+
implementation 'org.jetbrains.exposed:exposed-core:0.52.0'
140+
implementation 'org.jetbrains.exposed:exposed-crypt:0.52.0'
141+
implementation 'org.jetbrains.exposed:exposed-dao:0.52.0'
142+
implementation 'org.jetbrains.exposed:exposed-jdbc:0.52.0'
143143
144-
implementation 'org.jetbrains.exposed:exposed-jodatime:0.51.1'
144+
implementation 'org.jetbrains.exposed:exposed-jodatime:0.52.0'
145145
// or
146-
implementation 'org.jetbrains.exposed:exposed-java-time:0.51.1'
146+
implementation 'org.jetbrains.exposed:exposed-java-time:0.52.0'
147147
// or
148-
implementation 'org.jetbrains.exposed:exposed-kotlin-datetime:0.51.1'
148+
implementation 'org.jetbrains.exposed:exposed-kotlin-datetime:0.52.0'
149149
150-
implementation 'org.jetbrains.exposed:exposed-json:0.51.1'
151-
implementation 'org.jetbrains.exposed:exposed-money:0.51.1'
152-
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.51.1'
150+
implementation 'org.jetbrains.exposed:exposed-json:0.52.0'
151+
implementation 'org.jetbrains.exposed:exposed-money:0.52.0'
152+
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.52.0'
153153
}
154154
```
155155

@@ -180,7 +180,7 @@ dependencies {
180180
and in `gradle.properties`
181181

182182
```
183-
exposedVersion=0.51.1
183+
exposedVersion=0.52.0
184184
```
185185

186186
## Samples

docs/current.help.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.51.1
1+
0.52.0

documentation-website/Writerside/topics/Exposed-Modules.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Dependencies mapping listed below is similar (by functionality) to the previous
5353
<tabs>
5454
<tab title="Kotlin Gradle">
5555
<code-block lang="kotlin">
56-
val exposedVersion: String = "0.51.1"
56+
val exposedVersion: String = "0.52.0"
5757
dependencies {
5858
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
5959
implementation("org.jetbrains.exposed:exposed-crypt:$exposedVersion")
@@ -80,59 +80,59 @@ Dependencies mapping listed below is similar (by functionality) to the previous
8080
&lt;dependency&gt;
8181
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
8282
&lt;artifactId&gt;exposed-core&lt;/artifactId&gt;
83-
&lt;version&gt;0.51.1&lt;/version&gt;
83+
&lt;version&gt;0.52.0&lt;/version&gt;
8484
&lt;/dependency&gt;
8585
&lt;dependency&gt;
8686
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
8787
&lt;artifactId&gt;exposed-crypt&lt;/artifactId&gt;
88-
&lt;version&gt;0.51.1&lt;/version&gt;
88+
&lt;version&gt;0.52.0&lt;/version&gt;
8989
&lt;/dependency&gt;
9090
&lt;dependency&gt;
9191
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
9292
&lt;artifactId&gt;exposed-dao&lt;/artifactId&gt;
93-
&lt;version&gt;0.51.1&lt;/version&gt;
93+
&lt;version&gt;0.52.0&lt;/version&gt;
9494
&lt;/dependency&gt;
9595
&lt;dependency&gt;
9696
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
9797
&lt;artifactId&gt;exposed-java-time&lt;/artifactId&gt;
98-
&lt;version&gt;0.51.1&lt;/version&gt;
98+
&lt;version&gt;0.52.0&lt;/version&gt;
9999
&lt;/dependency&gt;
100100
&lt;dependency&gt;
101101
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
102102
&lt;artifactId&gt;exposed-jdbc&lt;/artifactId&gt;
103-
&lt;version&gt;0.51.1&lt;/version&gt;
103+
&lt;version&gt;0.52.0&lt;/version&gt;
104104
&lt;/dependency&gt;
105105
&lt;dependency&gt;
106106
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
107107
&lt;artifactId&gt;exposed-jodatime&lt;/artifactId&gt;
108-
&lt;version&gt;0.51.1&lt;/version&gt;
108+
&lt;version&gt;0.52.0&lt;/version&gt;
109109
&lt;/dependency&gt;
110110
&lt;dependency&gt;
111111
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
112112
&lt;artifactId&gt;exposed-json&lt;/artifactId&gt;
113-
&lt;version&gt;0.51.1&lt;/version&gt;
113+
&lt;version&gt;0.52.0&lt;/version&gt;
114114
&lt;/dependency&gt;
115115
&lt;dependency&gt;
116116
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
117117
&lt;artifactId&gt;exposed-kotlin-datetime&lt;/artifactId&gt;
118-
&lt;version&gt;0.51.1&lt;/version&gt;
118+
&lt;version&gt;0.52.0&lt;/version&gt;
119119
&lt;/dependency&gt;
120120
&lt;dependency&gt;
121121
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
122122
&lt;artifactId&gt;exposed-money&lt;/artifactId&gt;
123-
&lt;version&gt;0.51.1&lt;/version&gt;
123+
&lt;version&gt;0.52.0&lt;/version&gt;
124124
&lt;/dependency&gt;
125125
&lt;dependency&gt;
126126
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
127127
&lt;artifactId&gt;exposed-spring-boot-starter&lt;/artifactId&gt;
128-
&lt;version&gt;0.51.1&lt;/version&gt;
128+
&lt;version&gt;0.52.0&lt;/version&gt;
129129
&lt;/dependency&gt;
130130
&lt;/dependencies&gt;
131131
</code-block>
132132
</tab>
133133
<tab title="Groovy Gradle">
134134
<code-block lang="groovy">
135-
def exposedVersion = "0.51.1"
135+
def exposedVersion = "0.52.0"
136136
dependencies {
137137
implementation "org.jetbrains.exposed:exposed-core:$exposedVersion"
138138
implementation "org.jetbrains.exposed:exposed-crypt:$exposedVersion"

documentation-website/Writerside/topics/Getting-Started-with-Exposed.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Before starting using Exposed, you need to add the dependencies to your project.
77
<tabs>
88
<tab title="Gradle">
99
<code-block lang="kotlin">
10-
val exposed_version = "0.51.1"
10+
val exposed_version = "0.52.0"
1111
dependencies {
1212
implementation("org.jetbrains.exposed", "exposed-core", exposed_version)
1313
implementation("org.jetbrains.exposed", "exposed-dao", exposed_version)
@@ -22,17 +22,17 @@ dependencies {
2222
<dependency>
2323
<groupId>org.jetbrains.exposed</groupId>
2424
<artifactId>exposed-core</artifactId>
25-
<version>0.51.1</version>
25+
<version>0.52.0</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>org.jetbrains.exposed</groupId>
2929
<artifactId>exposed-dao</artifactId>
30-
<version>0.51.1</version>
30+
<version>0.52.0</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>org.jetbrains.exposed</groupId>
3434
<artifactId>exposed-jdbc</artifactId>
35-
<version>0.51.1</version>
35+
<version>0.52.0</version>
3636
</dependency>
3737
</dependencies>
3838
]]>

documentation-website/Writerside/writerside.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
<topics dir="topics"/>
66
<images dir="images"/>
77
<images dir="images" web-path="images/"/>
8-
<instance src="hi.tree" version="0.51.1" web-path="/docs"/>
8+
<instance src="hi.tree" version="0.52.0" web-path="/docs"/>
99
</ihp>

exposed-bom/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Bill of Materials for all Exposed modules
88
<dependency>
99
<groupId>org.jetbrains.exposed</groupId>
1010
<artifactId>exposed-bom</artifactId>
11-
<version>0.51.1</version>
11+
<version>0.52.0</version>
1212
<type>pom</type>
1313
<scope>import</scope>
1414
</dependency>
@@ -39,7 +39,7 @@ repositories {
3939
}
4040

4141
dependencies {
42-
implementation(platform("org.jetbrains.exposed:exposed-bom:0.51.1"))
42+
implementation(platform("org.jetbrains.exposed:exposed-bom:0.52.0"))
4343
implementation("org.jetbrains.exposed", "exposed-core")
4444
implementation("org.jetbrains.exposed", "exposed-dao")
4545
implementation("org.jetbrains.exposed", "exposed-jdbc")

exposed-spring-boot-starter/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This starter will give you the latest version of [Exposed](https://github.com/Je
1010
<dependency>
1111
<groupId>org.jetbrains.exposed</groupId>
1212
<artifactId>exposed-spring-boot-starter</artifactId>
13-
<version>0.51.1</version>
13+
<version>0.52.0</version>
1414
</dependency>
1515
</dependencies>
1616
```
@@ -20,7 +20,7 @@ repositories {
2020
mavenCentral()
2121
}
2222
dependencies {
23-
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.51.1'
23+
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.52.0'
2424
}
2525
```
2626
### Gradle Kotlin DSL
@@ -36,7 +36,7 @@ dependencies {
3636
```
3737
In `gradle.properties`
3838
```properties
39-
exposedVersion=0.51.1
39+
exposedVersion=0.52.0
4040
```
4141

4242
## Setting up a database connection

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ org.gradle.configuration.cache=true
44
org.gradle.caching=true
55

66
group=org.jetbrains.exposed
7-
version=0.51.1
7+
version=0.52.0

samples/exposed-ktor/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ ktorVersion=2.3.4
22
kotlinVersion=1.8.10
33
logbackVersion=1.2.11
44
kotlin.code.style=official
5-
exposedVersion=0.51.1
5+
exposedVersion=0.52.0
66
h2Version=2.1.214
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
exposedVersion=0.51.1
1+
exposedVersion=0.52.0
22
kotlinVersion=1.8.21

0 commit comments

Comments
 (0)