Updates all dependencies and build infrastructure to latest#244
Merged
codefromthecrypt merged 1 commit intomasterfrom Mar 25, 2026
Merged
Updates all dependencies and build infrastructure to latest#244codefromthecrypt merged 1 commit intomasterfrom
codefromthecrypt merged 1 commit intomasterfrom
Conversation
Notable library updates: * Zipkin 3.5.0 -> 3.6.0 * Zipkin Reporter 3.5.0 -> 3.5.3 * Brave 6.1.0 -> 6.3.1 * Spring Boot 3.4.2 -> 3.5.12 * Armeria 1.31.3 -> 1.37.0 * gRPC 1.70.0 -> 1.78.0 * Google Cloud Trace 2.58.0 -> 2.64.0 * Google Cloud PubSub 1.137.0 -> 1.140.1 Notable Docker image updates: * Alpine 3.21.2 -> 3.23.3 * Zipkin base image 3.5.0 -> 3.6.0 **Testing** Build the docker image: ```bash $ RELEASE_FROM_MAVEN_BUILD=true build-bin/docker/docker_build openzipkin/zipkin-gcp:test ``` Confirm the GCP module loads into zipkin-server (expected auth error, not a crash): ```bash $ docker run --rm -e STORAGE_TYPE=stackdriver -e STACKDRIVER_PROJECT_ID=test openzipkin/zipkin-gcp:test :: version 3.6.0 :: commit 1142cfa :: Caused by: java.io.IOException: Your default credentials were not found. ``` Clean up: ```bash $ docker image rm openzipkin/zipkin-gcp:test ``` Signed-off-by: Adrian Cole <[email protected]>
reta
approved these changes
Mar 25, 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.
Notable library updates:
Notable Docker image updates:
Testing
Build the docker image:
$ RELEASE_FROM_MAVEN_BUILD=true \ build-bin/docker/docker_build openzipkin/zipkin-gcp:testSave this as
docker-compose-test.yamlto smoke test with fake credentials.The private key is from google-auth-library-java's
ServiceAccountCredentialsTest:
Run it and verify health shows the stackdriver storage with an auth error (not a crash):
$ docker compose -f docker-compose-test.yaml up -d $ curl -s localhost:9411/health { "status": "DOWN", "zipkin": { "status": "DOWN", "details": { "StackdriverStorage{fake-project}": { "status": "DOWN", "details": { "error": "GoogleAuthException: Error getting access token for service account: 400 Bad Request ... invalid_grant: account not found" } } } } }Post a span and confirm it is accepted:
$ curl -X POST localhost:9411/api/v2/spans \ -H "Content-Type: application/json" \ -d '[{"traceId":"aaaa","id":"bbbb","name":"test","timestamp":1, "duration":1,"localEndpoint":{"serviceName":"test"}}]' HTTP 202Clean up: