Releases: ory/dockertest
Releases · ory/dockertest
v3.11.0
What's Changed
- chore(deps): bump github.com/opencontainers/runc from 1.1.5 to 1.1.6 by @dependabot in #435
- chore(deps): bump github.com/Microsoft/go-winio from 0.6.0 to 0.6.1 by @dependabot in #437
- chore(deps): bump github.com/lib/pq from 0.0.0-20180327071824-d34b9ff171c2 to 1.10.8 by @dependabot in #438
- chore(deps): bump github.com/docker/docker from 20.10.7+incompatible to 20.10.24+incompatible by @dependabot in #426
- chore(deps): bump actions/checkout from 2 to 3 by @dependabot in #427
- chore(deps): bump github.com/sirupsen/logrus from 1.9.0 to 1.9.2 by @dependabot in #450
- chore(deps): bump github.com/containerd/continuity from 0.3.0 to 0.4.1 by @dependabot in #451
- chore(deps): bump github.com/stretchr/testify from 1.8.0 to 1.8.3 by @dependabot in #449
- chore(deps): bump github.com/opencontainers/runc from 1.1.6 to 1.1.7 by @dependabot in #442
- chore(deps): bump golang.org/x/sys from 0.7.0 to 0.8.0 by @dependabot in #445
- chore(deps): bump github.com/moby/term from 0.0.0-20201216013528-df9cb8a40635 to 0.5.0 by @dependabot in #446
- chore(deps): bump github.com/docker/cli from 20.10.17+incompatible to 24.0.1+incompatible by @dependabot in #448
- chore: bump dependencies and fix some lint by @alnr in #499
- chore(deps): bump golang.org/x/sys from 0.19.0 to 0.21.0 by @dependabot in #501
- chore(deps): bump actions/checkout from 2 to 4 by @dependabot in #475
- feat: fall back to podman if available by @SoMuchForSubtlety in #452
- test: refactor asserts by @alexandear in #497
- use defer instead of os.Exit(m.Run()) by @pmenglund in #493
- docs: remove outdated dep install instruction by @alexandear in #505
- chore: remove direct dependency on gotest.tools/v3 by @alexandear in #504
- chore: replace deprecated ioutil.TempDir with os.MkdirTemp by @alexandear in #506
- chore(deps): bump github.com/opencontainers/runc from 1.1.12 to 1.1.13 by @dependabot in #509
- move tests to dockertest_test package by @siraj-mx51 in #490
- chore(deps): bump github.com/opencontainers/image-spec from 1.0.2 to 1.1.0 by @dependabot in #510
- chore(deps): bump actions/setup-node from 2.pre.beta to 4.0.2 by @dependabot in #503
- chore(deps): bump actions/setup-go from 4 to 5 by @dependabot in #508
- chore(deps): bump actions/stale from 4 to 9 by @dependabot in #507
- feat: introduce cve scanners by @Demonsthere in #500
- chore: update docker to v27.1.1 by @adamwalach in #522
New Contributors
- @alnr made their first contribution in #499
- @SoMuchForSubtlety made their first contribution in #452
- @siraj-mx51 made their first contribution in #490
- @Demonsthere made their first contribution in #500
- @adamwalach made their first contribution in #522
Full Changelog: v3.10.0...v3.11.0
v3.10.0
chore(deps): bump actions/stale from 4 to 8 (#430) Bumps [actions/stale](https://github.com/actions/stale) from 4 to 8. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v4...v8) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
v3.9.1
v3.9.0
chore(deps): bump gotest.tools/v3 from 3.1.0 to 3.2.0 (#353) Bumps [gotest.tools/v3](https://github.com/gotestyourself/gotest.tools) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/gotestyourself/gotest.tools/releases) - [Commits](https://github.com/gotestyourself/gotest.tools/compare/v3.1.0...v3.2.0) --- updated-dependencies: - dependency-name: gotest.tools/v3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
v3.8.1
v3.8.0
v3.7.0
fix: parse volume mounts using the same function as docker cli (#274) volume mount paths should be of the form: `<src>:<dest>[:<options>]` Docs: https://docs.docker.com/storage/bind-mounts/#choose-the--v-or---mount-flag https://docs.docker.com/storage/volumes/#choose-the--v-or---mount-flag `src` can either be the name of a docker volume OR an absolute path on the host MountParser assumes that it's parsing a local absolute path for the `src` arg. However, as mentioned above, it's also legal to use a named docker volume. In addition, there can be the optional `options` section, with an additional colon. Rather than trying to capture all the edge cases coding it ourselves, we just import the same function that docker-cli uses to parse the volume.
v3.6.5
v3.6.4
fix: exponential backoff (#264) Co-authored-by: Andreas Amstutz <[email protected]>