Skip to content

Releases: int128/listener

v1.2.0

10 Nov 09:15
defecf2
Compare
Choose a tag to compare

What's Changed

  • Update build workflow by @int128 in #4
  • Create renovate.json5 by @int128 in #6
  • Update dependency golangci/golangci-lint to v1.61.0 by @renovate in #7
  • Update dependency int128/go-renovate-config to v1.6.1 by @renovate in #10
  • Update dependency int128/go-renovate-config to v1.7.0 by @renovate in #11
  • Update dependency int128/go-renovate-config to v1.7.2 by @renovate in #12
  • Refactor workflow and set toolchain go1.23.3 by @int128 in #13
  • Return errors.Join when no port is available by @int128 in #14

Breaking Change ⚠️

If your code depends on NoAvailablePortError.Causes(), you will need to use Unwrap() instead.

Before:

		noAvailablePortErr, ok := err.(NoAvailablePortError)
		if ok {
				causes := noAvailablePortErr.Causes()
		}

After:

		var noAvailablePortErr NoAvailablePortError
		if errors.As(err, &noAvailablePortErr) {
				causes := noAvailablePortErr.Unwrap()
		}

Full Changelog: v1.1.0...v1.2.0

v1.1.0

03 Apr 03:44
d3b8de7
Compare
Choose a tag to compare
  • d3b8de7 Extract NoAvailablePortError interface (#3)
  • 267e81e Replace xerrors with Go errors (#2)

v1.0.0

03 Oct 09:54
314d864
Compare
Choose a tag to compare

First release!