Skip to content

Releases: mailgun/holster

v4.12.0

28 Feb 22:16
7f049c0
Compare
Choose a tag to compare

What's Changed

  • Bump golang.org/x/net from 0.0.0-20221004154528-8021a29435af to 0.7.0 by dependabot in #166.
  • Tracing updates by @Baliedge in #167
    • Update OpenTelemetry dependencies.
    • Sensible defaults to tracing.InitTracing().
      • Passing an empty libraryName will now autodetect the executable's module name.

v4.11.1

23 Feb 15:12
236eed9
Compare
Choose a tag to compare

What's Changed

v4.11.0

30 Jan 15:37
5577f46
Compare
Choose a tag to compare

What's Changed

  • Add functionality for instrumenting HTTP requests for use in HTTP service client library by @Baliedge in #159
    • tracing.NewHTTPClient creates an http.Client configured with OpenTelemetry middleware to generate a span on a request and propagate the trace to the server.

v4.10.0

23 Dec 14:08
45f8973
Compare
Choose a tag to compare

What's Changed

  • Improve functional package by @Baliedge in #142.
    • Fix benchmark N value unexpectedly not propagating to nested tests.
    • Add test Skip().

v4.9.7

20 Dec 15:25
1d167aa
Compare
Choose a tag to compare

What's Changed

  • Fix timeout error occurring in unit tests for tracing package by @Baliedge in #156.

v4.9.6

19 Dec 16:04
223e644
Compare
Choose a tag to compare

What's Changed

Full Changelog: v4.9.5...v4.9.6

v4.9.4

09 Dec 15:18
a085513
Compare
Choose a tag to compare

What's Changed

v4.9.0

14 Oct 04:02
de57b08
Compare
Choose a tag to compare

What's Changed

  • Added grpc-dns-resolver.go to discovery package by @thrawn01 in #134

Full Changelog: v4.8.4...v4.9.0

v4.8.2

03 Oct 20:43
d5f63a6
Compare
Choose a tag to compare

What's Changed

v4.8.1

03 Oct 14:23
623b4c1
Compare
Choose a tag to compare

What's Changed

  • Enable linters in GitHub actions workflow: bodyclose, depguard, errcheck, gocritic, goimports, gosec, gosimple, govet, noctx, nolintlint, ineffassign, staticcheck, stylecheck, typecheck, unused.
  • Code changes made to address all lint errors. No functional changes expected.
  • Fix bugs found by linters:
    • staticcheck identified incorrect usage of runtime.SetFinalizer() in discovery/memberlist.go that prevents finalizer invocation and would cause a memory leak.
    • govet identified an incomplete implementation of ToMap() in errors/errors.go that has been refactored to intended functionality.

by @Baliedge #129, #130, #131, #132