Skip to content

Commit

Permalink
chore: Bump Exposed version from 0.48.0 to 0.49.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joc-a committed Mar 27, 2024
1 parent 9649c9f commit 0c25428
Show file tree
Hide file tree
Showing 9 changed files with 74 additions and 43 deletions.
42 changes: 21 additions & 21 deletions README.md
Expand Up @@ -71,52 +71,52 @@ The Maven Central repository is enabled by default for Maven users.
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-core</artifactId>
<version>0.48.0</version>
<version>0.49.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-crypt</artifactId>
<version>0.48.0</version>
<version>0.49.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-dao</artifactId>
<version>0.48.0</version>
<version>0.49.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-java-time</artifactId>
<version>0.48.0</version>
<version>0.49.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-jdbc</artifactId>
<version>0.48.0</version>
<version>0.49.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-jodatime</artifactId>
<version>0.48.0</version>
<version>0.49.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-json</artifactId>
<version>0.48.0</version>
<version>0.49.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-kotlin-datetime</artifactId>
<version>0.48.0</version>
<version>0.49.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-money</artifactId>
<version>0.48.0</version>
<version>0.49.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-spring-boot-starter</artifactId>
<version>0.48.0</version>
<version>0.49.0</version>
</dependency>
</dependencies>

Expand All @@ -126,20 +126,20 @@ The Maven Central repository is enabled by default for Maven users.

```groovy
dependencies {
implementation 'org.jetbrains.exposed:exposed-core:0.48.0'
implementation 'org.jetbrains.exposed:exposed-crypt:0.48.0'
implementation 'org.jetbrains.exposed:exposed-dao:0.48.0'
implementation 'org.jetbrains.exposed:exposed-jdbc:0.48.0'
implementation 'org.jetbrains.exposed:exposed-core:0.49.0'
implementation 'org.jetbrains.exposed:exposed-crypt:0.49.0'
implementation 'org.jetbrains.exposed:exposed-dao:0.49.0'
implementation 'org.jetbrains.exposed:exposed-jdbc:0.49.0'
implementation 'org.jetbrains.exposed:exposed-jodatime:0.48.0'
implementation 'org.jetbrains.exposed:exposed-jodatime:0.49.0'
// or
implementation 'org.jetbrains.exposed:exposed-java-time:0.48.0'
implementation 'org.jetbrains.exposed:exposed-java-time:0.49.0'
// or
implementation 'org.jetbrains.exposed:exposed-kotlin-datetime:0.48.0'
implementation 'org.jetbrains.exposed:exposed-kotlin-datetime:0.49.0'
implementation 'org.jetbrains.exposed:exposed-json:0.48.0'
implementation 'org.jetbrains.exposed:exposed-money:0.48.0'
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.48.0'
implementation 'org.jetbrains.exposed:exposed-json:0.49.0'
implementation 'org.jetbrains.exposed:exposed-money:0.49.0'
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.49.0'
}
```

