Releases: riverqueue/riverui
Releases · riverqueue/riverui
v0.7.0
v0.6.0
v0.5.3
v0.5.2
Fixed
- Fix
ListenAndServe()
inverted error check. Thanks Martin Tournoij! 🙏🏻 PR #137. - Fix refresh and theme selector dropdown positioning. PR #146.
v0.5.1
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
Changed
- The module name was changed from
github.com/riverqueue/riverui
toriverqueue.com/riverui
. This change was made to facilitate bundling of module releases that include vendored frontend assets, which will enable the embeddedHandler
type to be usable by anybody whogo get
installs the module without requiring a complex build setup. - Rename
HandlerOpts
toServerOpts
for consistency. TheHandler
type was renamed toServer
in PR #108 but the opts type was not renamed until now. PR #133. - Implement
http.Handler
onServer
type via aServeHTTP
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
don't remove .json files from build (need .vite/manifest.json)
v0.5.0-pre2
don't remove public from bundle
v0.5.0-pre1
prepare v0.5.0-pre1 release (#129)
v0.4.0
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 thePATH_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.