dependabot[bot] opened a new pull request, #70602: URL: https://github.com/apache/airflow/pull/70602
Bumps [resty.dev/v3](https://github.com/go-resty/resty) from 3.0.0-beta.2 to 3.0.0-rc.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/go-resty/resty/releases">resty.dev/v3's releases</a>.</em></p> <blockquote> <h2>v3.0.0-rc.3</h2> <h1>v3 Release Candidate 3</h1> <h2>v3 Guide</h2> <ul> <li>Upgrade Guide: <a href="https://resty.dev/docs/upgrading-to-v3/">https://resty.dev/docs/upgrading-to-v3/</a></li> </ul> <h2>Bug Fixes</h2> <ul> <li>fix: context cancellation leak by <a href="https://github.com/vadimi"><code>@vadimi</code></a> in <a href="https://redirect.github.com/go-resty/resty/pull/1177">go-resty/resty#1177</a></li> <li>fix(retry): protect parseRetryAfterHeader from integer and time duration overflow by <a href="https://github.com/HarshalPatel1972"><code>@HarshalPatel1972</code></a> in <a href="https://redirect.github.com/go-resty/resty/pull/1178">go-resty/resty#1178</a></li> </ul> <h2>Enhancements</h2> <ul> <li>feat(enhancement): improve string request body parsing memory allocs by <a href="https://github.com/vadimi"><code>@vadimi</code></a> in <a href="https://redirect.github.com/go-resty/resty/pull/1180">go-resty/resty#1180</a></li> </ul> <h2>Tests</h2> <ul> <li>test: add unit test to cover cancellation on nil resp body by <a href="https://github.com/vadimi"><code>@vadimi</code></a> in <a href="https://redirect.github.com/go-resty/resty/pull/1179">go-resty/resty#1179</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/vadimi"><code>@vadimi</code></a> made their first contribution in <a href="https://redirect.github.com/go-resty/resty/pull/1177">go-resty/resty#1177</a></li> <li><a href="https://github.com/HarshalPatel1972"><code>@HarshalPatel1972</code></a> made their first contribution in <a href="https://redirect.github.com/go-resty/resty/pull/1178">go-resty/resty#1178</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/go-resty/resty/compare/v3.0.0-rc.2...v3.0.0-rc.3">https://github.com/go-resty/resty/compare/v3.0.0-rc.2...v3.0.0-rc.3</a></p> <h2>v3.0.0-rc.2</h2> <h1>v3 Release Candidate 2</h1> <h2>v3 Guide</h2> <ul> <li>Upgrade Guide: <a href="https://resty.dev/docs/upgrading-to-v3/">https://resty.dev/docs/upgrading-to-v3/</a></li> </ul> <h2>Bug Fixes</h2> <ul> <li>fix: content decoder not found error when do not parse response is enabled and unsupported content-encoding header present by <a href="https://github.com/jeevatkm"><code>@jeevatkm</code></a> in <a href="https://redirect.github.com/go-resty/resty/pull/1169">go-resty/resty#1169</a></li> <li>fix: panics and state corruption in Request.Clone, Client.Close, SSE default logger, and invalid HTTP method handling by <a href="https://github.com/g3m0sis"><code>@g3m0sis</code></a> in <a href="https://redirect.github.com/go-resty/resty/pull/1172">go-resty/resty#1172</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/g3m0sis"><code>@g3m0sis</code></a> made their first contribution in <a href="https://redirect.github.com/go-resty/resty/pull/1172">go-resty/resty#1172</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/go-resty/resty/compare/v3.0.0-rc.1...v3.0.0-rc.2">https://github.com/go-resty/resty/compare/v3.0.0-rc.1...v3.0.0-rc.2</a></p> <h2>v3.0.0-rc.1</h2> <h1>v3 Release Candidate 1</h1> <h2>v3 Guide</h2> <ul> <li>Upgrade Guide: <a href="https://resty.dev/docs/upgrading-to-v3/">https://resty.dev/docs/upgrading-to-v3/</a></li> </ul> <h2>Bug Fixes</h2> <ul> <li>fix: request-level retry delay strategy and execution order of retry hooks and conditions <a href="https://redirect.github.com/go-resty/resty/issues/1033">#1033</a> by <a href="https://github.com/jeevatkm"><code>@jeevatkm</code></a> in <a href="https://redirect.github.com/go-resty/resty/pull/1096">go-resty/resty#1096</a></li> <li>fix: improve error handling in the multipart request failure <a href="https://redirect.github.com/go-resty/resty/issues/1030">#1030</a> by <a href="https://github.com/jeevatkm"><code>@jeevatkm</code></a> in <a href="https://redirect.github.com/go-resty/resty/pull/1101">go-resty/resty#1101</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/go-resty/resty/commit/d48da644c0b4f2294b09e8363095eea160a4c0d3"><code>d48da64</code></a> release: version bump to v3.0.0-rc.3 (<a href="https://redirect.github.com/go-resty/resty/issues/1182">#1182</a>)</li> <li><a href="https://github.com/go-resty/resty/commit/3f320513cff687b413f837ea96bb866819fe1fac"><code>3f32051</code></a> fix(retry): protect parseRetryAfterHeader from integer and time duration over...</li> <li><a href="https://github.com/go-resty/resty/commit/5a344527c864ac171d072a71d41b0c8f2524d558"><code>5a34452</code></a> feat(enhancement): improve string request body parsing memory allocs (<a href="https://redirect.github.com/go-resty/resty/issues/1180">#1180</a>)</li> <li><a href="https://github.com/go-resty/resty/commit/e0d82c2135b9b883dc6144b53193710f22e8e0c0"><code>e0d82c2</code></a> test: cover cancellation on nil resp body (<a href="https://redirect.github.com/go-resty/resty/issues/1179">#1179</a>)</li> <li><a href="https://github.com/go-resty/resty/commit/b17d8b08607abb5f4a042d837ee8673c874c9e71"><code>b17d8b0</code></a> fix: context cancellation leak (<a href="https://redirect.github.com/go-resty/resty/issues/1177">#1177</a>)</li> <li><a href="https://github.com/go-resty/resty/commit/b5060b29ab12cf6293593cf842a980b102df3a14"><code>b5060b2</code></a> chore: bump version to 3.0.0-rc.2+devrc3 for next dev iteration (<a href="https://redirect.github.com/go-resty/resty/issues/1175">#1175</a>)</li> <li><a href="https://github.com/go-resty/resty/commit/c72afa463ce8e977f6666cf555b44b9c690005da"><code>c72afa4</code></a> release: version bump to v3.0.0-rc.2 (<a href="https://redirect.github.com/go-resty/resty/issues/1174">#1174</a>)</li> <li><a href="https://github.com/go-resty/resty/commit/22ccb8e959efea7004a588ba3252071dff6212e4"><code>22ccb8e</code></a> fix: panics and state corruption in Request.Clone, Client.Close, SSE default ...</li> <li><a href="https://github.com/go-resty/resty/commit/80fd29de7fb6199fc9db44aa92599ae2f8c17d23"><code>80fd29d</code></a> fix: content decoder not found error when do not parse response is enabled (#...</li> <li><a href="https://github.com/go-resty/resty/commit/e674e0bba1925df8fe8528d95d086cae6b633dcc"><code>e674e0b</code></a> chore: bump version to 3.0.0-rc.1+devrc2 for next dev iteration (<a href="https://redirect.github.com/go-resty/resty/issues/1171">#1171</a>)</li> <li>Additional commits viewable in <a href="https://github.com/go-resty/resty/compare/v3.0.0-beta.2...v3.0.0-rc.3">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 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> -- 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]
