Skip to content

Commit

Permalink
Bump auto-value.version from 1.10.4 to 1.11.0
Browse files Browse the repository at this point in the history
Bumps `auto-value.version` from 1.10.4 to 1.11.0.
Updates `com.google.auto.value:auto-value-annotations` from 1.10.4 to 1.11.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/google/auto/releases">com.google.auto.value:auto-value-annotations's releases</a>.</em></p>
<blockquote>
<h2>AutoValue 1.11.0</h2>
<h2>What's Changed</h2>
<ul>
<li>AutoValue (including AutoBuilder) no longer bundles the Kotlin metadata API. This may require adding an explicit dependency on <code>org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.9.0</code> or <code>org.jetbrains.kotlin:kotlin-metadata-jvm:2.0.0</code> to client code that uses AutoBuilder to build Kotlin classes. The metadata API has changed from <code>kotlinx.metadata</code> to <code>kotlin.metadata</code>, but AutoBuilder uses reflection to function with either. (260b61ec7)</li>
<li>Support for generating Java 7 code has been removed from AutoValue, AutoAnnotation, and AutoBuilder. You must be on at least Java 8, or an Android version with desugaring that allows it to pass for Java 8. 1.10.4 is the last AutoValue version with support for Java 7. (b9142b7cd)</li>
<li>AutoBuilder now reports an error if it encounters a <code>@nullable</code> primitive parameter. Primitive types cannot be <code>null</code>, and should not be annotated for nullness. (7cbdeb43b)</li>
<li>Annotations on type parameters, like <code>abstract @nullable T foo()</code>, are now better propagated to fields and constructor parameters. (92d881ed9)</li>
<li>The generated <code>toBuilder()</code> method now says <code>new AutoValue_Foo.Builder(this)</code> rather than just <code>new Builder(this)</code>, to do the right thing if an extension generates its own subclass of <code>Builder</code>. (324470ba2)</li>
<li>The &quot;copy constructor&quot; in a generated <code>Builder</code> is no longer private. (6730615c9)</li>
<li>Added support for extending AutoValue.Builder with abstract methods. (7d4b020dd)</li>
<li>The annotation processors now support all kinds of resource URLs when loading template resources. This change only affects the case where the AutoValue (etc) processors are being invoked in an unusual environment, for example from a GraalVM app. It does not affect code that is merely being compiled for such an environment. (80b0ada75)</li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/google/auto/compare/auto-value-1.10.4...auto-value-1.11.0">https://github.com/google/auto/compare/auto-value-1.10.4...auto-value-1.11.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/google/auto/commit/5e02d6494b03076e7274005507f2be5653e216a0"><code>5e02d64</code></a> Set version number for auto-value-parent to 1.11.0.</li>
<li><a href="https://github.com/google/auto/commit/80b0ada7543515d9b8f923a42b42f750eccaf92b"><code>80b0ada</code></a> Support all kinds of resource URLs when loading template resources.</li>
<li><a href="https://github.com/google/auto/commit/260b61ec7bac0bcbc0b6af571bf80b8ee45119bd"><code>260b61e</code></a> Use reflection to avoid referencing the Kotlin metadata API directly.</li>
<li><a href="https://github.com/google/auto/commit/76be89a76ba534d56d148e627bec17a68e2f3f83"><code>76be89a</code></a> Bump org.apache.maven.plugins:maven-invoker-plugin from 3.6.1 to 3.7.0 in /fa...</li>
<li><a href="https://github.com/google/auto/commit/c11484e2d7368d9bcc80abd6dd00bfcde39ac533"><code>c11484e</code></a> Bump org.apache.maven.plugins:maven-invoker-plugin from 3.6.1 to 3.7.0 in /value</li>
<li><a href="https://github.com/google/auto/commit/b21d69db178a779278d3ae77750c59615aed68c4"><code>b21d69d</code></a> Bump kotlin.version from 1.9.24 to 2.0.0 in /value</li>
<li><a href="https://github.com/google/auto/commit/e55e60a969e270274c0a4a0f2062d484585eee8c"><code>e55e60a</code></a> Update AutoValue to reflect recent Kotlin Metadata API changes.</li>
<li><a href="https://github.com/google/auto/commit/29f739bd59b3b2851115f9ef203bf28cce949940"><code>29f739b</code></a> Bump actions/checkout from 4.1.5 to 4.1.6</li>
<li><a href="https://github.com/google/auto/commit/199a72753c786960670a45d069d136e80a71f6b7"><code>199a727</code></a> Bump kotlin.version from 1.9.23 to 1.9.24 in /value</li>
<li><a href="https://github.com/google/auto/commit/f2b22e340671f78ffc214b09f30d1ee43c847714"><code>f2b22e3</code></a> Bump actions/checkout from 4.1.4 to 4.1.5</li>
<li>Additional commits viewable in <a href="https://github.com/google/auto/compare/auto-value-1.10.4...auto-value-1.11.0">compare view</a></li>
</ul>
</details>
<br />

