Skip to content

Releases: gojek/work

Release v0.7.8

04 Oct 10:17
897f108
Compare
Choose a tag to compare

What's Changed

  • Expose web ui router for external server, and switch to *http.ServeMux from gocraft/web in #44
  • Fix webui test & warnings in #45

Full Changelog: v0.7.7...v0.7.8

Release v0.7.7

26 Sep 07:55
53d536c
Compare
Choose a tag to compare

Minor changes:

  • Bump redigo
  • Separate benchmark dependencies

Release v0.7.6

31 Jul 15:22
29c6507
Compare
Choose a tag to compare

Minor changes:

  • Update webui dependencies

Release v0.7.5

25 May 09:42
39a9c48
Compare
Choose a tag to compare

Important changes:

  • Introduce redis replication wait option for enqueuer (#30)

Minor changes:

  • Handle redis.ErrNil for Queues's latency (#32)

Release v0.7.4

29 Jun 09:56
718d0e0
Compare
Choose a tag to compare

Important changes

  • Handle bad JSON input in Args and BusyWorker components (#24)

Release v0.7.3

14 Jun 07:34
44c09da
Compare
Choose a tag to compare

Important changes

Display job arguments in a new component that supports syntax highlighting, collapsing properties and copying properties in WebUI (#21)

Additional changes:

  • The job arguments display component also checks for a root level base64 encoded JSON property named payload, iff present, it tries to unwrap it and display.

Release v0.7.2

16 Mar 14:36
Compare
Choose a tag to compare

Important changes

Display additional stats on queues page in WebUI (#17)

Additional stats displayed:

  • lock_count
  • max_concurrency

Release v0.7.1

16 Mar 13:24
Compare
Choose a tag to compare

Important Changes

Run go generate to update embedded assets (f4d3bd7)

Release v0.7.0

16 Mar 11:44
56b5ef4
Compare
Choose a tag to compare

Important Changes

Declare module as github.com/gojek/work (#16)

Usage

The module is backward compatible with github.com/gocraft/work. To switch to this module, simply replace github.com/gocraft/work with github.com/gojek/work in Go source files and run go get:

go get github.com/gojek/work

Release v0.6.1

12 Mar 08:07
fc020d2
Compare
Choose a tag to compare

Important Changes

Usage

go get github.com/gocraft/work && \
  go mod edit -replace github.com/gocraft/work=github.com/gojek/work@v0.6.1 && \
  go mod tidy

Worker pool started check

Expose work.(*WorkerPool).Started which can be used to check if the worker pool has been started and is running.