0.4.0
Notable changes
Manual API
This release includes manual tracing API. You can use it in order to instrument your tests like that:
Datadog::CI.start_test(
"my test",
tags: {
"test.framework" => "my framework",
"test.suite" => "my suite"
},
service_name: "service",
operation_name: "test.test"
)
# your test code
test_span = Datadog::CI.active_test
test_span.passed!
test_span.finish
SSH credentials clean up
The library now correctly remove user credentials from URL for repository URLs using SSH protocol
Release notes
Added
Changed
- fix tracing instrumentation example in readme (#60)
Fixed
- Remove user credentials from ssh URLs and from GITHUB_REPO_URL environment variable (#66)
Removed
- Remove _dd.measured tag from spans (#65)
Read the full changeset and the release milestone.