Skip to content

Releases: riverqueue/riverui

v0.7.0

16 Dec 16:32
ba06b39
Compare
Choose a tag to compare

Added

Changed

  • Updated internal dependency of riverqueue/river to compensate for a change to baseservice.Archetype and a utility function. PR #253.

v0.6.0

26 Nov 22:00
2f09859
Compare
Choose a tag to compare

Added

  • Add RIVER_LOG_LEVEL env for env-based configuration of River UI's log level. Thank you Taras Turchenko! 🙏🏻 PR #183.

Changed

  • Allow RIVER_HOST variable to specify specific host variable to bind to. PR #157.

v0.5.3

05 Sep 15:47
Compare
Choose a tag to compare
  • Remove .gitignore from Go module bundle because it messes with vendoring in some situations. Thanks Pedro Henrique! 🙏🏻 PR #149.

v0.5.2

02 Sep 20:03
Compare
Choose a tag to compare

Fixed

  • Fix ListenAndServe() inverted error check. Thanks Martin Tournoij! 🙏🏻 PR #137.
  • Fix refresh and theme selector dropdown positioning. PR #146.

v0.5.1

01 Sep 21:09
3fc0192
Compare
Choose a tag to compare
Fix broken dropdowns, prepare v0.5.1 (#139)

* downgrade @headlessui/react to fix listbox bugs

Fixes #138.

* build sourcemaps even for prod, it's OSS after all

v0.5.0

29 Aug 01:31
298c191
Compare
Choose a tag to compare

Changed

  • The module name was changed from github.com/riverqueue/riverui to riverqueue.com/riverui. This change was made to facilitate bundling of module releases that include vendored frontend assets, which will enable the embedded Handler type to be usable by anybody who go get installs the module without requiring a complex build setup.
  • Rename HandlerOpts to ServerOpts for consistency. The Handler type was renamed to Server in PR #108 but the opts type was not renamed until now. PR #133.
  • Implement http.Handler on Server type via a ServeHTTP method so that it can be used directly without needing to call .Handler() on it. PR #133.
  • Directly specify DB interface type and rename it. Avoids relying on embedding a type from an internal package. PR #133.

Removed

  • Removed the vendored Inter font to reduce bundle size with no noticeable impact on the UI.

v0.5.0-pre3

28 Aug 02:18
Compare
Choose a tag to compare
don't remove .json files from build (need .vite/manifest.json)

v0.5.0-pre2

28 Aug 01:56
Compare
Choose a tag to compare
don't remove public from bundle

v0.5.0-pre1

28 Aug 01:40
86a5e00
Compare
Choose a tag to compare
prepare v0.5.0-pre1 release (#129)

v0.4.0

26 Aug 21:04
a0bc947
Compare
Choose a tag to compare

Added

  • Job counts are cached for very large job tables to make request timeouts less likely. PR #108.
  • River UI has been restructured to properly support a dynamic path prefix on built static assets. The -prefix CLI option or the PATH_PREFIX Docker container env can both be used to set a URL prefix on both the API routes and the frontend HTML routes. PR #115.