Commit Graph

8955 Commits

Author SHA1 Message Date
Nitesh S f7d74f5daa
convert gwt tests from groovy to java (#8201)
Related to #7195
2023-04-03 11:30:33 -07:00
Lauri Tulmin 1393604118
Add option to capture logback key value pairs (#8074)
Resolves
https://github.com/open-telemetry/opentelemetry-java-instrumentation/issues/8059
2023-04-03 11:30:04 -07:00
Trask Stalnaker b01996e12f
Rename apache-pulsar to pulsar and apache-camel to camel (#8195)
Closes #8004
2023-04-03 11:26:23 -07:00
Nitesh S 8704510619
convert spark tests from groovy to java (#8200)
Related to #7195
2023-04-03 13:38:02 +02:00
pellmont 5db149e1fa
fix order of cxf handlers to enable symmetric tracing around jaxws handler chain (#8160)
the current implementation of Start and End around the invocation of a
Jax WS is asymmetric around the JAX-WS Handler Chain.

Current behavior:
(execution of incoming MessageHandlers) -> (TracingStartInInterceptor)
-> (WebService Invocation) -> (execution of outgoing MessageHandlers) ->
(TracingEndInInterceptor)

if I understood the code of this cxf instrumentation correctly, the
intent was to build the span close around the WebService Invocation
(without Handler Chains).

So the desired behavior would look like this:
(execution of incoming MessageHandlers) -> (TracingStartInInterceptor)
-> (WebService Invocation) -> (TracingEndInInterceptor) -> (execution of
outgoing MessageHandlers)

Unfortunately CXF is calling the Outgoing Chain inside the POST_INVOKE
Phase of Cxf (so the outgoing chain is technically a sub-chain in the
incoming chain... which is documented but quite surprising...).

So the solution in the fix at least guarantees the the outgoing chain is
invoked AFTER end of tracing. For any extra Interceptors in the
POST_INVOKE Phase there is still no guarantee of ordering, but I think
this is not a opentelemetry issue but a design-flaw of CXF...

---------

Co-authored-by: Trask Stalnaker <trask.stalnaker@gmail.com>
Co-authored-by: Lauri Tulmin <ltulmin@splunk.com>
2023-04-03 13:06:51 +03:00
Lauri Tulmin 8c7a8e1dfb
Fix flaky jfr metrics test (#8183)
https://ge.opentelemetry.io/s/svewzdm7cppaa/tests/:instrumentation:runtime-telemetry-jfr:library:testPS/io.opentelemetry.instrumentation.runtimetelemetryjfr.PsGcMemoryMetricTest/shouldHaveGcDurationMetrics()?top-execution=1
2023-04-03 11:48:46 +02:00
Trask Stalnaker 70cd8464e2
Fix possible NPE (#8199)
this is a follow-up to #7043

I tried to add a test when that PR was opened:

*
d2c6399a6e

but it doesn't really verify anything, since the NPE is throw/caught and
same behavior occurs
2023-04-03 09:24:14 +02:00
Mateusz Rzeszutek 46e5219f19
Remove some Optional usages (#8190)
I applied [this
comment](https://github.com/open-telemetry/opentelemetry-java-instrumentation/pull/8131#discussion_r1151076724)
to the whole codebase and removed some `Optional`s that were used in the
hot path
2023-04-03 09:13:59 +02:00
adamleantech d6271cccc7
Spring boot service name (#8006)
resolves #7998

---------

Co-authored-by: Mateusz Rzeszutek <mrzeszutek@splunk.com>
Co-authored-by: Lauri Tulmin <ltulmin@splunk.com>
2023-04-01 18:58:43 -07:00
dependabot[bot] 5a0e2cb765
Bump org.jetbrains.kotlin.jvm from 1.8.10 to 1.8.20 (#8180) 2023-04-01 11:41:35 -07:00
dependabot[bot] c59c37022b
Bump groovyVersion from 4.0.10 to 4.0.11 (#8192) 2023-03-31 16:14:16 -07:00
Lauri Tulmin a9905a22ca
Fix hibernate 6 latest dep test (#8189) 2023-03-31 15:39:02 +03:00
Lauri Tulmin 5a14788fc1
Use .service instead of .getService() to get testcontainersBuildService (#8188) 2023-03-31 08:32:24 +00:00
Lauri Tulmin 9e0d177d88
Add testcontainersBuildService to r2dbc tests (#8184) 2023-03-31 10:31:48 +02:00
Lauri Tulmin d007ccce82
Rename r2dbc library instrumentation package (#8185)
Library instrumentation shouldn't be in `javaagent` package
2023-03-31 10:31:25 +02:00
Lauri Tulmin a9fa5aacea
Add testcontainersBuildService to spring kafka tests that don't have it (#8186) 2023-03-31 10:26:06 +02:00
Lauri Tulmin d8b0771929
Use the same kafka docker image in all kafka tests (#8187)
currently we use `confluentinc/cp-kafka:5.4.3` and
`confluentinc/cp-kafka:6.1.9`
2023-03-31 10:25:38 +02:00
Abhinandan Seshadri b23af1bcfe
Convert spring-core tests from groovy to java (#8166)
Related to #7195.

Converts spring core instrumentation tests from groovy to java.

---------

Co-authored-by: Mateusz Rzeszutek <mrzeszutek@splunk.com>
2023-03-31 10:09:31 +02:00
dependabot[bot] 67aabce866
Bump actions/checkout from 2 to 3 (#8178) 2023-03-30 15:55:00 -07:00
dependabot[bot] 474b4c24e2
Bump org.graalvm.buildtools.native from 0.9.14 to 0.9.20 (#8179) 2023-03-30 15:51:10 -07:00
Jean Bisutti c5ef8ffd60
Add GraalVM native tests (#8163)
This PR allows:
* Executing the OTel Logback appender tests as GraalVM native
executables
* Executing the native tests once a day on Github

---------

Co-authored-by: Trask Stalnaker <trask.stalnaker@gmail.com>
2023-03-30 14:10:48 -07:00
Nitesh S 2d8ba003e3
convert Log4j mdc test from groovy to java (#8170)
Related to #7195
2023-03-30 17:31:51 +02:00
Lauri Tulmin 1adc5d3571
Instrument addition pulsar receive methods (#8171)
Resolves
https://github.com/open-telemetry/opentelemetry-java-instrumentation/issues/8162
Instrument Consumer#receiveAsync() and Consumer#receive(). Although
comments in code indicate that batch receiving was instrumented it
didn't really work as far as I can tell.
2023-03-30 16:30:12 +03:00
Trask Stalnaker b3204d9852
Better comment-driven automation (#8168) 2023-03-30 11:40:37 +02:00
Lauri Tulmin f624562705
Remove info logging from JfrTelemetry (#8158) 2023-03-29 11:41:56 -07:00
Lauri Tulmin aceb5b2ee9
Disable jfr telemetry test on openj9 (#8161) 2023-03-29 10:51:08 +00:00
dependabot[bot] 1f9fd81feb
Bump byteBuddyVersion from 1.14.2 to 1.14.3 (#8153)
Bumps `byteBuddyVersion` from 1.14.2 to 1.14.3.
Updates `net.bytebuddy:byte-buddy` from 1.14.2 to 1.14.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/raphw/byte-buddy/releases">net.bytebuddy:byte-buddy's
releases</a>.</em></p>
<blockquote>
<h2>Byte Buddy 1.14.3</h2>
<ul>
<li>Make <code>MethodGraph.Compiler</code> failsafe when processing
incomplete methods.</li>
<li>Update ASM.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/raphw/byte-buddy/blob/master/release-notes.md">net.bytebuddy:byte-buddy's
changelog</a>.</em></p>
<blockquote>
<h3>13. March 2023: version 1.14.3</h3>
<ul>
<li>Make <code>MethodGraph.Compiler</code> failsafe when processing
incomplete methods.</li>
<li>Update ASM.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="bee0115cf7"><code>bee0115</code></a>
[maven-release-plugin] prepare release byte-buddy-1.14.3</li>
<li><a
href="2e50ec0ce7"><code>2e50ec0</code></a>
[release] Release new version.</li>
<li><a
href="57e32d779a"><code>57e32d7</code></a>
[release] Release new version.</li>
<li><a
href="389e408f41"><code>389e408</code></a>
Fjerner import.</li>
<li><a
href="c66e3086eb"><code>c66e308</code></a>
Add fail safe wrapper to registry.</li>
<li><a
href="9609c3232e"><code>9609c32</code></a>
Update internal Byte Buddy and checksums.</li>
<li><a
href="518c31d9a5"><code>518c31d</code></a>
[maven-release-plugin] prepare for next development iteration</li>
<li>See full diff in <a
href="https://github.com/raphw/byte-buddy/compare/byte-buddy-1.14.2...byte-buddy-1.14.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `net.bytebuddy:byte-buddy-dep` from 1.14.2 to 1.14.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/raphw/byte-buddy/releases">net.bytebuddy:byte-buddy-dep's
releases</a>.</em></p>
<blockquote>
<h2>Byte Buddy 1.14.3</h2>
<ul>
<li>Make <code>MethodGraph.Compiler</code> failsafe when processing
incomplete methods.</li>
<li>Update ASM.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/raphw/byte-buddy/blob/master/release-notes.md">net.bytebuddy:byte-buddy-dep's
changelog</a>.</em></p>
<blockquote>
<h3>13. March 2023: version 1.14.3</h3>
<ul>
<li>Make <code>MethodGraph.Compiler</code> failsafe when processing
incomplete methods.</li>
<li>Update ASM.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="bee0115cf7"><code>bee0115</code></a>
[maven-release-plugin] prepare release byte-buddy-1.14.3</li>
<li><a
href="2e50ec0ce7"><code>2e50ec0</code></a>
[release] Release new version.</li>
<li><a
href="57e32d779a"><code>57e32d7</code></a>
[release] Release new version.</li>
<li><a
href="389e408f41"><code>389e408</code></a>
Fjerner import.</li>
<li><a
href="c66e3086eb"><code>c66e308</code></a>
Add fail safe wrapper to registry.</li>
<li><a
href="9609c3232e"><code>9609c32</code></a>
Update internal Byte Buddy and checksums.</li>
<li><a
href="518c31d9a5"><code>518c31d</code></a>
[maven-release-plugin] prepare for next development iteration</li>
<li>See full diff in <a
href="https://github.com/raphw/byte-buddy/compare/byte-buddy-1.14.2...byte-buddy-1.14.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `net.bytebuddy:byte-buddy-agent` from 1.14.2 to 1.14.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/raphw/byte-buddy/releases">net.bytebuddy:byte-buddy-agent's
releases</a>.</em></p>
<blockquote>
<h2>Byte Buddy 1.14.3</h2>
<ul>
<li>Make <code>MethodGraph.Compiler</code> failsafe when processing
incomplete methods.</li>
<li>Update ASM.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/raphw/byte-buddy/blob/master/release-notes.md">net.bytebuddy:byte-buddy-agent's
changelog</a>.</em></p>
<blockquote>
<h3>13. March 2023: version 1.14.3</h3>
<ul>
<li>Make <code>MethodGraph.Compiler</code> failsafe when processing
incomplete methods.</li>
<li>Update ASM.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="bee0115cf7"><code>bee0115</code></a>
[maven-release-plugin] prepare release byte-buddy-1.14.3</li>
<li><a
href="2e50ec0ce7"><code>2e50ec0</code></a>
[release] Release new version.</li>
<li><a
href="57e32d779a"><code>57e32d7</code></a>
[release] Release new version.</li>
<li><a
href="389e408f41"><code>389e408</code></a>
Fjerner import.</li>
<li><a
href="c66e3086eb"><code>c66e308</code></a>
Add fail safe wrapper to registry.</li>
<li><a
href="9609c3232e"><code>9609c32</code></a>
Update internal Byte Buddy and checksums.</li>
<li><a
href="518c31d9a5"><code>518c31d</code></a>
[maven-release-plugin] prepare for next development iteration</li>
<li>See full diff in <a
href="https://github.com/raphw/byte-buddy/compare/byte-buddy-1.14.2...byte-buddy-1.14.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `net.bytebuddy:byte-buddy-gradle-plugin` from 1.14.2 to 1.14.3


You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
2023-03-29 09:16:06 +00:00
Lauri Tulmin f0749de66f
Disable JfrTelemetryTest when JFR is not present (#8159) 2023-03-29 11:02:05 +02:00
jason plumb a455fc5700
Fix up a few kotlin build warnings (#8152)
I noticed some kotlin deprecation warnings in the build output, so I
thought I would try and fix them up.

Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
2023-03-29 08:55:35 +00:00
dependabot[bot] 7235043d0d
Bump net.bytebuddy:byte-buddy-dep from 1.14.2 to 1.14.3 in /examples/distro (#8154)
Bumps
[net.bytebuddy:byte-buddy-dep](https://github.com/raphw/byte-buddy) from
1.14.2 to 1.14.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/raphw/byte-buddy/releases">net.bytebuddy:byte-buddy-dep's
releases</a>.</em></p>
<blockquote>
<h2>Byte Buddy 1.14.3</h2>
<ul>
<li>Make <code>MethodGraph.Compiler</code> failsafe when processing
incomplete methods.</li>
<li>Update ASM.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/raphw/byte-buddy/blob/master/release-notes.md">net.bytebuddy:byte-buddy-dep's
changelog</a>.</em></p>
<blockquote>
<h3>13. March 2023: version 1.14.3</h3>
<ul>
<li>Make <code>MethodGraph.Compiler</code> failsafe when processing
incomplete methods.</li>
<li>Update ASM.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="bee0115cf7"><code>bee0115</code></a>
[maven-release-plugin] prepare release byte-buddy-1.14.3</li>
<li><a
href="2e50ec0ce7"><code>2e50ec0</code></a>
[release] Release new version.</li>
<li><a
href="57e32d779a"><code>57e32d7</code></a>
[release] Release new version.</li>
<li><a
href="389e408f41"><code>389e408</code></a>
Fjerner import.</li>
<li><a
href="c66e3086eb"><code>c66e308</code></a>
Add fail safe wrapper to registry.</li>
<li><a
href="9609c3232e"><code>9609c32</code></a>
Update internal Byte Buddy and checksums.</li>
<li><a
href="518c31d9a5"><code>518c31d</code></a>
[maven-release-plugin] prepare for next development iteration</li>
<li>See full diff in <a
href="https://github.com/raphw/byte-buddy/compare/byte-buddy-1.14.2...byte-buddy-1.14.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=net.bytebuddy:byte-buddy-dep&package-manager=gradle&previous-version=1.14.2&new-version=1.14.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-29 08:00:54 +00:00
Lauri Tulmin 0638f983a6
Fix jfr metrics on openj9 and aws-sdk muzzle failure (#8157)
Resolves
https://github.com/open-telemetry/opentelemetry-java-instrumentation/issues/8156
Resolves
https://github.com/open-telemetry/opentelemetry-java-instrumentation/issues/8155
2023-03-29 10:49:17 +03:00
Robert Toyonaga 03b983ad41
Add JFR streaming metrics gatherer (#7886) 2023-03-28 20:26:08 -07:00
Tyler Benson 1b4b47a576
Add `disableShadowRelocate` build setting (#8117)
This is helpful for debugging.

Fixes #4672

Add the following to enable locally `~/.gradle/gradle.properties`

```
disableShadowRelocate=true
```
2023-03-28 19:42:45 +03:00
Tyler Benson 831ee5817a
Add `removeJarVersionNumbers` build setting (#8116)
This is handy to enable consistent local version numbers rather than
updating file paths each release.

Add the following to enable locally `~/.gradle/gradle.properties`

```
removeJarVersionNumbers=true
```
2023-03-28 19:40:08 +03:00
Nitesh S cfc0ff71dc
Convert Geode test from Groovy to Java (#8141)
Related to #7195 

Converts Geode test from Groovy to Java.
2023-03-28 13:39:57 +02:00
Mateusz Rzeszutek 07335c807c
Add `classLoaderOptimization()` to `@WithSpan` instrumentations (#7996) 2023-03-28 12:34:30 +02:00
Lauri Tulmin d24d7986ad
Make spring boot service name detector handle BOOT-INF/classes (#8101)
When spring boot application is packaged in one jar
`application.properties` and `application.yml` are under
`BOOT-INF/classes/`.
2023-03-28 12:32:40 +02:00
dependabot[bot] ea617bc9a8
Bump asmVersion from 9.4 to 9.5 (#8145)
Bumps `asmVersion` from 9.4 to 9.5.
Updates `org.ow2.asm:asm` from 9.4 to 9.5

Updates `org.ow2.asm:asm-tree` from 9.4 to 9.5


You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
2023-03-28 10:51:00 +03:00
dependabot[bot] 430b550430
Bump com.jayway.jsonpath:json-path from 2.7.0 to 2.8.0 in /benchmark-overhead (#8147)
Bumps
[com.jayway.jsonpath:json-path](https://github.com/jayway/JsonPath) from
2.7.0 to 2.8.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="8a0d2fd594"><code>8a0d2fd</code></a>
Fix archive signing</li>
<li><a
href="8bae57fcbc"><code>8bae57f</code></a>
Merge branch 'master' of github.com:json-path/JsonPath</li>
<li><a
href="08830e92f4"><code>08830e9</code></a>
Upgrade org.json:json from 20140107 to 20230227 (<a
href="https://redirect.github.com/jayway/JsonPath/issues/907">#907</a>)</li>
<li><a
href="edf52aa667"><code>edf52aa</code></a>
Release and fix docs</li>
<li><a
href="4a59845a74"><code>4a59845</code></a>
Revert to deprecated 'baseName'</li>
<li><a
href="1e6647bbce"><code>1e6647b</code></a>
Fix dependency issues in gradle build files</li>
<li><a
href="9a77472cc1"><code>9a77472</code></a>
Update dependencies</li>
<li><a
href="9729cb048b"><code>9729cb0</code></a>
Defines the pattern for taking item from collection of JSONArray by
index (<a
href="https://redirect.github.com/jayway/JsonPath/issues/842">#842</a>)</li>
<li><a
href="2eed3b9675"><code>2eed3b9</code></a>
Fix description for sub-array index example in table (<a
href="https://redirect.github.com/jayway/JsonPath/issues/861">#861</a>)</li>
<li><a
href="b9860126d4"><code>b986012</code></a>
Update build.gradle (<a
href="https://redirect.github.com/jayway/JsonPath/issues/866">#866</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/jayway/JsonPath/compare/json-path-2.7.0...json-path-2.8.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.jayway.jsonpath:json-path&package-manager=gradle&previous-version=2.7.0&new-version=2.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-28 08:55:59 +03:00
dependabot[bot] 925dffc0ac
Bump org.codehaus.mojo:animal-sniffer-annotations from 1.22 to 1.23 (#8146)
Bumps
[org.codehaus.mojo:animal-sniffer-annotations](https://github.com/mojohaus/animal-sniffer)
from 1.22 to 1.23.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mojohaus/animal-sniffer/releases">org.codehaus.mojo:animal-sniffer-annotations's
releases</a>.</em></p>
<blockquote>
<h2>1.23</h2>
<!-- raw HTML omitted -->
<h2>🚀 New features and improvements</h2>
<ul>
<li>Get rid of maven-compat use Resolver API (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/239">#239</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
<li>Update plugin, require Maven 3.2.5 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/223">#223</a>)
<a href="https://github.com/cstamas"><code>@​cstamas</code></a></li>
<li>Improve field handling (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/212">#212</a>)
<a
href="https://github.com/Marcono1234"><code>@​Marcono1234</code></a></li>
</ul>
<h2>📦 Dependency updates</h2>
<ul>
<li>Bump parent from 70 to 74 and poms cleanup (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/241">#241</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
<li>Bump maven-surefire-plugin from 2.22.2 to 3.0.0 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/238">#238</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump plexus-utils from 3.5.0 to 3.5.1 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/236">#236</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump maven-plugin-plugin from 3.7.1 to 3.8.1 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/234">#234</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump maven-plugin-annotations from 3.7.1 to 3.8.1 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/235">#235</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump enforcer-api from 3.1.0 to 3.2.1 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/232">#232</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump maven-enforcer-plugin from 3.1.0 to 3.2.1 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/231">#231</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump maven-plugin-plugin from 3.7.0 to 3.7.1 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/228">#228</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump ant from 1.10.12 to 1.10.13 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/226">#226</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump maven-plugin-annotations from 3.7.0 to 3.7.1 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/229">#229</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump maven-checkstyle-plugin from 3.2.0 to 3.2.1 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/227">#227</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump maven-plugin-annotations from 3.6.4 to 3.7.0 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/221">#221</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump maven-plugin-plugin from 3.6.4 to 3.7.0 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/220">#220</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump asm from 9.3 to 9.4 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/217">#217</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump maven-shade-plugin from 3.4.0 to 3.4.1 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/219">#219</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump plexus-utils from 3.4.2 to 3.5.0 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/218">#218</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump maven-common-artifact-filters from 3.3.1 to 3.3.2 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/216">#216</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump maven-shade-plugin from 3.3.0 to 3.4.0 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/215">#215</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
<li>Bump maven-checkstyle-plugin from 3.1.2 to 3.2.0 (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/213">#213</a>)
<a
href="https://github.com/dependabot"><code>@​dependabot</code></a></li>
</ul>
<h2>👻 Maintenance</h2>
<ul>
<li>Refresh documentation site (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/242">#242</a>)
<a
href="https://github.com/slawekjaranowski"><code>@​slawekjaranowski</code></a></li>
<li>Prepare to run on Java 19+ (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/237">#237</a>)
<a
href="https://github.com/slachiewicz"><code>@​slachiewicz</code></a></li>
<li>Update usage.apt.vm (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/222">#222</a>)
<a href="https://github.com/hbeni"><code>@​hbeni</code></a></li>
<li>Use HTTPS links in README and replace Travis badge (<a
href="https://redirect.github.com/mojohaus/animal-sniffer/pull/211">#211</a>)
<a
href="https://github.com/Marcono1234"><code>@​Marcono1234</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="bae24234f6"><code>bae2423</code></a>
[maven-release-plugin] prepare release 1.23</li>
<li><a
href="90f22e4a9d"><code>90f22e4</code></a>
Refresh documentation site</li>
<li><a
href="49fdd5d8e3"><code>49fdd5d</code></a>
Bump parent from 70 to 74 and poms cleanup</li>
<li><a
href="fa0f098d3e"><code>fa0f098</code></a>
Get rid of maven-compat use Resolver API</li>
<li><a
href="4f547b0bf6"><code>4f547b0</code></a>
(ci) Use latest releases of Maven 3.9.1 and 3.8.8</li>
<li><a
href="ac9296bf30"><code>ac9296b</code></a>
Bump maven-surefire-plugin from 2.22.2 to 3.0.0</li>
<li><a
href="f343158c4a"><code>f343158</code></a>
Prepare to run on Java 19+</li>
<li><a
href="797ccf730c"><code>797ccf7</code></a>
Bump plexus-utils from 3.5.0 to 3.5.1</li>
<li><a
href="2ce6d4367e"><code>2ce6d43</code></a>
Bump maven-plugin-plugin from 3.7.1 to 3.8.1</li>
<li><a
href="9452d08ec7"><code>9452d08</code></a>
Bump maven-plugin-annotations from 3.7.1 to 3.8.1</li>
<li>Additional commits viewable in <a
href="https://github.com/mojohaus/animal-sniffer/compare/animal-sniffer-parent-1.22...1.23">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.codehaus.mojo:animal-sniffer-annotations&package-manager=gradle&previous-version=1.22&new-version=1.23)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-28 08:55:28 +03:00
Abhinandan Seshadri aa2c2436c2
Convert spring-data tests from groovy to java (#8124)
Related to #7195.

Converts spring data instrumentation tests from groovy to java.
2023-03-27 13:58:15 +02:00
Lauri Tulmin 8deaaaedbf
Avoid duplicate instrumentation in jdk http client sendAsyncMethod (#8127)
There are 2 `sendAsync` methods
https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpClient.html#sendAsync(java.net.http.HttpRequest,java.net.http.HttpResponse.BodyHandler)
and one of them calls the other.
2023-03-25 13:08:40 +02:00
dependabot[bot] b33cadd791
Bump com.gradle.enterprise from 3.12.5 to 3.12.6 (#8134)
Bumps com.gradle.enterprise from 3.12.5 to 3.12.6.


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.gradle.enterprise&package-manager=gradle&previous-version=3.12.5&new-version=3.12.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-25 12:41:48 +02:00
dependabot[bot] cc77528ccd
Bump io.grpc:grpc-bom from 1.53.0 to 1.54.0 (#8133)
Bumps [io.grpc:grpc-bom](https://github.com/grpc/grpc-java) from 1.53.0
to 1.54.0.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="e988f84d14"><code>e988f84</code></a>
Bump version to 1.54.0</li>
<li><a
href="abdb6980ec"><code>abdb698</code></a>
Update README etc to reference 1.54.0</li>
<li><a
href="61ec299352"><code>61ec299</code></a>
Remove sleep from Observability Interop Test binary now that its done in
clos...</li>
<li><a
href="9f26b7dd08"><code>9f26b7d</code></a>
gcp-o11y: add default custom tag for metrics exporter</li>
<li><a
href="fefa2d9b16"><code>fefa2d9</code></a>
examples: add gcp-observability examples (v1.54.x backport) (<a
href="https://redirect.github.com/grpc/grpc-java/issues/9987">#9987</a>)</li>
<li><a
href="882a27bcb6"><code>882a27b</code></a>
gcp-o11y: add sleep in Observability close()</li>
<li><a
href="2e41c9a5cb"><code>2e41c9a</code></a>
disable recording real-time metrics using in gcp-o11y</li>
<li><a
href="132bf3e573"><code>132bf3e</code></a>
interop-testing: Do not System.exit(0) from interop client</li>
<li><a
href="85ce900dfc"><code>85ce900</code></a>
gcp-observability, census: add trace information to logs (<a
href="https://redirect.github.com/grpc/grpc-java/issues/9963">#9963</a>)</li>
<li><a
href="bb39ca3ec9"><code>bb39ca3</code></a>
gcp-observability: Update logging fields for GA and use custom
BatchingSettin...</li>
<li>Additional commits viewable in <a
href="https://github.com/grpc/grpc-java/compare/v1.53.0...v1.54.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.grpc:grpc-bom&package-manager=gradle&previous-version=1.53.0&new-version=1.54.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-25 12:41:31 +02:00
dependabot[bot] 95d67871ed
Bump com.gradle.enterprise:com.gradle.enterprise.gradle.plugin from 3.12.5 to 3.12.6 (#8132)
Bumps com.gradle.enterprise:com.gradle.enterprise.gradle.plugin from
3.12.5 to 3.12.6.


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.gradle.enterprise:com.gradle.enterprise.gradle.plugin&package-manager=gradle&previous-version=3.12.5&new-version=3.12.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-25 12:41:07 +02:00
Lauri Tulmin 178bfd4856
Add http client metrics to apache http library instrumentation (#8128) 2023-03-24 14:36:18 +01:00
dependabot[bot] de0f51ef47
Bump actions/stale from 7 to 8 (#8118)
Bumps [actions/stale](https://github.com/actions/stale) from 7 to 8.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/actions/stale/releases">actions/stale's
releases</a>.</em></p>
<blockquote>
<h2>v8.0.0</h2>
<p>⚠️ This version contains breaking changes ⚠️</p>
<h2>What's Changed</h2>
<ul>
<li>New option labels-to-remove-when-stale enables users to specify list
of coma delimited labels that will be removed when the issue or PR
becomes stale by <a
href="https://github.com/panticmilos"><code>@​panticmilos</code></a> <a
href="https://redirect.github.com/actions/stale/issues/770">actions/stale#770</a></li>
<li>Skip deleting the branch in the upstream of a forked repo by <a
href="https://github.com/dsame"><code>@​dsame</code></a> <a
href="https://redirect.github.com/actions/stale/pull/913">actions/stale#913</a></li>
<li>abort the build on the error by <a
href="https://github.com/dsame"><code>@​dsame</code></a> in <a
href="https://redirect.github.com/actions/stale/pull/935">actions/stale#935</a></li>
</ul>
<h2>Breaking Changes</h2>
<ul>
<li>In this release we prevent scenarios when the build is not
interrupted on some exceptions, which led to successful builds when they
are supposed to fail</li>
</ul>
<h2>Example</h2>
<pre lang="yaml"><code>name: 'Remove labels when the issue or PR becomes
stale'
on:
  schedule:
    - cron: '30 1 * * *'
<p>permissions:
pull-request: write</p>
<p>jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
labels-to-remove-when-stale: 'label1,label2'
</code></pre></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/actions/stale/blob/main/CHANGELOG.md">actions/stale's
changelog</a>.</em></p>
<blockquote>
<h1>Changelog</h1>
<h1>[7.0.0]</h1>
<p>⚠️ Breaking change ⚠️</p>
<ul>
<li>Allow daysBeforeStale options to be float by <a
href="https://github.com/irega"><code>@​irega</code></a> in <a
href="https://redirect.github.com/actions/stale/pull/841">actions/stale#841</a></li>
<li>Use cache in check-dist.yml by <a
href="https://github.com/jongwooo"><code>@​jongwooo</code></a> in <a
href="https://redirect.github.com/actions/stale/pull/876">actions/stale#876</a></li>
<li>fix print outputs step in existing workflows by <a
href="https://github.com/irega"><code>@​irega</code></a> in <a
href="https://redirect.github.com/actions/stale/pull/859">actions/stale#859</a></li>
<li>Update issue and PR templates, add/delete workflow files by <a
href="https://github.com/IvanZosimov"><code>@​IvanZosimov</code></a> in
<a
href="https://redirect.github.com/actions/stale/pull/880">actions/stale#880</a></li>
<li>Update how stale handles exempt items by <a
href="https://github.com/johnsudol"><code>@​johnsudol</code></a> in <a
href="https://redirect.github.com/actions/stale/pull/874">actions/stale#874</a></li>
</ul>
<h1>[6.0.1]</h1>
<p>Update <code>@​actions/core</code> to v1.10.0 (<a
href="https://redirect.github.com/actions/stale/pull/839">#839</a>)</p>
<h1>[6.0.0]</h1>
<p>⚠️ Breaking change ⚠️</p>
<p>Issues/PRs default <code>close-issue-reason</code> is now
<code>not_planned</code>(<a
href="https://redirect.github.com/actions/stale/issues/789">#789</a>)</p>
<h1>[5.1.0]</h1>
<p><a href="https://redirect.github.com/actions/stale/issues/696">Don't
process stale issues right after they're marked stale</a>
[Add close-issue-reason option]<a
href="https://redirect.github.com/actions/stale/pull/764">#764</a><a
href="https://redirect.github.com/actions/stale/pull/772">#772</a>
Various dependabot/dependency updates</p>
<h2><a
href="https://github.com/actions/stale/compare/v3.0.19...v4.1.0">4.1.0</a>
(2021-07-14)</h2>
<h2>Features</h2>
<ul>
<li><a
href="9912fa74d1">Ability
to exempt draft PRs</a></li>
</ul>
<h2><a
href="https://github.com/actions/stale/compare/v3.0.19...v4.0.0">4.0.0</a>
(2021-07-14)</h2>
<h3>Features</h3>
<ul>
<li><strong>options:</strong> simplify config by removing skip stale
message options (<a
href="https://redirect.github.com/actions/stale/issues/457">#457</a>)
(<a
href="6ec637d238">6ec637d</a>),
closes <a
href="https://redirect.github.com/actions/stale/issues/405">#405</a> <a
href="https://redirect.github.com/actions/stale/issues/455">#455</a></li>
<li><strong>output:</strong> print output parameters (<a
href="https://redirect.github.com/actions/stale/issues/458">#458</a>)
(<a
href="3e6d35b685">3e6d35b</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>dry-run:</strong> forbid mutations in dry-run (<a
href="https://redirect.github.com/actions/stale/issues/500">#500</a>)
(<a
href="f1017f33dd">f1017f3</a>),
closes <a
href="https://redirect.github.com/actions/stale/issues/499">#499</a></li>
<li><strong>logs:</strong> coloured logs (<a
href="https://redirect.github.com/actions/stale/issues/465">#465</a>)
(<a
href="5fbbfba142">5fbbfba</a>)</li>
<li><strong>operations:</strong> fail fast the current batch to respect
the operations limit (<a
href="https://redirect.github.com/actions/stale/issues/474">#474</a>)
(<a
href="5f6f311ca6">5f6f311</a>),
closes <a
href="https://redirect.github.com/actions/stale/issues/466">#466</a></li>
<li><strong>label comparison</strong>: make label comparison case
insensitive <a
href="https://redirect.github.com/actions/stale/pull/517">#517</a>,
closes <a
href="https://redirect.github.com/actions/stale/pull/516">#516</a></li>
<li><strong>filtering comments by actor could have strange
behavior</strong>: &quot;stale&quot; comments are now detected based on
if the message is the stale message not <em>who</em> made the comment(<a
href="https://redirect.github.com/actions/stale/pull/519">#519</a>),
fixes <a
href="https://redirect.github.com/actions/stale/pull/441">#441</a>, <a
href="https://redirect.github.com/actions/stale/pull/509">#509</a>, <a
href="https://redirect.github.com/actions/stale/pull/518">#518</a></li>
</ul>
<h3>Breaking Changes</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="1160a22402"><code>1160a22</code></a>
Merge pull request <a
href="https://redirect.github.com/actions/stale/issues/965">#965</a>
from actions/dependabot/npm_and_yarn/prettier-2.8.6</li>
<li><a
href="5f7b396645"><code>5f7b396</code></a>
build(deps-dev): bump prettier from 2.8.4 to 2.8.6</li>
<li><a
href="b002e7ec85"><code>b002e7e</code></a>
Merge pull request <a
href="https://redirect.github.com/actions/stale/issues/941">#941</a>
from panticmilos/vmpantic/rebuild-dist-vercel-bump</li>
<li><a
href="52903732a4"><code>5290373</code></a>
Rebuild dist after rebase</li>
<li><a
href="b006677dea"><code>b006677</code></a>
Merge pull request <a
href="https://redirect.github.com/actions/stale/issues/962">#962</a>
from actions/dependabot/npm_and_yarn/jest-and-types/j...</li>
<li><a
href="4f29769aee"><code>4f29769</code></a>
Merge pull request <a
href="https://redirect.github.com/actions/stale/issues/961">#961</a>
from actions/dependabot/npm_and_yarn/typescript-5.0.2</li>
<li><a
href="83453dd842"><code>83453dd</code></a>
build(deps-dev): bump jest and <code>@​types/jest</code></li>
<li><a
href="79e8c046ed"><code>79e8c04</code></a>
Merge pull request <a
href="https://redirect.github.com/actions/stale/issues/960">#960</a>
from actions/dependabot/npm_and_yarn/types/node-18.15.3</li>
<li><a
href="75d4d955ac"><code>75d4d95</code></a>
Remove labels on stale (<a
href="https://redirect.github.com/actions/stale/issues/959">#959</a>)</li>
<li><a
href="fac2d41a88"><code>fac2d41</code></a>
build(deps-dev): bump typescript from 4.9.4 to 5.0.2</li>
<li>Additional commits viewable in <a
href="https://github.com/actions/stale/compare/v7...v8">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/stale&package-manager=github_actions&previous-version=7&new-version=8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-24 08:37:20 +01:00
dependabot[bot] 95619c5874
Bump io.quarkus from 2.16.4.Final to 2.16.5.Final (#8123)
Bumps io.quarkus from 2.16.4.Final to 2.16.5.Final.


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.quarkus&package-manager=gradle&previous-version=2.16.4.Final&new-version=2.16.5.Final)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-24 08:52:15 +02:00
dependabot[bot] ac816b0b78
Bump org.springframework.boot:spring-boot-starter-web from 3.0.4 to 3.0.5 (#8122)
Bumps
[org.springframework.boot:spring-boot-starter-web](https://github.com/spring-projects/spring-boot)
from 3.0.4 to 3.0.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/spring-projects/spring-boot/releases">org.springframework.boot:spring-boot-starter-web's
releases</a>.</em></p>
<blockquote>
<h2>v3.0.5</h2>
<h2>🐞 Bug Fixes</h2>
<ul>
<li>EmbeddedWebServerFactoryCustomizerAutoConfiguration should not run
when embedded web server is not configured <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34659">#34659</a></li>
<li>StandardConfigDataResource can import the same file twice if the
classpath includes '.' <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34617">#34617</a></li>
<li>Loading application.yml fails with NoSuchMethodError when using
SnakeYAML 2.0 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34515">#34515</a></li>
<li><code>@ConfigurationProperties</code> no longer works on a mutable
Kotlin data classes <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34500">#34500</a></li>
<li>Image builds with podman fail when image buildpacks are configured
<a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34495">#34495</a></li>
<li>Use of <code>@EntityScan</code> causes AOT instance supplier code
generation error <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34371">#34371</a></li>
</ul>
<h2>📔 Documentation</h2>
<ul>
<li>Document support for Java 20 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34726">#34726</a></li>
<li>Clarify conventions for custom error pages in WebFlux <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34705">#34705</a></li>
<li>Add documentation tip showing how to configure publishRegistry Maven
properties from the command line <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34704">#34704</a></li>
<li>Typo in Batch documentation: content instead of context <a
href="https://redirect.github.com/spring-projects/spring-boot/pull/34646">#34646</a></li>
<li>Update two references to old APIs <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34602">#34602</a></li>
<li>Fix Javadoc in JobLauncherApplicationRunner <a
href="https://redirect.github.com/spring-projects/spring-boot/pull/34596">#34596</a></li>
<li>Document how to get socket location for image building configuration
with podman <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34475">#34475</a></li>
</ul>
<h2>🔨 Dependency Upgrades</h2>
<ul>
<li>Upgrade to Caffeine 3.1.5 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34662">#34662</a></li>
<li>Upgrade to Couchbase Client 3.4.4 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34663">#34663</a></li>
<li>Upgrade to Dropwizard Metrics 4.2.18 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34664">#34664</a></li>
<li>Upgrade to GraphQL Java 19.4 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34718">#34718</a></li>
<li>Upgrade to Groovy 4.0.10 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34665">#34665</a></li>
<li>Upgrade to Infinispan 14.0.7.Final <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34666">#34666</a></li>
<li>Upgrade to Jedis 4.3.2 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34698">#34698</a></li>
<li>Upgrade to Jetty Reactive HTTPClient 3.0.8 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34667">#34667</a></li>
<li>Upgrade to jOOQ 3.17.10 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34699">#34699</a></li>
<li>Upgrade to Json-smart 2.4.10 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34669">#34669</a></li>
<li>Upgrade to Logback 1.4.6 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34670">#34670</a></li>
<li>Upgrade to Micrometer 1.10.5 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34536">#34536</a></li>
<li>Upgrade to Micrometer Tracing 1.0.3 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34537">#34537</a></li>
<li>Upgrade to Netty 4.1.90.Final <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34671">#34671</a></li>
<li>Upgrade to Reactor Bom 2022.0.5 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34538">#34538</a></li>
<li>Upgrade to SLF4J 2.0.7 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34672">#34672</a></li>
<li>Upgrade to Spring AMQP 3.0.3 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34608">#34608</a></li>
<li>Upgrade to Spring Data Bom 2022.0.4 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34539">#34539</a></li>
<li>Upgrade to Spring Framework 6.0.7 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34540">#34540</a></li>
<li>Upgrade to Spring GraphQL 1.1.3 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34541">#34541</a></li>
<li>Upgrade to Spring HATEOAS 2.0.3 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34673">#34673</a></li>
<li>Upgrade to Spring Integration 6.0.4 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34542">#34542</a></li>
<li>Upgrade to Spring Kafka 3.0.5 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34543">#34543</a></li>
<li>Upgrade to Spring Retry 2.0.1 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34544">#34544</a></li>
<li>Upgrade to Spring Session 3.0.1 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34545">#34545</a></li>
<li>Upgrade to Tomcat 10.1.7 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34674">#34674</a></li>
<li>Upgrade to UnboundID LDAPSDK 6.0.8 <a
href="https://redirect.github.com/spring-projects/spring-boot/issues/34675">#34675</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="8af13ef22c"><code>8af13ef</code></a>
Release v3.0.5</li>
<li><a
href="fa63f6cc9e"><code>fa63f6c</code></a>
Stop using an instance supplier in EntityScanPackages' bean
definition</li>
<li><a
href="5e08ee6483"><code>5e08ee6</code></a>
Merge branch '2.7.x' into 3.0.x</li>
<li><a
href="69087badab"><code>69087ba</code></a>
Next development version (v2.7.11-SNAPSHOT)</li>
<li><a
href="26376ffcb1"><code>26376ff</code></a>
Merge branch '2.7.x' into 3.0.x</li>
<li><a
href="1fc3c34fa2"><code>1fc3c34</code></a>
Document support for Java 20</li>
<li><a
href="14d12da5a4"><code>14d12da</code></a>
Upgrade to Spring Integration 6.0.4</li>
<li><a
href="82c0ba9ef8"><code>82c0ba9</code></a>
Merge branch '2.7.x' into 3.0.x</li>
<li><a
href="1508e3cec8"><code>1508e3c</code></a>
Upgrade to Spring Integration 5.5.17</li>
<li><a
href="c56b190b6c"><code>c56b190</code></a>
Upgrade to GraphQL Java 19.4</li>
<li>Additional commits viewable in <a
href="https://github.com/spring-projects/spring-boot/compare/v3.0.4...v3.0.5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.springframework.boot:spring-boot-starter-web&package-manager=gradle&previous-version=3.0.4&new-version=3.0.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-24 08:51:40 +02:00
dependabot[bot] a701d5856e
Bump io.quarkus.platform:quarkus-bom from 2.16.4.Final to 2.16.5.Final (#8121)
Bumps
[io.quarkus.platform:quarkus-bom](https://github.com/quarkusio/quarkus-platform)
from 2.16.4.Final to 2.16.5.Final.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="a50db2af02"><code>a50db2a</code></a>
[maven-release-plugin] prepare release 2.16.5.Final</li>
<li><a
href="cf4efaeb14"><code>cf4efae</code></a>
Merge pull request <a
href="https://redirect.github.com/quarkusio/quarkus-platform/issues/793">#793</a>
from gsmet/quarkus-2.16.5</li>
<li><a
href="3510fd1737"><code>3510fd1</code></a>
Upgrade to Quarkus 2.16.5.Final</li>
<li><a
href="92d3885bd3"><code>92d3885</code></a>
Merge pull request <a
href="https://redirect.github.com/quarkusio/quarkus-platform/issues/784">#784</a>
from aloubyansky/2.16-sbom</li>
<li><a
href="181d0015a3"><code>181d001</code></a>
Refactor depsToBuild profile to sbom and generate SBOMs with appropriate
file...</li>
<li><a
href="44fcf9fd36"><code>44fcf9f</code></a>
Merge pull request <a
href="https://redirect.github.com/quarkusio/quarkus-platform/issues/779">#779</a>
from kie-ci/drools_kogito_optaplanner_1.35_8.35</li>
<li><a
href="b6783c3b01"><code>b6783c3</code></a>
[maven-release-plugin] prepare for next development iteration</li>
<li><a
href="d5e2c03f55"><code>d5e2c03</code></a>
Bump up kogito to 1.35.0.Final</li>
<li>See full diff in <a
href="https://github.com/quarkusio/quarkus-platform/compare/2.16.4.Final...2.16.5.Final">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.quarkus.platform:quarkus-bom&package-manager=gradle&previous-version=2.16.4.Final&new-version=2.16.5.Final)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-24 08:51:19 +02:00