dependabot[bot] opened a new pull request, #1464:
URL: https://github.com/apache/dubbo-admin/pull/1464

   Bumps [github.com/jackc/pgx/v5](https://github.com/jackc/pgx) from 5.6.0 to 
5.9.2.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/jackc/pgx/blob/master/CHANGELOG.md";>github.com/jackc/pgx/v5's
 changelog</a>.</em></p>
   <blockquote>
   <h1>5.9.2 (April 18, 2026)</h1>
   <p>Fix SQL Injection via placeholder confusion with dollar quoted string 
literals (GHSA-j88v-2chj-qfwx)</p>
   <p>SQL injection can occur when:</p>
   <ol>
   <li>The non-default simple protocol is used.</li>
   <li>A dollar quoted string literal is used in the SQL query.</li>
   <li>That query contains text that would be would be interpreted outside as a 
placeholder outside of a string literal.</li>
   <li>The value of that placeholder is controllable by the attacker.</li>
   </ol>
   <p>e.g.</p>
   <pre lang="go"><code>attackValue := `$tag$; drop table canary; --`
   _, err = tx.Exec(ctx, `select $tag$ $1 $tag$, $1`, 
pgx.QueryExecModeSimpleProtocol, attackValue)
   </code></pre>
   <p>This is unlikely to occur outside of a contrived scenario.</p>
   <h1>5.9.1 (March 22, 2026)</h1>
   <ul>
   <li>Fix: batch result format corruption when using cached prepared 
statements (reported by Dirkjan Bussink)</li>
   </ul>
   <h1>5.9.0 (March 21, 2026)</h1>
   <p>This release includes a number of new features such as SCRAM-SHA-256-PLUS 
support, OAuth authentication support, and
   PostgreSQL protocol 3.2 support.</p>
   <p>It significantly reduces the amount of network traffic when using 
prepared statements (which are used automatically by
   default) by avoiding unnecessary Describe Portal messages. This also reduces 
local memory usage.</p>
   <p>It also includes multiple fixes for potential DoS due to panic or OOM if 
connected to a malicious server that sends
   deliberately malformed messages.</p>
   <ul>
   <li>Require Go 1.25+</li>
   <li>Add SCRAM-SHA-256-PLUS support (Adam Brightwell)</li>
   <li>Add OAuth authentication support for PostgreSQL 18 (David Schneider)</li>
   <li>Add PostgreSQL protocol 3.2 support (Dirkjan Bussink)</li>
   <li>Add tsvector type support (Adam Brightwell)</li>
   <li>Skip Describe Portal for cached prepared statements reducing network 
round trips</li>
   <li>Make LoadTypes query easier to support on &quot;postgres-like&quot; 
servers (Jelte Fennema-Nio)</li>
   <li>Default empty user to current OS user matching libpq behavior 
(ShivangSrivastava)</li>
   <li>Optimize LRU statement cache with custom linked list and node pooling 
(Mathias Bogaert)</li>
   <li>Optimize date scanning by replacing regex with manual parsing (Mathias 
Bogaert)</li>
   <li>Optimize pgio append/set functions with direct byte shifts (Mathias 
Bogaert)</li>
   <li>Make RowsAffected faster (Abhishek Chanda)</li>
   <li>Fix: Pipeline.Close panic when server sends multiple FATAL errors (Varun 
Chawla)</li>
   <li>Fix: ContextWatcher goroutine leak (Hank Donnay)</li>
   <li>Fix: stdlib discard connections with open transactions in ResetSession 
(Jeremy Schneider)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/jackc/pgx/commit/0aeabbcf11d859229c1f0b20e710d3596c76bf27";><code>0aeabbc</code></a>
 Release v5.9.2</li>
   <li><a 
href="https://github.com/jackc/pgx/commit/60644f84918a8af66d14a4b0d865d4edafd955da";><code>60644f8</code></a>
 Fix SQL sanitizer bugs with dollar-quoted strings and placeholder overflow</li>
   <li><a 
href="https://github.com/jackc/pgx/commit/a5680bc945aa7c6ebac2778d859ee7b4ba86db60";><code>a5680bc</code></a>
 Merge pull request <a 
href="https://redirect.github.com/jackc/pgx/issues/2531";>#2531</a> from 
dolmen-go/godoc-add-links</li>
   <li><a 
href="https://github.com/jackc/pgx/commit/e34e4524007062710c6a4fb9c8655b75a486b5cd";><code>e34e452</code></a>
 doc: Add godoc links</li>
   <li><a 
href="https://github.com/jackc/pgx/commit/08c9bb1f0d8fa6cc10ed8c713e68b1baa64dfe2c";><code>08c9bb1</code></a>
 Fix Stringer types encoded as text instead of numeric value in composite 
fields</li>
   <li><a 
href="https://github.com/jackc/pgx/commit/96b4dbdfd0458cb425bf8454d292a23978872cc8";><code>96b4dbd</code></a>
 Remove unstable test</li>
   <li><a 
href="https://github.com/jackc/pgx/commit/acf88e0065682e8948696d26fa6438669c4cabee";><code>acf88e0</code></a>
 Merge pull request <a 
href="https://redirect.github.com/jackc/pgx/issues/2526";>#2526</a> from 
abrightwell/abrightwell-min-proto</li>
   <li><a 
href="https://github.com/jackc/pgx/commit/2f81f1fc03bef99593e92c64ad9cac954c00e8e6";><code>2f81f1f</code></a>
 Update <code>max_protocol_version</code> and <code>min_protocol_version</code> 
defaults</li>
   <li><a 
href="https://github.com/jackc/pgx/commit/4e4eaedb47b7b3cfba0a1b0a9e6a3f015764f046";><code>4e4eaed</code></a>
 Release v5.9.1</li>
   <li><a 
href="https://github.com/jackc/pgx/commit/62731882651a90348febb43b2119b5f8bd9272de";><code>6273188</code></a>
 Fix batch result format corruption when using cached prepared statements</li>
   <li>Additional commits viewable in <a 
href="https://github.com/jackc/pgx/compare/v5.6.0...v5.9.2";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/jackc/pgx/v5&package-manager=go_modules&previous-version=5.6.0&new-version=5.9.2)](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 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)
   You can disable automated security fix PRs for this repo from the [Security 
Alerts page](https://github.com/apache/dubbo-admin/network/alerts).
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to