Skip to content

v0.15.0

Compare
Choose a tag to compare
@release-drafter release-drafter released this 24 Oct 10:11
· 833 commits to refs/heads/main since this release
4c04bdf

What's Changed

馃殌 Features

鈿狅笍 Breaking Changes

Before this change, when waiting for a SQL to be executed in a container it always checked against localhost, but it could be the case that the database instance runs in a different container. For that reason, the library now supports passing the host where the database is running so that the wait.ForSQL function needs the host as part of the input parameters.

- func ForSQL(port nat.Port, driver string, url func(nat.Port) string) *waitForSql {
+ func ForSQL(port nat.Port, driver string, url func(host string, port nat.Port) string) *waitForSql {

馃悰 Bug Fixes

  • fix: check if the container request is for the reaper (#574) @mdelapenya
  • fix: pass docker context key when reusing a container (#550) @mdelapenya
  • fix: use regex to find container by name (#558) @hwwwi
  • fix: expose default exposed ports if the NetworkMode is not container (#560) @clive-jevons
  • fix(compose): wait.ForExit() strategy should work for finished containers (#514) @Malinskiy

馃摉 Documentation

馃Ч Housekeeping

馃摝 Dependency updates