Updates `com.google.auto.value:auto-value` from 1.10.4 to 1.11.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/google/auto/releases">com.google.auto.value:auto-value's releases</a>.</em></p>
<blockquote>
<h2>AutoValue 1.11.0</h2>
<h2>What's Changed</h2>
<ul>
<li>AutoValue (including AutoBuilder) no longer bundles the Kotlin metadata API. This may require adding an explicit dependency on <code>org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.9.0</code> or <code>org.jetbrains.kotlin:kotlin-metadata-jvm:2.0.0</code> to client code that uses AutoBuilder to build Kotlin classes. The metadata API has changed from <code>kotlinx.metadata</code> to <code>kotlin.metadata</code>, but AutoBuilder uses reflection to function with either. (260b61ec7)</li>
<li>Support for generating Java 7 code has been removed from AutoValue, AutoAnnotation, and AutoBuilder. You must be on at least Java 8, or an Android version with desugaring that allows it to pass for Java 8. 1.10.4 is the last AutoValue version with support for Java 7. (b9142b7cd)</li>
<li>AutoBuilder now reports an error if it encounters a <code>@nullable</code> primitive parameter. Primitive types cannot be <code>null</code>, and should not be annotated for nullness. (7cbdeb43b)</li>
<li>Annotations on type parameters, like <code>abstract @nullable T foo()</code>, are now better propagated to fields and constructor parameters. (92d881ed9)</li>
<li>The generated <code>toBuilder()</code> method now says <code>new AutoValue_Foo.Builder(this)</code> rather than just <code>new Builder(this)</code>, to do the right thing if an extension generates its own subclass of <code>Builder</code>. (324470ba2)</li>
<li>The &quot;copy constructor&quot; in a generated <code>Builder</code> is no longer private. (6730615c9)</li>
<li>Added support for extending AutoValue.Builder with abstract methods. (7d4b020dd)</li>
<li>The annotation processors now support all kinds of resource URLs when loading template resources. This change only affects the case where the AutoValue (etc) processors are being invoked in an unusual environment, for example from a GraalVM app. It does not affect code that is merely being compiled for such an environment. (80b0ada75)</li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/google/auto/compare/auto-value-1.10.4...auto-value-1.11.0">https://github.com/google/auto/compare/auto-value-1.10.4...auto-value-1.11.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/google/auto/commit/5e02d6494b03076e7274005507f2be5653e216a0"><code>5e02d64</code></a> Set version number for auto-value-parent to 1.11.0.</li>
<li><a href="https://github.com/google/auto/commit/80b0ada7543515d9b8f923a42b42f750eccaf92b"><code>80b0ada</code></a> Support all kinds of resource URLs when loading template resources.</li>
<li><a href="https://github.com/google/auto/commit/260b61ec7bac0bcbc0b6af571bf80b8ee45119bd"><code>260b61e</code></a> Use reflection to avoid referencing the Kotlin metadata API directly.</li>
<li><a href="https://github.com/google/auto/commit/76be89a76ba534d56d148e627bec17a68e2f3f83"><code>76be89a</code></a> Bump org.apache.maven.plugins:maven-invoker-plugin from 3.6.1 to 3.7.0 in /fa...</li>
<li><a href="https://github.com/google/auto/commit/c11484e2d7368d9bcc80abd6dd00bfcde39ac533"><code>c11484e</code></a> Bump org.apache.maven.plugins:maven-invoker-plugin from 3.6.1 to 3.7.0 in /value</li>
<li><a href="https://github.com/google/auto/commit/b21d69db178a779278d3ae77750c59615aed68c4"><code>b21d69d</code></a> Bump kotlin.version from 1.9.24 to 2.0.0 in /value</li>
<li><a href="https://github.com/google/auto/commit/e55e60a969e270274c0a4a0f2062d484585eee8c"><code>e55e60a</code></a> Update AutoValue to reflect recent Kotlin Metadata API changes.</li>
<li><a href="https://github.com/google/auto/commit/29f739bd59b3b2851115f9ef203bf28cce949940"><code>29f739b</code></a> Bump actions/checkout from 4.1.5 to 4.1.6</li>
<li><a href="https://github.com/google/auto/commit/199a72753c786960670a45d069d136e80a71f6b7"><code>199a727</code></a> Bump kotlin.version from 1.9.23 to 1.9.24 in /value</li>
<li><a href="https://github.com/google/auto/commit/f2b22e340671f78ffc214b09f30d1ee43c847714"><code>f2b22e3</code></a> Bump actions/checkout from 4.1.4 to 4.1.5</li>
<li>Additional commits viewable in <a href="https://github.com/google/auto/compare/auto-value-1.10.4...auto-value-1.11.0">compare view</a></li>
</ul>
</details>
<br />

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>

Fixes #1302

COPYBARA_INTEGRATE_REVIEW=#1302 from google:dependabot/maven/auto-value.version-1.11.0 b6a0762
PiperOrigin-RevId: 639746674
  • Loading branch information
dependabot[bot] authored and Google Java Core Libraries committed Jun 3, 2024
1 parent e1d4e24 commit 584a33b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<!-- Properties for multiple-artifact deps. -->
<auto-value.version>1.10.4</auto-value.version>
<auto-value.version>1.11.0</auto-value.version>
<!--
We have a separate property for each flavor of Guava (instead of a shared
version without the -android and -jre suffixes) because that lets
Expand Down

0 comments on commit 584a33b

Please sign in to comment.