diff --git a/docs/ChangeLog.md b/docs/ChangeLog.md index 662c073091..8463cfedfa 100644 --- a/docs/ChangeLog.md +++ b/docs/ChangeLog.md @@ -1,3 +1,23 @@ +# 0.36.1 +Deprecations: +* `NotRegexpOp/notRegexp` was removed +* `ResultRow.tryGet` was removed +* `ResiltSet.create(rs: ResultSet, fields: List>)` was removed +* `Seq` data class was removed +* `EntityID`, `IdTable`, `IntIdTable`, `LongIdTable`, `UUIDTable` from `org.jetbrains.exposed.dao` package were removed +* All classes and functions from `org.jetbrains.exposed.sql.java-time` were removed in favour to `org.jetbrains.exposed.sql.javatime` +* `Column.primaryKey` function was removed in favor to explicit `Table.primaryKey` declaration + +Breaking Changes: +* All inheritors of `IdTable` (`IntIdTable`, `LongIdTable`, `UUIDTable`) have their `id` and `primaryKey` fields are final + +Features: +* `DatabaseConfig.defaultSchema` was introduced to set schema before first call in transaction +* `Coalesce` now accepts any number for arguments + +Bug fixes: +* EntityCache was reinitialized on explicit `Transaction.commit` + # 0.35.3 Bug fixes: * Invalid column's default value check in `SchemaUtils.addMissingColumnsStatements` could lead unneeded column modification diff --git a/exposed-bom/README.md b/exposed-bom/README.md index 372851ed84..7d343c2228 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.35.3 + 0.36.1 pom import @@ -51,7 +51,7 @@ repositories { } dependencies { - implementation(platform("org.jetbrains.exposed:exposed-bom:0.35.3")) + implementation(platform("org.jetbrains.exposed:exposed-bom:0.36.1")) 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 3475e7f568..d065845751 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.35.3 + 0.36.1 ``` @@ -28,7 +28,7 @@ repositories { mavenCentral() } dependencies { - implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.35.3' + implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.36.1' } ``` diff --git a/gradle.properties b/gradle.properties index 5c89d7ed23..e13f16e094 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.35.3 +version=0.36.1 dialect=none