Skip to content

Tags: philandstuff/cog

Tags

v0.9.23

Toggle v0.9.23's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Pin goreleaser to v2.2.0 to avoid pulling in go 1.23 (replicate#1953)

Our stuff doesn't work with 1.23 yet (replicate#1950 is working on it); for now, pin to
goreleaser 2.2.0 so we can still do releases.

v0.9.21

Toggle v0.9.21's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump golang.org/x/term from 0.22.0 to 0.24.0 (replicate#1933)

Bumps [golang.org/x/term](https://github.com/golang/term) from 0.22.0 to 0.24.0.
- [Commits](golang/term@v0.22.0...v0.24.0)

---
updated-dependencies:
- dependency-name: golang.org/x/term
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Will Sackfield <sackfield@replicate.com>

v0.9.20

Toggle v0.9.20's commit message

Verified

This tag was signed with the committer’s verified signature.
nickstenning Nick Stenning
Release v0.9.20

v0.9.19

Toggle v0.9.19's commit message

Verified

This tag was signed with the committer’s verified signature.
nickstenning Nick Stenning
Release v0.9.19

v0.9.18

Toggle v0.9.18's commit message

Verified

This tag was signed with the committer’s verified signature.
nickstenning Nick Stenning
Release v0.9.18

v0.9.17

Toggle v0.9.17's commit message

Verified

This tag was signed with the committer’s verified signature.
nickstenning Nick Stenning
Release v0.9.17

v0.9.16

Toggle v0.9.16's commit message

Verified

This tag was signed with the committer’s verified signature.
nickstenning Nick Stenning
Release v0.9.16

v0.9.15

Toggle v0.9.15's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Revert "Ping the docker daemon to check if it is up (replicate#1838)" (

…replicate#1852)

This reverts commit 592f768.

v0.10.0-alpha21

Toggle v0.10.0-alpha21's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
move runner.terminate into runner.shutdown after waiting for predicti…

…ons to complete (replicate#1843)


* move runner.terminate into shutdown, make it async, and document the behavior of Server.stop, should_exit, force_exit, and app shutdown handler,
* remove BaseException handlers or re-raise
* fix tests

---------

Signed-off-by: technillogue <technillogue@gmail.com>

v0.9.14

Toggle v0.9.14's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Ping the docker daemon to check if it is up (replicate#1838)

* Ping the docker daemon to check if it is up

* Send a ping to the docker daemon directly using
the golang docker client.
* Give it 5 seconds to answer, if it doesn’t
answer send a warning to the user.

* Move ping from image to docker package

Update ping to return error instead of printing

Update ping to take context and duration arguments

* Add ping checks to push, run, predict, and train subcommands

---------

Co-authored-by: Mattt Zmuda <mattt@replicate.com>