Skip to content

Commit 37189d0

Browse files
committed
Update changelog.
[#257] Signed-off-by: Mark Paluch <mpaluch@vmware.com>
1 parent 9a0e15b commit 37189d0

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
R2DBC MSSQL Changelog
22
=============================
33

4+
1.0.0.RC1
5+
------------------
6+
* Expand CI testing to other platforms. #250
7+
* MssqlConnectionConfigurationUnitTests.configureKeyStore fails Windows test environment. #251
8+
* Upgrade to R2DBC 1.0 #253
9+
* Upgrade to Reactor 2022.0.0-M4 #255
10+
411
0.9.0.RELEASE
512
------------------
613
* `SSL` configuration option enables SSL handshaking regardless of the configuration value #240

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This project contains the [Microsoft SQL Server][m] implementation of the [R2DBC
88

99
This driver provides the following features:
1010

11-
* Complies with R2DBC 0.9
11+
* Complies with R2DBC 1.0
1212
* Login with username/password with temporary SSL encryption
1313
* Full SSL encryption support (for e.g. Azure usage).
1414
* Transaction Control
@@ -78,8 +78,7 @@ Mono<Connection> connectionMono = Mono.from(connectionFactory.create());
7878
| `connectTimeout` | Connection Id for tracing purposes. Defaults to 30 seconds. _(Optional)_
7979
| `hostNameInCertificate` | Expected hostname in SSL certificate. Supports wildcards (e.g. `*.database.windows.net`). _(Optional)_
8080
| `lockWaitTimeout` | Lock wait timeout using `SET LOCK_TIMEOUT …`. _(Optional)_
81-
| `preferCursoredExecution` | Whether to prefer cursors or direct execution for queries. Uses by default direct. Cursors require more round-trips but are more backpressure-friendly. Defaults to direct execution. Can be `boolean` or a `Predicate<String>` accepting the SQL query. _(
82-
Optional)_
81+
| `preferCursoredExecution` | Whether to prefer cursors or direct execution for queries. Uses by default direct. Cursors require more round-trips but are more backpressure-friendly. Defaults to direct execution. Can be `boolean` or a `Predicate<String>` accepting the SQL query. _(Optional)_
8382
| `sendStringParametersAsUnicode` | Configure whether to send character data as unicode (NVARCHAR, NCHAR, NTEXT) or whether to use the database encoding, defaults to `true`. If disabled, `CharSequence` data is sent using the database-specific collation such as ASCII/MBCS instead of Unicode.
8483
| `sslTunnel` | Enables SSL tunnel usage when using a SSL tunnel or SSL terminator in front of SQL Server. Accepts `Function<SslContextBuilder, SslContextBuilder>` to customize the SSL tunnel settings. SSL tunneling is not related to SQL Server's built-in SSL support. _(Optional)_
8584
| `sslContextBuilderCustomizer` | SSL Context customizer to configure SQL Server's built-in SSL support (`Function<SslContextBuilder, SslContextBuilder>`) _(Optional)_
@@ -254,9 +253,9 @@ values are fully materialized in the client before decoding. Make sure to accoun
254253

255254
[sql-geography-ref]: https://docs.microsoft.com/en-us/sql/t-sql/spatial-geography/spatial-types-geography?view=sql-server-2017
256255

257-
[r2dbc-blob-ref]: https://r2dbc.io/spec/0.9.0.M1/api/io/r2dbc/spi/Blob.html
256+
[r2dbc-blob-ref]: https://r2dbc.io/spec/1.0.0.RELEASE/api/io/r2dbc/spi/Blob.html
258257

259-
[r2dbc-clob-ref]: https://r2dbc.io/spec/0.9.0.M1/api/io/r2dbc/spi/Clob.html
258+
[r2dbc-clob-ref]: https://r2dbc.io/spec/1.0.0.RELEASE/api/io/r2dbc/spi/Clob.html
260259

261260
[java-bigdecimal-ref]: https://docs.oracle.com/javase/8/docs/api/java/math/BigDecimal.html
262261

@@ -300,8 +299,8 @@ Logging facilities:
300299

301300
Having trouble with R2DBC? We'd love to help!
302301

303-
* Check the [spec documentation](https://r2dbc.io/spec/0.9.0.M1/spec/html/), and [Javadoc](https://r2dbc.io/spec/0.9.0.M1/api/).
304-
* If you are upgrading, check out the [changelog](https://r2dbc.io/spec/0.9.0.M1/CHANGELOG.txt) for "new and noteworthy" features.
302+
* Check the [spec documentation](https://r2dbc.io/spec/1.0.0.RELEASE/spec/html/), and [Javadoc](https://r2dbc.io/spec/1.0.0.RELEASE/api/).
303+
* If you are upgrading, check out the [changelog](https://r2dbc.io/spec/1.0.0.RELEASE/CHANGELOG.txt) for "new and noteworthy" features.
305304
* Ask a question - we monitor [stackoverflow.com](https://stackoverflow.com) for questions tagged with [`r2dbc`](https://stackoverflow.com/tags/r2dbc). You can also chat with the community
306305
on [Gitter](https://gitter.im/r2dbc/r2dbc).
307306
* Report bugs with R2DBC MSSQL at [github.com/r2dbc/r2dbc-mssql/issues](https://github.com/r2dbc/r2dbc-mssql/issues).
@@ -327,7 +326,7 @@ You don't need to build from source to use R2DBC MSSQL (binaries in Maven Centra
327326
$ ./mvnw clean install
328327
```
329328

330-
If you want to build with the regular `mvn` command, you will need [Maven v3.5.0 or above](https://maven.apache.org/run-maven/index.html).
329+
If you want to build with the regular `mvn` command, you will need [Maven v3.6.0 or above](https://maven.apache.org/run-maven/index.html).
331330

332331
_Also see [CONTRIBUTING.adoc](https://github.com/r2dbc/.github/blob/main/CONTRIBUTING.adoc) if you wish to submit pull requests. Commits require `Signed-off-by` (`git commit -s`) to ensure [Developer Certificate of Origin](https://developercertificate.org/)._
333332

0 commit comments

Comments
 (0)