Skip to content

Releases: jacobweinstock/registrar

v0.4.7

06 May 04:52
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.4.6...v0.4.7

v0.4.6

03 May 22:57
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.4.5...v0.4.6

v0.4.5

25 Nov 03:29
Compare
Choose a tag to compare

Full Changelog: v0.4.4...v0.4.5

v0.4.4

29 Apr 14:11
Compare
Choose a tag to compare

upgrade dependencies

v0.4.3

29 Apr 14:06
Compare
Choose a tag to compare

Make the default logger logr.Discard

v0.4.2

22 Mar 14:01
Compare
Choose a tag to compare

don't put a possible nil value in a slice

v0.4.1

22 Mar 13:55
Compare
Choose a tag to compare

fix a lot of possible nil pointer errors.

v0.4.0

20 Mar 17:59
Compare
Choose a tag to compare

add reordering a registry by driver name

v0.3.2

16 Jan 04:06
Compare
Choose a tag to compare
Fix undesired reordering of Drivers:

The FilterForCompatible function wasnt maintaining the
order of drivers that it started with. It was doing
this because goroutines would append their results as soon
as they finished without regard to order. Adding a state
map and surrounding it with mutex solves this concern and
leaves the drivers in the order they came in with.

Signed-off-by: Jacob Weinstock <jakobweinstock@gmail.com>

v0.3.1

15 Jan 02:51
Compare
Choose a tag to compare
Add interface when no compatiblity check:

If we cant run a compatability check still add
the interface.

Signed-off-by: Jacob Weinstock <jakobweinstock@gmail.com>