Skip to content

Latest commit

 

History

History
294 lines (204 loc) · 14.6 KB

CHANGELOG.md

File metadata and controls

294 lines (204 loc) · 14.6 KB

Changes by Version

0.30.3 (unreleased)

  • Nothing yet

0.30.2 (2018-07-13)

0.30.1 (2018-07-10)

0.30.0 (2018-07-04)

WARNING: this release breaks compatibility with previous versions.

The most disruptive changes are:

  1. The module jaeger-core is not bringing Thrift senders anymore. Instead, client applications should now depend on the jaeger-thrift module, which will bring the jaeger-core transitively

  2. The first step in establishing the public API was made: all classes were moved to an internal package, to signal that they are not supposed to be used directly. Classes not in the internal package are part of the new public API and compatibility should follow semver. Clients currently using the Tracer.Builder mechanism are encouraged to switch over to the Configuration approach. If you face a situation that cannot be done with this approach, do let us know.

  3. Related to the point above: we now have also a SPI package, intended to be consumed by service providers (components implementing Senders, Reporters, Samplers). If you are implementing a service, do let us know! We need your feedback before moving forward with this API.

  4. Jaeger types related to the OpenTracing standard were renamed, to avoid name clashes: io.jaegertracing.Tracer is now JaegerTracer.

Complete list of changes:

0.29.0 (2018-06-07)

0.28.0 (2018-05-24)

0.27.0 (2018-04-18)

  • Enable development and dependency versions to be overridden from the commandline (#397)
  • Add tests for metrics exposed via prometheus (#386)
  • Change groupid to io.jaegertracing and remove instrumentations (#375). Sources with com.uber.jaeger have been moved to https://github.com/jaegertracing/legacy-client-java
  • Remove reference to JAEGER_DISABLE_GLOBAL_TRACER (#379)
  • Avoid direct access to apache thrift from jaeger-core via transitive dependency through jaeger-thrift (#374)
  • Make some methods in HttpSender.Builder public (#376)

0.26.0 (2018-03-19)

  • Avoid host lookups if trace tags have already been provided (#371)
  • Update the ReporterConfig to set Sender Correctly (#370)
  • Fix for issue 366, fix deprecated code in example (#367)

0.25.0 (2018-03-07)

  • Consolidate codec exception handling and logs exceptions (#362)
  • Deprecated StatsReporter (#349) <Juraci Paixão Kröhling>
  • Ignores B3 headers if invalid values are provided (#355) <Juraci Paixão Kröhling>
  • Refactor public constructor API (#346)
  • Expand exception logs (#168)
  • Deprecate JerseyServerFilter#JerseyServerFilter(Tracer, TraceContext) (#352)
  • Micrometer support (#335) <Juraci Paixão Kröhling>
  • Metrics are now consistent with Go (#335) <Juraci Paixão Kröhling>
  • Updated Trace Resolver (#347)

0.24.0 (2018-01-31)

  • Remove apache instrumentation dependence on jaeger-context (#320)
  • Remove JAX-RS2 instrumentation dependence on TracingUtils/jaeger-context (#319)
  • Fix ClassCastException when a wrapped span impl is activated instead of the Jaeger Span (#327)
  • Remove shadow dependency from jaeger-b3 (#309)
  • Adding annotated filter priorities for Jersey filters (#329)
  • Handle baggage null values better (#308)

0.23.0 (2018-01-12)

  • Upgrade to OpenTracing API v0.31.0 (#313)

0.22.0-RC3 (2017-12-08)

  • Remove dependency on GlobalTracer (#302)
  • Add configuration support for B3 trace context propagation (#296)
  • Prevent Span from being reported twice on multiple calls to finish() (#299)
  • Do not store client span in thread-local in apache and jax-rs2 instrumentation (#297)
  • Add auth options to HttpSender (#285) <Juraci Paixão Kröhling>

0.22.0-RC2 (2017-10-26)

0.21.0 (2017-09-15)

0.20.6 (2017-08-01)

0.20.0 (2017-06-23)

0.19.0 (2017-05-29)

0.18.0 (2017-04-13)

0.17.0 (2016-12-02)

  • Fix bug where server spans were incorrectly marked as local components
  • Tighten checks for marking a span as a RPC

0.16.0 (2016-11-28)

  • Add a Configuration#closeTracer() method
  • Add Builder to TextMapCodec
  • Bump up zipkin to 1.16.2
  • Automatically add span names for jersey instrumentation

0.15.0 (2016-10-26)

  • Add init logging
  • Add a Tracer.close() method
  • Fill in Host on all annotations when reporting to Zipkin
  • Downgrade to libthrift 0.9.2
  • Publish a shaded jar with libthrift 0.9.2 packaged
  • Bump up zipkin versions

0.14.0 (2016-10-06)

  • Fix http url tag on jaxrs2 filters
  • Add convenience setter for metrics
  • Expose interceptor callbacks and custom operation name for extension classes

0.13.0 (2016-09-29)

  • Fix bug with dropwizard config parsing

0.12.0 (2016-09-27)

  • Support Apache HttpClient

0.11.0 (2016-09-22)

  • fixed crossdock notImplementedError propagation
  • refactored configuration
  • added google-formatter

0.10.0 (2016-09-16)

  • Support debug traces via HTTP header "jaeger-debug-id"

0.9.0 (2016-09-12)

  • Introduce Clock interface for time measurements
  • Use nano-time for measuring duration
  • Remove powermock dependency
  • Upgrade to OT 0.15

0.8.2 (2016-09-09)

  • Exclude test classes from published jars

0.8.1 (2016-09-09)

  • Default peer service name to blank as it is required in Thrift Endpoint (fixes #45)

0.8.0 (2016-09-06)

  • Add jaeger-zipkin module that allows on the wire propagation with B3-xxx headers and uses zipkin-reporter
  • Report sampling strategy as root span tags sampler.type and sampler.param. In case of probabilistic sampling (most frequently used strategy), the values would be probabilistic and the sampling probability [0 .. 1], respectively.
  • Record host name as jaeger.hostname tag on the first-in-process spans (i.e. root spans and rpc-server spans)
  • Record the version of the Jaeger library as jaeger.version tag

0.7.1 (2016-08-22)

  • Reduce the size of published jars

0.7.0 (2016-08-19)

  • Upgrade to OpenTracing API 0.12, with immutable SpanContext