Skip to content

Commit

Permalink
Add change log for v0.6.0 and deprecate `PgPoolOptions.setUpConventio…
Browse files Browse the repository at this point in the history
…nally`
  • Loading branch information
ShreckYe committed Nov 29, 2024
1 parent 7bb60c4 commit 477978d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Change log

## v0.6.0 / 2024-11-29

* add conversion functions to convert Vert.x `Buffer`s to kotlinx-io `RawSink`s and `Sink`s and Okio `Sink`s and `BufferedSink`s

The `Source` conversion functions are not provided because Vert.x `Buffer` doesn't provide reading methods with a reader index.

* adapt to the [Exposed SELECT DSL design changes](https://github.com/JetBrains/Exposed/pull/1916) and bump Exposed to v0.56.0

The old `deleteWhereStatement` that conflicts with the new one is removed, causing a source and binary incompatible change.

* add API documentation generated by Dokka hosted at <https://huanshankeji.github.io/kotlin-common/>
* add CODE_OF_CONDUCT.md and CONTRIBUTING.md
* use the Kotlin binary compatibility validator
* add some experimental plus operators for nullable functions/lambdas
* add some common functions for Exposed and Vert.x SQL Client such as `jdbcUrl`, `ClientBuilder<*>.withCoConnectHandler`, and `SqlConnectOptions.setUpConventionally`
* add a `CoroutineAutoCloseable` interface like `AutoCloseable` and its version of the `use` extension function

## v0.5.1 / 2024-10-19

* enable the iOS targets for the "coroutines" module, which was disabled due to a compiler bug
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import io.vertx.pgclient.impl.PgPoolOptions
/**
* Optimized for throughput.
*/
@Deprecated("This function causes `withTransaction` not to work.", ReplaceWith(""))
fun PgPoolOptions.setUpConventionally() {
isPipelined = true
}

0 comments on commit 477978d

Please sign in to comment.