dependabot[bot] opened a new pull request, #14282: URL: https://github.com/apache/camel/pull/14282
Bumps [com.squareup:kotlinpoet-jvm](https://github.com/square/kotlinpoet) from 1.16.0 to 1.17.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/square/kotlinpoet/releases">com.squareup:kotlinpoet-jvm's releases</a>.</em></p> <blockquote> <h2>1.17.0</h2> <p>Thanks to <a href="https://github.com/jisungbin"><code>@jisungbin</code></a>, <a href="https://github.com/hfhbd"><code>@hfhbd</code></a>, <a href="https://github.com/evant"><code>@evant</code></a>, <a href="https://github.com/sgjesse"><code>@sgjesse</code></a>, <a href="https://github.com/sebek64"><code>@sebek64</code></a> for contributing to this release.</p> <ul> <li>Change: kotlinx-metadata 0.9.0. Note that the <code>KotlinClassMetadata.read</code> is deprecated in 0.9.0 and replaced with <code>readStrict</code> (<a href="https://redirect.github.com/square/kotlinpoet/issues/1830">#1830</a>). <ul> <li>Note: we now also provide <code>lenient</code> parameters to map to the underlying <code>readStrict()</code> and <code>readLenient()</code> calls (<a href="https://redirect.github.com/square/kotlinpoet/issues/1766">#1766</a>).</li> <li>We have also removed various <code>Class</code>/<code>TypeElement</code>/<code>Metadata</code>-to-<code>KmClass</code> APIs from the public API, as these are trivial to write now with kotlinx-metadata's newer APIs and allows us to focus the API surface area of this artifact better (<a href="https://redirect.github.com/square/kotlinpoet/issues/1891">#1891</a>).</li> </ul> </li> <li>New: Supertype list wraps to one-per-line if the primary constructor spans multiple lines (<a href="https://redirect.github.com/square/kotlinpoet/issues/1866">#1866</a>).</li> <li>New: Extract <code>MemberSpecHolder</code> interface for constructs that can hold <code>PropertySpec</code>s and <code>FunSpec</code>s and their builders (<a href="https://redirect.github.com/square/kotlinpoet/issues/1877">#1877</a>).</li> <li>New: <code>joinToCode</code> variant which operates on any type, but requires a transform lambda to convert each element into a <code>CodeBlock</code> (<a href="https://redirect.github.com/square/kotlinpoet/issues/1874">#1874</a>).</li> <li>New: Support annotation type arguments in <code>KSAnnotation.toAnnotationSpec()</code> (<a href="https://redirect.github.com/square/kotlinpoet/issues/1889">#1889</a>).</li> <li>Fix: Prevent name clashes between a function in class and a function call in current scope (<a href="https://redirect.github.com/square/kotlinpoet/issues/1850">#1850</a>).</li> <li>Fix: Fix extension function imports (<a href="https://redirect.github.com/square/kotlinpoet/issues/1814">#1814</a>).</li> <li>Fix: Omit implicit modifiers on <code>FileSpec.scriptBuilder</code> (<a href="https://redirect.github.com/square/kotlinpoet/issues/1813">#1813</a>).</li> <li>Fix: Fix trailing newline in <code>PropertySpec</code> (<a href="https://redirect.github.com/square/kotlinpoet/issues/1827">#1827</a>).</li> <li>Fix: <code>KSAnnotation.toAnnotationSpec</code> writes varargs in place instead of making them an array to work around a Kotlin issue with OptIn annotations (<a href="https://redirect.github.com/square/kotlinpoet/issues/1833">#1833</a>).</li> <li>Fix: <code>MemberName</code>s without a package are now correctly imported (<a href="https://redirect.github.com/square/kotlinpoet/issues/1841">#1841</a>)</li> <li>Fix: Throw if primary constructor delegates to other constructors (<a href="https://redirect.github.com/square/kotlinpoet/issues/1859">#1859</a>).</li> <li>Fix: Aliased imports with nested class (<a href="https://redirect.github.com/square/kotlinpoet/issues/1876">#1876</a>).</li> <li>Fix: Check for error types in <code>KSType.toClassName()</code> (<a href="https://redirect.github.com/square/kotlinpoet/issues/1890">#1890</a>).</li> <li>Fix: Support generating a single import for overloaded <code>MemberName</code>s (<a href="https://redirect.github.com/square/kotlinpoet/issues/1909">#1909</a>).</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/square/kotlinpoet/blob/main/docs/changelog.md">com.squareup:kotlinpoet-jvm's changelog</a>.</em></p> <blockquote> <h2>Version 1.17.0</h2> <p>Thanks to [<a href="https://github.com/jisungbin"><code>@jisungbin</code></a>][jisungbin], [<a href="https://github.com/hfhbd"><code>@hfhbd</code></a>][hfhbd], [<a href="https://github.com/evant"><code>@evant</code></a>][evant], [<a href="https://github.com/sgjesse"><code>@sgjesse</code></a>][sgjesse], [<a href="https://github.com/sebek64"><code>@sebek64</code></a>][sebek64] for contributing to this release.</p> <p><em>2024-05-24</em></p> <ul> <li>Change: kotlinx-metadata 0.9.0. Note that the <code>KotlinClassMetadata.read</code> is deprecated in 0.9.0 and replaced with <code>readStrict</code> (<a href="https://redirect.github.com/square/kotlinpoet/issues/1830">#1830</a>). <ul> <li>Note: we now also provide <code>lenient</code> parameters to map to the underlying <code>readStrict()</code> and <code>readLenient()</code> calls (<a href="https://redirect.github.com/square/kotlinpoet/issues/1766">#1766</a>).</li> <li>We have also removed various <code>Class</code>/<code>TypeElement</code>/<code>Metadata</code>-to-<code>KmClass</code> APIs from the public API, as these are trivial to write now with kotlinx-metadata's newer APIs and allows us to focus the API surface area of this artifact better (<a href="https://redirect.github.com/square/kotlinpoet/issues/1891">#1891</a>).</li> </ul> </li> <li>New: Supertype list wraps to one-per-line if the primary constructor spans multiple lines (<a href="https://redirect.github.com/square/kotlinpoet/issues/1866">#1866</a>).</li> <li>New: Extract <code>MemberSpecHolder</code> interface for constructs that can hold <code>PropertySpec</code>s and <code>FunSpec</code>s and their builders (<a href="https://redirect.github.com/square/kotlinpoet/issues/1877">#1877</a>).</li> <li>New: <code>joinToCode</code> variant which operates on any type, but requires a transform lambda to convert each element into a <code>CodeBlock</code> (<a href="https://redirect.github.com/square/kotlinpoet/issues/1874">#1874</a>).</li> <li>New: Support annotation type arguments in <code>KSAnnotation.toAnnotationSpec()</code> (<a href="https://redirect.github.com/square/kotlinpoet/issues/1889">#1889</a>).</li> <li>Fix: Prevent name clashes between a function in class and a function call in current scope (<a href="https://redirect.github.com/square/kotlinpoet/issues/1850">#1850</a>).</li> <li>Fix: Fix extension function imports (<a href="https://redirect.github.com/square/kotlinpoet/issues/1814">#1814</a>).</li> <li>Fix: Omit implicit modifiers on <code>FileSpec.scriptBuilder</code> (<a href="https://redirect.github.com/square/kotlinpoet/issues/1813">#1813</a>).</li> <li>Fix: Fix trailing newline in <code>PropertySpec</code> (<a href="https://redirect.github.com/square/kotlinpoet/issues/1827">#1827</a>).</li> <li>Fix: <code>KSAnnotation.toAnnotationSpec</code> writes varargs in place instead of making them an array to work around a Kotlin issue with <code>OptIn</code> annotations (<a href="https://redirect.github.com/square/kotlinpoet/issues/1833">#1833</a>).</li> <li>Fix: <code>MemberName</code>s without a package are now correctly imported (<a href="https://redirect.github.com/square/kotlinpoet/issues/1841">#1841</a>)</li> <li>Fix: Throw if primary constructor delegates to other constructors (<a href="https://redirect.github.com/square/kotlinpoet/issues/1859">#1859</a>).</li> <li>Fix: Aliased imports with nested class (<a href="https://redirect.github.com/square/kotlinpoet/issues/1876">#1876</a>).</li> <li>Fix: Check for error types in <code>KSType.toClassName()</code> (<a href="https://redirect.github.com/square/kotlinpoet/issues/1890">#1890</a>).</li> <li>Fix: Support generating a single import for overloaded <code>MemberName</code>s (<a href="https://redirect.github.com/square/kotlinpoet/issues/1909">#1909</a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/square/kotlinpoet/commit/fb28b0b304d6f000d35c19066d66efe021527735"><code>fb28b0b</code></a> Prepare for release 1.17.0</li> <li><a href="https://github.com/square/kotlinpoet/commit/4f3154eacaf3f5ce443a7ec07bfecff4fe084ab7"><code>4f3154e</code></a> Update dependency mkdocs-material to v9.5.24</li> <li><a href="https://github.com/square/kotlinpoet/commit/29d409aab5cd20e4a6d852d9f8f6d14b74fdb45f"><code>29d409a</code></a> Support generating a single import for overloaded MemberNames (<a href="https://redirect.github.com/square/kotlinpoet/issues/1909">#1909</a>)</li> <li><a href="https://github.com/square/kotlinpoet/commit/790a8558e9da0dcf5cb3539205b7339dd61736f2"><code>790a855</code></a> Update dependency mkdocs-material to v9.5.23</li> <li><a href="https://github.com/square/kotlinpoet/commit/e26e6acaae63e251431fcd79f086a1a944c712ec"><code>e26e6ac</code></a> Update dependency mkdocs-material to v9.5.22</li> <li><a href="https://github.com/square/kotlinpoet/commit/54fe6207e1c32fd80d138acf023a71756e71c6c7"><code>54fe620</code></a> Update Kotlin and KSP (<a href="https://redirect.github.com/square/kotlinpoet/issues/1903">#1903</a>)</li> <li><a href="https://github.com/square/kotlinpoet/commit/7a77efffb28b2d21f11f6b7968a4b0e3a349b80b"><code>7a77eff</code></a> Update dependency Jinja2 to v3.1.4</li> <li><a href="https://github.com/square/kotlinpoet/commit/95317169b4062b65125253fa5f32399404b6f6d2"><code>9531716</code></a> Update dependency Pygments to v2.18.0</li> <li><a href="https://github.com/square/kotlinpoet/commit/605b7ea23c088223d7b73fd1c8b98d6cdc8fb8b7"><code>605b7ea</code></a> Update dependency mkdocs-material to v9.5.21</li> <li><a href="https://github.com/square/kotlinpoet/commit/3f7650ca3859a7edf03a1c3868dd0aa660acc344"><code>3f7650c</code></a> Update dependency com.google.guava:guava to v33.2.0-jre (<a href="https://redirect.github.com/square/kotlinpoet/issues/1899">#1899</a>)</li> <li>Additional commits viewable in <a href="https://github.com/square/kotlinpoet/compare/1.16.0...1.17.0">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> -- 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]
