|
1 | 1 | R2DBC PostgreSQL Changelog
|
2 | 2 | =============================
|
3 | 3 |
|
| 4 | +1.1.0.RELEASE |
| 5 | +----------------------------------------- |
| 6 | +* Cancel signal does not interrupt cursored query fetching #536 |
| 7 | +* Implement support for interval units. #566 |
| 8 | +* Bump postgresql from 42.5.0 to 42.5.1 #568 |
| 9 | +* Remove rogue newline in readme #569 |
| 10 | +* Expose API to subscribe to Postgres notice messages #570 |
| 11 | +* Integration test fails on JDK > 8 because of Instant resolution change #572 |
| 12 | +* Error when storing BC dates (e.g. "0000-12-31T01:01:00Z") #578 |
| 13 | +* Bump Netty to 4.1.89.Final, CVE-2022-41915 #584 |
| 14 | +* Upgrade to Project Reactor 2022.0.3 #585 |
| 15 | +* Add codecs for `DayOfWeek`, `Month`, `MonthDay`, `Period`, `Year`, `YearMonth` #591 |
| 16 | +* key param javadoc description #593 |
| 17 | +* Adapt integration test to be Java 11 forward-compatible #594 |
| 18 | +* Creating connections can hang during server downtime #595 |
| 19 | +* Driver reports I/O error when rowsUpdated is greater than Integer.MAX_VALUE #597 |
| 20 | +* Upgrade dependencies #599 |
| 21 | +* Make `CodecMetadata.getDataTypes()` more flexible #600 |
| 22 | +* Add `PostgresqlResult.filter(…)` overrides to return `PostgresqlResult` instead of `Result` #602 |
| 23 | +* Upgrade to Reactor 2022.0.9 #604 |
| 24 | +* Support for pgvector #612 |
| 25 | +* Add support for dynamic usernames and passwords #613 |
| 26 | +* Upgrade dependencies #616 |
| 27 | +* Do not require `typarray` column when auto-registering extensions #621 |
| 28 | +* `NullPointerException` at `SingleHostConnectionFunction#getCredentials` when configuration password is `null` #622 |
| 29 | +* Upgrade dependencies #628 |
| 30 | +* Do not require typarray column when auto-registering extensions #632 |
| 31 | +* README.md #633 |
| 32 | +* Set SNI on SSL connections #634 |
| 33 | +* Performance issue with PostgresqlRow.getColumn(String name) when select many columns #636 |
| 34 | +* Bump org.postgresql:postgresql from 42.6.0 to 42.7.2 #637 |
| 35 | +* Resolve a LEAK warning in unit test #642 |
| 36 | +* Update SCRAM dependency to 3.0 #645 |
| 37 | +* Defer oid and typarray to stage when an extension is supported #649 |
| 38 | +* Add support for `sslnegotation=direct` #651 |
| 39 | +* SNIHostName is going to throw an exception when hostname has a trailing dot #656 |
| 40 | +* Postgres 11 compatibility #657 |
| 41 | +* Update scram-client to 3.1 #659 |
| 42 | +* Introduce fast-path handling for decoding primitive values #662 |
| 43 | +* Introduce `ObjectCodec` to support `bindNull(Object.class)` #664 |
| 44 | +* Explore acquisition scheduler offloading #668 |
| 45 | +* Fix self-suppression when standby is unavailable #678 |
| 46 | +* Include `OID` explicitly in the `SELECT` clause for older Postgres databases #680 |
| 47 | +* Switch to Sonatype Central Publishing #681 |
| 48 | +* Bump com.ongres.scram:scram-common from 3.1 to 3.2 #682 |
| 49 | +* Upgrade to JTS 1.20.0 #688 |
| 50 | +* Add JSpecify nullability annotations to Java APIs #689 |
| 51 | +* Ensure Java 8 `ByteBuffer`API usage #690 |
| 52 | + |
| 53 | +1.0.8.RELEASE |
| 54 | +----------------------------------------- |
| 55 | +* Add codecs for `DayOfWeek`, `Month`, `MonthDay`, `Period`, `Year`, `YearMonth` #591 |
| 56 | +* Fix self-suppression when standby is unavailable #678 |
| 57 | +* Include `OID` explicitly in the `SELECT` clause for older Postgres databases #680 |
| 58 | +* Switch to Sonatype Central Publishing #681 |
| 59 | + |
| 60 | +1.0.7.RELEASE |
| 61 | +----------------------------------------- |
| 62 | +* Explore acquisition scheduler offloading #668 |
| 63 | + |
| 64 | +1.0.6.RELEASE |
| 65 | +----------------------------------------- |
| 66 | +* Defer oid and typarray to stage when an extension is supported #649 |
| 67 | +* SNIHostName is going to throw an exception when hostname has a trailing dot #656 |
| 68 | +* Postgres 11 compatibility #657 |
| 69 | +* Introduce fast-path handling for decoding primitive values #662 |
| 70 | +* Introduce `ObjectCodec` to support `bindNull(Object.class)` #664 |
| 71 | + |
| 72 | +1.0.5.RELEASE |
| 73 | +----------------------------------------- |
| 74 | +* Do not require typarray column when auto-registering extensions #632 |
| 75 | +* Set SNI on SSL connections #634 |
| 76 | +* Performance issue with PostgresqlRow.getColumn(String name) when select many columns #636 |
| 77 | +* Resolve a LEAK warning in unit test #642 |
| 78 | + |
| 79 | + |
| 80 | +1.0.4.RELEASE |
| 81 | +----------------------------------------- |
| 82 | +* Do not require `typarray` column when auto-registering extensions #621 |
| 83 | +* `NullPointerException` at `SingleHostConnectionFunction#getCredentials` when configuration password is `null` #622 |
| 84 | +* Upgrade dependencies #628 |
| 85 | + |
| 86 | +1.0.3.RELEASE |
| 87 | +----------------------------------------- |
| 88 | +* Support for pgvector #612 |
| 89 | +* Add support for dynamic usernames and passwords #613 |
| 90 | +* Upgrade dependencies #616 |
| 91 | + |
| 92 | +1.0.2.RELEASE |
| 93 | +----------------------------------------- |
| 94 | +* Cancel signal does not interrupt cursored query fetching #536 |
| 95 | +* Expose API to subscribe to Postgres notice messages #570 |
| 96 | +* key param javadoc description #593 |
| 97 | +* Adapt integration test to be Java 11 forward-compatible #594 |
| 98 | +* Creating connections can hang during server downtime #595 |
| 99 | +* Driver reports I/O error when rowsUpdated is greater than Integer.MAX_VALUE #597 |
| 100 | +* Add `PostgresqlResult.filter(…)` overrides to return `PostgresqlResult` instead of `Result` #602 |
| 101 | +* Upgrade to Reactor 2022.0.9 #604 |
| 102 | + |
4 | 103 | 1.0.0.RELEASE
|
5 | 104 | -----------------------------------------
|
6 | 105 | * Associate `PostgresConnectionClosedException` with error code `08006` #538
|
|
0 commit comments