Skip to content

0.4.0

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Nov 07:57
· 1091 commits to main since this release
a1d2e4b

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

  • Public API for manual test instrumentation (#64) (#61)

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.