Expand Down Expand Up @@ -170,7 +170,7 @@ dependencies {
and in `gradle.properties`

```
exposedVersion=0.48.0
exposedVersion=0.49.0
```

## Samples
Expand Down
31 changes: 31 additions & 0 deletions docs/ChangeLog.md
@@ -1,3 +1,34 @@
# 0.49.0
Infrastructure:
* log4j2 2.23.1
* SQLite driver 3.45.2.0
* Spring Framework 6.1.5
* PostgreSQL driver 42.7.3
* Detekt 1.23.6

Breaking changes:
* fix!: EXPOSED-269 Incompatible with sqlite-jdbc 3.45.0.0 by @joc-a in https://github.com/JetBrains/Exposed/pull/2030

Features:
* feat: EXPOSED-238 Support EXPLAIN statements by @bog-walk in https://github.com/JetBrains/Exposed/pull/2022
* feat: Include DROP statements for unmapped indices in list of statements returned by `statementsRequiredForDatabaseMigration` function by @joc-a
in https://github.com/JetBrains/Exposed/pull/2023
* feat: EXPOSED-310 Add support for ULongIdTable and ULongEntity by @joc-a in https://github.com/JetBrains/Exposed/pull/2025
* feat: EXPOSED-316 Add support for UIntIdTable and UIntEntity by @joc-a in https://github.com/JetBrains/Exposed/pull/2026

Bug fixes:
* fix: Tests `testAdjustQueryHaving`, `testQueryAndHaving`, and `testQueryOrHaving` resolve wrong `eq` function, and `testGroupBy03` shows compiler warning by @joc-a
in https://github.com/JetBrains/Exposed/pull/2016
* fix: EXPOSED-217 Unnecessary query after calling with() and iteration by @bog-walk in https://github.com/JetBrains/Exposed/pull/2017
* fix: EXPOSED-307 [SQLite] Delete ignore not supported and throws by @bog-walk in https://github.com/JetBrains/Exposed/pull/2021

Docs:
* docs: Add missing KDocs for exposed-dao Entity API by @bog-walk in https://github.com/JetBrains/Exposed/pull/2012
* docs: Add missing KDocs for exposed-dao EntityClass API by @bog-walk in https://github.com/JetBrains/Exposed/pull/2018
* docs: Add missing KDocs for exposed-dao Entity References API by @bog-walk in https://github.com/JetBrains/Exposed/pull/2020
* docs: Add missing KDocs for exposed-dao EntityCache API by @bog-walk in https://github.com/JetBrains/Exposed/pull/2019
* Improve instructions for Maven users by @breun in https://github.com/JetBrains/Exposed/pull/2031

# 0.48.0
Infrastructure:
* PostgreSQL driver 42.7.2
Expand Down
4 changes: 2 additions & 2 deletions documentation-website/Writerside/topics/Getting-Started.md
Expand Up @@ -11,7 +11,7 @@
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-bom</artifactId>
<version>0.48.0</version>
<version>0.49.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -38,7 +38,7 @@
<tab title="Gradle Kotlin Script">
<code-block lang="kotlin">
<![CDATA[
val exposedVersion: String = "0.48.0"
val exposedVersion: String = "0.49.0"
dependencies {
implementation("org.jetbrains.exposed:exposed-core", exposedVersion)
Expand Down
24 changes: 12 additions & 12 deletions documentation-website/Writerside/topics/Modules-Documentation.md
Expand Up @@ -53,7 +53,7 @@ Dependencies mapping listed below is similar (by functionality) to the previous
<tabs>
<tab title="Kotlin Gradle">
<code-block lang="kotlin">
val exposedVersion: String = "0.48.0"
val exposedVersion: String = "0.49.0"
dependencies {
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
implementation("org.jetbrains.exposed:exposed-crypt:$exposedVersion")
Expand All @@ -80,59 +80,59 @@ Dependencies mapping listed below is similar (by functionality) to the previous
&lt;dependency&gt;
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
&lt;artifactId&gt;exposed-core&lt;/artifactId&gt;
&lt;version&gt;0.48.0&lt;/version&gt;
&lt;version&gt;0.49.0&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
&lt;artifactId&gt;exposed-crypt&lt;/artifactId&gt;
&lt;version&gt;0.48.0&lt;/version&gt;
&lt;version&gt;0.49.0&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
&lt;artifactId&gt;exposed-dao&lt;/artifactId&gt;
&lt;version&gt;0.48.0&lt;/version&gt;
&lt;version&gt;0.49.0&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
&lt;artifactId&gt;exposed-java-time&lt;/artifactId&gt;
&lt;version&gt;0.48.0&lt;/version&gt;
&lt;version&gt;0.49.0&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
&lt;artifactId&gt;exposed-jdbc&lt;/artifactId&gt;
&lt;version&gt;0.48.0&lt;/version&gt;
&lt;version&gt;0.49.0&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
&lt;artifactId&gt;exposed-jodatime&lt;/artifactId&gt;
&lt;version&gt;0.48.0&lt;/version&gt;
&lt;version&gt;0.49.0&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
&lt;artifactId&gt;exposed-json&lt;/artifactId&gt;
&lt;version&gt;0.48.0&lt;/version&gt;
&lt;version&gt;0.49.0&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
&lt;artifactId&gt;exposed-kotlin-datetime&lt;/artifactId&gt;
&lt;version&gt;0.48.0&lt;/version&gt;
&lt;version&gt;0.49.0&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
&lt;artifactId&gt;exposed-money&lt;/artifactId&gt;
&lt;version&gt;0.48.0&lt;/version&gt;
&lt;version&gt;0.49.0&lt;/version&gt;
&lt;/dependency&gt;
&lt;dependency&gt;
&lt;groupId&gt;org.jetbrains.exposed&lt;/groupId&gt;
&lt;artifactId&gt;exposed-spring-boot-starter&lt;/artifactId&gt;
&lt;version&gt;0.48.0&lt;/version&gt;
&lt;version&gt;0.49.0&lt;/version&gt;
&lt;/dependency&gt;
&lt;/dependencies&gt;
</code-block>
</tab>
<tab title="Groovy Gradle">
<code-block lang="groovy">
def exposedVersion = "0.48.0"
def exposedVersion = "0.49.0"
dependencies {
implementation "org.jetbrains.exposed:exposed-core:$exposedVersion"
implementation "org.jetbrains.exposed:exposed-crypt:$exposedVersion"
Expand Down
4 changes: 2 additions & 2 deletions exposed-bom/README.md
Expand Up @@ -8,7 +8,7 @@ Bill of Materials for all Exposed modules
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-bom</artifactId>
<version>0.48.0</version>
<version>0.49.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -39,7 +39,7 @@ repositories {
}

dependencies {
implementation(platform("org.jetbrains.exposed:exposed-bom:0.48.0"))
implementation(platform("org.jetbrains.exposed:exposed-bom:0.49.0"))
implementation("org.jetbrains.exposed", "exposed-core")
implementation("org.jetbrains.exposed", "exposed-dao")
implementation("org.jetbrains.exposed", "exposed-jdbc")
Expand Down
6 changes: 3 additions & 3 deletions exposed-spring-boot-starter/README.md
Expand Up @@ -10,7 +10,7 @@ This starter will give you the latest version of [Exposed](https://github.com/Je
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-spring-boot-starter</artifactId>
<version>0.48.0</version>
<version>0.49.0</version>
</dependency>
</dependencies>
```
Expand All @@ -20,7 +20,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.48.0'
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.49.0'
}
```
### Gradle Kotlin DSL
Expand All @@ -36,7 +36,7 @@ dependencies {
```
In `gradle.properties`
```properties
exposedVersion=0.48.0
exposedVersion=0.49.0
```

## Setting up a database connection
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -4,4 +4,4 @@ org.gradle.configuration.cache=true
org.gradle.caching=true

group=org.jetbrains.exposed
version=0.48.0
version=0.49.0
2 changes: 1 addition & 1 deletion samples/exposed-ktor/gradle.properties
Expand Up @@ -2,5 +2,5 @@ ktorVersion=2.3.4
kotlinVersion=1.8.10
logbackVersion=1.2.11
kotlin.code.style=official
exposedVersion=0.48.0
exposedVersion=0.49.0
h2Version=2.1.214
2 changes: 1 addition & 1 deletion samples/exposed-spring/gradle.properties
@@ -1,2 +1,2 @@
exposedVersion=0.48.0
exposedVersion=0.49.0
kotlinVersion=1.8.21

0 comments on commit 0c25428

Please sign in to comment.