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

Fix compatibility with configuration cache #304

Merged
merged 4 commits into from Sep 19, 2022
Merged

Fix compatibility with configuration cache #304

merged 4 commits into from Sep 19, 2022

Conversation

melix
Copy link
Collaborator

@melix melix commented Sep 16, 2022

This commit reworks the agent task actions so that they are compatible with the configuration cache. The problem was that when the configuration cache is enabled, it will try to serialize the task actions that we add, so that if the task is not up-to-date and that the configuration didn't change, it can replay the action.

The problem was that our task action used, as an input, a Provider<List<String>>, where those strings represented paths which do not exist when the action is serialized yet. In practice, we don't care, because those are implementation details of the task action: the directories will not exist before the task is executed, and not after, they only exist during task execution.

The configuration cache, however, wants to know about all inputs. We could have changed the action so that it uses a root directory instead of a list of directories as input, and make the computation of the session- directories during the task action: this would have worked because the only input would be the "output directory" that we pass as root. However, the task action is also used in another task which uses completely different inputs, which are not derived from a single directory.

At the same time, we don't need the Provider semantics in the task action: all we care about is to have a supplier which will generate a list of directories. Therefore, we changed the Provider type to a Supplier one: the lambda will be serialized, but the only thing it will capture is the outputDir provider which is fine, configuration-cache wise.

Now, let me take a pill.

Fixes #302

This commit reworks the agent task actions so that they are compatible
with the configuration cache. The problem was that when the configuration
cache is enabled, it will try to serialize the task actions that we add,
so that if the task is not up-to-date and that the configuration didn't
change, it can replay the action.

The problem was that our task action used, as an input, a `Provider<List<String>>`,
where those strings represented paths which do _not_ exist when the
action is serialized yet. In practice, we don't care, because those
are implementation details of the task action: the directories will
not exist _before_ the task is executed, and not _after_, they only
exist during task execution.

The configuration cache, however, wants to know about all inputs.
We could have changed the action so that it uses a _root directory_
instead of a list of directories as input, and make the computation
of the `session-` directories _during_ the task action: this would
have worked because the only input would be the "output directory"
that we pass as root. However, the task action is also used in another
task which uses completely different inputs, which are not derived
from a single directory.

At the same time, we _don't_ need the `Provider` semantics in the
task action: all we care about is to have a supplier which will
generate a list of directories. Therefore, we changed the `Provider`
type to a `Supplier` one: the lambda will be serialized, but the
only thing it will capture is the `outputDir` provider which is
fine, configuration-cache wise.

Now, let me take a pill.

Fixes #302
@melix melix added the bug Something isn't working label Sep 16, 2022
@melix melix added this to the 0.9.14 milestone Sep 16, 2022
@melix melix requested a review from gradinac September 16, 2022 14:27
@melix melix self-assigned this Sep 16, 2022
@oracle-contributor-agreement oracle-contributor-agreement bot added the OCA Verified All contributors have signed the Oracle Contributor Agreement. label Sep 16, 2022
@melix
Copy link
Collaborator Author

melix commented Sep 16, 2022

Apparently this fixes storing in the configuration cache, but reading still fails with:

* What went wrong:
Could not load the value of field `__tasksToInstrumentPredicate__` of `org.graalvm.buildtools.gradle.dsl.agent.AgentOptions` bean found in field `capturedArgs` of `java.lang.invoke.SerializedLambda` bean found in field `transformer` of `org.gradle.api.internal.provider.TransformBackedProvider` bean found in field `left` of `org.gradle.api.internal.provider.OrElseProvider` bean found in field `provider` of `org.gradle.api.internal.provider.MappingProvider` bean found in field `__agentMode__` of `org.graalvm.buildtools.gradle.internal.AgentCommandLineProvider` bean found in field `jvmArgumentProviders` of `org.gradle.process.internal.DefaultJavaForkOptions` bean found in field `forkOptions` of task `:test` of type `org.gradle.api.tasks.testing.Test`.
> org.graalvm.buildtools.gradle.internal.DefaultGraalVmExtension$$Lambda$2609/0x00000008021065a8

@melix melix requested a review from sdeleuze September 19, 2022 07:01
Copy link
Collaborator

