Skip to content

Commit d343bfd

Browse files
committed
0.55.0
1 parent a3cb0c5 commit d343bfd

File tree

12 files changed

+86
-45
lines changed

12 files changed

+86
-45
lines changed

CHANGELOG.md

+41
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,44 @@
1+
# 0.55.0
2+
3+
Infrastructure:
4+
* Spring Framework 6.1.13
5+
* Spring Boot 3.3.4
6+
* log4j2 2.24.0
7+
* detekt 1.23.7
8+
* joda-time:joda-time 2.13.0
9+
* kotlinCoroutines 1.9.0
10+
11+
Breaking changes:
12+
* feat!: EXPOSED-514 Support DELETE from tables in join by @bog-walk in https://github.com/JetBrains/Exposed/pull/2223
13+
* feat!: EXPOSED-497 Allow OFFSET without LIMIT in query by @bog-walk in https://github.com/JetBrains/Exposed/pull/2226
14+
* fix!: EXPOSED-545 Byte column allows out-of-range values by @joc-a in https://github.com/JetBrains/Exposed/pull/2239
15+
* fix!: EXPOSED-536 Short column allows out-of-range values by @joc-a in https://github.com/JetBrains/Exposed/pull/2231
16+
* fix!: EXPOSED-482 Cannot use `Column.transform()` to return null by @obabichevjb in https://github.com/JetBrains/Exposed/pull/2235
17+
* fix!: EXPOSED-546 [H2] Column with Json default value can not be used as databaseGenerated by @obabichevjb in https://github.com/JetBrains/Exposed/pull/2241
18+
19+
Deprecations:
20+
* deprecate!: EXPOSED-550 DeleteStatement holds unused offset property by @bog-walk in https://github.com/JetBrains/Exposed/pull/2243
21+
22+
Features:
23+
* feat: EXPOSED-498 Handle auto-increment status change on a column by @joc-a in https://github.com/JetBrains/Exposed/pull/2216
24+
* feat: EXPOSED-552 Include DROP statements for unmapped columns for migration by @joc-a in https://github.com/JetBrains/Exposed/pull/2249
25+
26+
Bug fixes:
27+
* fix: EXPOSED-513 DROP SEQUENCE fails when there is a dot in the sequence name by @joc-a in https://github.com/JetBrains/Exposed/pull/2220
28+
* fix: EXPOSED-496 reference() idColumn equality check with referree's id is insufficient by @bog-walk in https://github.com/JetBrains/Exposed/pull/2222
29+
* fix: EXPOSED-528 Escape parameter placeholder '?' by double question mark '??' by @JajaComp in https://github.com/JetBrains/Exposed/pull/2227
30+
* fix: EXPOSED-509 Upsert with escaped multiline string fails in prepared statement by @bog-walk in https://github.com/JetBrains/Exposed/pull/2224
31+
* fix: EXPOSED-495 Unable to create new Entity when server-side default valu… by @obabichevjb in https://github.com/JetBrains/Exposed/pull/2240
32+
* fix: EXPOSED-547 idParam() registers composite id value with a single placeholder by @bog-walk in https://github.com/JetBrains/Exposed/pull/2242
33+
* fix: EXPOSED-527 BUG: mergeFrom(...) using a query with const-condition do… by @obabichevjb in https://github.com/JetBrains/Exposed/pull/2236
34+
* fix: EXPOSED-551 [SQL Server] Update from join with limit throws syntax exception by @bog-walk in https://github.com/JetBrains/Exposed/pull/2244
35+
* fix: EXPOSED-558 Entity cache for upsertReturning statements results in stale return values by @rasharab in https://github.com/JetBrains/Exposed/pull/2248
36+
* fix: EXPOSED-373 Close ResultSet before closing Statement to suppress Agroal leak warning by @ivan-gomes in https://github.com/JetBrains/Exposed/pull/2247
37+
* fix: EXPOSED-562 Any caught exception from inner transaction triggers full rollback by @bog-walk in https://github.com/JetBrains/Exposed/pull/2251
38+
39+
Docs:
40+
* docs: EXPOSED-515 How to identify composite key columns that use reference() by @bog-walk in https://github.com/JetBrains/Exposed/pull/2225
41+
142
# 0.54.0
243

