Skip to content

Commit c44a6f5

Browse files
committed
chore: Bump Exposed version from 0.43.0 to 0.44.0
Add line about Spring modules now requiring jdk 17.
1 parent c7e0bf9 commit c44a6f5

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

docs/BREAKING_CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
If `TransactionManager` functions were being invoked by a `SpringTransactionManager` instance, please replace these calls with the appropriate Spring annotation
1414
or, if necessary, by using the companion object of `TransactionManager` directly (for example, `TransactionManager.currentOrNull()`).
15+
* `spring-transaction` and `exposed-spring-boot-starter` modules now use Spring Framework 6.0 and Spring Boot 3.0, which require Java 17 as a minimum version.
1516
* A table that is created with a keyword identifier (a table or column name) now logs a warning that the identifier's case may be lost when it is automatically quoted in generated SQL.
1617
This primarily affects H2 and Oracle, both of which support folding identifiers to uppercase, and PostgreSQL, which folds identifiers to lower case.
1718

docs/ChangeLog.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Infrastructure:
1414
Breaking changes:
1515
* `SpringTransactionManager` no longer extends `DataSourceTransactionManager`; instead, it directly extends `AbstractPlatformTransactionManager`.
1616
The class also no longer implements the Exposed interface `TransactionManager`, as transaction operations are instead delegated to Spring.
17+
* `spring-transaction` and `exposed-spring-boot-starter` modules now use Spring Framework 6.0 and Spring Boot 3.0, which require Java 17 as a minimum version.
1718
* A table that is created with a keyword identifier now logs a warning that the identifier's case may be lost when it is automatically quoted in generated SQL.
1819
`DatabaseConfig` now includes the property `preserveKeywordCasing`, which can be set to `true` to remove these warnings and to ensure that the identifier matches the exact case used.
1920
* More details at [Breaking changes](BREAKING_CHANGES.md#0440)

0 commit comments

Comments
 (0)