@sdeleuze sdeleuze left a comment

Choose a reason for hiding this comment

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

Not sure I am fully qualified to evaluate properly this PR, but the code changes LGTM. I will double check before the release it does not introduce regressions with Spring apps.

@melix melix merged commit abbedfb into master Sep 19, 2022
@melix melix deleted the cc/issue-302 branch September 19, 2022 08:21
gcf-merge-on-green bot pushed a commit to googleapis/java-secretmanager that referenced this pull request Sep 22, 2022
… v0.9.14 (#847)

[![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.13` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/compatibility-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/confidence-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

##### What's Changed

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

-   Fix how the GRAALVM_QUICK_BUILD env var is read by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#278
-   Make it possible to pass env vars to the builder process by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#280
-   Maven plugin fixes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#274
-   Add support for `test-jar` artifacts by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#281
-   Add Gradle CLI options for quick build and debugging by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#286
-   Add a changelog and docs about build -> compile-no-fork changes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#290
-   Do not filter out entry values starting with `java.` in the metadata post-processing action by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#289
-   Try to fix snapshot publishing by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#244
-   Fix javadoc and warnings by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#291
-   Bump the default metadata repository version to 0.1.2 by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#294
-   Fix metadata repository crash by [@&#8203;dnestoro](https://togithub.com/dnestoro) in [graalvm/native-build-tools#295
-   Add support for override flag by [@&#8203;sdeleuze](https://togithub.com/sdeleuze) in [graalvm/native-build-tools#296
-   Fix build time initialization error with JUnit 5.9.0 by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#308
-   Fix compatibility with configuration cache by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#304
-   Bump metadata repository version by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#310

##### New Contributors

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

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

</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).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDEuMyIsInVwZGF0ZWRJblZlciI6IjMyLjIwMS4zIn0=-->
gcf-merge-on-green bot pushed a commit to googleapis/java-shared-config that referenced this pull request Sep 22, 2022
… v0.9.14 (#516)

[![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.13` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/compatibility-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/confidence-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

#### What's Changed

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

-   Fix how the GRAALVM_QUICK_BUILD env var is read by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#278
-   Make it possible to pass env vars to the builder process by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#280
-   Maven plugin fixes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#274
-   Add support for `test-jar` artifacts by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#281
-   Add Gradle CLI options for quick build and debugging by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#286
-   Add a changelog and docs about build -> compile-no-fork changes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#290
-   Do not filter out entry values starting with `java.` in the metadata post-processing action by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#289
-   Try to fix snapshot publishing by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#244
-   Fix javadoc and warnings by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#291
-   Bump the default metadata repository version to 0.1.2 by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#294
-   Fix metadata repository crash by [@&#8203;dnestoro](https://togithub.com/dnestoro) in [graalvm/native-build-tools#295
-   Add support for override flag by [@&#8203;sdeleuze](https://togithub.com/sdeleuze) in [graalvm/native-build-tools#296
-   Fix build time initialization error with JUnit 5.9.0 by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#308
-   Fix compatibility with configuration cache by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#304
-   Bump metadata repository version by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#310

#### New Contributors

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

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

</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).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDEuMyIsInVwZGF0ZWRJblZlciI6IjMyLjIwMS4zIn0=-->
gcf-merge-on-green bot pushed a commit to googleapis/java-bigtable that referenced this pull request Sep 22, 2022
… v0.9.14 (#1412)

[![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.13` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/compatibility-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/confidence-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

#### What's Changed

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

-   Fix how the GRAALVM_QUICK_BUILD env var is read by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#278
-   Make it possible to pass env vars to the builder process by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#280
-   Maven plugin fixes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#274
-   Add support for `test-jar` artifacts by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#281
-   Add Gradle CLI options for quick build and debugging by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#286
-   Add a changelog and docs about build -> compile-no-fork changes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#290
-   Do not filter out entry values starting with `java.` in the metadata post-processing action by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#289
-   Try to fix snapshot publishing by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#244
-   Fix javadoc and warnings by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#291
-   Bump the default metadata repository version to 0.1.2 by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#294
-   Fix metadata repository crash by [@&#8203;dnestoro](https://togithub.com/dnestoro) in [graalvm/native-build-tools#295
-   Add support for override flag by [@&#8203;sdeleuze](https://togithub.com/sdeleuze) in [graalvm/native-build-tools#296
-   Fix build time initialization error with JUnit 5.9.0 by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#308
-   Fix compatibility with configuration cache by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#304
-   Bump metadata repository version by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#310

#### New Contributors

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

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

</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).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xOTguMSIsInVwZGF0ZWRJblZlciI6IjMyLjE5OC4xIn0=-->
gcf-merge-on-green bot pushed a commit to googleapis/java-bigquery that referenced this pull request Sep 22, 2022
…to v0.9.14 (#2288)

[![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.13` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/compatibility-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/confidence-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

#### What's Changed

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

-   Fix how the GRAALVM_QUICK_BUILD env var is read by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#278
-   Make it possible to pass env vars to the builder process by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#280
-   Maven plugin fixes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#274
-   Add support for `test-jar` artifacts by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#281
-   Add Gradle CLI options for quick build and debugging by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#286
-   Add a changelog and docs about build -> compile-no-fork changes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#290
-   Do not filter out entry values starting with `java.` in the metadata post-processing action by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#289
-   Try to fix snapshot publishing by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#244
-   Fix javadoc and warnings by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#291
-   Bump the default metadata repository version to 0.1.2 by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#294
-   Fix metadata repository crash by [@&#8203;dnestoro](https://togithub.com/dnestoro) in [graalvm/native-build-tools#295
-   Add support for override flag by [@&#8203;sdeleuze](https://togithub.com/sdeleuze) in [graalvm/native-build-tools#296
-   Fix build time initialization error with JUnit 5.9.0 by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#308
-   Fix compatibility with configuration cache by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#304
-   Bump metadata repository version by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#310

#### New Contributors

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

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

</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).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDEuMyIsInVwZGF0ZWRJblZlciI6IjMyLjIwMS4zIn0=-->
gcf-merge-on-green bot pushed a commit to googleapis/java-bigtable that referenced this pull request Sep 22, 2022
…to v0.9.14 (#1411)

[![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.13` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/compatibility-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/confidence-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

#### What's Changed

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

-   Fix how the GRAALVM_QUICK_BUILD env var is read by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#278
-   Make it possible to pass env vars to the builder process by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#280
-   Maven plugin fixes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#274
-   Add support for `test-jar` artifacts by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#281
-   Add Gradle CLI options for quick build and debugging by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#286
-   Add a changelog and docs about build -> compile-no-fork changes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#290
-   Do not filter out entry values starting with `java.` in the metadata post-processing action by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#289
-   Try to fix snapshot publishing by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#244
-   Fix javadoc and warnings by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#291
-   Bump the default metadata repository version to 0.1.2 by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#294
-   Fix metadata repository crash by [@&#8203;dnestoro](https://togithub.com/dnestoro) in [graalvm/native-build-tools#295
-   Add support for override flag by [@&#8203;sdeleuze](https://togithub.com/sdeleuze) in [graalvm/native-build-tools#296
-   Fix build time initialization error with JUnit 5.9.0 by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#308
-   Fix compatibility with configuration cache by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#304
-   Bump metadata repository version by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#310

#### New Contributors

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

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

</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).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xOTguMSIsInVwZGF0ZWRJblZlciI6IjMyLjE5OC4xIn0=-->
gcf-merge-on-green bot pushed a commit to googleapis/java-logging that referenced this pull request Sep 22, 2022
… v0.9.14 (#1080)

[![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.13` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/compatibility-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/confidence-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

##### What's Changed

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

-   Fix how the GRAALVM_QUICK_BUILD env var is read by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#278
-   Make it possible to pass env vars to the builder process by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#280
-   Maven plugin fixes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#274
-   Add support for `test-jar` artifacts by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#281
-   Add Gradle CLI options for quick build and debugging by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#286
-   Add a changelog and docs about build -> compile-no-fork changes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#290
-   Do not filter out entry values starting with `java.` in the metadata post-processing action by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#289
-   Try to fix snapshot publishing by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#244
-   Fix javadoc and warnings by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#291
-   Bump the default metadata repository version to 0.1.2 by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#294
-   Fix metadata repository crash by [@&#8203;dnestoro](https://togithub.com/dnestoro) in [graalvm/native-build-tools#295
-   Add support for override flag by [@&#8203;sdeleuze](https://togithub.com/sdeleuze) in [graalvm/native-build-tools#296
-   Fix build time initialization error with JUnit 5.9.0 by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#308
-   Fix compatibility with configuration cache by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#304
-   Bump metadata repository version by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#310

##### New Contributors

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

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

</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).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDEuMyIsInVwZGF0ZWRJblZlciI6IjMyLjIwMS4zIn0=-->
gcf-merge-on-green bot pushed a commit to googleapis/java-logging that referenced this pull request Sep 22, 2022
…to v0.9.14 (#1079)

[![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.13` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/compatibility-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/confidence-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

##### What's Changed

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

-   Fix how the GRAALVM_QUICK_BUILD env var is read by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#278
-   Make it possible to pass env vars to the builder process by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#280
-   Maven plugin fixes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#274
-   Add support for `test-jar` artifacts by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#281
-   Add Gradle CLI options for quick build and debugging by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#286
-   Add a changelog and docs about build -> compile-no-fork changes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#290
-   Do not filter out entry values starting with `java.` in the metadata post-processing action by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#289
-   Try to fix snapshot publishing by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#244
-   Fix javadoc and warnings by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#291
-   Bump the default metadata repository version to 0.1.2 by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#294
-   Fix metadata repository crash by [@&#8203;dnestoro](https://togithub.com/dnestoro) in [graalvm/native-build-tools#295
-   Add support for override flag by [@&#8203;sdeleuze](https://togithub.com/sdeleuze) in [graalvm/native-build-tools#296
-   Fix build time initialization error with JUnit 5.9.0 by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#308
-   Fix compatibility with configuration cache by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#304
-   Bump metadata repository version by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#310

##### New Contributors

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

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

</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).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDEuMyIsInVwZGF0ZWRJblZlciI6IjMyLjIwMS4zIn0=-->
github-actions bot pushed a commit to meltsufin/monorepo-experiments that referenced this pull request Sep 23, 2022
… v0.9.14 (#847)

[![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.13` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/compatibility-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/confidence-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

##### What's Changed

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

-   Fix how the GRAALVM_QUICK_BUILD env var is read by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#278
-   Make it possible to pass env vars to the builder process by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#280
-   Maven plugin fixes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#274
-   Add support for `test-jar` artifacts by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#281
-   Add Gradle CLI options for quick build and debugging by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#286
-   Add a changelog and docs about build -> compile-no-fork changes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#290
-   Do not filter out entry values starting with `java.` in the metadata post-processing action by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#289
-   Try to fix snapshot publishing by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#244
-   Fix javadoc and warnings by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#291
-   Bump the default metadata repository version to 0.1.2 by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#294
-   Fix metadata repository crash by [@&#8203;dnestoro](https://togithub.com/dnestoro) in [graalvm/native-build-tools#295
-   Add support for override flag by [@&#8203;sdeleuze](https://togithub.com/sdeleuze) in [graalvm/native-build-tools#296
-   Fix build time initialization error with JUnit 5.9.0 by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#308
-   Fix compatibility with configuration cache by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#304
-   Bump metadata repository version by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#310

##### New Contributors

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

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

</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).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDEuMyIsInVwZGF0ZWRJblZlciI6IjMyLjIwMS4zIn0=-->
gcf-merge-on-green bot pushed a commit to googleapis/java-spanner-jdbc that referenced this pull request Sep 27, 2022
…to v0.9.14 (#977)

[![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.13` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/compatibility-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/confidence-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

#### What's Changed

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

-   Fix how the GRAALVM_QUICK_BUILD env var is read by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#278
-   Make it possible to pass env vars to the builder process by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#280
-   Maven plugin fixes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#274
-   Add support for `test-jar` artifacts by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#281
-   Add Gradle CLI options for quick build and debugging by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#286
-   Add a changelog and docs about build -> compile-no-fork changes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#290
-   Do not filter out entry values starting with `java.` in the metadata post-processing action by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#289
-   Try to fix snapshot publishing by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#244
-   Fix javadoc and warnings by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#291
-   Bump the default metadata repository version to 0.1.2 by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#294
-   Fix metadata repository crash by [@&#8203;dnestoro](https://togithub.com/dnestoro) in [graalvm/native-build-tools#295
-   Add support for override flag by [@&#8203;sdeleuze](https://togithub.com/sdeleuze) in [graalvm/native-build-tools#296
-   Fix build time initialization error with JUnit 5.9.0 by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#308
-   Fix compatibility with configuration cache by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#304
-   Bump metadata repository version by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#310

#### New Contributors

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

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

</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:eyJjcmVhdGVkSW5WZXIiOiIzMi4xOTguMSIsInVwZGF0ZWRJblZlciI6IjMyLjE5OC4xIn0=-->
gcf-merge-on-green bot pushed a commit to googleapis/java-bigquery that referenced this pull request Sep 28, 2022
… v0.9.14 (#2289)

[![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.13` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/compatibility-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:native-maven-plugin/0.9.14/confidence-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

#### What's Changed

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

-   Fix how the GRAALVM_QUICK_BUILD env var is read by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#278
-   Make it possible to pass env vars to the builder process by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#280
-   Maven plugin fixes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#274
-   Add support for `test-jar` artifacts by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#281
-   Add Gradle CLI options for quick build and debugging by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#286
-   Add a changelog and docs about build -> compile-no-fork changes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#290
-   Do not filter out entry values starting with `java.` in the metadata post-processing action by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#289
-   Try to fix snapshot publishing by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#244
-   Fix javadoc and warnings by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#291
-   Bump the default metadata repository version to 0.1.2 by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#294
-   Fix metadata repository crash by [@&#8203;dnestoro](https://togithub.com/dnestoro) in [graalvm/native-build-tools#295
-   Add support for override flag by [@&#8203;sdeleuze](https://togithub.com/sdeleuze) in [graalvm/native-build-tools#296
-   Fix build time initialization error with JUnit 5.9.0 by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#308
-   Fix compatibility with configuration cache by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#304
-   Bump metadata repository version by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#310

#### New Contributors

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

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

</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).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDEuMyIsInVwZGF0ZWRJblZlciI6IjMyLjIwMS4zIn0=-->
gcf-merge-on-green bot pushed a commit to googleapis/java-shared-config that referenced this pull request Sep 28, 2022
…to v0.9.14 (#515)

[![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.13` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/compatibility-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/confidence-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

#### What's Changed

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

-   Fix how the GRAALVM_QUICK_BUILD env var is read by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#278
-   Make it possible to pass env vars to the builder process by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#280
-   Maven plugin fixes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#274
-   Add support for `test-jar` artifacts by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#281
-   Add Gradle CLI options for quick build and debugging by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#286
-   Add a changelog and docs about build -> compile-no-fork changes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#290
-   Do not filter out entry values starting with `java.` in the metadata post-processing action by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#289
-   Try to fix snapshot publishing by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#244
-   Fix javadoc and warnings by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#291
-   Bump the default metadata repository version to 0.1.2 by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#294
-   Fix metadata repository crash by [@&#8203;dnestoro](https://togithub.com/dnestoro) in [graalvm/native-build-tools#295
-   Add support for override flag by [@&#8203;sdeleuze](https://togithub.com/sdeleuze) in [graalvm/native-build-tools#296
-   Fix build time initialization error with JUnit 5.9.0 by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#308
-   Fix compatibility with configuration cache by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#304
-   Bump metadata repository version by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#310

#### New Contributors

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

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

</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).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDEuMyIsInVwZGF0ZWRJblZlciI6IjMyLjIwMS4zIn0=-->
gcf-merge-on-green bot pushed a commit to googleapis/java-firestore that referenced this pull request Sep 29, 2022
…to v0.9.14 (#1045)

[![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.13` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/compatibility-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/confidence-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

##### What's Changed

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

-   Fix how the GRAALVM_QUICK_BUILD env var is read by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#278
-   Make it possible to pass env vars to the builder process by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#280
-   Maven plugin fixes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#274
-   Add support for `test-jar` artifacts by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#281
-   Add Gradle CLI options for quick build and debugging by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#286
-   Add a changelog and docs about build -> compile-no-fork changes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#290
-   Do not filter out entry values starting with `java.` in the metadata post-processing action by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#289
-   Try to fix snapshot publishing by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#244
-   Fix javadoc and warnings by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#291
-   Bump the default metadata repository version to 0.1.2 by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#294
-   Fix metadata repository crash by [@&#8203;dnestoro](https://togithub.com/dnestoro) in [graalvm/native-build-tools#295
-   Add support for override flag by [@&#8203;sdeleuze](https://togithub.com/sdeleuze) in [graalvm/native-build-tools#296
-   Fix build time initialization error with JUnit 5.9.0 by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#308
-   Fix compatibility with configuration cache by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#304
-   Bump metadata repository version by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#310

##### New Contributors

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

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

</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).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDEuMyIsInVwZGF0ZWRJblZlciI6IjMyLjIwMS4zIn0=-->
gcf-merge-on-green bot pushed a commit to googleapis/java-spanner that referenced this pull request Sep 29, 2022
…to v0.9.14 (#2030)

[![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.13` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/compatibility-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/confidence-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

#### What's Changed

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

-   Fix how the GRAALVM_QUICK_BUILD env var is read by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#278
-   Make it possible to pass env vars to the builder process by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#280
-   Maven plugin fixes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#274
-   Add support for `test-jar` artifacts by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#281
-   Add Gradle CLI options for quick build and debugging by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#286
-   Add a changelog and docs about build -> compile-no-fork changes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#290
-   Do not filter out entry values starting with `java.` in the metadata post-processing action by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#289
-   Try to fix snapshot publishing by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#244
-   Fix javadoc and warnings by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#291
-   Bump the default metadata repository version to 0.1.2 by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#294
-   Fix metadata repository crash by [@&#8203;dnestoro](https://togithub.com/dnestoro) in [graalvm/native-build-tools#295
-   Add support for override flag by [@&#8203;sdeleuze](https://togithub.com/sdeleuze) in [graalvm/native-build-tools#296
-   Fix build time initialization error with JUnit 5.9.0 by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#308
-   Fix compatibility with configuration cache by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#304
-   Bump metadata repository version by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#310

#### New Contributors

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

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

</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).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDEuMyIsInVwZGF0ZWRJblZlciI6IjMyLjIwOC4yIn0=-->
cherylEnkidu pushed a commit to googleapis/java-firestore that referenced this pull request Dec 11, 2023
…to v0.9.14 (#1045)

[![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.13` -> `0.9.14` | [![age](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/compatibility-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.graalvm.buildtools:junit-platform-native/0.9.14/confidence-slim/0.9.13)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

##### What's Changed

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

-   Fix how the GRAALVM_QUICK_BUILD env var is read by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#278
-   Make it possible to pass env vars to the builder process by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#280
-   Maven plugin fixes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#274
-   Add support for `test-jar` artifacts by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#281
-   Add Gradle CLI options for quick build and debugging by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#286
-   Add a changelog and docs about build -> compile-no-fork changes by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#290
-   Do not filter out entry values starting with `java.` in the metadata post-processing action by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#289
-   Try to fix snapshot publishing by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#244
-   Fix javadoc and warnings by [@&#8203;lazar-mitrovic](https://togithub.com/lazar-mitrovic) in [graalvm/native-build-tools#291
-   Bump the default metadata repository version to 0.1.2 by [@&#8203;gradinac](https://togithub.com/gradinac) in [graalvm/native-build-tools#294
-   Fix metadata repository crash by [@&#8203;dnestoro](https://togithub.com/dnestoro) in [graalvm/native-build-tools#295
-   Add support for override flag by [@&#8203;sdeleuze](https://togithub.com/sdeleuze) in [graalvm/native-build-tools#296
-   Fix build time initialization error with JUnit 5.9.0 by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#308
-   Fix compatibility with configuration cache by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#304
-   Bump metadata repository version by [@&#8203;melix](https://togithub.com/melix) in [graalvm/native-build-tools#310

##### New Contributors

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

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

</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).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMDEuMyIsInVwZGF0ZWRJblZlciI6IjMyLjIwMS4zIn0=-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working OCA Verified All contributors have signed the Oracle Contributor Agreement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Agent instrumentation prevents the use of Gradle's configuration cache
2 participants