344
Infrastructure:

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.54.0</version>
84+
<version>0.55.0</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>org.jetbrains.exposed</groupId>
8888
<artifactId>exposed-crypt</artifactId>
89-
<version>0.54.0</version>
89+
<version>0.55.0</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>org.jetbrains.exposed</groupId>
9393
<artifactId>exposed-dao</artifactId>
94-
<version>0.54.0</version>
94+
<version>0.55.0</version>
9595
</dependency>
9696
<dependency>
9797
<groupId>org.jetbrains.exposed</groupId>
9898
<artifactId>exposed-java-time</artifactId>
99-
<version>0.54.0</version>
99+
<version>0.55.0</version>
100100
</dependency>
101101
<dependency>
102102
<groupId>org.jetbrains.exposed</groupId>
103103
<artifactId>exposed-jdbc</artifactId>
104-
<version>0.54.0</version>
104+
<version>0.55.0</version>
105105
</dependency>
106106
<dependency>
107107
<groupId>org.jetbrains.exposed</groupId>
108108
<artifactId>exposed-jodatime</artifactId>
109-
<version>0.54.0</version>
109+
<version>0.55.0</version>
110110
</dependency>
111111
<dependency>
112112
<groupId>org.jetbrains.exposed</groupId>
113113
<artifactId>exposed-json</artifactId>
114-
<version>0.54.0</version>
114+
<version>0.55.0</version>
115115
</dependency>
116116
<dependency>
117117
<groupId>org.jetbrains.exposed</groupId>
118118
<artifactId>exposed-kotlin-datetime</artifactId>
119-
<version>0.54.0</version>
119+
<version>0.55.0</version>
120120
</dependency>
121121
<dependency>
122122
<groupId>org.jetbrains.exposed</groupId>
123123
<artifactId>exposed-money</artifactId>
124-
<version>0.54.0</version>
124+
<version>0.55.0</version>
125125
</dependency>
126126
<dependency>
127127
<groupId>org.jetbrains.exposed</groupId>
128128
<artifactId>exposed-spring-boot-starter</artifactId>
129-
<version>0.54.0</version>
129+
<version>0.55.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.54.0'
140-
implementation 'org.jetbrains.exposed:exposed-crypt:0.54.0'
141-
implementation 'org.jetbrains.exposed:exposed-dao:0.54.0'
142-
implementation 'org.jetbrains.exposed:exposed-jdbc:0.54.0'
139+
implementation 'org.jetbrains.exposed:exposed-core:0.55.0'
140+
implementation 'org.jetbrains.exposed:exposed-crypt:0.55.0'
141+
implementation 'org.jetbrains.exposed:exposed-dao:0.55.0'
142+
implementation 'org.jetbrains.exposed:exposed-jdbc:0.55.0'
143143
144-
implementation 'org.jetbrains.exposed:exposed-jodatime:0.54.0'
144+
implementation 'org.jetbrains.exposed:exposed-jodatime:0.55.0'
145145
// or
146-
implementation 'org.jetbrains.exposed:exposed-java-time:0.54.0'
146+
implementation 'org.jetbrains.exposed:exposed-java-time:0.55.0'
147147
// or
148-
implementation 'org.jetbrains.exposed:exposed-kotlin-datetime:0.54.0'
148+
implementation 'org.jetbrains.exposed:exposed-kotlin-datetime:0.55.0'
149149
150-
implementation 'org.jetbrains.exposed:exposed-json:0.54.0'
151-
implementation 'org.jetbrains.exposed:exposed-money:0.54.0'
152-
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.54.0'
150+
implementation 'org.jetbrains.exposed:exposed-json:0.55.0'
151+
implementation 'org.jetbrains.exposed:exposed-money:0.55.0'
152+
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.55.0'
153153
}
154154
```
155155

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

182182
```
183-
exposedVersion=0.54.0
183+
exposedVersion=0.55.0
184184
```
185185

186186
## Samples

documentation-website/Writerside/snippets/get-started-with-exposed/gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[versions]
55
guava = "33.0.0-jre"
66
junit-jupiter-engine = "5.10.2"
7-
exposed = "0.54.0"
7+
exposed = "0.55.0"
88

99
[libraries]
1010
guava = { module = "com.google.guava:guava", version.ref = "guava" }

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

+12-12
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Dependencies mapping listed below is similar (by functionality) to the previous
5555
<tabs>
5656
<tab title="Kotlin Gradle">
5757
<code-block lang="kotlin">
58-
val exposedVersion: String = "0.54.0"
58+
val exposedVersion: String = "0.55.0"
5959
dependencies {
6060
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
6161
implementation("org.jetbrains.exposed:exposed-crypt:$exposedVersion")
@@ -82,59 +82,59 @@ Dependencies mapping listed below is similar (by functionality) to the previous
8282
&lt;dependency&gt;
8383
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
8484
&lt;artifactId&gt;exposed-core&lt;/artifactId&gt;
85-
&lt;version&gt;0.54.0&lt;/version&gt;
85+
&lt;version&gt;0.55.0&lt;/version&gt;
8686
&lt;/dependency&gt;
8787
&lt;dependency&gt;
8888
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
8989
&lt;artifactId&gt;exposed-crypt&lt;/artifactId&gt;
90-
&lt;version&gt;0.54.0&lt;/version&gt;
90+
&lt;version&gt;0.55.0&lt;/version&gt;
9191
&lt;/dependency&gt;
9292
&lt;dependency&gt;
9393
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
9494
&lt;artifactId&gt;exposed-dao&lt;/artifactId&gt;
95-
&lt;version&gt;0.54.0&lt;/version&gt;
95+
&lt;version&gt;0.55.0&lt;/version&gt;
9696
&lt;/dependency&gt;
9797
&lt;dependency&gt;
9898
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
9999
&lt;artifactId&gt;exposed-java-time&lt;/artifactId&gt;
100-
&lt;version&gt;0.54.0&lt;/version&gt;
100+
&lt;version&gt;0.55.0&lt;/version&gt;
101101
&lt;/dependency&gt;
102102
&lt;dependency&gt;
103103
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
104104
&lt;artifactId&gt;exposed-jdbc&lt;/artifactId&gt;
105-
&lt;version&gt;0.54.0&lt;/version&gt;
105+
&lt;version&gt;0.55.0&lt;/version&gt;
106106
&lt;/dependency&gt;
107107
&lt;dependency&gt;
108108
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
109109
&lt;artifactId&gt;exposed-jodatime&lt;/artifactId&gt;
110-
&lt;version&gt;0.54.0&lt;/version&gt;
110+
&lt;version&gt;0.55.0&lt;/version&gt;
111111
&lt;/dependency&gt;
112112
&lt;dependency&gt;
113113
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
114114
&lt;artifactId&gt;exposed-json&lt;/artifactId&gt;
115-
&lt;version&gt;0.54.0&lt;/version&gt;
115+
&lt;version&gt;0.55.0&lt;/version&gt;
116116
&lt;/dependency&gt;
117117
&lt;dependency&gt;
118118
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
119119
&lt;artifactId&gt;exposed-kotlin-datetime&lt;/artifactId&gt;
120-
&lt;version&gt;0.54.0&lt;/version&gt;
120+
&lt;version&gt;0.55.0&lt;/version&gt;
121121
&lt;/dependency&gt;
122122
&lt;dependency&gt;
123123
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
124124
&lt;artifactId&gt;exposed-money&lt;/artifactId&gt;
125-
&lt;version&gt;0.54.0&lt;/version&gt;
125+
&lt;version&gt;0.55.0&lt;/version&gt;
126126
&lt;/dependency&gt;
127127
&lt;dependency&gt;
128128
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
129129
&lt;artifactId&gt;exposed-spring-boot-starter&lt;/artifactId&gt;
130-
&lt;version&gt;0.54.0&lt;/version&gt;
130+
&lt;version&gt;0.55.0&lt;/version&gt;
131131
&lt;/dependency&gt;
132132
&lt;/dependencies&gt;
133133
</code-block>
134134
</tab>
135135
<tab title="Groovy Gradle">
136136
<code-block lang="groovy">
137-
def exposedVersion = "0.54.0"
137+
def exposedVersion = "0.55.0"
138138
dependencies {
139139
implementation "org.jetbrains.exposed:exposed-core:$exposedVersion"
140140
implementation "org.jetbrains.exposed:exposed-crypt:$exposedVersion"

documentation-website/Writerside/v.list

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<!DOCTYPE vars SYSTEM "https://helpserver.labs.jb.gg/help/schemas/mvp/vars.dtd">
33
<vars>
44
<var name="product" value="Writerside"/>
5-
<var name="exposed_version" value="0.54.0"/>
5+
<var name="exposed_version" value="0.55.0"/>
66
<var name="h2_db_version" value="2.2.224"/>
77
</vars>

documentation-website/Writerside/writerside.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
<topics dir="topics"/>
66
<snippets src="snippets"/>
77
<images dir="images" web-path="images/"/>
8-
<instance src="hi.tree" version="0.54.0" web-path="/docs"/>
8+
<instance src="hi.tree" version="0.55.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.54.0</version>
11+
<version>0.55.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.54.0"))
42+
implementation(platform("org.jetbrains.exposed:exposed-bom:0.55.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.54.0</version>
13+
<version>0.55.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.54.0'
23+
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.55.0'
2424
}
2525
```
2626
### Gradle Kotlin DSL
@@ -36,7 +36,7 @@ dependencies {
3636
```
3737
In `gradle.properties`
3838
```properties
39-
exposedVersion=0.54.0
39+
exposedVersion=0.55.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.54.0
7+
version=0.55.0

samples/exposed-ktor/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ ktorVersion=2.3.12
22
kotlinVersion=2.0.0
33
logbackVersion=1.4.12
44
kotlin.code.style=official
5-
exposedVersion=0.54.0
5+
exposedVersion=0.55.0
66
h2Version=2.1.214
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
exposedVersion=0.54.0
1+
exposedVersion=0.55.0
22
h2Version=2.1.214
33
flywayVersion=10.15.0
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
exposedVersion=0.54.0
1+
exposedVersion=0.55.0
22
kotlinVersion=2.0.0

0 commit comments

Comments
 (0)