Rename Spring javaagent packages to follow module-naming convention#18425
Merged
Conversation
Applies the pattern from open-telemetry#18181 (Vert.x javaagent package renames) to six Spring javaagent modules, using dot-split form for multi-word project names (matching upstream Spring package layout and existing spring-security-config-6.0 precedent). Library packages and version-suffixed packages that already match the convention are left unchanged. | Module | Old package | New package | |---|---|---| | spring-boot-actuator-autoconfigure-2.0 | spring.actuator.v2_0 | spring.boot.actuator.v2_0 | | spring-cloud-aws-3.0 | spring.aws | spring.cloud.aws.v3_0 | | spring-cloud-gateway-2.0 | spring.gateway.v2_0 | spring.cloud.gateway.v2_0 | | spring-cloud-gateway-common | spring.gateway.common | spring.cloud.gateway.common | | spring-cloud-gateway-webmvc-4.3 | spring.gateway.webmvc.v5_0 | spring.cloud.gateway.webmvc.v4_3 | | spring-webmvc-common | spring.webmvc | spring.webmvc.common | The spring-cloud-gateway-webmvc-4.3 rename also corrects the package version segment (was v5_0, now v4_3 to match the module directory). The spring-cloud-aws-3.0 rename adds the previously missing version segment v3_0.
laurit
approved these changes
Apr 30, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Applies the pattern from #18181 (Vert.x javaagent package renames) to six Spring javaagent modules, using dot-split form for multi-word project names (matching upstream Spring package layout, e.g.
org.springframework.cloud.gateway, and the existingspring-security-config-6.0→spring.security.config.v6_0precedent). Library packages and version-suffixed packages that already match the convention are left unchanged.spring-boot-actuator-autoconfigure-2.0spring.actuator.v2_0spring.boot.actuator.v2_0spring-cloud-aws-3.0spring.awsspring.cloud.aws.v3_0spring-cloud-gateway-2.0spring.gateway.v2_0spring.cloud.gateway.v2_0spring-cloud-gateway-commonspring.gateway.commonspring.cloud.gateway.commonspring-cloud-gateway-webmvc-4.3spring.gateway.webmvc.v5_0spring.cloud.gateway.webmvc.v4_3spring-webmvc-commonspring.webmvcspring.webmvc.commonThe
spring-cloud-gateway-webmvc-4.3rename also corrects the package version segment (wasv5_0, nowv4_3to match the module directory). Thespring-cloud-aws-3.0rename adds the previously missing version segmentv3_0.