Skip to content

Commit f08736a

Browse files
committed
Merge branch 'main' into opamp-websocket-service
2 parents dc7f2a9 + 032e0e6 commit f08736a

File tree

10 files changed

+28
-24
lines changed

10 files changed

+28
-24
lines changed

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
## Unreleased
44

5-
## Version 1.47.0 (2025-05-19)
6-
75
### GCP authentication extension
86

97
- Update the internal implementation such that the required headers are retrieved

README.md

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -72,31 +72,37 @@ domain we would be very interested in supporting it. Please
7272
suggestion. PRs are always welcome and greatly appreciated, but for larger functional changes a pre-coding introduction
7373
can be helpful to ensure this is the correct place and that active or conflicting efforts don't exist.
7474

75-
Triagers ([@open-telemetry/java-contrib-triagers](https://github.com/orgs/open-telemetry/teams/java-contrib-triagers)):
75+
### Maintainers
7676

77-
- All [component owners](https://github.com/open-telemetry/opentelemetry-java-contrib/blob/main/.github/component_owners.yml) are given Triager permissions to this repository.
77+
- [Jack Berg](https://github.com/jack-berg), New Relic
78+
- [Jason Plumb](https://github.com/breedx-splk), Splunk
79+
- [Lauri Tulmin](https://github.com/laurit), Splunk
80+
- [Trask Stalnaker](https://github.com/trask), Microsoft
81+
82+
For more information about the maintainer role, see the [community repository](https://github.com/open-telemetry/community/blob/main/guides/contributor/membership.md#maintainer).
7883

79-
Approvers ([@open-telemetry/java-contrib-approvers](https://github.com/orgs/open-telemetry/teams/java-contrib-approvers)):
84+
### Approvers
8085

8186
- [John Watson](https://github.com/jkwatson), Verta.ai
8287

83-
Maintainers ([@open-telemetry/java-contrib-maintainers](https://github.com/orgs/open-telemetry/teams/java-contrib-maintainers)):
88+
For more information about the approver role, see the [community repository](https://github.com/open-telemetry/community/blob/main/guides/contributor/membership.md#approver).
8489

85-
- [Jack Berg](https://github.com/jack-berg), New Relic
86-
- [Jason Plumb](https://github.com/breedx-splk), Splunk
87-
- [Lauri Tulmin](https://github.com/laurit), Splunk
88-
- [Trask Stalnaker](https://github.com/trask), Microsoft
90+
### Triagers
91+
92+
- All [component owners](https://github.com/open-telemetry/opentelemetry-java-contrib/blob/main/.github/component_owners.yml) are given Triager permissions to this repository.
93+
94+
For more information about the triager role, see the [community repository](https://github.com/open-telemetry/community/blob/main/guides/contributor/membership.md#triager).
8995

90-
Emeritus maintainers:
96+
### Emeritus maintainers
9197

9298
- [Mateusz Rzeszutek](https://github.com/mateuszrzeszutek)
9399
- [Nikita Salnikov-Tarnovski](https://github.com/iNikem)
94100
- [Ryan Fitzpatrick](https://github.com/rmfitzpatrick)
95101

96-
Learn more about roles in the [community repository](https://github.com/open-telemetry/community/blob/main/guides/contributor/membership.md).
102+
For more information about the emeritus role, see the [community repository](https://github.com/open-telemetry/community/blob/main/guides/contributor/membership.md#emeritus-maintainerapprovertriager).
97103

98-
Thanks to all the people who already contributed!
104+
### Thanks to all of our contributors!
99105

100106
<a href="https://github.com/open-telemetry/opentelemetry-java-contrib/graphs/contributors">
101-
<img src="https://contributors-img.web.app/image?repo=open-telemetry/opentelemetry-java-contrib" />
107+
<img alt="Repo contributors" src="https://contrib.rocks/image?repo=open-telemetry/opentelemetry-java-contrib" />
102108
</a>

buildSrc/src/main/kotlin/otel.java-conventions.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ testing {
135135
dependencies {
136136
implementation(project(project.path))
137137

138-
implementation(enforcedPlatform("org.junit:junit-bom:5.13.1"))
139-
implementation(enforcedPlatform("org.testcontainers:testcontainers-bom:1.21.1"))
138+
implementation(enforcedPlatform("org.junit:junit-bom:5.13.2"))
139+
implementation(enforcedPlatform("org.testcontainers:testcontainers-bom:1.21.2"))
140140
implementation(enforcedPlatform("com.google.guava:guava-bom:33.4.8-jre"))
141141
implementation(enforcedPlatform("com.linecorp.armeria:armeria-bom:1.32.5"))
142142

dependencyManagement/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ dependencies {
5252
api("org.junit-pioneer:junit-pioneer:1.9.1")
5353
api("org.skyscreamer:jsonassert:1.5.3")
5454
api("org.apache.kafka:kafka-clients:4.0.0")
55-
api("org.testcontainers:kafka:1.21.1")
55+
api("org.testcontainers:kafka:1.21.2")
5656
api("com.lmax:disruptor:3.4.4")
5757
api("org.jctools:jctools-core:4.0.5")
5858
api("tools.profiler:async-profiler:4.0")

gcp-auth-extension/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies {
2323
compileOnly("io.opentelemetry:opentelemetry-exporter-otlp")
2424

2525
// Only dependencies added to `implementation` configuration will be picked up by Shadow plugin
26-
implementation("com.google.auth:google-auth-library-oauth2-http:1.37.0")
26+
implementation("com.google.auth:google-auth-library-oauth2-http:1.37.1")
2727

2828
// Test dependencies
2929
testCompileOnly("com.google.auto.service:auto-service-annotations")

maven-extension/src/test/resources/projects/jib_1/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<plugin>
1616
<groupId>com.google.cloud.tools</groupId>
1717
<artifactId>jib-maven-plugin</artifactId>
18-
<version>3.4.5</version>
18+
<version>3.4.6</version>
1919
<configuration>
2020
<to>
2121
<image>docker.io/john/${project.artifactId}:latest</image>

maven-extension/src/test/resources/projects/jib_2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<plugin>
1616
<groupId>com.google.cloud.tools</groupId>
1717
<artifactId>jib-maven-plugin</artifactId>
18-
<version>3.4.5</version>
18+
<version>3.4.6</version>
1919
<configuration>
2020
<to>
2121
<image>gcr.io/my-gcp-project/my-app</image>

maven-extension/src/test/resources/projects/springboot_1/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.5.0</version>
9+
<version>3.5.3</version>
1010
<relativePath/> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>io.opentelemetry.contrib.maven.test</groupId>

maven-extension/src/test/resources/projects/springboot_2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.5.0</version>
9+
<version>3.5.3</version>
1010
<relativePath/> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>io.opentelemetry.contrib.maven.test</groupId>

version.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
val stableVersion = "1.48.0-SNAPSHOT"
2-
val alphaVersion = "1.48.0-alpha-SNAPSHOT"
1+
val stableVersion = "1.47.0-SNAPSHOT"
2+
val alphaVersion = "1.47.0-alpha-SNAPSHOT"
33

44
allprojects {
55
if (findProperty("otel.stable") != "true") {

0 commit comments

Comments
 (0)