Commit 0d8d410
authored
Build(deps-dev): Bump org.postgresql:r2dbc-postgresql from 1.0.7.RELEASE to 1.1.0.RELEASE (#1402)
Bumps
[org.postgresql:r2dbc-postgresql](https://github.com/pgjdbc/r2dbc-postgresql)
from 1.0.7.RELEASE to 1.1.0.RELEASE.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pgjdbc/r2dbc-postgresql/releases">org.postgresql:r2dbc-postgresql's
releases</a>.</em></p>
<blockquote>
<h2>v1.1.0.RELEASE</h2>
<h2>:star: New Features</h2>
<ul>
<li>Expose API to subscribe to Postgres notice messages <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/570">#570</a></li>
<li>Add codecs for <code>DayOfWeek</code>, <code>Month</code>,
<code>MonthDay</code>, <code>Period</code>, <code>Year</code>,
<code>YearMonth</code> <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/591">#591</a></li>
<li>Make <code>CodecMetadata.getDataTypes()</code> more flexible <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/600">#600</a></li>
<li>Add <code>PostgresqlResult.filter(…)</code> overrides to return
<code>PostgresqlResult</code> instead of <code>Result</code> <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/602">#602</a></li>
<li>Support for pgvector <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/612">#612</a></li>
<li>Add support for dynamic usernames and passwords <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/613">#613</a></li>
<li>Set SNI on SSL connections <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/634">#634</a></li>
<li>Performance issue with PostgresqlRow.getColumn(String name) when
select many columns <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/636">#636</a></li>
<li>Defer oid and typarray to stage when an extension is supported <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/649">#649</a></li>
<li>Add support for <code>sslnegotation=direct</code> <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/651">#651</a></li>
<li>Introduce fast-path handling for decoding primitive values <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/662">#662</a></li>
<li>Introduce <code>ObjectCodec</code> to support
<code>bindNull(Object.class)</code> <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/664">#664</a></li>
<li>Explore acquisition scheduler offloading <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/668">#668</a></li>
<li>Add JSpecify nullability annotations to Java APIs <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/689">#689</a></li>
</ul>
<h2>:lady_beetle: Bug Fixes</h2>
<ul>
<li>Cancel signal does not interrupt cursored query fetching <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/536">#536</a></li>
<li>Implement support for interval units. <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/566">#566</a></li>
<li>Error when storing BC dates (e.g. "0000-12-31T01:01:00Z")
<a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/578">#578</a></li>
<li>Creating connections can hang during server downtime <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/595">#595</a></li>
<li>Driver reports I/O error when rowsUpdated is greater than
Integer.MAX_VALUE <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/597">#597</a></li>
<li>Do not require <code>typarray</code> column when auto-registering
extensions <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/621">#621</a></li>
<li><code>NullPointerException</code> at
<code>SingleHostConnectionFunction#getCredentials</code> when
configuration password is <code>null</code> <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/622">#622</a></li>
<li>Do not require typarray column when auto-registering extensions <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/632">#632</a></li>
<li>SNIHostName is going to throw an exception when hostname has a
trailing dot <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/656">#656</a></li>
<li>Postgres 11 compatibility <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/657">#657</a></li>
<li>Fix self-suppression when standby is unavailable <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/678">#678</a></li>
<li>Include <code>OID</code> explicitly in the <code>SELECT</code>
clause for older Postgres databases <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/680">#680</a></li>
</ul>
<h2>:bulb: Other</h2>
<ul>
<li>Remove rogue newline in readme <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/569">#569</a></li>
<li>Integration test fails on JDK > 8 because of Instant resolution
change <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/572">#572</a></li>
<li>Bump Netty to 4.1.89.Final, CVE-2022-41915 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/584">#584</a></li>
<li>Upgrade to Project Reactor 2022.0.3 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/585">#585</a></li>
<li>key param javadoc description <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/593">#593</a></li>
<li>Adapt integration test to be Java 11 forward-compatible <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/594">#594</a></li>
<li>Upgrade to Reactor 2022.0.9 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/604">#604</a></li>
<li>Bump org.postgresql:postgresql from 42.6.0 to 42.7.2 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/637">#637</a></li>
<li>Resolve a LEAK warning in unit test <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/642">#642</a></li>
<li>Update SCRAM dependency to 3.0 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/645">#645</a></li>
<li>Update scram-client to 3.1 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/659">#659</a></li>
<li>Switch to Sonatype Central Publishing <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/681">#681</a></li>
<li>Bump com.ongres.scram:scram-common from 3.1 to 3.2 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/682">#682</a></li>
<li>Upgrade to JTS 1.20.0 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/688">#688</a></li>
<li>Ensure Java 8 <code>ByteBuffer</code>API usage <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/690">#690</a></li>
</ul>
<h2>:heart: Contributors</h2>
<p>We'd like to thank all the contributors who worked on this
release!</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pgjdbc/r2dbc-postgresql/blob/main/CHANGELOG">org.postgresql:r2dbc-postgresql's
changelog</a>.</em></p>
<blockquote>
<h2>1.1.0.RELEASE</h2>
<ul>
<li>Cancel signal does not interrupt cursored query fetching <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/536">#536</a></li>
<li>Implement support for interval units. <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/566">#566</a></li>
<li>Bump postgresql from 42.5.0 to 42.5.1 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/568">#568</a></li>
<li>Remove rogue newline in readme <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/569">#569</a></li>
<li>Expose API to subscribe to Postgres notice messages <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/570">#570</a></li>
<li>Integration test fails on JDK > 8 because of Instant resolution
change <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/572">#572</a></li>
<li>Error when storing BC dates (e.g. "0000-12-31T01:01:00Z")
<a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/578">#578</a></li>
<li>Bump Netty to 4.1.89.Final, CVE-2022-41915 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/584">#584</a></li>
<li>Upgrade to Project Reactor 2022.0.3 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/585">#585</a></li>
<li>Add codecs for <code>DayOfWeek</code>, <code>Month</code>,
<code>MonthDay</code>, <code>Period</code>, <code>Year</code>,
<code>YearMonth</code> <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/591">#591</a></li>
<li>key param javadoc description <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/593">#593</a></li>
<li>Adapt integration test to be Java 11 forward-compatible <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/594">#594</a></li>
<li>Creating connections can hang during server downtime <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/595">#595</a></li>
<li>Driver reports I/O error when rowsUpdated is greater than
Integer.MAX_VALUE <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/597">#597</a></li>
<li>Upgrade dependencies <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/599">#599</a></li>
<li>Make <code>CodecMetadata.getDataTypes()</code> more flexible <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/600">#600</a></li>
<li>Add <code>PostgresqlResult.filter(…)</code> overrides to return
<code>PostgresqlResult</code> instead of <code>Result</code> <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/602">#602</a></li>
<li>Upgrade to Reactor 2022.0.9 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/604">#604</a></li>
<li>Support for pgvector <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/612">#612</a></li>
<li>Add support for dynamic usernames and passwords <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/613">#613</a></li>
<li>Upgrade dependencies <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/616">#616</a></li>
<li>Do not require <code>typarray</code> column when auto-registering
extensions <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/621">#621</a></li>
<li><code>NullPointerException</code> at
<code>SingleHostConnectionFunction#getCredentials</code> when
configuration password is <code>null</code> <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/622">#622</a></li>
<li>Upgrade dependencies <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/628">#628</a></li>
<li>Do not require typarray column when auto-registering extensions <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/632">#632</a></li>
<li>README.md <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/633">#633</a></li>
<li>Set SNI on SSL connections <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/634">#634</a></li>
<li>Performance issue with PostgresqlRow.getColumn(String name) when
select many columns <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/636">#636</a></li>
<li>Bump org.postgresql:postgresql from 42.6.0 to 42.7.2 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/637">#637</a></li>
<li>Resolve a LEAK warning in unit test <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/642">#642</a></li>
<li>Update SCRAM dependency to 3.0 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/645">#645</a></li>
<li>Defer oid and typarray to stage when an extension is supported <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/649">#649</a></li>
<li>Add support for <code>sslnegotation=direct</code> <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/651">#651</a></li>
<li>SNIHostName is going to throw an exception when hostname has a
trailing dot <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/656">#656</a></li>
<li>Postgres 11 compatibility <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/657">#657</a></li>
<li>Update scram-client to 3.1 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/659">#659</a></li>
<li>Introduce fast-path handling for decoding primitive values <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/662">#662</a></li>
<li>Introduce <code>ObjectCodec</code> to support
<code>bindNull(Object.class)</code> <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/664">#664</a></li>
<li>Explore acquisition scheduler offloading <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/668">#668</a></li>
<li>Fix self-suppression when standby is unavailable <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/678">#678</a></li>
<li>Include <code>OID</code> explicitly in the <code>SELECT</code>
clause for older Postgres databases <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/680">#680</a></li>
<li>Switch to Sonatype Central Publishing <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/681">#681</a></li>
<li>Bump com.ongres.scram:scram-common from 3.1 to 3.2 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/682">#682</a></li>
<li>Upgrade to JTS 1.20.0 <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/688">#688</a></li>
<li>Add JSpecify nullability annotations to Java APIs <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/689">#689</a></li>
<li>Ensure Java 8 <code>ByteBuffer</code>API usage <a
href="https://redirect.github.com/pgjdbc/r2dbc-postgresql/issues/690">#690</a></li>
</ul>
<p>1.0.8.RELEASE</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pgjdbc/r2dbc-postgresql/commit/bc4c43c851ab18ca7d5dcb4c11dc07074998237f"><code>bc4c43c</code></a>
Release 1.1.0.RELEASE.</li>
<li><a
href="https://github.com/pgjdbc/r2dbc-postgresql/commit/88d8f86c38155a99700bec4940ec82336add5dca"><code>88d8f86</code></a>
Update changelog.</li>
<li><a
href="https://github.com/pgjdbc/r2dbc-postgresql/commit/2f4c03aebcd8d9017f1d009691176d442a747241"><code>2f4c03a</code></a>
Refine releases.</li>
<li><a
href="https://github.com/pgjdbc/r2dbc-postgresql/commit/868dbdebcba031210594f08f3263c5cf0ab7f0e5"><code>868dbde</code></a>
Ensure Java 8 <code>ByteBuffer</code>API usage.</li>
<li><a
href="https://github.com/pgjdbc/r2dbc-postgresql/commit/fe87bb2a7f8d44cdaf6c4078ab0df42a479c7214"><code>fe87bb2</code></a>
Polishing.</li>
<li><a
href="https://github.com/pgjdbc/r2dbc-postgresql/commit/0c7d568a743213693d110b24d17cf51ff9065d81"><code>0c7d568</code></a>
Add JSpecify nullability annotations to Java APIs.</li>
<li><a
href="https://github.com/pgjdbc/r2dbc-postgresql/commit/92cdd01ac19c6e5a907018f9face2450985f8501"><code>92cdd01</code></a>
Refactor DisposableServer into JUnit extension.</li>
<li><a
href="https://github.com/pgjdbc/r2dbc-postgresql/commit/bbdf0eac27b6cc1eb70913980de1df84139dfe99"><code>bbdf0ea</code></a>
Polishing.</li>
<li><a
href="https://github.com/pgjdbc/r2dbc-postgresql/commit/88aaa3c7fca867251e4dc2099a2bbdf0f14a20b3"><code>88aaa3c</code></a>
Fix self-suppression when standby is unavailable This commit fixes
self-suppr...</li>
<li><a
href="https://github.com/pgjdbc/r2dbc-postgresql/commit/8efae70a8efc1b0b52fc4828655442ae893cdac4"><code>8efae70</code></a>
Add security policy for version support and reporting</li>
<li>Additional commits viewable in <a
href="https://github.com/pgjdbc/r2dbc-postgresql/compare/v1.0.7.RELEASE...v1.1.0.RELEASE">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
111 | 111 | | |
112 | 112 | | |
113 | 113 | | |
114 | | - | |
| 114 | + | |
115 | 115 | | |
116 | 116 | | |
117 | 117 | | |
| |||
0 commit comments