Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support different agent modes in the native-image Gradle plugin #230

Merged
merged 10 commits into from May 29, 2022

Conversation

gradinac
Copy link
Collaborator

@gradinac gradinac commented May 6, 2022

This PR reworks agent support by decoupling the agent task instrumentation from image building and introduces the concept of agent modes.

@gradinac gradinac force-pushed the gradinac/agent-modes-support branch from e2e54c4 to 21d497b Compare May 10, 2022 19:33
@gradinac gradinac force-pushed the gradinac/agent-modes-support branch from ecff683 to 5bb0697 Compare May 19, 2022 15:25
Copy link
Collaborator

@melix melix left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changes look good to me, great work @gradinac ! So I think what's missing now is test coverage and documentation of the breaking changes. Potentially we could document the different agent modes too. I guess you'll have to discuss with @alvarosanchez for the Maven support to be added (fine if the Gradle plugin supports it first).

AgentOptions getAgent();

@Nested
CopyMetadataOptions getCopyMetadata();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should probably live under AgentOptions

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree, I've moved this to AgentOptions and renamed it to metadataCopy to remain consistent with the naming of other tasks

@@ -45,6 +45,7 @@ pluginManagement {
}
repositories {
mavenCentral()
mavenLocal()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will need to remove this from draft PR

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah yes, I've kept this to make it easier to test locally on multiple machines, I will remove all changes related to local testing

Aleksandar Gradinac added 3 commits May 23, 2022 19:50
Rename copyMetadata to metadataCopy and move it into the agent block.
Run the merge action from inside the MetadataCopyTask.
Introduce a marker for agent options that is substituted with the output directory.
Copy link
Collaborator

@melix melix left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is looking good, let's get this to the finish line!

*
* @return .
*/
@Input
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be @Internal, it's not an input in the sense of task inputs.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's a good point, I'll change it to @Internal

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the last remaining issue AFAICT.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Snap, sorry for that, I missed this when refactoring, will push an updated version


public class CleanupAgentFilesAction implements Action<Task> {

private final Provider<List<String>> directoriesToCleanup;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should probably be a ListProvider or, even better, a ConfigurableFileCollection

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, we could introduce a ListProperty, but we would manually have to instantiate it and pass it around. We could also go with a ConfigurableFileCollection, though in this context these files are either passed in from a task input, or created internally by mapping another property

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's keep it as is for now, I'll take a look when I have time

@@ -46,6 +46,7 @@ plugins {

repositories {
mavenCentral()
mavenLocal()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be removed

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree, I will remove everything related to local testing from the PR

@gradinac gradinac force-pushed the gradinac/agent-modes-support branch from 3722f5a to 1257d59 Compare May 27, 2022 01:47
Copy link
Collaborator

@melix melix left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Given that the "conditional" mode is the recommended mode for libraries, I wonder if we should make it the default when the java-library plugin is applied?

@gradinac
Copy link
Collaborator Author

Given that the "conditional" mode is the recommended mode for libraries, I wonder if we should make it the default when the java-library plugin is applied?

That's a good point - we could do this if the agent mode is not explicitly set on the command line and the user has not specified a `defaultMode in the DSL.

I've noticed plugins behave very similar to tasks in terms of lazyness - there's a withType call that's called back only when a plugin actually executes. For the agent, we hook into project evaluation so I don't think we can use that mechanism.
The alternative is to simply check if the JavaLibraryPlugin is included in the project.

One downside of doing this would be non-apparent changes in the build configuration that depend on included plugins

@melix
Copy link
Collaborator

melix commented May 27, 2022

mmm, not sure I follow you. You can do:

project.getPlugins().withType(JavaLibraryPlugin.class) { configure agent convention }

@gradinac
Copy link
Collaborator Author

mmm, not sure I follow you. You can do:

project.getPlugins().withType(JavaLibraryPlugin.class) { configure agent convention }

Ah yes, this would set the convention, but that's the bit i'm unsure about - would this execute before or after project evaluation?

@melix
Copy link
Collaborator

melix commented May 27, 2022

It would execute as soon as the java-library plugin is applied. That is to say immediately if it's already applied when this code executes, or later if it's not yet applied.

@gradinac
Copy link
Collaborator Author

It would execute as soon as the java-library plugin is applied. That is to say immediately if it's already applied when this code executes, or later if it's not yet applied.

Makes sense, thank you! :) I'll push an update to the PR

@gradinac gradinac marked this pull request as ready for review May 28, 2022 23:58
@gradinac gradinac merged commit 91e22c6 into master May 29, 2022
gcf-merge-on-green bot pushed a commit to googleapis/java-bigtable that referenced this pull request Jun 22, 2022
… v0.9.12 (#1284)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-bigtable).
gcf-merge-on-green bot pushed a commit to googleapis/java-bigquery that referenced this pull request Jun 22, 2022
…to v0.9.12 (#2124)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:junit-platform-native](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-bigquery).
gcf-merge-on-green bot pushed a commit to googleapis/java-logging that referenced this pull request Jun 22, 2022
…to v0.9.12 (#976)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:junit-platform-native](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-logging).
gcf-merge-on-green bot pushed a commit to googleapis/java-tasks that referenced this pull request Jun 22, 2022
… v0.9.12 (#700)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-tasks).
gcf-merge-on-green bot pushed a commit to googleapis/java-datastore that referenced this pull request Jun 22, 2022
… v0.9.12 (#774)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-datastore).
gcf-merge-on-green bot pushed a commit to googleapis/java-secretmanager that referenced this pull request Jun 22, 2022
…to v0.9.12 (#787)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:junit-platform-native](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-secretmanager).
gcf-merge-on-green bot pushed a commit to googleapis/java-storage that referenced this pull request Jun 22, 2022
… v0.9.12 (#1464)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-storage).
gcf-merge-on-green bot pushed a commit to googleapis/java-pubsub that referenced this pull request Jun 22, 2022
…to v0.9.12 (#1169)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:junit-platform-native](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-pubsub).
gcf-merge-on-green bot pushed a commit to googleapis/java-trace that referenced this pull request Jun 22, 2022
… v0.9.12 (#810)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-trace).
gcf-merge-on-green bot pushed a commit to googleapis/java-bigtable that referenced this pull request Jun 22, 2022
…to v0.9.12 (#1283)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:junit-platform-native](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-bigtable).
gcf-merge-on-green bot pushed a commit to googleapis/java-datastore that referenced this pull request Jun 22, 2022
…to v0.9.12 (#773)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:junit-platform-native](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-datastore).
gcf-merge-on-green bot pushed a commit to googleapis/java-pubsub that referenced this pull request Jun 22, 2022
… v0.9.12 (#1170)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-pubsub).
gcf-merge-on-green bot pushed a commit to googleapis/java-firestore that referenced this pull request Jun 22, 2022
… v0.9.12 (#973)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-firestore).
gcf-merge-on-green bot pushed a commit to googleapis/java-secretmanager that referenced this pull request Jun 22, 2022
… v0.9.12 (#788)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-secretmanager).
gcf-merge-on-green bot pushed a commit to googleapis/java-shared-config that referenced this pull request Jun 22, 2022
… v0.9.12 (#483)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-shared-config).
gcf-merge-on-green bot pushed a commit to googleapis/java-trace that referenced this pull request Jun 22, 2022
…to v0.9.12 (#809)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:junit-platform-native](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-trace).
gcf-merge-on-green bot pushed a commit to googleapis/java-tasks that referenced this pull request Jun 22, 2022
…to v0.9.12 (#699)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:junit-platform-native](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-tasks).
gcf-merge-on-green bot pushed a commit to googleapis/java-shared-config that referenced this pull request Jun 22, 2022
…to v0.9.12 (#482)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:junit-platform-native](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-shared-config).
gcf-merge-on-green bot pushed a commit to googleapis/java-spanner that referenced this pull request Jun 22, 2022
… v0.9.12 (#1918)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-spanner).
github-actions bot pushed a commit to meltsufin/monorepo-experiments that referenced this pull request Jun 22, 2022
… v0.9.12 (#700)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-tasks).
github-actions bot pushed a commit to meltsufin/monorepo-experiments that referenced this pull request Jun 22, 2022
…to v0.9.12 (#787)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:junit-platform-native](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-secretmanager).
github-actions bot pushed a commit to meltsufin/monorepo-experiments that referenced this pull request Jun 22, 2022
… v0.9.12 (#810)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-trace).
github-actions bot pushed a commit to meltsufin/monorepo-experiments that referenced this pull request Jun 22, 2022
… v0.9.12 (#788)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-secretmanager).
github-actions bot pushed a commit to meltsufin/monorepo-experiments that referenced this pull request Jun 22, 2022
…to v0.9.12 (#809)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:junit-platform-native](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-trace).
github-actions bot pushed a commit to meltsufin/monorepo-experiments that referenced this pull request Jun 22, 2022
…to v0.9.12 (#699)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:junit-platform-native](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-tasks).
gcf-merge-on-green bot pushed a commit to googleapis/java-spanner that referenced this pull request Jun 23, 2022
…to v0.9.12 (#1906)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:junit-platform-native](https://togithub.com/graalvm/native-build-tools) | `0.9.10` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/compatibility-slim/0.9.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/confidence-slim/0.9.10)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

### [`v0.9.11`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.11)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.10...0.9.11)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add issue templates by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#216
-   Fix [@&#8203;arg](https://togithub.com/arg) file not being used for tests in Maven by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#212
-   Make it possible to use environment variables in native tests by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#217
-   Fix incorrect declaration of output directory by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#219
-   Refactor build by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#220
-   Integrate native configuration repository with Gradle by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#204
-   Rework argfile generation by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#223
-   Rename `metadataRepository` and document feature by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#225
-   Support applications with custom packaging types by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#226

##### New Contributors

-   [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) made their first contribution in [graalvm/native-build-tools#226

**Full Changelog**: graalvm/native-build-tools@0.9.10...0.9.11

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-spanner).
gcf-merge-on-green bot pushed a commit to googleapis/java-spanner-jdbc that referenced this pull request Aug 3, 2022
…to v0.9.13 (#922)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:junit-platform-native](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.13` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.13/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.13/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.13/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.13/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.13`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.13)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.12...0.9.13)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Restore `NativeImagePlugin.NATIVE_TEST_EXTENSION` by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#256
-   Fix JUnit annotation scanning during the image build by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#258
-   Change reachability metadata fallback path by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#257
-   Add a DSL option that enables the native-image agent by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#263
-   Bump dependency versions by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#264
-   Rename `jvm-reachability-metadata` -> `graalvm-reachability-metadata` by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#265
-   Final PR for the metadata repo by [@&#8203;vjovanov](https://togithub.com/vjovanov) in [graalvm/native-build-tools#266

#### New Contributors

-   [@&#8203;vjovanov](https://togithub.com/vjovanov) made their first contribution in [graalvm/native-build-tools#266

**Full Changelog**: graalvm/native-build-tools@0.9.12...0.9.13

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-spanner-jdbc).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzUuMSIsInVwZGF0ZWRJblZlciI6IjMyLjEzNS4xIn0=-->
averikitsch pushed a commit to GoogleCloudPlatform/java-docs-samples that referenced this pull request Oct 27, 2022
… v0.9.12 (#700)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-tasks).
averikitsch pushed a commit to GoogleCloudPlatform/java-docs-samples that referenced this pull request Oct 27, 2022
…to v0.9.12 (#699)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:junit-platform-native](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

#### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-tasks).
cherylEnkidu pushed a commit to googleapis/java-firestore that referenced this pull request Dec 11, 2023
… v0.9.12 (#973)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.graalvm.buildtools:native-maven-plugin](https://togithub.com/graalvm/native-build-tools) | `0.9.11` -> `0.9.12` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/compatibility-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.12/confidence-slim/0.9.11)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>graalvm/native-build-tools</summary>

### [`v0.9.12`](https://togithub.com/graalvm/native-build-tools/releases/tag/0.9.12)

[Compare Source](https://togithub.com/graalvm/native-build-tools/compare/0.9.11...0.9.12)

##### What's Changed

Read what's new in the [documentation](https://graalvm.github.io/native-build-tools/latest/index.html#changelog).

-   Add Mockito / Byte Buddy support documentation by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#236
-   Prevent builds from failing if no test list is present by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#239
-   Support different agent modes in the native-image Gradle plugin by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#230
-   JVM Reachability Metadata support for Maven by [@&#8203;alvarosanchez](https://togithub.com/alvarosanchez) in [graalvm/native-build-tools#240
-   Warn about deprecated agent DSL by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#242
-   Rework Maven plugin by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#247
-   Add Gradle rich output support, configure default metadata URL on Maven by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#249
-   Fix wrong scope for test dependencies by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#251
-   Add documentation for alternative build systems. by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#248

**Full Changelog**: graalvm/native-build-tools@0.9.11...0.9.12

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-firestore).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants